/* 共通のスタイル */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 150%;
  background-color: #fff;
}

@keyframes grow-shrink {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.grow-shrink {
  animation: grow-shrink 1.5s ease-in-out infinite;
}

/* スマホ用レイアウト */
@media (max-width: 767px) {
  .splash-mobile {
    display: flex;
    /* スマホ用スプラッシュを表示 */
  }

  .mobile-layout {
    display: none;
    /* 初期状態を非表示に設定 */
  }
}

/* スマホ用スタイル */
.mobile-layout {
  display: block;
  /* スマホ用レイアウトを有効に */
}

.desktop-layout {
  display: none;
  /* デスクトップ用レイアウトを無効に */
}

.splash-inner {
  background: white url(../adlp02/image/bg.png) no-repeat center center;
  background-size: cover;
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #FBF8FF;
  flex-direction: column;
  overflow: hidden;
}

.title-image {
  width: 50%;
  /* Title画像を100%に設定 */
  margin: 30px 0;
}

.logo-image {
  width: 60%;
  /* Logo画像を60%に設定 */
}

.splash-inner.hidden {
  opacity: 0;
  /* フェードアウト効果 */
  transition: opacity 1s ease-in-out;
  /* フェードアウトのトランジション */
}

.mainContent {
  display: none;
  /* 初期状態を非表示に設定 */
  opacity: 1;
  /* 初期状態を透明に設定 */
  justify-content: center;
  width: 100%;
  max-width: 100%;
  /* デバイスの画面サイズに合わせる */
  margin: 0 auto;
  background-color: white;
  z-index: 1;
  position: relative;
  overflow: hidden;
  padding-top: 47px;
}

.mainContent.show {
  display: block;
  /* メインコンテンツが表示されるように設定 */
  opacity: 1;
}

.background {
  background: url('../adlp02/image/fvbg.png') no-repeat center center;
  background-size: cover;
  position: relative;
  width: 100%;
  min-height: auto;
  /* 親要素の高さを100%に設定 */
  display: flex;
  flex-direction: column;
}

.log_container {
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  /* 横方向の中央揃え */
  align-items: center;
  /* 縦方向の中央揃え */
  padding: 15px;
  /* 上下の余白を追加（必要に応じて調整） */
  box-sizing: border-box;
  /* パディングを含めた幅を設定 */
}

.logo-small {
  max-width: 35vw;
  /* ビューポート幅の35%に設定 */
  height: auto;
  /* 高さを自動調整 */
  display: block;
  /* デフォルトのインライン特性をブロックに変更 */
}

.fv {
  text-align: center;
  font-weight: bold;
  width: 100%;
}

.fv img {
  width: 100%;
  height: auto;
}

.fv_inner {
  background: url(../adlp02/image/bg_square.png) no-repeat center top 25%;
  /* 背景画像を上に配置 */
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  padding: 0 0 6px;
}

.fv_title_container {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px 12px 6px;
  box-sizing: border-box;
}

.title_new {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

.fv_photo_container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 6px 12px 0;
  box-sizing: border-box;
}

.photo_05 {
  width: 100%;
  max-width: 92%;
  height: auto;
  display: block;
  border-radius: 0;
}

.fv_text_container,
.fv_text_container2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 80%;
  z-index: 10;
  text-align: left;
  box-sizing: border-box;
}

.fv_text_container {
  bottom: 108px;
}

.fv_text_container2 {
  bottom: 46px;
}

.fv_image_new,
.fv_image_new2 {
  width: 100%;
  height: auto;
  display: block;
}

.fv_list {
  width: 100%;
  padding: 6px 12px 0;
  box-sizing: border-box;
  text-align: center;
  /* テキストを中央揃え */
}

.fv_list img {
  width: 100%;
  max-width: 92%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.fv_image_slider_container {
  display: none;
}

.fv_imageblock {
  display: none;
}

.image-slider {
  display: none;
}

.slider-image {
  display: none;
}

.slider-image.active {
  display: none;
}

.message_inner {
  width: 100%;
  margin: 0.1rem auto 0 auto;
  text-align: center;
  grid-row: 3;
  /* fv_innerの3行目に配置 */
}

.content-container {
  width: 100%;
  background-color: #fff;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
  /* テキストを中央揃え */
}

.logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  /* 画像とテキストの間にスペースを追加 */
}

.logo {
  max-width: 35%;
  /* 画像の最大幅を35%に設定 */
  height: auto;
  /* 高さを自動調整 */
}

