@charset "UTF-8" ;

/* ==================================
共通
================================== */
html {
    font-size: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
    width: 100%;
    max-width: 1980px;
    margin: 0 auto;
    overflow-x: hidden;
}
#wrap {
    /* max-width: 1280px; */
    margin: 0 auto;
}
a {
    text-decoration: none;
    letter-spacing: 0.1rem;
}
img {
  max-width: 100%;
	vertical-align: bottom;
  display: block;
}
li {
    list-style: none;
    font-family: "fot-tsukuardgothic-std", sans-serif;
}
a {
    color: #232323;
    text-decoration: none;
    font-family: "fot-tsukuardgothic-std", sans-serif;
}
p {
  color: #333333;
  letter-spacing: 0.1rem;
  font-family: "fot-tsukuardgothic-std", sans-serif;
}
/* en タイトル */
.en_title_wrap {
  display: flex;
  margin-bottom: 30px;
}
h2 {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.1rem;
  color: #333;
}
.en_title_wrap img {
  display: block;
  width: 12px;
  margin-right: 5px;
}

/* 各セクション 見出し */
h3 {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    color: #00a291;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    margin-bottom: 130px;
}
.section_title h2::before {
    position: absolute;
    font-size: 150px;
    font-weight: 900;
    color: rgba(195, 153, 83, 0.2);
    z-index: 0;
}
h4 {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    color: #333;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    margin-bottom: 60px;
}
h5 {
    font-family: "fot-tsukuardgothic-std", sans-serif;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0.2rem;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* 「」　の余白消してテキスト揃える */
.bracket {
  display: inline;
  white-space: nowrap;
  position: relative;
  padding-left: 0.4em;
}
.bracket::before { 
  content: "｢"; 
  position: absolute;
  left: -0.2em;
}
.bracket::after { 
  content: "｣"; }

.number {
  font-family: "parkside", cursive;
  font-weight: 200;
  font-style: normal;
  color: #00a291;
  font-size: 72px;
  letter-spacing: 0.4rem;
}

/* スクロールしたら下から出現 */
.fadein_from-below {
  transform: translateY(20px);
  opacity: 0;
  transition: all 2s ease;
}
.fadein_from-below.show {
  transform: translateY(0);
  opacity: 1;
}
/* スクロールしたらその場で出現 */
.fadein_on-the-spot {
  transform: translateY(0px);
  opacity: 0;
  transition: all 3s ease;
}
.fadein_on-the-spot.show {
  transform: translateY(0);
  opacity: 1;
}


/* ==================================
メインビジュアル
================================== */

 /* ▼ 背景（左半分）をメイン＋次セクションの途中まで */
    .bg_color {
      position: absolute;
      top: 0;
      left: 0;
      width: 65%;
      height: 1000px; /* ← 100vh + 次のセクションの半分くらい */
      background-color: #fbf9f8;
      z-index: -1;
      /* content: ""; */
    }

/* ==================================
スクロールライン
================================== */

.scroll {
  position: fixed;
  top: 40%;
  left: -85px;
  transform: translateY(-50%);
  z-index: 1000;
}
.scroll-text {
  font-family: "fot-tsukuardgothic-std", sans-serif;

}
.scroll-text {
  position: relative;
  color: #333;
  font-size: 12px;
  letter-spacing: 0.2rem;
  /* text-align: center; */
  transform: rotate(90deg);
}
.scroll-text span {
  display: inline-block;
  padding-left: 40px;
  opacity: 0.3;
}
.scroll-border {
  position: absolute;
  top: 130px;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 0.5px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  background: #333;
  animation: scrollbar 4.0s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollbar {
  0% {
    height: 0;
    top: 0;
  }
  30% {
    height: 100%;
  }
  100% {
    top: 100%;
  }
}


    /* 左側コンテンツ */
    .mv {
      margin-top: 20px;
    }
.mv_catch {
  display: flex;
  flex-direction: column;
  align-items: center;
}

    .mv_catch p {
      font-size: 24px;
      padding-bottom: 40px;
    }

    .mv_catch h2 {
      font-size: 36px;
      margin-bottom: 20px;
      letter-spacing: 4px;
      padding-left: 3rem;
    }

    /* ロゴ部分 */
    .mv_logo {
      padding-bottom: 20px;
    }

    .mv_logo img {
      width: 100px;
    }

    .mv_logo p {
      margin-top: 8px;
      color: #1a43bf;
      font-weight: bold;
      font-size: 14px;
    }

    .mv_flex {
      display: flex;
      justify-content: center;
      /* gap: 60px; */
      gap: 1%;
      align-items: center;
      margin-bottom: 200px;
      padding: 0 5%;
    }
    .mv_catch_img {
      width: 450px;
    }
    /* 右側ビジュアル部分 */
    .visual-image img{
      width: 650px;

    }

    /* メニューボタン */
    .menu-btn {
      position: absolute;
      top: 30px;
      right: 40px;
      width: 50px;
      height: 50px;
      border: 1px solid #ccc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .menu-btn::before, .menu-btn::after, .menu-btn span {
      content: "";
      display: block;
      width: 22px;
      height: 2px;
      background-color: #333;
      margin: 3px 0;
    }

    .menu-btn span {
      margin: 4px 0;
    }



/* ==================================
greeting セクション
================================== */
.greeting_section {
  display: flex;
  align-items: center;
  justify-content: space-around;
  /* flex-wrap: wrap; */
  padding: 0 5%;
  gap: 20px;
  margin-bottom: 200px;
}
.greeting_img {
  flex: 1 1 400px;
  max-width: 550px;
  /* border-radius: 50%; */
  /* overflow: hidden; */
}
.greeting_img img {
  width: 100%;
  height: auto;
  display: block;
}
.greeting_list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 2.5em;
  position: relative;
}
.list-item {
  display: flex;
  align-items: center;
  background-color: #fbf9f8;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  height: 80px;
  margin-left: 40px;
}
.list-item p {
  padding-left: 80px;
}
.icon {
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
  margin-bottom: 65px;
}

/* グラデーションマーカーエリア*/
.gradient-text {
  margin-left: 40px;
}
.gradient-marker span{
  background-image: repeating-linear-gradient(
    90deg,
    rgba(178, 223, 225, 0.4),  
    rgba(197, 242, 182, 0.4), 
    rgba(255, 237, 166, 0.4)    
  );
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: 100% 5px;
}

/* ==================================
about us セクション
================================== */

.aboutus_section {
  margin: 0 auto;
      display: grid;
    flex-direction: column;
    gap: 80px;
    padding: 100px 5%;
    margin-bottom: 200px;
    position: relative;
}
.about-sub {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #638b8d;
  margin-bottom: 60px;
}

.about-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-text h3 {
  color: #333;
}
.about-img {
  flex: 1;
}

.about-img img {
  width: 500px;
  height: 350px;
  object-fit: cover;
  border-radius: 80px 20px 80px 20px;
}

/* 奇数番目だけ リバース */
.about-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.aboutus_bg {
  width: 65%;
  height: 220vh;
  position: absolute;
  background-color: #fbf9f8;
  left: 0;
  z-index: -1;
  border-radius: 0 30px 30px 0;
}

.about_linedrawing {
 position: absolute;
    left: 2%;
    bottom: -10%;
}
.about_linedrawing img {
  width: 550px;

}



/* ==================================
program セクション
================================== */
.program_section {
  display: flex;
  justify-content: space-around;
  margin-bottom: 200px;
  gap: 20px;
}
.program_section h4 {
  margin-bottom: 100px;
}
.program_title_wrap {
  display: flex;
  justify-content: flex-start;
}
.blank {
  width: 500px;
} 
/* .program_title {
  width: 670px;
} */
.program_title h4 {
  margin-bottom: 100px;
}
.program_list_wrap {
  display: grid;
  gap: 80px;
}
.program_img {
  max-width: 500px;
  margin-top: 200px;
}
.program_img img {
  width: 100%;
  height: auto;
  display: block;
}

.program-box {
  background: #f8fbfa;
  border-radius: 12px;
  padding: 30px 0;
  position: relative;
  display: flex;
  align-items: center;
  gap: 40px;
}
.program-inner {
  flex: 1;
  text-align: center;
}
.program-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.program-list li {
  position: relative;
  padding: 0 15px;
  width: 200px;
}
.program_section .number {
  position: absolute;
  top: -30%;
  left: -5%;
}

/* 区切り線 */
.program-list li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: #999;
  opacity: 0.5;
}



