@charset "UTF-8";
/* マップ型変数breakpointsを定義 */
/* メディアクエリ用のmixinを定義。デフォ値はmd */
/* ====================================================
// common - 共通
==================================================== */
html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #000;
  height: 100%;
  margin: 0 auto;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  body {
    /*     この中をカスタムできる */
    font-size: 4.25vw;
  }
}

a:hover {
  opacity: 0.8;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  a:hover {
    /*     この中をカスタムできる */
    opacity: 1;
  }
}

.btn {
  position: relative;
}

.btn a {
  transition: opacity 0.3s;
}

.is-pc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .is-pc {
    /*     この中をカスタムできる */
    display: none;
  }
}

.is-sp {
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .is-sp {
    /*     この中をカスタムできる */
    display: block;
  }
}

.container {
  min-width: 120rem;
  overflow: hidden;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .container {
    /*     この中をカスタムできる */
    min-width: 320px;
  }
}

.inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 0 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .inner {
    /*     この中をカスタムできる */
    padding: 0 3vw;
  }
}

.section {
  padding: 12rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section {
    /*     この中をカスタムできる */
    padding: 14vw 0;
  }
}

.section__title {
  text-align: center;
  font-size: 4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 10rem;
  position: relative;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__title {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 16vw;
  }
}

.section__title::after {
  content: "";
  width: 30rem;
  height: 0.3rem;
  background-color: #000;
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
}

.section__title .small {
  font-size: 3.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__title .small {
    /*     この中をカスタムできる */
    font-size: 5vw;
  }
}

.section__title .large {
  font-size: 5rem;
  font-family: "Montserrat", sans-serif;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .section__title .large {
    /*     この中をカスタムできる */
    font-size: 10vw;
  }
}

.section__title.-second {
  background-color: #23573b;
  color: #ffff00;
  margin-bottom: 4rem;
}