.text-after-logo {
  margin-left: 5px;
  /* 画像と「は」の間にスペースを追加 */
  font-size: 1em;
  /* テキストのサイズを調整 */
  color: black;
  /* テキストの色を黒に設定 */
}

.description-container {
  text-align: center;
  /* テキストを中央揃え */
}

.highlight-text {
  font-size: 1.3em;
  /* 大きな字に設定 */
  font-weight: bold;
  color: #6121A1;
  /* 色を#6121A1に設定 */
  margin: 0;
  /* 段落のデフォルトのマージンを削除 */
  white-space: nowrap;
  /* 改行されないようにする */
}

.normal-text {
  font-size: 1em;
  /* 普通の字に設定 */
  color: black;
  /* 色を黒に設定 */
  margin: 0;
  /* 段落のデフォルトのマージンを削除 */
  padding: 10px 0 0;
}

.commentblock {
  height: 50%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1.2;
  padding-bottom: 5%;
}

.contentblock {
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  line-height: 1.2;
}

.flex-wrapper {
  display: flex;
  align-items: baseline;
}

.flex-wrapper small {
  margin-left: 0.2rem;
}

.fv_70off,
.fv_5off {
  padding: 1.5rem 2rem 0;
  margin: 0 auto;
  text-align: left;
  font-weight: bold;
  font-size: 1rem;
  color: black;
  line-height: 1.5;
  letter-spacing: 0.03em;
  position: relative;
}

.notes {
  padding: 0.5rem 2rem;
  margin: 0;
  text-align: left;
  font-size: 0.6rem;
  font-weight: 300;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  color: #666666;
  line-height: 1.5;
  width: calc(100%);
  /* fv_70off/fv_5off に合わせる */
  box-sizing: border-box;
}

.fv_70off .normal,
.fv_5off .normal {
  font-weight: normal;
}

.fv_70off .highlight,
.fv_5off .highlight {
  color: #6121A1;
  font-weight: bold;
  font-size: 1.3rem;
}

.fv_70off .large-highlight,
.fv_5off .large-highlight {
  color: #6121A1;
  font-weight: bold;
  font-size: 2rem;
}

.fv_5off .large-normal {
  font-weight: bold;
  font-size: 2rem;
}

/* 70%のフォントを適用するクラス */
.font-sf-pro {
  font-family: 'SF Pro Display', sans-serif;
}

/* 5万円無料のフォントを適用するクラス */
.font-hiragino {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

.animated-text .char {
  display: inline-block;
  visibility: hidden;
  transform: translateX(10px);
  transition: transform 0.1s ease-out, visibility 0s 0.5s;
}

.animated-text .char.is-visible {
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.1s ease-out;
}

.note {
  font-size: 0.8rem;
  position: absolute;
  top: 3.5px;
  /* Fの上 */
  right: -0.3rem;
  /* Fの右 */
  font-weight: 300;
  color: #6121A1;
  vertical-align: super;
}

/* ラインを表示するクラス */
.line-highlight {
  position: relative;
  display: inline-block;
}

.line-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  /* ラインの位置を調整 */
  width: 0;
  height: 10px;
  /* ラインの高さを調整 */
  background-color: rgba(255, 204, 0, 0.5);
  /* 半透明の黄色 */
  transition: width 0.5s ease-out;
}

.line-highlight.show-line::after {
  width: 100%;
}

.worries {
  background: url(../adlp02/image/AdobeStock_skill.png);
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  font-weight: bold;
  width: 100%;
  height: 53.85vw;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.worry {
  width: 100%;
  text-align: center;
}

.worry img {
  padding: 5rem 0 0;
  max-width: 90%;
  text-align: center;
}

.question span {
  width: 84px;
  position: absolute;
  bottom: -15%;
  left: 50%;
  transform: translateX(-50%);
}

.white_inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: center;
}

.white_inner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.pc_text {
  padding: 2rem 0 0;
}

.top5 {
  padding: 10px 0 1rem;
}

.prices {
  padding: 2rem 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.prices p {
  margin: 0 auto;
  font-weight: bold;
  font-size: 1rem;
  color: black;
  margin-bottom: 2rem;
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0 auto;
}

.product-image {
  width: 100px;
  height: auto;
  padding: 0 0 0 20px;
}

.text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: calc(100% - 150px);
}

.text-container small {
  font-weight: bold;
  display: block;
  margin-top: 1rem;
}

.price-image {
  display: block;
  margin-top: 0.3rem;
  margin-left: 0;
  width: auto;
  height: auto;
}