/* ==================================
schedule セクション
================================== */
.schedule_section {
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 200px;
}
.schedule_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
 }
.subtitle {
  display: flex;
  align-items: center;
  gap: 60px;
   margin-bottom: 40px;
}
.profile-img {
  width: 180px;        /* サイズ調整可 */
  height: 180px;       /* 正円にするには width = height */
  border-radius: 50%;  /* 正円 */
  object-fit: none;   /* 画像比率を保ってトリミング */
  display: block;
  object-position: 0 50%;
}
.schedule_logo {
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-size: 130px;
  font-weight: 600;
  letter-spacing: 2rem;
  line-height: 1;
  color: transparent;                   /* 塗りつぶし無し */
  -webkit-text-stroke: 1px #dcdcdc;     /* アウトライン色 */
  text-stroke: 2px #dcdcdc;
}
.pc_schedule {
  margin-bottom: 10px;
}
.sp_schedule {
  margin-bottom: 10px;
}



/* ==================================
flow セクション
================================== */
.flow_section {
    margin: 0 auto;
    display: grid;
    flex-direction: column;
    gap: 80px;
    padding: 200px 5%;
    margin-bottom: 200px;
    position: relative;
}
.faq_section .flow_linedrawing {
      bottom: -15%;
    right: -20%;
}
.flow_title h4 {
  margin-bottom: 0;
}
.flow-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.flow_inner_wrap {
  display: grid;
  gap: 80px;
  position: relative;
}
.flow_item_wrap {
  display: flex;
}
.flow_img {
  max-width: 500px;
  position: absolute;
  right: 0;
  top: 0.5%;
}
.flow_img img {
  width: 100%;
  height: auto;
  display: block;
}
.flow_bg {
    width: 65%;
    height: 180vh;
    position: absolute;
    background-color: #fbf9f8;
    left: 0;
    z-index: -1;
    border-radius: 0 30px 30px 0;
}