.red {
  background: linear-gradient(transparent 0%, #800000 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 0.2rem 0.3rem;
  color: #fff;
}

.orange {
  color: #ff4500;
}

.bold {
  font-weight: 500;
}

.yellow {
  color: yellow;
}

.marker {
  background: linear-gradient(transparent 68%, #cab67c 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 0 0;
}

.marker-or {
  background: linear-gradient(transparent 92%, #c1272d 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0 0 0;
}

.marker-go {
  background: linear-gradient(transparent 70%, rgba(181, 154, 72, 0.4) 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0rem 0.2rem 0.3rem;
}

.grey {
  background: linear-gradient(transparent 0%, #666 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 0rem 0.2rem 0.3rem;
  color: #fff;
}

.shadow {
  box-shadow: 0 0 1rem rgba(117, 117, 117, 0.45);
}

.center {
  text-align: center;
}

.cream {
  background-color: #fcf8d4;
}

.nomb {
  margin-bottom: 0 !important;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .nomb {
    /*     この中をカスタムできる */
    margin-bottom: 0 !important;
  }
}

.waves {
  position: relative;
  width: 100%;
  height: 10rem;
  margin-bottom: -11rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .waves {
    /*     この中をカスタムできる */
    height: 20vw;
    margin-bottom: -18vw;
  }
}

/* ====================================================
// header - ヘッダー
==================================================== */
/* ========================================
   ヘッダー
======================================== */
.header {
  width: 100%;
  height: 9.5rem;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.079);
  transition: all 0.3s;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header {
    /*     この中をカスタムできる */
    height: 18vw;
  }
}
@media (max-width: 1100px) {
  .header {
    height: 15vw;
    min-height: 60px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  height: 100%;
  padding-inline: 2%;
}
@media (max-width: 1100px) {
  .header__inner {
    position: relative;
  }
}

/* ロゴ
---------------------------------------- */
.header__logo {
  flex-shrink: 0;
  width: 200px;
  position: relative;
  z-index: 999;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .header__logo {
    /*     この中をカスタムできる */
    width: 40vw;
  }
}
@media (min-width: 768px) and (max-width: 1100px) {
  .header__logo {
    width: 180px;
  }
}
.header__logo a {
  display: block;
  line-height: 0;
}
.header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右側エリア（PC：通常表示、タブレット・スマホ：ハンバーガー内）
---------------------------------------- */
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  gap: 2rem;
  min-width: 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media (max-width: 1100px) {
  .header__right {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    height: 100dvh;
    background-color: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding: 20vw 6vw 6vw;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 1000;
  }
  .header__right.is-open {
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  .header__right {
    /*     この中をカスタムできる */
    max-width: 350px;
  }
}

/* ナビゲーション
---------------------------------------- */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 1100px) {
  .header__nav {
    width: 100%;
    justify-content: center;
    margin-bottom: 3rem;
    flex: 0 0 auto;
  }
}

.header__menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 1100px) {
  .header__menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
}
.header__menu li {
  white-space: nowrap;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 1100px) {
  .header__menu li {
    white-space: normal;
    border-bottom: 1px solid #e0e0e0;
  }
  .header__menu li:first-child {
    border-top: 1px solid #e0e0e0;
  }
}
.header__menu a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s, background-color 0.3s;
}
.header__menu a:hover, .header__menu a:focus {
  opacity: 0.7;
}
.header__menu a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -2px;
}
@media (max-width: 1100px) {
  .header__menu a {
    padding: 1.2rem 1rem;
    font-size: 1.6rem;
  }
  .header__menu a:hover, .header__menu a:focus {
    background-color: #f5f5f5;
    opacity: 1;
  }
}

/* アクションボタン
---------------------------------------- */
.header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
@media (max-width: 1100px) {
  .header__actions {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 3rem;
    flex: 0 0 auto;
  }
}

.header__btn {
  display: block;
  line-height: 0;
  transition: opacity 0.3s;
}
.header__btn:hover, .header__btn:focus {
  opacity: 0.7;
}
.header__btn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.header__btn img {
  height: 8rem;
  width: auto;
  display: block;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media (max-width: 1100px) and (min-width: 768px) {
  .header__btn img {
    height: 6rem;
  }
}
@media screen and (max-width: 768px) {
  .header__btn img {
    /*     この中をカスタムできる */
    height: auto;
    width: 80%;
    max-width: 280px;
    margin: 0 auto;
  }
}
@media (max-width: 1100px) {
  .header__btn {
    width: 100%;
    text-align: center;
  }
}

/* ハンバーガーメニュー
---------------------------------------- */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 14vw;
  height: 14vw;
  max-width: 60px;
  max-height: 60px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1001;
  gap: 0.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media (max-width: 1100px) {
  .header__hamburger {
    display: flex;
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .header__hamburger {
    /*     この中をカスタムできる */
    width: 14vw;
    height: 14vw;
  }
}
.header__hamburger:hover .header__hamburger-line {
  background-color: #666;
}
.header__hamburger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(calc(0.6rem + 3px)) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(3) {
  transform: translateY(calc(-0.6rem - 3px)) rotate(-45deg);
}

.header__hamburger-line {
  width: 70%;
  height: 3px;
  background-color: #333;
  transition: all 0.3s;
  border-radius: 2px;
}

/* オーバーレイ
---------------------------------------- */
.header__overlay {
  display: none !important;
}

/* ボディスクロール防止用
---------------------------------------- */
@media (max-width: 1100px) {
  body.menu-open {
    overflow: hidden;
    /* position: fixed を削除して、代わりに touch-action を使用 */
    touch-action: none;
  }
}

/* ====================================================
// firstView - ファーストビュー
==================================================== */
.firstView {
  margin-top: 7rem;
  background-image: url(../img/FV.webp);
  background-image: url(../img/FV.jpg);
  background-position: center top;
  background-repeat: no-repeat;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView {
    /*     この中をカスタムできる */
    margin-top: 15vw;
    background: none;
  }
}

.firstView__inner {
  max-width: 110rem;
  margin: 0 auto;
  position: relative;
}

.firstView__btn {
  position: absolute;
  width: 53.7rem;
  bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .firstView__btn {
    /*     この中をカスタムできる */
    width: 74%;
    bottom: 7vw;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ====================================================
// achievement - 実績
==================================================== */
.achievement {
  background-image: url(../img/bg1.webp);
  background-image: url(../img/bg1.jpg);
  background-size: cover;
  background-position: center top;
}

.ac__parts1 {
  width: 70%;
  margin: 0 auto 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ac__parts1 {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 8vw;
  }
}

.ac__imgs {
  display: flex;
  gap: 3%;
  justify-content: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ac__imgs {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 3vw;
  }
}

.ac__img {
  width: 80%;
  margin: 0 auto;
}

/* ベーススタイル */
.jichi-news {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin: 40px auto;
  letter-spacing: 0.05em;
  /* ▼ここから変更：常に動き続ける光の川 */
  /* グラデーション構成：
     明るいシルバー → 純白 → シャンパンゴールド → 純白 → 明るいシルバー
     これを繰り返すことで、常に画面のどこかが光っている状態を作る */
  background: linear-gradient(110deg, #e6e6e6 0%, #ffffff 25%, #f3e5ab 50%, #ffffff 75%, #e6e6e6 100%);
  /* 背景サイズを調整して、光の帯を太く滑らかにする */
  background-size: 200% auto;
  /* 文字の形で切り抜く */
  color: #fff; /* fallback */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 常に神々しさを保つための、弱めの発光（常時点灯） */
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
  /* アニメーション：2.5秒で1周。止まらない。 */
  /* linearにすることで、加速・減速のない「ヌルッ」とした動きになる */
  animation: liquidFlow 2.5s linear infinite;
}

/* 常に左から右へ流れ続ける動き */
@keyframes liquidFlow {
  to {
    background-position: 200% center;
  }
}
/* スマホ用調整 */
@media screen and (max-width: 768px) {
  .jichi-news {
    font-size: 19px;
    width: 95%;
  }
}
/* ====================================================
// caution - 注意
==================================================== */
.caution {
  background-image: url(../img/bg2.webp);
  background-image: url(../img/bg2.jpeg);
  background-size: cover;
}

.caution__box {
  border-radius: 1rem;
  border: 0.3rem solid #800000;
  padding: 4rem;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .caution__box {
    /*     この中をカスタムできる */
    padding: 8vw;
  }
}

.caution__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 3rem;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .caution__title {
    /*     この中をカスタムできる */
    font-size: 5vw;
    margin-bottom: 6vw;
  }
}

.caution__title__wrap {
  padding-left: 5rem;
  position: relative;
}

.caution__title__wrap::before {
  content: "";
  display: inline-block;
  background-image: url(../img/caution_ico.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .caution__title__wrap::before {
    /*     この中をカスタムできる */
    width: 10vw;
    height: 10vw;
  }
}

.caution__text {
  font-size: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .caution__text {
    /*     この中をカスタムできる */
    font-size: 4.25vw;
    text-align: left;
  }
}

/* ====================================================
// slideShow - スライドショー
==================================================== */
.result-slider-section {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .result-slider-section {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
  }
}

/* スライダー全体のコンテナ */
.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0; /* 上下の余白（影が切れないように） */
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .slider-container {
    /*     この中をカスタムできる */
    padding: 4vw 0;
  }
}

/* 画像が並ぶトラック */
.slider-track {
  display: flex;
  width: -moz-max-content;
  width: max-content; /* 中身に合わせて幅を確保 */
}

/* JSでこのクラスがついたらスタートさせる */
.slider-container.start-animation .slider-track {
  animation: scroll-loop 40s linear infinite;
}

/* 個々のスライドアイテム */
.slide-item {
  flex-shrink: 0;
  width: 240px; /* カードの幅（適宜調整） */
  margin-right: 20px; /* カード間の余白 */
  /* 影が切れないように少しパディングを持たせる */
  padding: 10px;
  box-sizing: border-box;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .slide-item {
    /*     この中をカスタムできる */
    margin-right: 2vw;
    width: 36vw;
    padding: 2vw;
  }
}

.slide-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* アニメーション定義 */
@keyframes scroll-loop {
  0% {
    transform: translateX(0);
  }
  100% {
    /* JSで複製した分を含めた全体の半分（＝元のセット分）だけ移動 */
    transform: translateX(-50%);
  }
}
/* (任意) 2段構成にするなら、スマホでは少し高さを詰めたい場合 */
@media screen and (max-width: 768px) {
  .slider-container {
    padding: 2vw 0; /* 上下のパディングを少し減らす */
  }
}
/* ====================================================
// gallery - 写真
==================================================== */
.gallery__imgs {
  display: flex;
  gap: 2%;
  justify-content: space-between;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .gallery__imgs {
    /*     この中をカスタムできる */
    flex-wrap: wrap;
    row-gap: 2vw;
  }
}

.gallery__img {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .gallery__img {
    /*     この中をカスタムできる */
    width: 48%;
  }
}

.gallery__img img {
  border-radius: 1rem;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* ====================================================
// problem - お悩み
==================================================== */
.problem {
  background-color: #1a1a2e;
}

.problem .section__title {
  color: #fff;
}

.problem .section__title::after {
  background-color: #fff;
}

.problem__list {
  width: 60%;
  margin: 0 auto 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .problem__list {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 8vw;
  }
}

.problem__list li {
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 4rem;
  position: relative;
  font-size: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .problem__list li {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    padding-left: 8vw;
  }
}

.problem__list li::before {
  content: "";
  display: inline-block;
  background-image: url(../img/check_ico.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 4rem;
  height: 4rem;
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .problem__list li::before {
    /*     この中をカスタムできる */
    width: 8vw;
    height: 8vw;
    left: 0;
  }
}

.problem__list li:not(:last-child) {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .problem__list li:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 3vw;
  }
}

.problem__examples {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 2rem;
  -moz-column-gap: 4%;
       column-gap: 4%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .problem__examples {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 4vw;
  }
}

.problem__example {
  padding: 4rem;
  background-color: #ffffff;
  width: 48%;
  border-radius: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .problem__example {
    /*     この中をカスタムできる */
    width: 90%;
    margin: 0 auto;
    padding: 6vw;
  }
}

.problem__example h3 {
  font-size: 2rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 2.4rem;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .problem__example h3 {
    /*     この中をカスタムできる */
    font-size: 5vw;
  }
}

.problem__example__img {
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .problem__example__img {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.problem__example__img img {
  border-radius: 1rem;
}

/* ====================================================
// ok
==================================================== */
.ok__text {
  font-size: 3.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .ok__text {
    /*     この中をカスタムできる */
    font-size: 6vw;
  }
}

.ok {
  background-image: url(../img/bg3.webp);
  background-image: url(../img/bg3.jpg);
  background-size: cover;
  background-position: center center;
}

/* ====================================================
// method - 戦略
==================================================== */
.method {
  background-color: #fbfbf5;
}

.method__content:not(:last-child) {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 14vw;
  }
}

.method__content h3 {
  font-size: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content h3 {
    /*     この中をカスタムできる */
    font-size: 5vw;
    margin-bottom: 6vw;
  }
}

.method__content h3 .number {
  background-color: #800000;
  color: #fff;
  padding: 0 2rem;
  font-size: 2.6rem;
  border-radius: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content h3 .number {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
  }
}

.method__content__wrap {
  display: flex;
  gap: 5%;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: row-reverse;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content__wrap {
    /*     この中をカスタムできる */
    display: block;
  }
}

.method__content__wrap .method__content__img {
  width: 46%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content__wrap .method__content__img {
    /*     この中をカスタムできる */
    width: 80%;
    margin: 0 auto 8vw;
  }
}

.method__content__wrap .method__content__text {
  text-align: left;
  flex: 1 0 0;
}

.method__content__img {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content__img {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 4vw;
  }
}

.method__content__img img {
  border-radius: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content__img img {
    /*     この中をカスタムできる */
    border-radius: 1rem;
  }
}

.method__content__text {
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content__text {
    /*     この中をカスタムできる */
    text-align: left;
  }
}

.method__content__btn {
  width: 60rem;
  margin: 2rem auto 0;
  text-align: center;
  border: 0.2rem solid #800000;
  border-radius: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content__btn {
    /*     この中をカスタムできる */
    width: 100%;
    margin: 4vw auto 0;
  }
}

.method__content__btn a {
  display: block;
  padding: 2rem 0;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  color: #800000;
  font-weight: 500;
  background-color: #fff;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .method__content__btn a {
    /*     この中をカスタムできる */
    padding: 4vw 0;
  }
}

.criteria,
.column {
  background-color: #fff;
  padding: 6rem 8rem;
  margin: 4rem 0;
  font-family: "Zen Kaku Gothic New", sans-serif;
  border: 0.2rem solid #800000;
  border-radius: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .criteria,
  .column {
    /*     この中をカスタムできる */
    padding: 6vw;
    margin: 8vw 0;
  }
}

.criteria__title,
.column__title {
  font-size: 2.6rem;
  margin-bottom: 2rem;
  font-weight: 500;
  text-align: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .criteria__title,
  .column__title {
    /*     この中をカスタムできる */
    font-size: 5vw;
    margin-bottom: 4vw;
  }
}

.column__desc {
  margin-bottom: 1rem;
  font-size: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .column__desc {
    /*     この中をカスタムできる */
    margin-bottom: 2vw;
    font-size: 4.5vw;
  }
}

.column__img {
  width: 80%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .column__img {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 4vw;
  }
}

.column__img img {
  border-radius: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .column__img img {
    /*     この中をカスタムできる */
    border-radius: 1rem;
  }
}

.criteria__list li {
  padding-left: 4rem;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .criteria__list li {
    /*     この中をカスタムできる */
    padding-left: 8vw;
  }
}

.criteria__list li::before {
  content: "";
  display: inline-block;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2rem;
  height: 2rem;
  position: absolute;
  left: 0rem;
  top: 50%;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .criteria__list li::before {
    /*     この中をカスタムできる */
    top: 2vw;
    transform: translateY(0);
  }
}

.criteria__list li:not(:last-child) {
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .criteria__list li:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 2vw;
  }
}

/* ====================================================
// facility - 施設
==================================================== */
.facility__title {
  font-size: 3rem;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .facility__title {
    /*     この中をカスタムできる */
    font-size: 5.5vw;
    margin-bottom: 8vw;
  }
}

.facility__sub {
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .facility__sub {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
  }
}

.studyRoom {
  margin-bottom: 8rem;
}

.studyRoom__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .studyRoom__cards {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 16vw;
  }
}

.studyRoom__card {
  width: 48%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .studyRoom__card {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.studyRoom__card__img {
  margin-bottom: 2rem;
  border-radius: 1rem;
  overflow: hidden;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .studyRoom__card__img {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.studyRoom__card h4 {
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .studyRoom__card h4 {
    /*     この中をカスタムできる */
    font-size: 5vw;
  }
}

.studyRoom__tags {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .studyRoom__tags {
    /*     この中をカスタムできる */
    gap: 2vw;
    margin-bottom: 2vw;
  }
}

.studyRoom__tag {
  font-size: 1.6rem;
  background-color: #b59948;
  color: #fff;
  padding: 0.2rem 1rem;
  border-radius: 0.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .studyRoom__tag {
    /*     この中をカスタムできる */
    font-size: 4vw;
    padding: 0.2vw 2vw;
  }
}

.otherFacility__card:not(:last-child) {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .otherFacility__card:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 14vw;
  }
}

.otherFacility__card {
  display: flex;
  gap: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .otherFacility__card {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 4vw;
  }
}

.otherFacility__card__img {
  width: 26%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .otherFacility__card__img {
    /*     この中をカスタムできる */
    width: 70%;
    margin: 0 auto;
  }
}

.otherFacility__card__img img {
  border-radius: 1rem;
}

.otherFacility__card__left {
  flex: 1 0 0;
}

.otherFacility__card__left h4 {
  font-size: 2.4rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-left: 2rem;
  position: relative;
  margin-bottom: 1rem;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .otherFacility__card__left h4 {
    /*     この中をカスタムできる */
    font-size: 5.5vw;
    padding-left: 4vw;
    margin-bottom: 2vw;
  }
}

.otherFacility__card__left h4::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 3rem;
  background-color: #800000;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .otherFacility__card__left h4::before {
    /*     この中をカスタムできる */
    width: 1vw;
    height: 6vw;
  }
}

/* ====================================================
// result - 成績上昇例
==================================================== */
.result {
  background-color: #fbfbf5;
}

.result__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .result__title {
    /*     この中をカスタムできる */
    font-size: 5vw;
    margin-bottom: 8vw;
  }
}

.result__cards {
  display: flex;
  justify-content: center;
  gap: 4%;
  flex-wrap: wrap;
  row-gap: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .result__cards {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 8vw;
  }
}

.result__card {
  width: 48%;
  filter: drop-shadow(1rem 1rem 1rem rgba(51, 51, 51, 0.1529411765));
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .result__card {
    /*     この中をカスタムできる */
    width: 90%;
    margin: 0 auto;
  }
}

/* ====================================================
// voice - 体験談
==================================================== */
.voice {
  background-image: url(../img/bg4.webp);
  background-image: url(../img/bg4.jpeg);
  background-color: rgba(255, 255, 255, 0.6);
  background-blend-mode: lighten;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice {
    /*     この中をカスタムできる */
    background-attachment: scroll;
    background-repeat: repeat-y;
    background-size: contain;
  }
}

.voice__content {
  background-color: #fff;
  padding: 6rem;
  border: 0.2rem solid #b59948;
  border-radius: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__content {
    /*     この中をカスタムできる */
    padding: 6vw;
  }
}

.voice__content:not(:last-child) {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__content:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 14vw;
  }
}

.voice__content h3 {
  font-size: 3rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  color: #800000;
  font-weight: 500;
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__content h3 {
    /*     この中をカスタムできる */
    font-size: 5vw;
    margin-bottom: 2vw;
  }
}

.voice__name {
  text-align: center;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__name {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.voice__content__text h4 {
  font-size: 1.8rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background-color: #b59948;
  color: #fff;
  padding-left: 1rem;
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__content__text h4 {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    margin-bottom: 2vw;
    padding-left: 2vw;
  }
}

.voice__catch {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__catch {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    margin-bottom: 4vw;
    text-align: left;
  }
}

.voice__content__text {
  margin-top: 4rem;
  font-size: 1.6rem;
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__content__text {
    /*     この中をカスタムできる */
    margin-top: 8vw;
    font-size: 4.25vw;
  }
}

.voice__content__text.is-active {
  display: block;
}

.voice__btn {
  border: 0.2rem solid #888888;
  text-align: center;
  padding: 1rem;
  cursor: pointer;
  border-radius: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .voice__btn {
    /*     この中をカスタムできる */
    padding: 2vw;
  }
}

/* ====================================================
// parent - 保護者様のお声
==================================================== */
.parent {
  background-color: #f3f3f3;
  background-image: url(../img/bg9.webp);
  background-image: url(../img/bg9.jpg);
  background-size: cover;
  background-position: center;
}

.parent__card {
  background-color: #fdfbf7;
  background-size: 100%;
  padding: 6rem;
  align-items: center;
  position: relative;
  box-shadow: 1rem 1rem 1rem #d2d2d2;
  border-radius: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .parent__card {
    /*     この中をカスタムできる */
    padding: 6vw;
  }
}

.parent__number {
  font-family: "Frank Ruhl Libre", serif;
  font-size: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .parent__number {
    /*     この中をカスタムできる */
    font-size: 6vw;
  }
}

.parent__card:not(:last-child) {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .parent__card:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

.parent__card__catch {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  display: block;
  text-align: center;
  font-weight: 500;
  color: #800000;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .parent__card__catch {
    /*     この中をカスタムできる */
    font-size: 5vw;
    margin-bottom: 2vw;
  }
}

/* ====================================================
// cta
==================================================== */
.cta {
  background-image: url(../img/bg8.webp);
  background-image: url(../img/bg8.jpg);
}

.cta .section__title {
  margin-bottom: 3rem;
}

.cta .section__title::after {
  display: none;
}

.cta__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__text {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    margin-bottom: 8vw;
    text-align: left;
  }
}

.cta__wrap {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__wrap {
    /*     この中をカスタムできる */
    flex-direction: column;
    gap: 4vw;
  }
}

.cta__img {
  width: 40%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__img {
    /*     この中をカスタムできる */
    width: 90%;
    margin: 0 auto;
  }
}

.cta__img img {
  border-radius: 2rem;
}

.cta__list {
  flex: 1 0 0;
}

.cta__btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__btns {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 6vw;
    margin-bottom: 6vw;
  }
}

.cta__btn {
  width: 50%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__btn {
    /*     この中をカスタムできる */
    width: 70%;
  }
}

.cta__btn.-tel {
  width: 42%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__btn.-tel {
    /*     この中をカスタムできる */
    width: 70%;
  }
}

.cta__line {
  width: 48rem;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .cta__line {
    /*     この中をカスタムできる */
    width: 70%;
  }
}

/* ====================================================
// course - 料金・コース
==================================================== */
.course {
  background-color: #fdfdf7;
}

.price {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price {
    /*     この中をカスタムできる */
    margin-bottom: 10vw;
  }
}

.price__text {
  font-size: 2.6rem;
  margin-bottom: 6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__text {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 10vw;
  }
}

.price__text .small {
  font-size: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__text .small {
    /*     この中をカスタムできる */
    font-size: 4vw;
  }
}

.priceContent:not(:last-child) {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .priceContent:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

.priceContent__title {
  font-size: 2.4rem;
  font-weight: 500;
  padding-left: 4rem;
  color: #800000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-bottom: 1rem;
  position: relative;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .priceContent__title {
    /*     この中をカスタムできる */
    font-size: 5vw;
    padding-left: 8vw;
  }
}

.priceContent__title::before {
  content: "";
  width: 3.3rem;
  height: 2.9rem;
  background-image: url(../img/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .priceContent__title::before {
    /*     この中をカスタムできる */
    width: 6vw;
    height: 5vw;
    top: 3vw;
    transform: translateY(0);
  }
}

.price__boxes {
  display: flex;
  justify-content: space-between;
  margin: 4rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__boxes {
    /*     この中をカスタムできる */
    flex-direction: column;
    margin: 8vw 0;
    row-gap: 8vw;
  }
}

.price__box {
  width: 48%;
  background-color: #fff;
  border-radius: 1rem;
  padding: 4rem;
  border: 0.2rem solid #800000;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__box {
    /*     この中をカスタムできる */
    width: 100%;
    padding: 6vw;
  }
}

.price__box__ico {
  width: 10%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__box__ico {
    /*     この中をカスタムできる */
    margin-bottom: 4vw;
  }
}

.price__box__title {
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__box__title {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    margin-bottom: 4vw;
  }
}

.price__box__list li {
  margin-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .price__box__list li {
    /*     この中をカスタムできる */
    margin-bottom: 1vw;
  }
}

.priceCompare {
  margin-bottom: 4rem;
}

.courseMain {
  margin-bottom: 8rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .courseMain {
    /*     この中をカスタムできる */
    margin-bottom: 12vw;
  }
}

.courseMain__title {
  font-size: 2.6rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: bold;
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .courseMain__title {
    /*     この中をカスタムできる */
    font-size: 5vw;
  }
}

.courseMain__cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .courseMain__cards {
    /*     この中をカスタムできる */
    display: block;
  }
}

.courseMainCard {
  flex-basis: 49%;
  display: flex;
  background-color: #fff;
  padding: 1rem;
  border: 0.2rem solid rgb(191, 191, 191);
  align-items: center;
  gap: 1%;
  border-radius: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .courseMainCard {
    /*     この中をカスタムできる */
    padding: 1vw;
  }
}

.courseMainCard:not(:last-child) {
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .courseMainCard:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 2vw;
  }
}

.courseMainCard__img {
  flex-basis: 40%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .courseMainCard__img {
    /*     この中をカスタムできる */
    flex-basis: 36%;
  }
}

.courseMainCard__img img {
  border-radius: 1rem;
}

.courseMainCard__text {
  flex: 1 0 0;
  font-weight: 500;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* ====================================================
// comparison - 比較表
==================================================== */
/* --- ベース設定 --- */
.comparison-section {
  padding: 40px 20px;
}

/* スクロールコンテナ（スマホ用） */
.table-scroll-container {
  overflow-x: auto;
  padding-bottom: 20px; /* 影が切れないように */
  /* スクロールバーのデザイン（Webkit系） */
  scrollbar-width: thin;
  scrollbar-color: #800000 #f0f0f0;
}

.comparison-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate; /* border-collapse: collapseだと影や拡大が効かないため */
  border-spacing: 0;
  white-space: nowrap; /* テキストの改行を制御 */
}

/* --- 各セルの基本スタイル --- */
.comparison-table th,
.comparison-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  font-size: 16px;
  vertical-align: middle;
}

/* --- 左端：項目列（固定表示） --- */
.sticky-col {
  left: 0;
  z-index: 2; /* 他のセルより上に */
  background-color: #f9f9f9; /* 背景色がないと透ける */
  font-weight: bold;
  color: #333;
  border-right: 1px solid #ccc;
  min-width: 120px;
  text-align: left; /* 項目は左寄せ */
}

/* --- 真ん中：一般的な予備校（あえて地味に） --- */
.competitor-col {
  background-color: #f0f0f0; /* 沈んだグレー */
  color: #666; /* 文字を薄く */
}

.comparison-table td:nth-child(2) {
  background-color: #f9f9f9; /* 本文も薄いグレー */
  color: #555;
}

.note {
  font-size: 12px;
  color: #646464;
  display: block;
  margin-top: 5px;
}

/* --- 右端：横浜予備校（最強の強調） --- */
.brand-col {
  background-color: #800000; /* ブランドカラー（エンジ） */
  color: #fff !important;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  /* ヘッダーの角を丸める */
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  /* 影を落とす */
  box-shadow: 0 -5px 15px rgba(128, 0, 0, 0.3);
}

/* 横浜予備校の列全体をハイライト */
.highlight-cell {
  background-color: #fff; /* 真っ白で清潔感 */
  color: #333;
  font-weight: bold;
  font-size: 18px;
  border-left: 2px solid #800000; /* 左右にエンジ色の枠線 */
  border-right: 2px solid #800000;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); /* ふんわり浮き上がらせる */
  z-index: 1;
  position: relative;
}

/* 最終行の処理（角丸と閉じる線） */
.comparison-table tr:last-child .highlight-cell {
  border-bottom: 2px solid #800000;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/* 強調テキスト（カッコ書きなど） */
.emphasis {
  display: block;
  font-size: 13px;
  color: #800000;
  margin-top: 5px;
  font-weight: bold;
}

/* 特定の数字を赤くする */
.text-red {
  color: #d9333f;
  font-size: 22px; /* 合格率などは特大に */
}

/* --- 王冠バッジ（CSSだけで作成） --- */
.crown-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #c5a059; /* ゴールド */
  color: #fff;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 1px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

/* 三角形の吹き出し */
.crown-badge::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #c5a059;
}

.comparison-table-head th {
  font-size: 2rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

/* --- スマホ調整 --- */
@media (max-width: 600px) {
  .comparison-table th,
  .comparison-table td {
    padding: 15px 10px;
    font-size: 14px;
  }
  .brand-col {
    font-size: 16px;
  }
  .highlight-cell {
    font-size: 16px;
  }
  .text-red {
    font-size: 18px;
  }
}
/* ====================================================
// schedule - 時間割例
==================================================== */
.schedule {
  padding: 8rem 0;
  background-image: linear-gradient(90deg, transparent 14px, #ececec 0), linear-gradient(0deg, transparent 14px, #ececec 0);
  background-size: 15px 100%, 100% 15px;
  background-position: left top;
  background-repeat: repeat-x, repeat-y;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .schedule {
    /*     この中をカスタムできる */
    padding: 14vw 0;
  }
}

.schedule__desc {
  font-size: 2rem;
  font-weight: 500;
  color: #800000;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .schedule__desc {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    margin-bottom: 4vw;
  }
}

.schedule__text {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .schedule__text {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

.timetable {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .timetable {
    /*     この中をカスタムできる */
    overflow: auto;
  }
}

.schedule__table {
  border-collapse: collapse;
  background-color: #fff;
  font-size: 1.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .schedule__table {
    /*     この中をカスタムできる */
    width: 250vw;
    font-size: 4vw;
  }
}
.schedule__table th,
.schedule__table td {
  text-align: center;
  padding: 1rem;
  border-bottom: 0.1rem solid #800000;
  vertical-align: middle;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .schedule__table th,
  .schedule__table td {
    /*     この中をカスタムできる */
    padding: 1vw;
  }
}
.schedule__table .youbi th {
  background-color: #ab9c86;
  color: #fff;
  border-left: 0.1rem solid #800000;
}
.schedule__table tbody th {
  background-color: #b33838;
  color: #fff;
  width: 10%;
}
.schedule__table .accent {
  background-color: #f0efeb;
}

/* ====================================================
// promise - 約束
==================================================== */
.promise {
  padding: 8rem 0;
  background-image: linear-gradient(90deg, transparent 14px, #ececec 0), linear-gradient(0deg, transparent 14px, #ececec 0);
  background-size: 15px 100%, 100% 15px;
  background-position: left top;
  background-repeat: repeat-x, repeat-y;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .promise {
    /*     この中をカスタムできる */
    padding: 14vw 0;
  }
}

.promise__card {
  display: flex;
  background-color: #fff;
  padding: 6rem;
  align-items: center;
  gap: 3rem;
  box-shadow: 2rem 2rem 2rem rgba(210, 210, 210, 0.4039215686);
  border-radius: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .promise__card {
    /*     この中をカスタムできる */
    flex-direction: column;
    padding: 6vw;
    row-gap: 4vw;
  }
}

.promise__card:not(:last-child) {
  margin-bottom: 4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .promise__card:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
  }
}

.promise__card__img {
  width: 40%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .promise__card__img {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.promise__card__img img {
  border-radius: 1rem;
}

.promise__card__right {
  flex: 1 0 0;
}

.promise__card__right h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.6rem;
  margin-bottom: 2rem;
  color: #800000;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .promise__card__right h3 {
    /*     この中をカスタムできる */
    font-size: 5vw;
  }
}

.promise__card__right h3 .small {
  font-size: 1.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .promise__card__right h3 .small {
    /*     この中をカスタムできる */
    font-style: 4.25vw;
  }
}

/* ====================================================
// staff - スタッフ紹介
==================================================== */
.staff {
  padding: 8rem 0;
  background-color: #23573b;
  font-family: "Zen Kaku Gothic New", sans-serif;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .staff {
    /*     この中をカスタムできる */
    padding: 14vw 0;
  }
}

.staff .section__title {
  color: #fff;
}

.staff .section__title::after {
  background-color: #fff;
}

.staff__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.staffCard {
  flex-basis: 32%;
  position: relative;
  margin-bottom: 10rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .staffCard {
    /*     この中をカスタムできる */
    flex-basis: 49%;
    margin-bottom: 20vw;
  }
}

.staffCard__img img {
  border-radius: 2rem;
}

.staffCard__sub {
  width: 40%;
  text-align: center;
  background-color: #800000;
  color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem;
  bottom: 0rem;
  z-index: 3;
  border-radius: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .staffCard__sub {
    /*     この中をカスタムできる */
    padding: 1vw;
    font-size: 3.5vw;
    width: 50%;
  }
}

.staffCard__bottom {
  background-color: #fff;
  text-align: center;
  padding: 1.6rem 1rem 1.4rem;
  width: 90%;
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  bottom: -5rem;
  box-shadow: 0 0 1rem rgb(2, 14, 3);
  border-radius: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .staffCard__bottom {
    /*     この中をカスタムできる */
    padding: 4vw 1vw 3vw;
    bottom: -12vw;
  }
}

.staff__btn {
  display: none;
  width: 40%;
  padding: 4vw;
  border: 0.1rem solid rgb(173, 173, 173);
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  color: #fff;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .staff__btn {
    /*     この中をカスタムできる */
    display: block;
    margin-bottom: 8vw;
  }
}

.staff__btn .after {
  display: none;
}

.staff__btn.is-active .before {
  display: none;
}

.staff__btn.is-active .after {
  display: block;
}

.staff__open {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .staff__open {
    /*     この中をカスタムできる */
    display: none;
  }
}

.staff__text {
  margin-bottom: 4rem;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2.4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .staff__text {
    /*     この中をカスタムできる */
    margin-bottom: 8vw;
    font-size: 5vw;
  }
}

/* ====================================================
// qa - よくある質問
==================================================== */
.qa {
  background-color: #fbfbf5;
}

.qaItem:not(:last-child) {
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 5vw;
  }
}

.qaItem__q {
  padding: 2rem;
  padding-left: 2rem;
  position: relative;
  cursor: pointer;
  display: flex;
  font-weight: 500;
  border-bottom: 0.1rem dashed #333;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem__q {
    /*     この中をカスタムできる */
    padding: 2vw 4vw;
    padding-right: 10vw;
    font-size: 4.5vw;
  }
}

.qaItem__q::after {
  content: "";
  display: inline-block;
  background-image: url(../img/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 2.6rem;
  height: 2.6rem;
  position: absolute;
  top: 50%;
  right: 3rem;
  transform: translateY(-50%);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem__q::after {
    /*     この中をカスタムできる */
    width: 5vw;
    height: 5vw;
    right: 3vw;
  }
}

.qaItem__q.is-active::after {
  background-image: url(../img/minus.svg);
}

.qaItem__q .q {
  font-size: 2.6rem;
  font-weight: 500;
  margin-right: 1rem;
  display: inline-block;
  line-height: 1;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem__q .q {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    margin-right: 2vw;
    margin-top: 1.6vw;
  }
}

.qaItem__a {
  padding: 2rem 1rem;
  padding-left: 5rem;
  position: relative;
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .qaItem__a {
    /*     この中をカスタムできる */
    padding: 4vw 3vw 4vw 10vw;
  }
}

/* ====================================================
// message - 塾長メッセージ
==================================================== */
.message__wrap {
  display: flex;
  gap: 4rem;
  align-items: center;
  flex-direction: row-reverse;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .message__wrap {
    /*     この中をカスタムできる */
    display: block;
  }
}

.message__img {
  flex-basis: 34%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .message__img {
    /*     この中をカスタムできる */
    width: 70%;
    margin: 0 auto 6vw;
  }
}

.message__img img {
  border-radius: 2rem;
}

.message__content {
  flex: 1 0 0;
}

.message__head {
  text-align: right;
  margin-bottom: 2rem;
  border-bottom: 0.2rem solid #800000;
  padding-bottom: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .message__head {
    /*     この中をカスタムできる */
    text-align: center;
    margin-bottom: 4vw;
    padding-bottom: 3vw;
  }
}

.message__title {
  font-size: 4rem;
  color: #800000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .message__title {
    /*     この中をカスタムできる */
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}

.message__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.message__text .right {
  text-align: right;
  display: block;
}

.message__img {
  width: 80%;
  margin: 0 auto 4rem;
}

.message__company {
  margin-bottom: 0.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .message__company {
    /*     この中をカスタムできる */
    margin-bottom: 1vw;
  }
}

.message__head .wrap {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .message__head .wrap {
    /*     この中をカスタムできる */
    gap: 4vw;
    justify-content: center;
  }
}

.message__name {
  font-size: 2.7rem;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .message__name {
    /*     この中をカスタムできる */
    font-size: 6vw;
  }
}

.message__name-en {
  font-size: 2rem;
  color: #808080;
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0.05em;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .message__name-en {
    /*     この中をカスタムできる */
    font-size: 6vw;
  }
}

/* ====================================================
// access - 店舗情報
==================================================== */
.access__desc {
  font-size: 2.6rem;
  margin-bottom: 4rem;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .access__desc {
    /*     この中をカスタムできる */
    font-size: 4.5vw;
    margin-bottom: 8vw;
  }
}

.accessBox:not(:last-child) {
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .accessBox:not(:last-child) {
    /*     この中をカスタムできる */
    margin-bottom: 12vw;
  }
}

.accessBox__title {
  background-color: #800000;
  text-align: center;
  color: #fff;
  font-weight: bold;
  padding: 1rem;
  margin-bottom: 2rem;
  font-size: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .accessBox__title {
    /*     この中をカスタムできる */
    padding: 2vw 0;
    margin-bottom: 6vw;
    font-size: 5vw;
  }
}

.accessBox.-second .accessBox__title {
  background-color: #800000;
}

.map {
  width: 70%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .map {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 2vw;
  }
}

.map__wrap {
  position: relative;
  overflow: hidden;
  padding-top: 65%;
}

.map__wrap iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.baseInfo {
  width: 40%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .baseInfo {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

.baseInfo__table {
  border-collapse: collapse;
  font-size: 1.6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
.baseInfo__table th,
.baseInfo__table td {
  border-bottom: 0.1rem solid rgb(175, 175, 175);
  padding: 1rem 0;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .baseInfo__table th,
  .baseInfo__table td {
    /*     この中をカスタムできる */
    padding: 0vw 0 3vw;
    display: block;
    width: 100%;
    text-align: center;
  }
}
.baseInfo__table th {
  text-align: left;
  width: 30%;
  color: #800000;
  font-weight: 500;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .baseInfo__table th {
    /*     この中をカスタムできる */
    border-bottom: none;
    padding: 3vw 0 1vw;
    display: block;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .baseInfo__table {
    /*     この中をカスタムできる */
    font-size: 4.25vw;
    width: 100%;
  }
}
.baseInfo__table a {
  color: blue;
  text-decoration: underline;
}

.accessBox.-second th {
  color: #476f91;
}

/* ====================================================
// contact - お問い合わせ
==================================================== */
.contact {
  padding: 8rem 0;
  background-color: #fdfdf7;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact {
    /*     この中をカスタムできる */
    padding: 14vw 0;
  }
}

.contact__img {
  width: 80%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__img {
    /*     この中をカスタムできる */
    width: 100%;
    margin-bottom: 4vw;
  }
}

.contact__desc {
  margin-bottom: 6rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__desc {
    /*     この中をカスタムできる */
    margin-bottom: 6vw;
    text-align: left;
  }
}

.contact__desc a {
  color: #1a0dab;
  text-decoration: underline;
}

.contact__inner {
  margin: 0 auto;
  background-color: #fff;
  border-radius: 2rem;
  padding: 6rem;
  border-radius: 2rem;
  box-shadow: 1rem 1rem 1rem rgba(51, 51, 51, 0.0352941176);
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__inner {
    /*     この中をカスタムできる */
    padding: 4vw;
    margin: 0 3vw;
  }
}

.contact .small {
  font-size: 1.4rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact .small {
    /*     この中をカスタムできる */
    font-size: 3.5vw;
  }
}

form {
  width: 90%;
  margin: 0 auto;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  form {
    /*     この中をカスタムできる */
    width: 100%;
    font-size: 1.6rem;
  }
}

input,
textarea {
  padding: 1rem 1.6rem;
  font-size: 1.6rem;
  border: 0.1rem solid rgb(193, 193, 193);
  border-radius: 0.4rem;
}

.mb1 {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .mb1 {
    /*     この中をカスタムできる */
    margin-bottom: 1rem;
  }
}

.contact__item {
  display: flex;
  gap: 3%;
  margin-bottom: 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__item {
    /*     この中をカスタムできる */
    display: block;
    margin-bottom: 4vw;
  }
}

.contact__title {
  flex-basis: 30%;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .contact__title {
    /*     この中をカスタムできる */
    margin-bottom: 2vw;
  }
}

.contact__input {
  flex: 1 0 0;
}

.contact__input input {
  width: 100%;
}

textarea {
  width: 100%;
}

input[type=email] {
  width: 100%;
  margin-bottom: 1rem;
}

input[type=radio] {
  width: 2.2rem;
  height: 2.2rem;
  border: 0.1rem solid rgb(193, 193, 193);
  display: inline-block;
  margin-right: 1rem;
  margin-top: 0;
  cursor: pointer;
}

label {
  cursor: pointer;
  border: 0.1rem solid rgb(193, 193, 193);
  border-radius: 0.4rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.require {
  position: relative;
}

.require::after {
  content: "必須";
  display: inline-block;
  background-color: #a6272d;
  border-radius: 0.4rem;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  padding: 0 0.4rem;
}

::-moz-placeholder {
  color: rgb(151, 151, 151);
}

::placeholder {
  color: rgb(151, 151, 151);
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: rgb(151, 151, 151);
}

/* IE対応 */
:-ms-input-placeholder {
  color: rgb(151, 151, 151);
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

input[type=submit] {
  font-size: 1.8rem;
  display: block;
  cursor: pointer;
  border: none;
  background-color: #29b600;
  color: #fff;
  font-weight: bold;
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0;
  transition: opacity 0.3s;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  input[type=submit] {
    /*     この中をカスタムできる */
    width: 100%;
  }
}

input[type=submit]:hover {
  opacity: 0.7;
}

.contact__input.harf input {
  width: 50%;
}

.contact__input.tri input {
  width: 30%;
}

/* ====================================================
// float - フロートボタン
==================================================== */
.float {
  z-index: 9999999999;
  display: none;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float {
    /*     この中をカスタムできる */
    padding: 1vw 0;
    background-color: #fff;
  }
}

.float__btns {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float__btns {
    /*     この中をカスタムできる */
    flex-direction: row;
    -moz-column-gap: 2vw;
         column-gap: 2vw;
    width: 94%;
    margin: 0 auto;
  }
}

.float__btn {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float__btn {
    /*     この中をカスタムできる */
    width: 100%; /* 必要に応じて max-width も可 */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.float__btn img {
  display: block;
  width: 100%;
  height: auto;
}

.float__btn a {
  display: block;
  width: 100%;
}

.float__btn.is-pc {
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .float__btn.is-pc {
    /*     この中をカスタムできる */
    display: none;
  }
}

/* ====================================================
// footer - フッター
==================================================== */
.footer {
  padding: 4rem 0;
  text-align: center;
  font-size: 1.4rem;
  background-color: #800000;
  color: #fff;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer {
    /*     この中をカスタムできる */
    font-size: 3vw;
    padding: 4vw 0;
  }
}

.footer__links {
  display: flex;
  gap: 1rem;
  margin: 0 auto 1rem;
  justify-content: center;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer__links {
    /*     この中をカスタムできる */
    flex-direction: column;
    row-gap: 1vw;
    margin-bottom: 4vw;
    font-size: 3.5vw;
  }
}

.footer__logo {
  width: 10%;
  margin: 0 auto 2rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .footer__logo {
    /*     この中をカスタムできる */
    width: 30%;
    margin-bottom: 2vw;
  }
}

.privacy {
  margin-top: 7rem;
  /* map-get(マップ型変数, キー)で値を取得 */
}
@media screen and (max-width: 768px) {
  .privacy {
    /*     この中をカスタムできる */
    margin-top: 15vw;
  }
}

.privacy__title {
  margin-bottom: 2rem;
}

.privacy__inner {
  max-width: 90rem;
}/*# sourceMappingURL=style.css.map */