.hamburger_price {
  width: 160px;
  height: 55px;
}

.park_price {
  width: 175px;
  height: 70px;
}

.price-comment-container {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  margin-top: -10px;
  margin-right: -15rem;
  margin-bottom: 2rem;
}

.price_comment {
  width: 50px;
}

.graph_container {
  width: 178px;
}

.graph_comment {
  width: 288px;
  padding: 0.5rem 0 0;
}

.graph-container p {
  padding: 0.5rem 0 0;
  font-size: 0.7rem;
  font-weight: normal;
  display: block;
  color: #666666;
}

.purple_inner {
  background: #E8E7F0;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}

.purple_inner img {
  width: 90%;
  display: block;
  margin: 0 auto;
}

.reason_inner {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.reason_inner img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.offer {
  padding: 2rem 0 3rem;
  background: white url(../adlp02/image/offerbg.png) no-repeat center center;
  background-size: cover;
}

.offer img {
  width: 100%;
}

.team_ms {
  padding: 1rem 0;
}

.features {
  width: 100%;
  text-align: center;
}

.features img {
  width: 100%;
}

.feature {
  padding: 1rem 0 0;
}

.reason_text {
  padding: 1rem 0;
  text-align: center;
}

.reason_text img {
  width: 80%;
}

.graduate02 {
  padding: 1rem 0;
}

.cto {
  width: 100%;
}

.cto img {
  width: 80%;
}

.title {
  color: #6A5084;
  line-height: 140%;
  letter-spacing: 1.92px;
  font-size: 1.7rem;
}

.subtite {
  color: #A8A7E8;
  font-family: Avenir;
  font-size: 19.692px;
  font-style: normal;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 2.166px;
  text-align: center;
  position: relative;
}

.faqinner {
  width: 100%;
  display: block;
  margin: 0 auto;
  max-width: 100%;
  padding: 1rem 0 0;
}

.faq-section {
  width: 90%;
  margin: 0 auto;
}

.faq {
  border: 1px solid #6121A1;
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
}

.question-container {
  display: flex;
  align-items: center;
  width: 100%;
}

.question-label {
  font-weight: bold;
  color: #6121A1;
  margin-right: 10px;
  flex-shrink: 0;
}

.answer-container {
  display: none;
  margin-top: 10px;
}

.answer-label {
  font-weight: bold;
  color: #000;
  margin-right: 10px;
}

.answer {
  flex-grow: 1;
  display: inline-block;
  white-space: normal;
}

section.cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1.5rem 0;
  background: inherit;
}

section.cta a {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: 390px;
  /* 適切な幅を設定 */
  font-weight: normal;
  background: #06C755;
  color: #fff;
  padding: 10px 20px;
  /* 左右の余白を調整 */
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.5;
  /* 行の高さを調整 */
  text-decoration: none;
  box-shadow: 0 0.25rem 1rem rgb(0 0 0 / 20%);
  position: relative;
}

.btn_02_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* ボタン全体に対して幅を100%に設定 */
  margin: auto;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  pointer-events: all;
  opacity: 1;
  position: relative;
}

.btn_02_inner::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_line.svg) no-repeat center;
  width: 25px;
  height: 25px;
  background-size: contain;
  margin-right: 10px;
  /* ロゴとテキストの間にスペースを追加 */
}

