@charset "UTF-8";
/* ============================================================
   top.css - トップページ専用スタイル
   --------------------------------------------------------------
   読み込み条件: トップページ(Request::is('test2')) でのみ読み込み
   役割: トップページのコンテンツ部分(選ばれる理由・中間CTA・メニューエリア)のスタイル
   含まないもの:
     - ヘッダー(.hero__*, #header, #navigation 等) → header.css へ
     - フッター(#footer 等) → footer.css へ
     - フローティングCTAバー(.floating-*) → common.css へ

   構成:
     1. 共通スタイル(全デバイス共通)
     2. PC版スタイル(@media min-width: 769px)
     3. スマホ版スタイル(@media max-width: 768px)
     4. その他のメディアクエリ(画面サイズ別の微調整)
     5. アニメーション(@keyframes)

   ルール:
     - font-family / font-size はサイト共通CSS(common.css)で管理
     - 個別フォント指定はアイコン用(FontAwesome等)・装飾用(Roboto等)のみ
     - ブレークポイント: PC ≥ 769px / SP ≤ 768px
   ============================================================ */


/* ============================================================
   1. 共通スタイル
   ============================================================ */


/* --- 中間CTA(仮申込み・電話)セクション --- */


.mid-cta-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #fce4ec 0%, #e3f2fd 100%);
  text-align: center;
}

.mid-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.mid-cta-lead {
  margin: 0 0 6px;
  color: #222;
  font-size: 20px;
  font-weight: 700;
}

.mid-cta-sub {
  margin: 0 0 20px;
  color: #666;
  font-size: 13px;
}

.mid-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mid-cta-primary {
  display: block;
  width: 100%;
  max-width: 340px;
  padding: 14px 20px;
  background: #fa436e;
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 3px 12px rgba(250,67,110,0.3);
  transition: opacity 0.3s;
  text-align: center;
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
}

.mid-cta-primary:hover {
  opacity: 0.85;
}

.mid-cta-tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333;
  text-decoration: none;
}

.mid-cta-tel-label {
  color: #888;
  font-size: 12px;
}

.mid-cta-tel-number {
  color: #11A0E5;
  letter-spacing: 0.05em;
  font-size: 22px;
  font-weight: 700;
}


/* --- PC専用改行制御(.br-pc) --- */


.br-pc {
  display: none;
}


/* --- 「詳しく見る」リンク(.reason-link) --- */


.reason-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1.2em;
  padding: 4px 0;
  color: #11A0E5;
  border-bottom: 1px solid #11A0E5;
  transition: opacity 0.3s, gap 0.3s;
  text-decoration: none;
  letter-spacing: 0.02em;
  font-size: 0.95em;
  font-weight: 600;
}

.reason-link::after {
  display: inline-block;
  transition: transform 0.3s;
  content: "→";
  font-size: 1.1em;
}

.reason-link:hover {
  gap: 10px;
  opacity: 0.75;
}

.reason-link:hover::after {
  transform: translateX(2px);
}


/* --- 対象者ラベル・メニューエリア --- */


/* --- 小見出し(#contents 配下) --- */


#contents h5 {
  color: #F07587;
  font-size: 19px;
}


/* --- 装飾線(.content-decorate) - PC版のみ表示 --- */


.content-decorate {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.content-decorate {
  display: none;
}

.content-decorate.content-decorate-1 {
  background-image: url(/img/bg-main-decorate-1.png);
}

.content-decorate.content-decorate-2 {
  background-image: url(/img/bg-main-decorate-2.png);
}

.content-decorate {
  bottom: 0;
  background-repeat: no-repeat;
  background-position: center;
}


/* --- 「選ばれる理由」コンテナ枠と背景 --- */


#container-thought {
  position: relative;
  padding: 30px 0;
  background: url(/img/svg/bg-slash-3.svg);
  background-size: 18px;
}