.flow_linedrawing {
  position: absolute;
      bottom: -10%;
    right: 15%;

}
.flow_linedrawing img {
  width: 350px;
}



/* ==================================
faq セクション
================================== */
.faq_section {
  display: flex;
  justify-content: center;
  margin-bottom: 200px;
  position: relative;
}
.faq_section .blank {
  width: 200px;
}
.faq_section h4 {
  margin-bottom: 100px;
}
.faq_title_wrap {
  display: flex;
  justify-content: space-around;
}
.faq_title {
  width: 670px;
}
.faq_title h4 {
  margin-bottom: 100px;
}
.faq_img {
  max-width: 500px;
  position: absolute;
  left: -8%;
  margin-top: 500px;
}
.faq_list_wrap {
  /* display: grid;
  gap: 60px; */
  position: relative;
}
.faq-box {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.faq-inner {
  /* flex: 1;
  text-align: center; */
  width: 650px;
  padding: 40px;
  background: #f8fbfa;
  border-radius: 12px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.faq-list li {
  display: flex;
  align-items: center;
  text-align: left;
}
.faq-list h5 {
  margin-bottom: 0;
}
.faq-list img {
  width: 40px;
  margin-right: 40px;
}



/* ==================================
company セクション
================================== */
.company_section {
  padding: 0 5%;
  text-align: center;
}
.company_title h4 {
  margin-bottom: 80px;
}
.company_title_wrap {
  display: flex;
  justify-content: center;
}
.company_wrap h3 {
  margin-bottom: 20px;
}
.company_wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 180px;
}
.company_item {
  width: 100%;
  max-width: 380px;
  margin-bottom: 40px;
}
.map-box iframe {
  width: 100%;
  height: 300px;
  border-radius: 12px;
}



/* ==================================
contact セクション
================================== */
.contact_bg {
  background-color: #fbf9f8;
}
.contact_title_wrap {
  display: flex;
  justify-content: center;
  padding-top: 200px;
}
/* .hissu:after {
    margin-left: .2rem;
    color: #dc3545;
    content: "*";
} */
.Form-Item_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 250px;
}
.checkbox_wrap {
  display: flex;
  flex-direction: column;
  margin-left: 40px;
}
.check-text {
  font-size: 12px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-weight: 600;
}
.hissu {
    color: #fff;
    background-color: #bc0000;
    border-radius: 8px;
    /* padding: 1px 2px; */
    font-size: 8px;
    width: 40px;
    display: flex;
    /* text-align: center; */
    height: 15px;
    justify-content: center;
    align-items: center;
    padding-left: 3px;
}
.contact {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 200px;
}
.container .flow_linedrawing {
  bottom: unset;
  right: -15%;
}
.contact_wrap {
    width: 90%;
    margin: 0 auto;
}
#contact_img {
    background-image: url(../img/contact.png);
    min-height: 500px;
    background-position: top;
}
.Form h2 {
    margin-bottom: 80px;
    margin-top: 80px;
    text-align: center;
    color: #333;
}
.Form_tittle {
    text-align: center;
}
.Form_tittle h2 {
    display: flex;
    align-items: center;
    }