/* PC用スタイル */
@media (min-width: 768px) {
  .mobile-layout {
    display: none;
  }

  .desktop-layout {
    display: none;
    /* 初期状態を非表示に設定 */
    width: 100%;
    min-height: 100vh;
    /* 画面の高さ全体 */
    display: flex;
    flex-direction: column;
    /* フレックスボックスで縦方向にレイアウト */
  }

  .mainContent {
    max-width: 1920px;
    /* 最大幅 */
    min-width: 1200px;
    /* 最小幅 */
    margin: 0 auto;
    width: 100%;
  }

  .splash-desktop {
    display: flex;
    /* PC用スプラッシュを表示 */
  }

  .splash-inner.splash-desktop {
    background-image: url('../adlp02/image/pc_spbg.png');
    /* PC用背景画像 */
    background-size: cover;
    /* 画面いっぱいに表示 */
    background-repeat: no-repeat;
    /* 繰り返しなし */
    background-position: center;
    /* 中央に配置 */
    height: 100vh;
    /* 画面全体の高さ */
    width: 100vw;
    /* 画面全体の幅 */
    margin: 0;
    /* 余白をなくす */
    padding: 0;
    /* パディングをなくす */
    position: fixed;
    /* 画面に固定 */
    top: 0;
    /* 上部に配置 */
    left: 0;
    /* 左側に配置 */
    z-index: 1000;
    /* メインコンテンツの前面に表示 */
    display: flex;
    /* フレックスボックスを使用 */
    justify-content: center;
    /* 水平方向に中央揃え */
    align-items: center;
    /* 垂直方向に中央揃え */
  }

  .log_container {
    width: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    /* 横方向の中央揃え */
    align-items: center;
    /* 縦方向の中央揃え */
    padding: 15px;
    /* 上下の余白を追加（必要に応じて調整） */
    box-sizing: border-box;
    /* パディングを含めた幅を設定 */
  }

  .logo-small {
    max-width: 10vw;
    /* ビューポート幅の35%に設定 */
    height: auto;
    /* 高さを自動調整 */
    display: block;
    /* デフォルトのインライン特性をブロックに変更 */
  }

  .fv_inner {
    background: url(../adlp02/image/pc_fvbg.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    min-height: 500px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3rem 2rem;
  }

  .fv_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    height: 100%;
  }

  .fv_left_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
  }

  .fv_title_container_pc {
    width: 100%;
  }

  .title_new_pc {
    max-width: 100%;
    height: auto;
  }

  .fv_text_container_pc {
    width: 100%;
    display: flex;
    justify-content: flex-start;
  }

  .fv_image_new_pc {
    max-width: 90%;
    height: auto;
  }

  .fv_text_container2_pc {
    width: 100%;
  }

  .fv_image_new2_pc {
    max-width: 100%;
    height: auto;
  }

  .fv_list_container_pc {
    width: 100%;
  }

  .fv_list_pc {
    max-width: 100%;
    height: auto;
  }

  .fv_right_content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .fv_photo_container_pc {
    width: 100%;
    display: flex;
    justify-content: flex-end;
  }

  .photo_05_pc {
    max-width: 90%;
    height: auto;
    border-radius: 10px 0 0 0;
  }

  .white_inner .purple_inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    justify-content: center;
    align-items: center;
  }

  .desktop-container {
    display: flex;
    flex-direction: row;
    /* 子要素を横並びにする */
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 740px;
    position: relative;
  }

  .fv_70off-desktop,
  .fv_5off-desktop {
    padding: 1.5rem 2rem 0;
    margin: 0 auto;
    text-align: left;
    font-weight: bold;
    font-size: 1rem;
    color: black;
    line-height: 1.5;
    letter-spacing: 0.03em;
  }

  .notes-desktop {
    max-width: 740px;
    /* 最大幅をdesktop-containerに合わせる */
    margin: 1rem auto;
    /* 上下のスペースを1rem、中央揃え */
    text-align: left;
    padding: 0.5rem 2rem;
    font-size: 0.6rem;
    font-weight: 300;
    font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
    color: #666666;
    line-height: 1.5;
    box-sizing: border-box;
  }

  .event-cta__banner {
    max-width: 500px;
  }
}

.note {
  font-size: 0.8rem;
  position: absolute;
  top: 3.5px;
  /* Fの上 */
  right: -0.3rem;
  /* Fの右 */
  font-weight: 300;
  color: #6121A1;
  vertical-align: super;
}

.fv_70off-desktop .normal,
.fv_5off-desktop .normal {
  font-weight: normal;
}

.fv_70off-desktop .highlight,
.fv_5off-desktop .highlight {
  color: #6121A1;
  font-weight: bold;
  font-size: 1.3rem;
}

.fv_70off-desktop .large-highlight,
.fv_5off-desktop .large-highlight {
  color: #6121A1;
  font-weight: bold;
  font-size: 2rem;
}

.fv_5off-desktop .large-normal {
  font-weight: bold;
  font-size: 2rem;
}

/* 70%のフォントを適用するクラス */
.font-sf-pro {
  font-family: 'SF Pro Display', sans-serif;
}

/* 5万円無料のフォントを適用するクラス */
.font-hiragino {
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}

.animated-text .char {
  display: inline-block;
  visibility: hidden;
  transform: translateX(10px);
  transition: transform 0.1s ease-out, visibility 0s 0.5s;
}

.animated-text .char.is-visible {
  visibility: visible;
  transform: translateX(0);
  transition: transform 0.1s ease-out;
}

/* ラインを表示するクラス */
.line-highlight {
  position: relative;
  display: inline-block;
}