#container-thought:after,
#container-thought:before {
  position: absolute;
  right: 0;
  left: 0;
  height: 12px;
  background: url(/img/svg/bg-thought.svg);
  background-size: 18px 12px;
  content: '';
}

#container-thought:before {
  top: -5px;
}

#container-thought:after {
  bottom: -5px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

#container-thought h2 {
  margin-bottom: 0;
  text-align: center;
  font-size: 4em;
}

#container-thought h2:before,
#container-topics .mod-topics #switchView:after {
  display: inline-block;
  height: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: top;
  content: '';
}


/* --- 「選ばれる理由」リスト全体(.mod-thought) --- */


#container-thought .mod-thought {
  position: relative;
}

#container-thought .mod-thought .figure {
  position: relative;
  z-index: 5;
}

#container-thought .mod-thought .figure .frame {
  display: block;
  position: relative;
  z-index: 2;
  max-width: 55%;
  margin: 0 auto;
  border-radius: 50em;
}

#container-thought .mod-thought .figure .frame .img {
  display: block;
  padding-top: 100%;
  background-color: #fff!important;
  background-repeat: no-repeat!important;
  background-position: center!important;
  background-size: cover!important;
  border-radius: 50em;
}

#container-thought .mod-thought .figure .frame:before {
  display: block;
  position: absolute;
  top: 43%;
  left: 0;
  padding-top: 68%;
  padding-left: 55%;
  background-image: url(/img/bg-elected-item.png);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: auto 97%;
  color: #97dbf3;
  -webkit-transform: rotate(-19.4deg);
  transform: rotate(-19.4deg);
  line-height: 1;
  content: attr(title);
  font-size: 2em;
}

#container-thought .mod-thought .figure .frame:after {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #97dbf3;
  border-radius: 50em;
  content: '';
}

#container-thought .mod-thought .summary {
  padding: 5.429em .5em 2.143em;
  line-height: 1.8;
}

#container-thought .mod-thought .summary h3 {
  position: relative;
  min-height: 3.5em;
  margin-bottom: 1em;
  padding-left: 5em;
  color: #fa436e;
  line-height: 1.3em;
  font-size: 1.5em;
  font-weight: 100;
}

#container-thought .mod-thought .summary h3 .txt {
  display: inline;
  position: relative;
  z-index: 1;
  background-image: linear-gradient(to right,#fff 50%,transparent 50%);
  background-repeat: no-repeat;
  background-position: 0 bottom;
  background-size: 200% 40%;
  line-height: 1;
}

#container-thought .mod-thought .summary h3 .ico {
  display: inline-block;
  position: absolute;
  top: -.5em;
  left: 0;
  width: 4.4em;
  height: 4.267em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-top: 2.1em;
  background-image: url(/img/ttl-elected-item.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  text-align: center;
}

#container-thought .mod-thought .item {
  position: relative;
  z-index: 5;
  margin-bottom: 2em;
}


/* --- 「TOPICS」コンテナと内部レイアウト --- */


#container-topics .mod-topics {
  position: relative;
  width: 98%;
  margin: 0 auto;
  padding-top: 10px;
}

#container-topics .mod-topics #switchView {
  position: absolute;
  top: -26px;
  right: 0;
  padding: .75em 1em;
  background: #00a0e9;
  color: #fff;
  border: 0;
  border-radius: .3em;
  outline: 0;
  line-height: 1;
  vertical-align: middle;
  font-size: .857em;
}

#container-topics .mod-topics #switchView:after {
  width: 1em;
  margin-left: .3em;
  background-color: #fff;
  background-image: url(/img/svg/ico-arrow-right-inverted.svg);
  border-radius: 10em;
}

#container-topics h2 {
  margin-bottom: 0.5em;
}

#container-topics .slide {
  padding: .5em 1em .5em 1em;
  background: #d5f4ff;
}

#container-topics .slide li {
  margin-bottom: 0;
  border-top: dotted 1px #34b4e2;
  list-style: none;
}