.Form_tittle h2 {
    position: relative;
    display: inline-block;
    padding: 0 100px;
    /* margin-bottom: 80px; */
}
.Form_tittle h2:before,
.Form_tittle h2:after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 50px;
    height: 2px;
    background-color: #067fbd;
}
.Form_tittle h2:before {
    left: 0;
}
.Form_tittle h2:after {
    right: 0;
}
.Form_tittle h2 {
    text-align: center;
    color: #333;
    font-size: 32px;
    font-weight: 400;
}
.Form_tittle span {
    color:  #fe5f73;
    font-weight: bold;
}
.Form h2 span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
}
.Form_tittle h2 span {
    display: block;
    margin-top: 4px;
    font-size: 16px;
}
.Form {
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
}
.Form-Item {
  padding: 10px 0;
    width: 100%;
    display: flex;
    align-items: center;
}
.Form-Item-Label {
  font-weight: 600;
  width: 100%;
    max-width: 248px;
    letter-spacing: 0.05em;
    font-size: 16px;
}
.Form-Item-Label-Required {
	color: #fff;
	font-size: 11px;
	text-align: center;
	background-color: #e00202;
	border-radius: 3px;
	padding: 1px 5px;
	margin-left: 10px;
	margin-right: 10px;
}
.Form-Item-Input {
	border: 1px solid rgba(37, 33, 6, .2);
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	/* max-width: 410px; */
	background: #fff;
  border-radius: 3px;
  }
.Form-Item-Textarea {
	border: 1px solid #ddd;
	margin-left: 40px;
	padding-left: 1em;
	padding-right: 1em;
	height: 216px;
	flex: 1;
	width: 100%;
	max-width: 800px;
	background: #fff;
}

.Form-Btn {
font-size: 14px;
    letter-spacing: 0.2rem;
    font-weight: bold;
    color: #fff;
    background-color: #00a291;
    padding: 20px 40px;
    border-radius: 5px;
    margin-top: 40px;
    width: 235px;
    display: block;
    margin: 0 auto;
    margin-top: 60px;
}
.Form-Btn:hover {
  opacity: 0.7;
  cursor: pointer;
}

.submit-btn_wrapper {
  text-align: center;
}
.font-f color-p {
    margin-top: 20px;
}
.Form h2 span {
    margin-top: 20px;
}
.contact_privacy {
    text-align: center;
    margin-top: 80px; 
    font-size: 12px;
}
.contact_privacy span {
  display: block;
  padding-left: 5px;
}
.contact_privacy label {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.contact_privacy a {
  color: #0aa;
}
.txt-center {
    margin-top: 10px;
}

/* 内容確認画面 */
 
.contact-title {
  text-align: center;
  padding-top: 150px;
}
.contact-title h3 {
  margin-bottom: 20px;
}
.contact-title h5 {
  font-size: 18px;
  padding-left: 10px;
}
.contact_confirm {
  max-width: 1000px;
  margin: 0 auto;
}
.contact_box {
  padding: 100px;
}

/* 送信完了画面 */
.toppage_back_btn {
    display: inline-flex;
    align-items: center;
    padding: 20px 40px;
    background-color: #0aa;
    color: white;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 40px;
}
.preparation_inner {
  text-align: center;
}
.preparation_wrapper {
  text-align: center;
  padding-bottom: 150px;
}


/* ==================================
footer セクション
================================== */
#footer {
  position: relative;
  padding: 40px 5%;
  background: url("../img/footer_bg.png") center/cover no-repeat;
  color: #333;
  overflow: hidden;
}

/* 白い透明オーバーレイ */
.footer__overlay {
  position: absolute;
  inset: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.6); /* ← 白くしたい場合ここを調整 */
  z-index: 1;
}

/* コンテンツ全体 */
.footer__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* 左側（ロゴ + メニュー） */
.footer__left {
      display: flex;
    align-items: flex-start;
    gap: 80px;
}

.footer__logo {
  width: 100px;
  margin-bottom: 24px;
}
.footer__menu {
  list-style: none;
  padding: 0;
}
.footer__menu li {
  margin-bottom: 10px;
}

