@charset "UTF-8";

/* 標準SP表示 ~767px */

html, body {
  overflow-x: hidden;
  width: 100%;
}

.body-inner {
  overflow-x: hidden;
  width: 100%;
}

body {
  /* background-image: url(../images/body-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom; */
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  /* height: 200vh !important; */
}

img {
  width: 100%;
  margin-top: -1px; /*--隙間調整--*/
}

.ttl-color {
  color: #0E3869;
}

.ttl-jp {
  font-size: 16px;
  display: block;
  text-align: center;
  margin-bottom: 2px;
}

.ttl {
  font-family: "Lato", sans-serif;
  font-size: clamp(40px, 10vw, 64px);
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  /* 袋文字 */
  color: transparent;
  -webkit-text-stroke: 1.5px #0E3869;
}

/* グラデーション下線 */
.ttl-box {
  position: relative;
}

.ttl-box::after {
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  margin: 8px auto 0;
  background: linear-gradient(to right, #E2399B, #2275CB);
}

p {
  text-align: justify;
}

.main {
  margin-top: 80px; /* グローバルメニューの高さ分のマージンを追加 */
}

.pc,
.pc-only {
  display: none;
}

/* コンテンツの横幅 */
/* ============================================ */
.o-wrapper {
  width: 100%;
  max-width: 1200px; /*ここでコンテンツの横幅を変更*/
  margin-left: auto;
  margin-right: auto;
}
/* コンテンツの横幅 ここまで */
/* ============================================ */



/* グローバルメニュー（スマホファースト） */
/* ============================================ */
.g-menu {
  padding: 16px;
  /* background-color: #fff; */
  position: fixed; /* 相対位置から固定位置に変更 */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* 他の要素より前面に表示 */
  /* box-shadow: 0 2px 5px rgba(0,0,0,0.1); */
}

.g-menu__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-menu__logo {
  font-size: 12px;
  line-height: 1.4;
  color: #0E3869;
  z-index: 1001; /* ロゴをハンバーガーメニュー展開時も前面に */
}

.logo-en {
  font-family: "Jost";
  letter-spacing: 0.1em;
}

.g-menu__logo a {
  text-decoration: none;
}

/* ハンバーガーメニュー */
.g-menu__hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001; /* 常に最前面に表示 */
}

.g-menu__hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5px;
  background-color: #0E3869;
  transition: all 0.3s;
}

.g-menu__hamburger span:nth-child(1) {
  top: 0;
}

.g-menu__hamburger span:nth-child(2) {
  top: 11px;
  width: 80%;
  right: 0;
}

.g-menu__hamburger span:nth-child(3) {
  bottom: 0;
  width: 60%;
  right: 0;
}

/* スクロール時のスタイル変化 */
.g-menu.scrolled {
  background-color: rgba(255, 255, 255, 0.95); /* 少し透明度を持たせる */
  transition: background-color 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* ハンバーガーメニューがアクティブ時の状態 */
.g-menu__hamburger.active span:nth-child(1) {
  transform: translateY(11px) rotate(-45deg);
  width: 100%;
}

.g-menu__hamburger.active span:nth-child(2) {
  opacity: 0;
  width: 100%;
}

.g-menu__hamburger.active span:nth-child(3) {
  transform: translateY(-11px) rotate(45deg);
  width: 100%;
}

/* ハンバーガーオープン時にスクロール禁止 */
body.no-scroll {
  overflow: hidden;
}

/* ナビゲーション（スマホ・タブレット） */
.g-menu__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding-top: 160px; /* ロゴとハンバーガーの下から表示 */
  z-index: 1000;
  transform: translateX(100%); /* 初期状態は画面外に */
  transition: transform 0.3s;
  overflow-y: auto;
}

.g-menu__nav.active {
  transform: translateX(0); /* メニュー表示時は画面内に */
}

.g-menu__list {
  list-style: none;
  margin: 0;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.g-menu__item {
  margin-bottom: 20px;
  text-align: center;
}

.g-menu__item a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  display: flex;
  padding: 10px;
}