#container-topics .slide li:nth-child(1) {
  border: 0;
}

#container-topics .slide li {
  display: block;
  padding: 1.429em 1.429em 1.429em 1.429em;
  background-image: url(/img/svg/ico-triangle.svg);
  background-repeat: no-repeat;
  background-position: 0.5em 1.75em;
  background-size: 7px auto;
}

#container-topics .slide li dl {
  display: flex;
  flex-direction: column;
}

#container-topics .slide li dt {
  display: inline-block;
  letter-spacing: -.4em;
}

#container-topics .slide li dt .category[data-category=インフォメーション] {
  background-color: #16b701;
}

#container-topics .slide li dt .category[data-category=キャンペーン] {
  background-color: #ff8400;
}

#container-topics .slide li dt .category[data-category=イベント] {
  background-color: #fa436e;
}

#container-topics .slide li dt .category[data-category=お知らせ] {
  background-color: #a55b9a;
}

#container-topics .slide li dt .date {
  display: inline-block;
  width: 7em;
  letter-spacing: 0;
  vertical-align: top;
}

#container-topics .slide li dt .category {
  display: inline-block;
  overflow: hidden;
  width: 8.5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #00a0e9;
  border-radius: .2em;
  text-align: center;
  letter-spacing: 0;
  white-space: nowrap;
  vertical-align: text-bottom;
  text-overflow: ellipsis;
}

#container-topics .slide li dt .topic-image {
  display: flex;
  flex-direction: column;
}

#container-topics .slide li dt .topic-image img:not(:nth-child(1)) {
  margin-top: 1em;
}

#container-topics .slide li dt .category:before {
  color: #fff;
  content: attr(data-category);
  font-size: .714em;
}

#container-topics .slide li dd {
  display: inline-block;
  flex: 1;
  vertical-align: top;
}

.mod-topics .slide li .topic-item dl {
  min-height: 3em;
}

.mod-topics #switchView:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: '';
}

.mod-topics {
  position: relative;
  width: 98%;
  margin: 0 auto;
  padding-top: 10px;
}

.mod-topics #switchView {
  position: absolute;
  top: -26px;
  right: 0;
  padding: .75em 1em;
  background: #00a0e9;
  color: #fff;
  border: 0;
  border-radius: .3em;
  outline: 0;
  line-height: 1;
  vertical-align: middle;
  font-size: .857em;
}

.mod-topics #switchView:after {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: .3em;
  background-color: #fff;
  background-image: url(/img/svg/ico-arrow-right-inverted.svg);
  background-position: center;
  border-radius: 10em;
  vertical-align: top;
}

.mod-topics .slide {
  padding: .5em 10px .5em 0;
  background: #d5f4ff;
}

.mod-topics .slide ul {
  padding-right: 10px;
}

.mod-topics .slide li {
  margin-bottom: 0;
  border-top: dotted 1px #34b4e2;
  list-style: none;
}

.mod-topics .slide li:nth-child(1) {
  border: 0;
}

.mod-topics .slide li .topic-item {
  display: block;
  padding: 1.429em 1.429em 1.429em 2.5em;
  background-image: url(/img/svg/ico-circle.svg);
  background-repeat: no-repeat;
  background-position: 1.35em 1.65em;
  background-size: 12px auto;
}

.mod-topics .slide li .topic-item dt {
  position: relative;
  top: -.5em;
  float: left;
  width: 8.5em;
  letter-spacing: -.4em;
}

.mod-topics .slide li .topic-item dd {
  margin-left: 9.5em;
}

.mod-topics .slide li a.topic-item {
  background-image: url(/img/svg/ico-triangle.svg);
  background-position: 1.5em 1.65em;
  background-size: 7px auto;
}

.mod-topics .slide li .category,
.mod-topics .slide li .date {
  display: inline-block;
  width: 7em;
  letter-spacing: 0;
}