.footer__menu a {
    color: #333;
    font-size: 14px;
    font-weight: 600;
}
/* 右側（大きいボタン） */
.footer__right {
  display: flex;
  align-items: center;
}
.footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #48a89d;
  color: #fff;
  padding: 20px 40px;
  font-size: 20px;
  border-radius: 6px;
  text-decoration: none;
}
.footer__icon {
  font-size: 22px;
}

/* コピーライト */
.footer__copy {
  position: relative;
  z-index: 2;
  text-align: right;
  margin-top: 50px;
  font-size: 10px;
  color: #333;
  font-weight: 600;
}
.mail-btn_wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: end;
  height: 320px;
}



/* ==================================
上へ戻るボタン
================================== */

#pagetop {
    position: fixed;
    bottom: 70px;
    z-index: 50;
    display: block;
    cursor: pointer;
    transition: .5s;
    color: #00a291;
    transform: rotate(270deg);
    letter-spacing: 0.2rem;
    font-size: 12px;
    right: -35px;  /* 初期位置: 画面外 */
        opacity: 0;
    pointer-events: none; /* クリック不可にしておく */
    transform: rotate(270deg) translateX(20px); /* 少し隠す */
}
#pagetop.visible {
  opacity: 1 !important;
  pointer-events: auto;
  transform: rotate(270deg) translateX(0) !important;
}




@media (max-width: 1265px) {
  .company_wrap {
    gap: 15px;
  }
  .company_item p {
    font-size: 13px;
  }
  .company_section {
    padding: 0 3%;
  }
}


/* =======================================================
レスポンシブレスポンシブレスポンシブレスポンシブ ＜＜1024＞＞
======================================================= */