.g-menu__item.counseling {
  background: linear-gradient(to right, #E2399B, #2275CB);
  padding: 4px 24px;
  border-radius: 100px;
}

.g-menu__item.counseling a {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.counseling-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.g-menu__item.contact {
  background: #fff;
  border: 1.5px solid #0E3869;
  padding: 4px 24px;
  border-radius: 100px;
}

.g-menu__item.contact a{
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  color: #0E3869;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* グローバルメニュー（スマホファースト）ここまで */
/* ============================================ */

/* FV */
/* ============================================ */
.fv {
  position: relative;
}

.background {
  background-image: url(../images/fv-bg-sp.jpg);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  height: 85vh;
  min-height: 550px;
  max-height: 800px;
  position: relative;
  margin-top: -117px;
  overflow: hidden;
}

.fv-contents-img {
  width: 75%;
  margin: auto;
  padding-top: 304px;
}

.fv-overlay {
  background: rgba(14, 56, 105, 0.5);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  clip-path: polygon(
    0px 60px,
    100% 0px,
    100% 100%,
    0% 100%
  );
  padding-top: 8%;
}

.fv-overlay .o-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  height: 100%;
}

.fv-contents-subcopy {
  font-size: clamp(18px, 6vw, 25px);
  color: #fff;
  text-align: center;
  line-height: 1.4;
  width: 100%;
  padding: 0 20px 0 37px;
  box-sizing: border-box;
}

.fv-contents-subcopy p {
  text-align: left;
  letter-spacing: 0.1em;
  display: inline-block;
  margin: 0 auto;
}

.fv-contents-point {
  width: 100%;
}

.fv-contents-point ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-contents-point ul li{
  width: clamp(80px, 25vw, 110px);
  height: clamp(80px, 25vw, 110px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(11px, 3.5vw, 15px);
  letter-spacing: 0.1em;
  color: #fff;
  text-align: center;
  margin-left: -5px;
}

.fv-contents-point ul li:nth-child(1) {
  background: rgba(226, 57, 155, 0.8);
}

.fv-contents-point ul li:nth-child(2) {
  background: rgba(154, 124, 201, 0.8);
}

.fv-contents-point ul li:nth-child(3) {
  background: rgba(34, 117, 203, 0.8);
}

/* FV ここまで */
/* ============================================ */

/* コンセプト */
/* ============================================ */

section.concept {
  background: #fff;
  position: relative;
}

.section-contents {
  background: #E8F3FC;
  border-radius: 0 0 0 100px; /* 左下のみ角丸 */
  position: relative;
  overflow: hidden;
}

section.concept .section-contents::before {
  content: "";
  position: absolute;
  top: 30%;
  width: 100%;
  height: 100%;
  background: #2275CB;
  opacity: 0.05;
  clip-path: polygon(
    0px 60px,
    100% 0px,
    100% 100%,
    0% 100%
  );
}

.concept-contents {
  position: relative;
  z-index: 1;
}

.concept-contents__ttl {
  background: #E8F3FC;
  padding-top: 50px;
}

.concept-contents__items {
  height: auto;
  margin-top: 20px;
}

.concept-img-1 {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 764 / 638;
  background-image: url(../images/concept-bg-sp-1.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.concept-img-2 {
  width: 100%;
  aspect-ratio: 750 / 703;
  background-image: url(../images/concept-bg-sp-2.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: -15px;
}

.concept-contents__items-text {
  padding: 0 20px;
}

.concept-contents__items-txt-ttl {
  padding-top: 0;
  color: #2275CB;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  padding-bottom: 16px;
}

.concept-contents__items p {
  line-height: 1.6;
}

.concept-contents__items p:not(.concept-contents__items-txt-ttl) {
  color: #2c2c2c;
}

/* コンセプト ここまで */
/* ============================================ */

/* ポイント */
/* ============================================ */

section.point {
  background: #E8F3FC;
  position: relative;
}

section.point .section-contents {
  background: #fff;
  border-radius: 0 0 100px 0;
  overflow: hidden;
}

section.point .section-contents::before {
  display: none;
}

.point-contents__ttl {
  padding-top: 50px;
}

ul.point-contents__panel {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 0 10px 50px;
}

.point-contents__panel-item {
  flex: 0 0 50%;
  padding: 20px 10px 30px;
  min-height: 150px;
  position: relative;
}

/* 縦線（右側）：1・3・5番目 */
.point-contents__panel-item:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 3%;
  bottom: 3%;
  right: 0;
  width: 1px;
  background: #0E3869;
}

/* 横線（下側）：1〜4番目 */
.point-contents__panel-item:nth-child(-n+4)::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 3%;
  right: 3%;
  height: 1px;
  background: #0E3869;
}

.point-contents__panel-item-img {
  width: 46%;
  margin: 0 auto 16px;
}

.point-contents__panel-item-ttl {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: #2275CB;
  line-height: 1.4;
  margin-bottom: 16px;
}

.point-contents__panel-item-txt {
  text-align: center;
  font-size: 16px;
  line-height: 1.4;
  color: #2c2c2c;
}

/* ポイント ここまで */
/* ============================================ */

/* コース */
/* ============================================ */

section.courses .section-contents::before {
  content: "";
  position: absolute;
  top: 45%;
  width: 100%;
  height: 100%;
  background: #2275CB;
  opacity: 0.05;
  clip-path: polygon(
    100% 60px,
    0% 0px,
    0% 100%,
    100% 100%
  );
}

.courses-contents__ttl {
  padding-top: 50px;
}

ul.courses-contents__panel {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  padding: 0 20px 80px;
  gap: 40px;
}

.courses-contents__panel-item-img {
  position: relative;
  overflow: visible;
}

.courses-img {
  overflow: hidden;
  border-radius: 0 40px 0 40px;
  box-shadow: 0 6px 15px rgba(147, 163, 177, 0.5);
}

.courses-txt {
  position: absolute;
  bottom: -23px;
  right: 7px;
  display: inline-block;
  width: fit-content;
  padding-left: 7px;
  font-family: 'Homemade Apple', cursive;
  font-size: 26px;
  line-height: 2;
  white-space: nowrap;
  background: linear-gradient(to right, #E2399B, #2275CB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(10px);
}

.courses-contents__panel-item-ttl {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #2275CB;
  line-height: 1.4;
  margin: 20px 0 16px;
}

.courses-contents__panel-item-txt {
  font-size: 16px;
  line-height: 1.4;
  color: #2c2c2c;
}

.courses-menu-label {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #E2399B;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0;
}

.courses-menu-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #E2399B, #2275CB);
}

.courses-menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding: 0;
}

.courses-menu-tags li {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px 5px 12px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #fff;
  background: #0E3869;
  border-radius: 20px;
}

.courses-menu-tags li.etc {
  background: none;
  color: #2c2c2c;
  padding: 0;
}

/* コース ここまで */
/* ============================================ */

/* オプション */
/* ============================================ */

.option-contents {
  width: 100%;
  max-width: 800px;
  margin: auto;
  position: relative;
}

.option-contents.is-deco::before,
.option-contents.is-deco::after {
  content: "";
  position: absolute;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}

.option-contents.is-deco::before {
  background-image: url(../images/option-bg-1.png);
  width: 250px;
  height: 250px;
  top: -50px;
  left: -70px;
}

.option-contents.is-deco::after {
  background-image: url(../images/option-bg-2.png);
  width: 300px;
  height: 300px;
  bottom: -40px;
  right: -75px;
  z-index: 5;
}

.option-contents__items-bg {
  margin-top: 50px;
  padding: 0 20px 50px;
}

.option-contents__items {
    background-image: url(../images/option-txtbg-sp.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 40px 0 40px;
    overflow: hidden;
    padding: 50px 15px;
    box-shadow: 0 6px 15px rgba(81, 81, 81, 0.5);
    position: relative;
    z-index: 10;
  }

.option-contents__items .ttl-box {
  padding-top: 0;
  margin-bottom: 40px;
}

.option-contents__items .ttl-jp {
  color: #fff;
  font-weight: 400;
}

.option-contents__items .ttl {
  -webkit-text-stroke: 1px #fff;
}

.option-contents__items .ttl-box::after {
  background: #fff;
}

.option-border-top {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin-bottom: 0;
}

.option-contents__items dl {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.option-contents__items dt {
  width: 80%;
  font-size: 15px;
  line-height: 1.4;
  color: #fff;
  font-weight: 400;
}

.option-contents__items dd {
  width: 20%;
  font-size: 15px;
  text-align: right;
  color: #fff;
  font-weight: 400;
  white-space: nowrap;
}

/* オプション ここまで */
/* ============================================ */

/* QA */
/* ============================================ */
.faq {
  /* background-image: url(../images/qa__bg.jpg);
  background-size: cover; */
  /* padding-bottom: 40px; */
  max-width: 800px;
  margin: auto;
}

section.faq-area {
  background: #E8F3FC;
  position: relative;
  z-index: 1;
}

section.faq-area .section-contents {
  background: #fff;
  border-radius: 0 0 100px 0;
  overflow: hidden;
  padding-bottom: 70px;
  position: relative;
  z-index: 3;
}

.faq__toggle-contents {
  margin-bottom: 15px;
  padding: 0 20px;
}

.faq-contents__ttl {
  margin-bottom: 40px;
}

.faq__toggle-title {
  position: relative;
  cursor: pointer;
  padding: 16px 40px 16px 14px;
  margin-bottom: 10px;
  background: #E8F3FC;
  color: #0E3869;
  border-radius: 0 17px 0 17px;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq__q-icon {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(to right, #E2399B, #2275CB);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: -1px;
}

.faq__q-text {
  line-height: 1.4;
}

.faq__toggle-btn {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}

.faq__toggle-btn:before,
.faq__toggle-btn:after {
  display: block;
  content: "";
  background-color: #0E3869;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__toggle-btn:before {
  width: 1px;
  height: 10px;
}

.faq__toggle-btn::after {
  width: 10px;
  height: 1px;
}

.faq__toggle-title.selected .faq__toggle-btn:before {
  content: normal;
}

.faq__toggle-contents dd {
  display: none;
  background: #fff;
  padding: 10px 16px 10px 14px;
  margin-bottom: 20px;
}

.faq__toggle-contents.is-open dd {
  display: block;
}

.faq__answer-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq__a-icon {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  line-height: 1;
  color: #E2399B;
  margin-top: 2px;
}

.faq__a-text {
  font-size: 14px;
  line-height: 1.8;
  color: #2c2c2c;
  text-align: justify;
}

@media screen and (min-width: 750px) {
  /* .faq {
    padding-bottom: 100px;
  } */
  .faq__toggle-contents {
    padding: 0 80px;
  }
  .faq__toggle-btn:before {
    height: 15px;
  }
  .faq__toggle-btn:after {
    width: 15px;
  }
  .faq__toggle-contents dd {
    font-size: 16px;
    padding: 20px;
  }
}
/* QA ここまで */
/* ============================================ */

/* アクセス */
/* ============================================ */

section.access {
  background: #fff;
  position: relative;
  z-index: 2;
  /* padding-bottom: 80px; */
}

section.access .section-contents {
  background: #E8F3FC;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  padding: 50px 0 60px;
}

section.access .section-contents::before {
  content: "";
  position: absolute;
  top: 40%;
  width: 100%;
  height: 100%;
  background: #2275CB;
  opacity: 0.05;
  clip-path: polygon(
    0px 60px,
    100% 0px,
    100% 100%,
    0% 100%
  );
  z-index: 0;
}

.access-contents {
  position: relative;
  z-index: 1;
}

.access .ttl-box._pc {
  display: none;
}

.access-map__wrapper {
  padding: 0 20px;
  margin-top: 40px;
}

.access-map__inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  padding: 3px;
  background: linear-gradient(to right, #E2399B, #2275CB);
  overflow: hidden;
}

.access-map__inner iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.access-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px 20px 0;
}

.access-info-name {
  color: #0E3869;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}

.access-info-address {
  line-height: 1.6;
  color: #0E3869;
}

.present-btn {
  background: #06C755;
  padding: 4px 15px;
  border-radius: 100px;
  margin-top: 10px;
}

.present-btn a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  justify-content: center;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}

.present-icon {
  width: 30px;
  height: 30px;
  margin-top: 2px;
}

/* アクセス ここまで */
/* ============================================ */

/* offer */
/* ============================================ */

.offer {
  background-image: url(../images/offer-bg-sp.jpg);
  background-size: cover;
}

section.offer .section-contents {
  background: transparent;
  padding: 60px 20px;
}

.offer-contents {
  color: #fff;
}

.offer-contents h3 {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  padding-bottom: 20px;
}

.offer-contents p {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-bottom: 30px;
}

.cta-btn {
  background: linear-gradient(to right, #E2399B, #2275CB);
  padding: 8px 15px;
  border-radius: 100px;
}

.cta-btn a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
  justify-content: center;
  text-align: center;
  color: #fff;
  line-height: 1.4;
}

.cta-icon {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

/* offer ここまで */
/* ============================================ */

/* video */
/* ============================================ */
.video {
  position: relative;
}
.video__item img {
  width: 86%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/* video ここまで */
/* ============================================ */

/* CTAボタン */
/* ============================================ */

/* CTAボタン ここまで */
/* ============================================ */

/* footer */
/* ============================================ */
footer {
  display: block;
  padding: 50px 20px 20px;
  /* border-top: 3px solid #ddd; */
  background: #fff;
}

.footer-contents-info-ttl img {
  width: 200px;
  padding-bottom: 10px;
}

.footer-contents-info p {
  color: #0E3869;
}

.footer-contents-info-subcopy {
  padding-bottom: 20px;
  position: relative;
  color: #0E3869;
}

.footer-contents-info-subcopy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #E2399B, #2275CB);
}

.footer-info-address {
  line-height: 1.6;
  margin-top: 15px;
  color: #0E3869;
}

.footer-contents-sns {
  display: flex;
  gap: 10px;
  padding: 20px 0;
  justify-content: center;
}

.footer-sns-instagram,
.footer-sns-fb {
  width: 40px;
}

footer .copyright {
  /* padding: 10px 0; */
  font-size: 12px;
  /* padding-bottom: 10px; */
}

.copyright p {
  text-align: center;
}

/* footer ここまで */
/* ============================================ */


/* タブレット */
/* ============================================ */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  
}
/* タブレット ここまで */
/* ============================================ */

/* PC */
/* ============================================ */
@media screen and (min-width: 1024px){
  
  .sp,
  .fv-overlay .fv-contents-point {
    display: none;
  }

  .pc,
  .pc-only {
    display: block;
  }

  .section-bg {
    position: relative;
    overflow: hidden;
  }

  .section-contents {
    max-width: 1000px;
    margin: auto;
    border-radius: 0;
  }

  .ttl {
    font-size: 48px;
  }

  .ttl-box::after {
    width: 60px;
  }

  .section-contents::before {
    display: none;
  }

  /* ハンバーガーメニューを非表示 */
  .g-menu__hamburger {
    display: none;
  }

.g-menu .o-wrapper {
  max-width: 100%;
  padding: 0 20px;
}

  .g-menu__nav {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
    padding-top: 0;
    transform: translateX(0);
    overflow-y: visible;
  }

  .g-menu__logo {
    font-size: 16px;
    margin-right: auto;
  }

  .g-menu__list {
    flex-direction: row;
    padding: 0;
  }
  
  .g-menu__item {
    margin-bottom: 0;
    margin-left: 30px;
    text-align: left;
  }
  
  .g-menu__item:first-child {
    margin-left: 0;
  }

  /* FV */
  .background {
    background-image: url(../images/fv-bg-pc.jpg);
    height: 100vh;
    min-height: 650px;
    max-height: 900px;
    margin-top: -80px;
  }

  .fv-contents-ttl {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-20%);
    width: 42%;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2vw;
  }

  .fv-contents-img {
    width: 80%;
    padding-top: 0;
    margin: 0;
  }

  .fv-contents-point.pc-only {
    position: static;
    top: auto;
    left: auto;
    width: 80%;
    margin-top: 0;
  }

  .fv-contents-point.pc-only ul {
    justify-content: center;
    padding-left: 0;
  }

  .fv-overlay {
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
    width: 45%;
    height: 100%;
    clip-path: polygon(
      30% 0%,    /* 左上（斜めの起点） */
      100% 0%,   /* 右上 */
      100% 100%, /* 右下 */
      0% 100%    /* 左下 */
    );
    padding-top: 0;
    justify-content: center;
  }

  .fv-overlay .o-wrapper {
    position: relative;
    height: 100%;
    padding: 0;
  }

  .fv-contents-subcopy {
    position: absolute;
    top: 50%;
    left: 20%;
    /* transform: translateY(-50%); */
    font-size: clamp(20px, 2vw, 32px);
    text-align: left;
  }

  .fv-contents-subcopy p {
    text-align: left;
  }
  /* FV ここまで*/

  /* コンセプト */
  section.concept {
    padding-top: 0;
    position: relative;
    z-index: 1;
    overflow: visible;
  }

  section.concept .section-bg {
    background: #E8F3FC;
    border-radius: 0 0 0 120px;
    overflow: visible;
  }

  section.concept::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 53%;
    height: 100%;
    background: #2275CB;
    opacity: 0.05;
    clip-path: polygon(
      15% 0%,
      100% 0%,
      100% 100%,
      0% 100%
    );
    z-index: 0;
    pointer-events: none;
  }

  section.concept .section-contents {
    overflow: visible;
  }

  .concept-contents {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .concept-contents__ttl {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 0;
    background: transparent;
  }

  .concept-contents__items {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    height: auto;
  }

  .concept-img-1 {
    background-image: url(../images/concept-bg-pc-1.png);
    grid-column: 1;
    aspect-ratio: 771 / 665;
    width: 230%;
    transform: translateX(-15%);
    margin-top: -400px;
    margin-left: -120px;
  }

  .concept-contents__items-text {
    grid-column: 2;
    padding: 20px 30px 80px;
    text-align: center;
  }

  .concept-contents__items-text-ttl {
    font-size: clamp(16px, 1.5vw, 20px);
    margin-top: 30px;
  }

  .concept-contents__items p {
    text-align: center;
    line-height: 1.8;
  }

  .concept-img-2 {
    background-image: url(../images/concept-bg-pc-2.png);
    position: absolute;
    right: -145px;
    bottom: -97px;
    width: 47%;
    aspect-ratio: 717 / 705;
    background-size: cover;
    z-index: 3;
    grid-column: unset;
  }
  /* コンセプト ここまで*/

  /* ポイント */

  section.point {
    background: #E8F3FC;
    z-index: 0;
    position: relative;
  }

  section.point .section-bg {
    background: #fff;
    border-radius: 0 0 120px 0;
  }

  section.point .section-bg::before {
    display: none;
  }

  section.point .section-contents {
    background: transparent;
    border-radius: 0;
    max-width: 1000px;
    margin: auto;
  }

  .point-contents__ttl {
    padding-top: 80px;
  }

  .point-contents__panel-item {
    flex: 0 0 calc(100% / 3);
    padding: 40px 34px 30px;
  }

  .point-contents__panel-item:nth-child(odd)::after {
    display: none;
  }

  .point-contents__panel-item:not(:nth-child(3n))::after {
    content: "";
    position: absolute;
    top: 3%;
    bottom: 3%;
    right: 0;
    left: auto;
    width: 1px;
    background: #0E3869;
    display: block;
  }

  .point-contents__panel-item:nth-child(-n+4)::before {
    display: none;
  }

  .point-contents__panel-item:nth-child(-n+3)::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 3%;
    right: 3%;
    height: 1px;
    background: #0E3869;
    display: block;
  }

  .point-contents__panel-item-img {
    width: 40%;
  }

  /* ポイント ここまで*/

  /* コース*/

  ul.courses-contents__panel {
    flex-direction: row;
    flex-wrap: nowrap;
  }

  .courses-contents__panel-item {
    flex: 1;
  }

  section.courses {
    position: relative;
    z-index: 1;
  }

  section.courses .section-bg {
    background: #E8F3FC;
    border-radius: 0 0 0 120px;
    overflow: visible;
  }

  section.courses::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 53%;
    height: 100%;
    border-radius: 0 0 0 120px;
    background: #2275CB;
    opacity: 0.05;
    clip-path: polygon(
      0% 0%,
      85% 0%,
      100% 100%,
      0% 100%
    );
    z-index: 0;
    pointer-events: none;
  }

  .courses-contents__ttl {
    padding-top: 80px;
  }

  /* コース ここまで*/

  /* オプション*/

  section.option .section-bg {
    overflow: visible;
  }

  section.option {
    z-index: 10;
  }

  .option-contents {
    max-width: 1000px;
  }

  .option-contents__items-bg {
    margin-top: 80px;
  }

  .option-contents.is-deco::before {
    width: 300px;
    height: 300px;
    top: -70px;
    left: -98px;
  }

  .option-contents.is-deco::after {
    width: 400px;
    height: 400px;
    bottom: -80px;
    right: -130px;
  }

  .option-contents__items {
    background-image: url(../images/option-txtbg-pc.jpg);
    width: 100%;
    padding: 50px 100px;
  }

  .option-contents__items dt,
  .option-contents__items dd {
    font-size: 16px;
  }

  /* オプション ここまで*/

  /* FAQ*/

  .faq {
    max-width: 1000px;
    width: 100%;
    padding: 0;
  }

  section.faq-area {
    background: #DEECF9;
    position: relative;
    z-index: 2;
    padding: 0;
  }

  section.faq-area .section-bg {
    background: #fff;
    width: 100%;
    border-radius: 0 0 120px 0;
    position: relative;
    z-index: 2;
    overflow: visible;
  }

  .faq__toggle-contents {
    padding: 0 20px;
  }

  .faq-contents__ttl {
    padding: 30px 0 0;
  }

  .faq__toggle-title {
  padding: 20px 40px 20px 25px;
  margin-bottom: 10px;
  border-radius: 0 17px 0 17px;
  font-size: 18px;
  gap: 20px;
}

  .faq__toggle-btn {
    right: 3%;
  }

  .faq__q-icon,
  .faq__a-icon {
    font-size: 28px;
  }

  .faq__a-icon {
    margin-top: 2px;
  }

  .faq__toggle-contents dd {
    padding: 20px 50px 20px 25px;
  }

  .faq__answer-inner {
    gap: 20px;
}

  .faq__a-text {
  font-size: 16px;
}

  /* FAQ ここまで*/

  /* アクセス*/

  section.access {
    padding: 0;
    position: relative;
    background: transparent;
  }

  section.access .section-contents {
    padding: 80px 0;
  }

  section.access .section-bg {
    position: relative;
    z-index: 0;
    background: #E8F3FC;
    overflow: hidden;
  }

  section.access .section-bg::before {
    content: "";
    position: absolute;
    top: 0px;
    right: 0;
    width: 53%;
    height: 100%;
    background: #2275CB;
    opacity: 0.05;
    clip-path: polygon(
      15% 0%,
      100% 0%,
      100% 100%,
      0% 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  section.access::before {
    display: none;
  }

  .access-info {
    padding: 0 20px;
  }

  .access .ttl-box._sp {
    display: none;
  }

  .access .ttl-box._pc {
    display: block;
    padding-bottom: 0;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
  }

  section.access .ttl-box,
  section.access .ttl-jp,
  section.access .ttl {
    text-align: left;
  }

  section.access .ttl-box::after {
    margin: 8px 0 0;
  }

  .access-contents {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 5;
  }

  .access-map__wrapper {
    margin-top: 0;
  }

  .access-map__inner iframe {
    width: 450px;
    height: 450px;
  }

  .present-btn {
    margin-top: 20px;
    padding: 4px 24px;
  }

  /* アクセス ここまで*/

  /* offer */
  .offer {
    background-image: url(../images/offer-bg-pc.jpg);
  }

  section.offer .section-contents {
    padding: 80px 20px;
  }

  .cta-btn {
    width: 370px;
    margin: 0 auto;
  }

  /* offer ここまで*/

  footer {
  padding: 80px 20px 40px;
  }

  .footer-contents {
    max-width: 1000px;
    margin: 0 auto;
  }

  .footer-contents-info-ttl {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
    padding-bottom: 20px;
  }

  .footer-contents-info-ttl img {
    width: 200px;
    padding-bottom: 0;
  }

  .footer-contents-info-subcopy {
    padding-bottom: 0;
  }

  .footer-contents-info-subcopy::after {
    display: none;
  }

  .footer-contents-info-ttl::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #E2399B, #2275CB);
  }

  .footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .footer-contents-sns {
    padding: 0;
  }

  /* footer */



}
/* PC ここまで */
/* ============================================ */