.mod-topics .slide li .category {
  overflow: hidden;
  width: 8.5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #00a0e9;
  border-radius: .2em;
  text-align: center;
  white-space: nowrap;
  vertical-align: text-bottom;
  text-overflow: ellipsis;
}

.mod-topics .slide li .category:before {
  color: #fff;
  content: attr(data-category);
  font-size: .714em;
}

.mod-topics .slide li .category[data-category=インフォメーション] {
  background-color: #16b701;
}

.mod-topics .slide li .category[data-category=キャンペーン] {
  background-color: #ff8400;
}

.mod-topics .slide li .category[data-category=イベント] {
  background-color: #fa436e;
}

.mod-topics .slide li .category[data-category=お知らせ] {
  background-color: #a55b9a;
}


/* --- メニューエリア共通(運転免許の方/教習生メニュー/講習・サポート) --- */

.menu-area {
  padding: 80px 0 90px;
}

.menu-area .inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.menu-area h2 {
  display: block;
  margin: 0 auto 40px;
  color: #333;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.menu-area h2 .en-ttl {
  display: block;
  margin-top: 8px;
  letter-spacing: 0.1em;
  font-size: 18px;
  font-weight: 500;
}

.menu-area h2 .en-ttl.txt-blue {
  color: #3AA1CF;
}

.menu-area .flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 30px;
  margin-bottom: 60px;
}

/* --- バナーカード(.txt-3box + .link-bnr) --- */

.menu-area .txt-3box {
  width: calc(100% / 3 - 20px);
  margin-right: 0;
}

.menu-area .link-bnr {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 15px;
  color: #FFF;
  text-decoration: none;
  transition: opacity 0.3s;
}

.menu-area .link-bnr:hover {
  opacity: 0.7;
  text-decoration: none;
}

.menu-area .link-bnr img {
  width: 100%;
  max-height: 234px;
  border-radius: 15px;
  object-fit: cover;
  vertical-align: bottom;
}

/* --- 波模様の白文字タイトル帯(.bnr-ttl) --- */

.menu-area .bnr-wave .bnr-ttl {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 30px 10px 20px;
  background-image: url(/img/top/bnr_wave.png);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  color: #FFF;
  border-radius: 0 0 15px 15px;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 24px;
  font-weight: 500;
}

/* --- 「これから入校される方へ」「在校生の方へ」「法人・プロ向けの方へ」ラベル --- */

.menu-target-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 24px;
  background: #fff;
  color: #3AA1CF;
  border: 2px solid #3AA1CF;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 700;
}

.menu-target-label--newcomer {
  color: #3AA1CF;
  border-color: #3AA1CF;
}

.menu-target-label--student {
  color: #fff;
  background: #3AA1CF;
  border-color: #3AA1CF;
}

.menu-target-label--business {
  color: #fff;
  background: #ff8a00;
  border-color: #ff8a00;
}

/* --- セクション別の背景色 --- */

.menu-area--for-student,
.area-blue {
  background: #f0f8fb;
}

/* --- 在校生・講習サポートの h2 装飾(松葉のような) --- */

.student-area h2,
.general-area h2 {
  max-width: 620px;
  margin: 0 auto 40px;
}

/* --- 下部の link-btn(運転免許の方ボタン) --- */

.menu-area .link-btn {
  display: inline-block;
  margin: 20px auto 0;
  padding: 14px 60px 14px 40px;
  background: #fa436e;
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 3px 12px rgba(250,67,110,0.3);
  text-decoration: none;
  font-size: 17px;
  font-weight: 700;
  position: relative;
}

.menu-area .link-btn.center {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
}

.menu-area .link-btn.pink {
  background: #fa436e;
}

.menu-area .link-btn:hover {
  opacity: 0.85;
  text-decoration: none;
}

.menu-area .link-btn::after {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  content: '';
  transform: translateY(-50%) rotate(45deg);
}


/* ============================================================
   2. PC版スタイル(画面幅 769px 以上)
   ============================================================ */