@media (max-width: 1024px) {

/* ==================================
共通
================================== */
p {
  font-size: 14px;
}
.en_title_wrap {
  margin-bottom: 20px;
}
h3 {
  font-size: 21px;
  margin-bottom: 100px;
}
h4 {
  font-size: 24px;
}
h5 {
  font-size: 21px;
  margin-bottom: 30px;
}



/* ==================================
mv セクション
================================== */
.bg_color {
  width: 70%;
  height: 750px;
}
.visual-image img {
  width: 500px;
}
.mv_catch p {
  font-size: 18px;
}
.mv_catch h2 {
  font-size: 21px;
}


/* ==================================
greeting セクション
================================== */
.greeting_section {
  margin-bottom: 100px;
}
.greeting_list {
  gap: 40px;
  margin-bottom: 40px;
}
.list-item {
  width: auto;
}
.list-item p {
  padding-left: 60px;
}


/* ==================================
about us セクション
================================== */
.aboutus_bg {
  width: 70%;
  height: 1200px;
}
.aboutus_section {
  gap: 60px;
}
.aboutus_section .en_title_wrap {
  margin-bottom: 0;
}
/* 奇数番目だけ リバース */
.about-item:nth-child(odd) {
  /* flex-direction: unset; */
}
.about-item {
  /* flex-direction: column; */
  /* align-items: baseline; */
  justify-content: center;
  gap: 40px;
}
.about-img img {
  height: 280px;
}
.about-item:nth-child(odd) {
  /* flex-direction: column; */
  }
.about_linedrawing {
  left: 60px;
  top: 93%;
}
.about_linedrawing img {
  width: 400px;
}



/* ==================================
program セクション
================================== */
.program_section {
  flex-direction: column-reverse;
  padding: 0 5%;
  margin-bottom: 100px;
}
.program_list_wrap {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.program_img  {
  max-width: 300px;
  margin-top: 20px;
  position: relative;
  right: -50%;
}
  .program-box {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    padding: 30px 10px;
    height: 240px;
    width: 230px;
  }


  .program-list {
    flex-direction: column;
    gap: 10px;
  }

  .program-list li {
    padding: 0;
  }

  .program-list li::after {
    display: none;
  }
.program_section .number {
  top: -25%;
  left: unset;
}



/* ==================================
schedule セクション
================================== */
.schedule_section h4 {
  margin-bottom: 0;
}
.schedule_section h5 {
  margin-bottom: 0;
}
.schedule_title_wrap {
  position: relative;
  align-items: baseline;
  flex-direction: column;
}
.schedule_logo {
  font-size: 192px;
  letter-spacing: 1rem;
  position: absolute;
  top: -250%;
  opacity: 0.5;
}
.profile-img {
  width: 150px;
  height: 150px;
}
.subtitle {
  flex-direction: row-reverse;
  align-items: baseline;
  justify-content: end;
  gap: 30px;
}



/* ==================================
flow セクション
================================== */
.flow_section {
  padding: 100px 5%;
}
.flow_bg {
  width: 80%;
  height: 950px;
}
.flow_img {
  max-width: 300px;
  right: 5%;
  top: -10%;
}
.flow-item {
  gap: 40px;
}
.faq-inner {
  width: unset;
}



/* ==================================
faq セクション
================================== */
.faq_section {
  margin-bottom: 100px;
}
.faq_title_wrap {
  justify-content: flex-start;
}
.faq-box {
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.faq_title {
  width: unset;
}
.faq_title h4 {
  margin-bottom: 60px;
}
.faq-list {
  flex-direction: column;
  gap: 10px;
}
.faq-list li {
  padding: 0;
}
.faq-list li::after {
  display: none;
}
.faq-list img {
  margin-right: 20px;
}
.faq_img {
  max-width: 300px;
  margin-top: 500px;
}
.faq_section .blank {
  width: 300px;
}
.faq_section .flow_linedrawing {
  bottom: -15%;
    right: 10%;
    width: 200px;
}


/* ==================================
company セクション
================================== */
.company_section {
  margin-bottom: 100px;
}
.company_wrap {
  flex-direction: column;
  gap: 60px;
  padding-bottom: 80px;
}
.company_title h4 {
  margin-bottom: 60px;
}

.company_item {
  margin: 0 auto;
}



/* ==================================
contactフォーム セクション
================================== */
.contact {
  padding-bottom: 60px;
}
.contact_title_wrap h4 {
  margin-bottom: 0;
  padding-top: 100px;
}
.Form-Item_flex {
  width: 200px;
}
.Form-Item-Label {
max-width: 200px;
}
.Form-Btn {
  margin-top: 0;
}
.contact_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 100px;
  
}
.contact_box form {
  width: 100%;
}
.container .flow_linedrawing {
  width: 200px;
      bottom: 10%;
    right: 10%;
}
.contact_privacy {
  margin-top: 60px;
}


/* ==================================
contact内容確認 セクション
================================== */
.contact_confirm .contact_box {
  padding: 100px;
  margin-top: 90px;
}

/* ==================================
contact送信完了 セクション
================================== */


}



/* =======================================================
レスポンシブレスポンシブレスポンシブレスポンシブ 768
======================================================= */

@media (max-width: 768px) {

h3 {
  font-size: 21px;
}
.mv_flex {
  flex-direction: column-reverse;
}
h4 {
  font-size: 21px;
}
h5 {
  width: auto;
  font-size: 16px;
  margin-bottom: 20px;
}
.en_title_wrap {
  margin-bottom: 20px;
}
/* .number {
  font-size: 40px;
} */
.sp_none {
  display: none;
}
.bg_color {
  width: 80%;
  height: 590px;
  border-radius: 0 0 10px 0;
}

/* ==================================
greeting セクション
================================== */
.greeting_section {
  margin-bottom: 200px;
  flex-direction: column-reverse;
  position: relative;
}
.greeting_section h3 {
  margin-bottom: 80px;
}
.greeting_list {
  gap: 40px;
}
.list-item {
  height: 80px;
  width: auto;
  margin-left: 20px;
}
.greeting_img {
 max-width: 200px;
  position: absolute;
  top: 115%;
  right: 20px;
}
.gradient-text {
  margin-left: 0;
  padding: 0 5%;
}

/* ==================================
about セクション
================================== */
.aboutus_section .en_title_wrap {
  justify-content: flex-start;
  max-width: 300px;
}
.aboutus_section {
  margin-bottom: 150px;
}
.aboutus_section .en_title_wrap {
  margin-bottom: 20px;
}
.about-item {
  flex-direction: column;
  align-items: baseline;
  text-align: left;
  gap: 20px;
}
.about-text .line_spacing {
  margin-bottom: 10px;
}
.about-item:nth-child(odd) {
  flex-direction: column;
}
.aboutus_section {
  padding: 80px 8%;
}
.aboutus_bg {
  width: 95%;
  height: 1740px;
}
.about_linedrawing img {
  width: 320px;
}
.about_linedrawing {
  top: 97%;
  left: 30px;
}
.about-text {
  max-width: 300px;
}
.about-img img {
  width: 300px;
  height: 250px;
  border-radius: 60px 20px 60px 20px;
}


/* ==================================
program セクション
================================== */
.program_section {
  flex-direction: column;
  margin-bottom: 300px;
  position: relative;
}
.program_list_wrap {
  flex-direction: column;
  gap: 40px;
}
.program-box {
  width: 95%;
  height: unset;
  margin: 0 auto;
  padding: 40px;
}
.program_title_wrap {
  flex-direction: column;
  align-items: center;
}
.program_section .number {
  font-size: 60px;
  left: auto;
  top: -18%;
}
.program_title {
  width: auto;
}
.program_img {
  width: 200px;
  /* margin-left: 150px; */
  right: unset;
  position: absolute;
  z-index: 800;
  top: 96%;
  right: 20px;
}

.program_title h4 {
  margin-bottom: 80px;
}

/* ==================================
schedule セクション
================================== */
.pc_schedule {
  display: none;
}
.schedule_section h4 {
  margin-bottom: 0;
}
.schedule_title {
  margin-bottom: 0;
}
.schedule_title_wrap {
  flex-direction: column;
  align-items: baseline;
  position: relative;
}
.schedule_logo {
  font-size: 70px;
  position: absolute;
  top: -95%;
  opacity: 0.4;
  left: 30px;
}
.profile-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: left;
}
.subtitle {
  align-items:flex-end;
  flex-direction: row-reverse;
  /* justify-content: space-between; */
  margin-bottom: 0;
  margin-top: 40px;
  gap: 10px;
}
.schedule-scroll img {
  max-width: 900px;
  /* display: unset; */
}
.schedule_section h5 {
  margin-bottom: 10px;
}
.schedule-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; /* スマホでスムーズスクロール */
  margin-top: 30px;
}
.sp_schedule {
  /* max-width: 90%; */
  width: 100%;
  max-width: 300px;
}
.sp_schedule_wrap {
  display: flex;
  justify-content: end;
}
.schedule_img_wrap {
  text-align: end;
}
.small {
  font-size: 14px;
}