.line-highlight::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  /* ラインの位置を調整 */
  width: 0;
  height: 10px;
  /* ラインの高さを調整 */
  background-color: rgba(255, 204, 0, 0.5);
  /* 半透明の黄色 */
  transition: width 0.5s ease-out;
}

.line-highlight.show-line::after {
  width: 100%;
}

.pc_worry {
  padding: 2rem 0;
}

.purple_inner img {
  width: 50%;
  padding: 2rem 0;
}

.pc_text {
  padding: 1rem 0 0;
}

.pc_teamms {
  padding: 1rem 0;
}

.pc_graduate02 {
  padding: 2rem 0;
  width: 30%;
}

.pc_cto {
  padding: 2rem 0;
}

.faq-section {
  width: 50%;
  margin: 0 auto;
  padding: 2rem 0 0;
}

section.cta {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 1.5rem 0;
}

section.cta a {
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  max-width: 400px;
  /* 適切な幅を設定 */
  font-weight: normal;
  background: #06C755;
  color: #fff;
  padding: 10px 20px;
  /* 左右の余白を調整 */
  font-size: 1.1rem;
  text-align: center;
  line-height: 1.5;
  /* 行の高さを調整 */
  text-decoration: none;
  box-shadow: 0 0.25rem 1rem rgb(0 0 0 / 20%);
  position: relative;
}

.btn_02_inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  /* ボタン全体に対して幅を100%に設定 */
  margin: auto;
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  pointer-events: all;
  opacity: 1;
  position: relative;
}

.btn_02_inner::before {
  content: "";
  display: inline-block;
  background: url(../img/icon_line.svg) no-repeat center;
  width: 25px;
  height: 25px;
  background-size: contain;
  margin-right: 10px;
  /* ロゴとテキストの間にスペースを追加 */
}

footer {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 10px 0;
  position: relative;
}

.floating-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  display: block;
  line-height: 0;
  font-size: 0;
  transition: transform 0.3s ease;
}

.floating-btn:hover {
  transform: translateY(-50%) translateX(-5px);
}

.floating-btn__img {
  display: block;
  width: 140px;
  height: auto;
}

/* ===== イベントバナー ===== */
.btn_01 {
  text-align: center;
}

/* バナー全体 */
.event-cta__banner {
  display: inline-block;
  width: 100%;
  max-width: 500px;
  margin: 18px auto 14px;
  text-decoration: none;
}

/* バナー画像 */
.event-cta__banner img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.18);
}

/* ===========================================
   Countdown Banner
   =========================================== */
.countdown-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background-color: #8989c2;
  width: 100%;
}

.countdown-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  height: 47px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.countdown-banner__text {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #FFFFFF;
  white-space: nowrap;
}

.countdown-banner__text .sp-only {
  display: none;
}

.countdown-banner__text--bold {
  font-weight: 700;
}

.countdown-banner__timer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.countdown-banner__unit {
  display: flex;
  align-items: flex-end;
  gap: 2px;
}

.countdown-banner__digit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 34px;
  border-radius: 2.31px;
  background-color: #FFFFFF;
  box-shadow: 0.95px 0.95px 3.33px 0px #00000040;
  font-family: 'DIN 2014', 'DIN Alternate', 'Avenir Next', 'Helvetica Neue', sans-serif;
  font-weight: 600;
  font-size: 23.75px;
  color: #3D2785;
  line-height: 1;
  text-align: center;
}

.countdown-banner__label {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  line-height: 130%;
  margin-right: 4px;
}

br.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .mainContent {
    padding-top: 60px;
  }

  .countdown-banner__inner {
    height: 60px;
    justify-content: space-between;
    gap: 0;
    padding: 0 10px;
    max-width: 100%;
  }

  .countdown-banner__text {
    font-size: 10px;
    white-space: normal;
    text-align: left;
    flex-shrink: 0;
  }

  .countdown-banner__text .sp-only {
    display: inline;
  }

  .countdown-banner__timer {
    gap: 2px;
  }

  .countdown-banner__unit {
    gap: 1px;
  }

  .countdown-banner__digit {
    width: 18px;
    height: 28px;
    border-radius: 2.23px;
    font-size: 19px;
    color: #3D2785;
    box-shadow: 0.56px 1.11px 5.13px 0px #00000040;
  }

  .countdown-banner__label {
    font-size: 10.3px;
    margin-left: 2px;
    margin-right: 3px;
  }

  br.sp-only {
    display: block;
  }
}