@media screen and (min-width: 769px) {
  

  

  

  

  

  

  

  

  

  

  

  .mid-cta-section {
    padding: 50px 40px;
  }

  .mid-cta-lead {
    font-size: 24px;
  }

  .mid-cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  .mid-cta-primary {
    width: auto;
    min-width: 280px;
  }

  .br-pc {
    display: inline;
  }

  .reason-link {
    margin-top: 1.5em;
    font-size: 0.95em;
  }

  .content-decorate {
    display: block;
  }

  #container-thought .mod-thought .figure .frame {
    max-width: 77.6%;
  }

  #container-thought .mod-thought .summary {
    padding: 5.429em .5em 2.143em;
  }

  #container-thought .mod-thought .summary h3 {
    line-height: 1.3em;
    font-size: 2em;
  }

  #container-thought .mod-thought .item-figure {
    display: -ms-grid;
    display: grid;
    grid-template-columns: 40.2% 1fr;
    grid-template-rows: 1fr;
    -ms-grid-columns: 40.2% 1fr;
    -ms-grid-rows: 1fr;
    grid-template-areas: 'img-1 summary-1';
  }

  #container-thought .mod-thought .item-figure .figure {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    grid-area: img-1;
  }

  #container-thought .mod-thought .item-figure .summary {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    grid-area: summary-1;
  }

  #container-thought .mod-thought #item-figure-2,
#container-thought .mod-thought #item-figure-4,
#container-thought .mod-thought #item-figure-6 {
    grid-template-columns: 1fr 40.2%;
    -ms-grid-columns: 1fr 40.2%;
    grid-template-areas: 'summary-2 img-2';
  }

  #container-thought .mod-thought #item-figure-2 .frame:before,
#container-thought .mod-thought #item-figure-4 .frame:before,
#container-thought .mod-thought #item-figure-6 .frame:before {
    left: 34%;
    background-size: auto 97%;
    -webkit-transform: rotate(-78.4deg);
    transform: rotate(-78.4deg);
  }

  #container-thought .mod-thought #item-figure-2 .figure,
#container-thought .mod-thought #item-figure-4 .figure,
#container-thought .mod-thought #item-figure-6 .figure {
    -ms-grid-column: 2;
    -ms-grid-row: 1;
    grid-area: img-2;
  }

  #container-thought .mod-thought #item-figure-2 .summary,
#container-thought .mod-thought #item-figure-4 .summary,
#container-thought .mod-thought #item-figure-6 .summary {
    -ms-grid-column: 1;
    -ms-grid-row: 1;
    grid-area: summary-2;
  }

  #container-topics .mod-topics #switchView:focus,
#container-topics .mod-topics #switchView:hover {
    background: #50c8ff;
  }

  #container-topics .slide .slide-inner {
    overflow: auto;
  }

  #container-topics .slide .slide-inner::-webkit-scrollbar {
    width: 13px;
  }

  #container-topics .slide .slide-inner::-webkit-scrollbar-track {
    background: #fff;
  }

  #container-topics .slide .slide-inner::-webkit-scrollbar-thumb {
    background: #b0dceb;
  }

  .mod-topics #switchView:focus,
.mod-topics #switchView:hover {
    background: #50c8ff;
  }

  .mod-topics .slide .slide-inner {
    overflow: auto;
  }

  .mod-topics .slide .slide-inner::-webkit-scrollbar {
    width: 13px;
  }

  .mod-topics .slide .slide-inner::-webkit-scrollbar-track {
    background: #fff;
  }

  .mod-topics .slide .slide-inner::-webkit-scrollbar-thumb {
    background: #b0dceb;
  }

  .content-decorate {
    display: block;
  }


  /* --- メニューエリア PC版(769px以上) --- */

  .menu-area .flex {
    flex-wrap: wrap;
  }

  .menu-area .flex.bnr-wave .txt-3box,
  .menu-area .flex.bnr-wave .txt-3box:nth-child(3n) {
    width: calc(100% / 3 - 20px);
    margin-right: 0;
  }

  .menu-area .flex.bnr-wave {
    gap: 40px 30px;
    margin-bottom: 60px;
  }

  .menu-area .bnr-wave .bnr-ttl {
    font-size: 24px;
  }

}