/* 中の画像 */
.schedule-image {
  display: block;
  width: 900px;   /* 横幅は大きめに（固定 or お好みで） */
  max-width: none; /* スマホで縮まらないようにする */
  border-radius: 8px;
}



/* ==================================
flow セクション
================================== */
.flow_section  h5 {
  margin-bottom: 10px;
}
.flow_section {
  gap: 40px;
    padding: 80px 5%;
    margin-bottom: 150px;

}
    .flow_bg {
        width: 95%;
        height: 1050px;
    }
    .flow-item {
      gap: 20px;
    }
    .flow-item {
      flex-direction: column;
      align-items: baseline;
    }
   .flow_section .number {
    font-size: 60px;
   }
.flow_inner_wrap {
  gap: 20px;
}
.flow_img {
  position: absolute;
  width: 200px;
}
.flow_section  .flow_linedrawing img {
  width: 300px;
}
.flow_section  .flow_linedrawing {
  position: absolute;
  right: 20px;
  top: 98%;
}






.mv_catch {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.visual-image img {
  display: block;
  width: 95%;
  margin: 0 auto;
  padding-bottom: 60px;
}
.mv_catch p {
  font-size: 14px;
  padding-bottom: 20px;
}
.mv_catch h2 {
  font-size: 21px;
  margin-bottom: 10px;
  padding-left: 25px;
}
.mv_catch {
  width: 300px;
}
.mv_catch_img {
  width: 100%;
}
.scroll {
  top: 40%;
}
.scroll-text {
  font-size: 10px;
}
.mv_logo img {
  width: 80px;
}
.mv_flex {
  margin-bottom: 100px;
}


/* ==================================
faq セクション
================================== */
.faq_section {
  flex-direction: column-reverse;
  margin-bottom: 100px;
}
.faq_title_wrap {
  flex-direction: column;
  align-items: baseline;
  padding: 0 5%;
}
.faq_title {
  width: auto;
}
.faq_title h4 {
  margin-bottom: 60px;
}
.faq-list {
  gap: 20px;
}
.faq-list img {
  margin-right: 10px;
}
.faq_img {
  /* width: 200px;
  margin-left: 150px; */
  display: none;
}
.faq-box {
  width: 95%;
  margin: 0 auto;
  align-items: center;
  padding: unset;
}
.faq-inner {
  width: 95%;
  padding: 10px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
  }
.faq_img {
  gap: 20px;
}
.faq_section .flow_linedrawing {
  top: 105%;
  right: 20px;
}



/* ==================================
company セクション
================================== */
.company_section h3 {
  font-style: 18px;
}
.company_wrap {
  padding-bottom: 0;
}

/* ==================================
contactフォーム セクション
================================== */
.contact  {
  position: relative;
}
.contact_title_wrap {
  padding-top: 100px;
}
.contact-title {
  padding-top: 100px;
  padding-bottom: 40px;
}
.contact-title h2 {
  padding-bottom: 100px;
  line-height: 1.5;
}
.company_wrap h3 {
  margin-bottom: 10px;
}
.contact {
  padding: 0 5%;
  padding-bottom: 200px;
}
.contact_box form {
  width: 100%;
}
.contact_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
}
.Form_tittle h2  {
    margin-top: 80px;
}
.fot_logo img {
    width: 30%;
}
.Form {
	margin-top: 40px;
}
.Form-Item {
	/* padding-left: 14px; */
	flex-wrap: wrap;
}
.Form-Item-Label {
	/* max-width: inherit;
	display: flex;
	align-items: center;
	font-size: 14px; */
}
.Form-Item-Label.isMsg {
	margin-top: 0;
}
.Form-Item {
	width: 100%;
	display: block;
}
/* .Form-Item:nth-child(5) {
	border-bottom: 1px solid #ddd;
} */
.Form-Item-Label {
  width: auto;
	/* width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-size: 14px; */
}
.checkbox_wrap {
  margin-left: 0;
  padding-top: 10px;
}
.txt-center {
  margin-top: 0;
}
.hissu {
  margin-left: 10px;
}
.Form-Item_flex {
  justify-content: unset;
  width: unset;
}
.Form-Item-Label.isMsg {
	margin-top: 8px;
	margin-bottom: auto;
	white-space: normal;
}
.Form-Item-Label-Required {
	border-radius: 4px;
	padding-top: 2px;
	padding-bottom: 2px;
	width: 32px;
	font-size: 10px;
}
.Form-Item-Label-Required {
	border-radius: 4px;
	padding-top: 4px;
	padding-bottom: 4px;
	width: 32px;
	font-size: 10px;
}
.Form-Item-Textarea {
	margin-top: 5px;
	margin-left: 0;
	height: 200px;
	flex: inherit;
}
.Form-Btn {
	margin-top: 0;
  padding: 20px 40px;
	font-size: 14px;
}
.Form-Item-Input {
    margin-left: 0;
    margin-top: 5px;
}
.contact-title h2 {
  font-size: 24px;
}
.Form-Item p {
  line-height: 2;
}
.contact_privacy {
  margin-top: 70px;
}
.container .flow_linedrawing {
  position: absolute;
  top: 92%;
  right: 10px;
}



/* ==================================
contact内容確認 セクション
================================== */
.contact_confirm {
  padding: 80px 10px;
  margin: 0 auto;
  max-width: 300px;
}
.contact-title h3 {
  margin-bottom: 10px;
}
.contact-title h5 {
  font-size: 16px;
  padding-left: 0;
  margin-bottom: 0;
}
.contact_confirm .contact_box {
  padding: 0 10px;
  margin-top: 0;
}
.contact_confirm .Form-Btn{
  margin-top: 60px;
}

/* ==================================
contact送信完了 セクション
================================== */
.preparation_wrapper {
  margin-bottom: 80px;
  padding-bottom: 0;
}


#footer {
  padding: 40px 5% 5px 5%;
}
.footer__left {
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.footer__menu {
  text-align: center;
  margin-bottom: 40px;
}
.mail-btn_wrap {
    flex-direction: column;
    align-items: center;
}
.footer__inner {
  flex-direction: column;
  align-items: center;
}
.mail-btn_wrap {
  height: unset;
}
.footer__logo {
  width: 80px;
  margin-bottom: 0;
}



/* ==================================
上へ戻る
================================== */
#pagetop {
  -right: 40px;
  font-size: 12px;
}
}



/* ==================================
iPhone Safari用
================================== */
@media screen and (max-width: 768px) {
  /* WebKit（Safari）に特化 */
  @supports (-webkit-appearance: none) { 
    .contact_privacy label {
      display: inline-flex;
      align-items: center;
    }
  }
}


@media (min-width: 769px) {
.sp_add {
  display: none;
}
.sp_schedule {
  display: none;
}
}