/* ============================================================
   3. スマホ版スタイル(画面幅 768px 以下)
   ============================================================ */


@media screen and (max-width: 768px) {
  #contents h3 {
    margin-bottom: 25px;
    padding: 6px 15px 7px;
    font-size: 19px;
  }

  

  .reason-link {
    margin-top: 1em;
    font-size: 0.9em;
  }

  

  

  


  /* --- メニューエリア SP版(768px以下) --- */

  .menu-area {
    padding: 55px 0 60px;
  }

  .menu-area h2 {
    font-size: 24px;
  }

  .menu-area h2 .en-ttl {
    font-size: 14px;
  }

  .menu-area .flex.bnr-wave .txt-3box,
  .menu-area .flex.bnr-wave .txt-3box:nth-child(3n) {
    width: 100%;
    margin-right: 0;
  }

  .menu-area .flex.bnr-wave {
    gap: 30px 0;
    margin-bottom: 40px;
  }

  .menu-area .bnr-wave .bnr-ttl {
    font-size: 19px;
  }

  .menu-area .bnr-wave .txt-3box img {
    height: calc(100vw / 2);
  }

  .menu-target-label {
    font-size: 12px;
    padding: 4px 18px;
  }

}


/* ============================================================
   4. その他のメディアクエリ
   ============================================================ */


@media (min-width: 1024px) {
  .wrap {
    width: 100%;
  }

  

  

  
}

@media (min-width: 360px) {
  #container-thought h2 {
    font-size: 5em;
  }
}

@media (min-width: 425px) {
  #container-thought .mod-thought .figure .frame {
    max-width: 250px;
  }

  #container-thought .mod-thought .summary h3 {
    font-size: 1.813em;
  }

  #container-topics h2 {
    margin-bottom: 1.5em;
  }

  #container-topics .slide li {
    padding: 1.429em 1.429em 1.429em 2.5em;
    background-position: 1.5em 1.75em;
  }

  #container-topics .slide li dl {
    flex-direction: row;
  }

  #container-topics .slide li dt {
    width: 15.7em;
  }

  #container-topics .slide li dd {
    margin-left: 1em;
  }

  .mod-topics .slide li .topic-item dl {
    min-height: 1em;
  }

  .mod-topics .slide li .topic-item dt {
    top: 0;
    width: 15.7em;
  }

  .mod-topics .slide li .topic-item dd {
    margin-left: 16.5em;
  }
}

@media (min-width: 900px) {
  #container-topics h2 {
    margin-bottom: .5em;
  }

  #container-topics .mod-topics #switchView {
    top: -45px;
  }
}

@media (min-width: 1024px) {
  #container-thought .mod-thought .summary h3 {
    font-size: 2.143em;
  }

  #container-topics .mod-topics {
    width: 100%;
    padding-top: 0;
  }

  .mod-topics {
    width: 100%;
    padding-top: 0;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {

  /* --- メニューエリア タブレット版(769-1024px) --- */

  .menu-area .flex.bnr-wave .txt-3box,
  .menu-area .flex.bnr-wave .txt-3box:nth-child(3n) {
    width: 48%;
    margin-right: 0;
  }

  .menu-area .flex.bnr-wave .txt-3box:nth-child(2n),
  .menu-area .flex.bnr-wave .txt-3box:last-child {
    margin-right: 0;
  }

  .menu-area .flex.bnr-wave {
    gap: 35px 0;
    margin-bottom: 50px;
  }

}


/* ============================================================
   5. アニメーション / フォント定義 等
   ============================================================ */


@keyframes scroll-bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}
