@charset "utf-8";

/*
*********************************************************
campaign-contents
*********************************************************
*/
#campaign-contents {
  max-width: 100%;
  margin: 0 auto;
}

/* chrome 画像・グラフィック文字のぼやけ対策 */
@media (-webkit-min-device-pixel-ratio: 0) and (min-resolution: .001dpcm) {
  #campaign-contents img {
    image-rendering: -webkit-optimize-contrast;
  }

  #campaign-contents img[src$=".svg"] {
    image-rendering: auto;
  }
}

/* safari 画像 デフォルト値 */
@media (-webkit-min-device-pixel-ratio: 0) {

  _::-webkit-full-page-media,
  _:future,
  :root #campaign-contents img {
    image-rendering: auto;
  }
}

#campaign-contents .maximg {
  width: 100%;
  height: auto
}

#campaign-contents picture,
#campaign-contents picture img {
  width: 100%;
  height: auto;
  display: block;
}

.inner-xs-wrap2,
.inner-xs-wrap,
.inner-s-wrap,
.inner-wrap {
  width: calc(100% - 16px);
  overflow: visible;
}

@media (max-width: 768px) {

  .inner-xs-wrap2,
  .inner-xs-wrap,
  .inner-s-wrap,
  .inner-wrap {
    width: 100%;
  }
}

#campaign-contents summary {
  list-style: none;
}

#campaign-contents details>summary::-webkit-details-marker {
  display: none;
}

/*
*********************************************************
#section-kv
*********************************************************
*/
#section-kv {
  overflow: hidden;
}

#section-kv .kv-photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1440/460;
  z-index: 1;
}

#section-kv .kv-photo .kv-text {
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
}

#section-kv .kv-photo .kv-note {
  position: absolute;
  width: 100%;
  bottom: 24%;
  left: 83vw;
  z-index: 10;
}

#section-kv .kv-photo .kv-note p {
  font-size: 0.75vw;
  color: #fff;
}

/* ---------------------------------------------  */
/* --------------------- SP --------------------  */
/* ---------------------------------------------  */
@media (max-width:768px) {
  #section-kv .kv-photo {
    aspect-ratio: 768/842;
  }

  #section-kv .kv-photo .kv-note {
    position: absolute;
    width: 100%;
    bottom: 3.5vw;
    left: 0;
  }

  #section-kv .kv-photo .kv-note p {
    font-size: 10px;
    text-align: center;
  }
}

@media (min-width:600px) and (max-width:768px) {
  #section-kv .kv-photo .kv-note p {
    font-size: 2vw;
    text-align: center;
  }

  #section-kv .kv-photo .kv-note {
    bottom: 4vw;
  }
}

@media (max-width:320px) {
  #section-kv .kv-photo .kv-note p {
    font-size: 9px;
  }
}

/*
*********************************************************
#section-greeting
*********************************************************
*/
#section-greeting {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: var(--size64) auto;
}

#section-greeting h2 {
  color: #00398f;
  font-size: 3.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto;
  padding-bottom: var(--size16);
}

#section-greeting .greeting-text {
  position: relative;
  text-align: center;
  font-size: 2.4rem;
  line-height: 2;
  margin: 0 auto;
}

#section-greeting .greeting-text span {
  color: #004898;
  font-size: 3.2rem;
  font-weight: bold;
}

@media (min-width: 769px) and (max-width: 1024px) {
  #section-greeting h2 {
    font-size: 3.6vw;
  }

  #section-greeting .greeting-text {
    font-size: 2.4vw;
  }
}

/* ---------------------------------------------  */
/* --------------------- SP --------------------  */
/* ---------------------------------------------  */
@media (max-width: 768px) {
  #section-greeting {
    margin: var(--size40) auto;
    padding: 0 var(--size16);
  }

  #section-greeting h2 {
    font-size: 6.8vw;
  }

  #section-greeting .greeting-text {
    font-size: 3.8vw;
  }
}

/*
*********************************************************
.greeting-btn
*********************************************************
*/
#section-greeting .greeting-btn {
  margin-top: var(--size40);
}

#section-greeting .greeting-btn-link {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #003893 0%, #4a95d1 78%, #fff8b2 100%);
  max-width: 630px;
  min-height: 100px;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s;
  margin: 0 auto;
  padding: 0 var(--size24);
}

#section-greeting .greeting-btn-link:hover {
  opacity: 0.85;
}

#section-greeting .greeting-btn-text {
  flex: 1;
  color: #fff;
  font-size: 2.0rem;
  padding-right: var(--size8);
  white-space: nowrap;
}

#section-greeting .greeting-btn-img {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  align-self: center;
}

#section-greeting .greeting-btn-img img {
  display: block;
  width: auto;
  height: 90px;
}

#section-greeting .greeting-btn-arrow {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  margin-left: 28px;
}

#section-greeting .greeting-btn-arrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid #022e74;
  border-bottom: 2px solid #022e74;
  transform: rotate(45deg);
}

/* ---------------------------------------------  */
/* --------------------- SP --------------------  */
/* ---------------------------------------------  */
@media (max-width: 768px) {
  #section-greeting .greeting-btn {
    margin-top: var(--size32);
  }

  #section-greeting .greeting-btn-link {
    padding: 0 var(--size16) 0 20px;
    min-height: auto
  }

  #section-greeting .greeting-btn-text {
    font-size: 3.7vw;
    padding: var(--size8) var(--size8) var(--size8) 0;
    white-space: normal;
  }

  #section-greeting .greeting-btn-img {
    flex: 0 0 33%;
    width: 33%;
    padding: 5px var(--size16) 5px 0;
  }

  #section-greeting .greeting-btn-img picture,
  #section-greeting .greeting-btn-img img {
    width: 100%;
    height: auto;
  }

  #section-greeting .greeting-btn-arrow {
    margin-left: 12px;
  }

  #section-greeting .greeting-btn-arrow::before {
    width: var(--size16);
    height: var(--size16);
    border-right-width: 2px;
    border-bottom-width: 2px;
    margin-top: -6px;
  }
}

@media (min-width:600px) and (max-width:768px) {
  #section-greeting .greeting-btn-img {
    flex: 0 0 30%;
    width: 30%;
    padding: var(--size8) var(--size16) var(--size8) 0;
  }
}

@media (max-width:320px) {
  #section-greeting .greeting-btn-link {
    padding: 0 var(--size16);
    min-height: auto
  }
}

/*
***************************************************************
#section-video（動画 Brightcove）
***************************************************************
*/
#section-video {
  padding: 0;
}

/* ---------------------------------------------  */
/* --------------------- SP --------------------  */
/* ---------------------------------------------  */
@media screen and (max-width:768px) {
  #section-video {
    padding: 0 var(--size16);
  }
}

/*
***************************************************************
#section-navigation
***************************************************************
*/
#section-navigation {
  background: linear-gradient(to right, #003f68 0%, #001d2f 11%, #001d2f 89%, #003f68 100%);
  margin: var(--size64) auto;
  padding: var(--size40);
}

#section-navigation #navigation>ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

#section-navigation #navigation>ul>li {
  min-width: 0;
}

/* navigation-btn */
#section-navigation .navigation-btn-link {
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #003893 0%, #4a95d1 78%, #fff8b2 100%);
  max-width: 512px;
  min-height: 45px;
  text-decoration: none;
  overflow: hidden;
  transition: opacity 0.3s;
  padding: 0 var(--size24);
}

#section-navigation .navigation-btn-link:hover {
  opacity: 0.85;
}

#section-navigation .navigation-btn-text {
  flex: 1;
  color: #fff;
  font-size: 2.4rem;
  padding-right: var(--size8);
}

#section-navigation .navigation-btn-arrow {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  margin-left: 20px;
}

#section-navigation .navigation-btn-arrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid #022e74;
  border-bottom: 2px solid #022e74;
  transform: rotate(45deg);
  margin-top: -8px;
}

#section-quiz,
#section-trailseeker,
#section-story,
#section-point,
#section-credit,
#section-bevlife {
  scroll-margin-top: 16px;
}

@media (min-width: 769px) and (max-width: 1136px) {
  #section-navigation {
    padding: var(--size40) var(--size24);
  }

  #section-navigation .navigation-btn-text {
    font-size: 1.8vw;
  }
}

/* ---------------------------------------------  */
/* --------------------- SP --------------------  */
/* ---------------------------------------------  */
@media (max-width: 768px) {
  #section-navigation {
    background: #fff;
    margin: var(--size40) auto;
    padding: 0 var(--size16);
  }

  #section-navigation #navigation>ul {
    grid-template-columns: 1fr;
    gap: var(--size16);
  }

  #section-navigation .navigation-btn-link {
    max-width: inherit;
    min-height: auto;
    padding: var(--size8) var(--size16);
  }

  #section-navigation .navigation-btn-text {
    font-size: 3.8vw;
    padding-right: 0;
  }

  #section-navigation .navigation-btn-arrow {
    margin-left: -8px;
    margin-right: 8px;
  }

  #section-navigation .navigation-btn-arrow::before {
    width: var(--size16);
    height: var(--size16);
    border-right-width: 2px;
    border-bottom-width: 2px;
    margin-top: -6px;
  }
}

/*
***************************************************************
#section-quiz
***************************************************************
*/
#section-quiz {
  background: linear-gradient(to bottom, #003893 0%, #4a95d1 50%, #fff8b2 100%);
  margin: var(--size40) auto;
  padding: var(--size40) 0 var(--size64);
}

#section-quiz h2.quiz-ttl {
  max-width: 740px;
  margin: 0 auto;
  padding-top: var(--size16);
}

#section-quiz h4.step-ttl {
  max-width: 740px;
  margin: 0 auto;
  padding-top: var(--size16);
  position: relative;
  z-index: 2;
}

#section-quiz h3 {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  padding: var(--size16) 0;
}

@media (min-width: 769px) and (max-width: 1024px) {
  #section-quiz h3 {
    font-size: 3vw;
  }
}

/* ---------------------------------------------  */
/* --------------------- SP --------------------  */
/* ---------------------------------------------  */
@media (max-width: 768px) {
  #section-quiz {
    background: linear-gradient(to bottom, #003893 0%, #4a95d1 60%, #fff8b2 100%);
    padding: var(--size32) 0 var(--size40);
  }

  #section-quiz h2.quiz-ttl {
    max-width: inherit;
    width: calc(100% - 40px);
    padding-top: 0;
  }

  #section-quiz h4.step-ttl {
    max-width: inherit;
    padding-top: 0;
  }

  #section-quiz h3 {
    font-size: 4.5vw;
    line-height: 1.6;
  }
}

/*
***************************************************************
#section-step01
***************************************************************
*/
#section-quiz .step-shadow-wrap {
  position: relative;
  margin-bottom: 60px;
  padding: 0 var(--size16);
}

#section-quiz .step-shadow-wrap.step03 {
  margin-bottom: 40px;
}

#section-quiz .base-shadow-wrap {
  position: relative;
  max-width: 886px;
  margin: 0 auto;
  overflow: visible;
}

#section-quiz .base-shadow-wrap>.step-ttl {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  padding-top: 0;
  z-index: 2;
}

#section-quiz .base-shadow-wrap::before {
  content: none;
}

/*
 * 根治策: filter の適用要素をコンテンツの祖先から完全に切り離す。
 *
 * 構造:
 *   .base-shadow-wrap [position:relative]
 *     ├── .base-bg-shadow [position:absolute + clip-path + filter:drop-shadow]
 *     │     ← 影だけ担当・子要素なし・.base-bg-outer の外にいるため
 *     │       drop-shadow が .base-shadow-wrap の全辺に自由に描画される
 *     ├── h4.step-ttl
 *     └── .base-bg-outer
 *           └── .base-bg [clip-path + コンテンツ] ← filter の祖先がゼロ
 */
/* .base-bg-shadow の containing block を .base-shadow-wrap に変更 */
#section-quiz .base-shadow-wrap {
  position: relative;
}

#section-quiz .base-bg-outer {
  position: relative;
}

/* 影専用要素（2層構造）:
 * filter と clip-path を同一要素にかけると、drop-shadow が clip-path でクリップされ
 * 外側に出られない。そのため外側(filter のみ) + 内側(clip-path のみ) に分離する。
 *   .base-bg-shadow        … filter:drop-shadow のみ（clip-path なし → 影が外へ出る）
 *     .base-bg-shadow-shape … clip-path:pentagon のみ（filter なし → Chromium バグ非発生）
 * コンテンツ側(.base-bg-outer > .base-bg)に filter の祖先はゼロのまま維持。
 */
#section-quiz .base-bg-shadow {
  position: absolute;
  inset: 0;
  filter: drop-shadow(7.8472px 7.8472px 10px rgba(0, 0, 0, 0.2));
  pointer-events: none;
  z-index: 0;
}

#section-quiz .base-bg-shadow-shape {
  width: 100%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
  background-color: #b8dbf1;
}

/* step03 は矩形 */
#section-quiz .base-shadow-wrap-rect .base-bg-shadow-shape {
  clip-path: none;
}

/*#section-quiz .base-shadow-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.1);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
  filter: blur(8px);
  transform: translateY(8px) scale(0.995);
  transform-origin: center top;
  pointer-events: none;
  z-index: 0;
}*/
#section-quiz .step-shadow-wrap:first-child {
  position: relative;
  z-index: 3;
}

/* STEP2/3 の上端外側（上方向）に影を描画 */
#section-quiz .step-shadow-wrap+.step-shadow-wrap .base-shadow-wrap::after {
  content: "";
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.05));
  pointer-events: none;
  z-index: 3;
}

#section-quiz .step-shadow-wrap+.step-shadow-wrap {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

#section-quiz .step-shadow-wrap:last-child {
  z-index: 1;
}

#section-quiz .base-bg {
  --step-grid-top: 24px;
  --step-grid-side: 24px;
  --step-grid-bottom: calc(70px + 24px);
  --step-panel-top: 24px;
  position: relative;
  z-index: 1;
  max-width: none;
  background-color: #b8dbf1;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
  margin: 0;
  padding: var(--step-panel-top) 24px calc(24px + 64px);
}

/* 2026.04.05 STEP見出し分の上余白を step ごとに確保 */
#section-step01.base-bg {
  --step-panel-top: 210px;
}

#section-step02.base-bg {
  --step-panel-top: 265px;
}

#section-step03.base-bg {
  --step-panel-top: 220px;
}

#section-quiz .base-bg::before {
  content: "";
  position: absolute;
  top: var(--step-grid-top);
  left: var(--step-grid-side);
  right: var(--step-grid-side);
  bottom: var(--step-grid-bottom);
  background-image: url(/campaign/trailseeker-debutfair/images/quiz-bg-grid-tile.webp);
  background-repeat: repeat-y;
  background-size: 100% auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  pointer-events: none;
  z-index: 0;
}

#section-quiz .base-bg>*:not(.step-grid) {
  position: relative;
  z-index: 1;
}

#section-quiz .base-bg .step-grid {
  display: none;
}

/* step01 layout */
#section-step01 .step01-layout {
  position: relative;
}

#section-step01 .step01-anser {
  max-width: 782px;
  margin: var(--size16) auto;
}

#section-step01 .step01-speech-bubble {
  max-width: 378px;
  margin: 0 auto;
}

#section-step01 .step01-notes {
  position: absolute;
  right: 0;
  top: 18%;
  width: 200px;
}

#section-step01 .step01-layout img {
  display: block;
  width: 100%;
  height: auto;
}

#section-step01 .step01-notes img {
  filter: drop-shadow(1px 3px 4px rgba(0, 0, 0, 0.45));
}

/* 769px〜960px：notesを縮小 */
@media (min-width: 769px) and (max-width: 960px) {
  #section-step01 .step01-notes {
    width: 140px;
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-quiz .base-bg {
    --step-grid-top: 16px;
    --step-grid-side: 16px;
    --step-grid-bottom: calc(70px + 24px);
    --step-panel-top: 24px;
    position: relative;
    z-index: 1;
    max-width: none;
    background-color: #b8dbf1;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 80px), 50% 100%, 0 calc(100% - 80px));
    margin: 0;
    padding: var(--step-panel-top) 24px calc(24px + 64px);
  }

  #section-quiz .step-shadow-wrap+.step-shadow-wrap {
    margin-top: -95px;
  }

  #section-quiz .step-shadow-wrap.step03 {
    margin-bottom: var(--size24);
  }

  #section-quiz .base-shadow-wrap>.step-ttl {
    top: var(--size16);
    max-width: none;
    padding: 0 var(--size16);
  }

  #section-step01 {
    max-width: inherit;
    padding: var(--step-panel-top) var(--size16) var(--size24);
  }

  #section-step01 .cautions-inner {
    margin: 0;
    padding: 0;
  }

  #section-quiz .step-shadow-wrap {
    margin-bottom: var(--size40);
    padding: 0 var(--size16);
  }

  #section-quiz .base-bg {
    --step-grid-bottom: calc(40px + 50px);
    --step-panel-top: var(--size16);
    max-width: inherit;
    padding: var(--step-panel-top) 0 var(--step-grid-bottom);
  }

  #section-step01.base-bg {
    --step-panel-top: calc(var(--size16) + 25.7353%);
  }

  #section-step02.base-bg {
    --step-panel-top: calc(var(--size16) + 32.3529%);
  }

  #section-step03.base-bg {
    --step-panel-top: calc(var(--size16) + 30.8824%);
  }

  #section-step01 .step01-layout {
    position: static;
  }

  #section-step01 .step01-anser {
    max-width: 100%;
    margin: 0;
    padding: var(--size16) var(--size16) 0;
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  #section-quiz .base-shadow-wrap>.step-ttl {
    top: var(--size32);
  }

  #section-step01 .step01-anser {
    padding: var(--size32) var(--size16) 0;
  }
}

/*
*********************************************************
acc-wrap
*********************************************************
*/
#section-step01 .acc-wrap {
  max-width: 630px;
  margin: var(--size16) auto 0;
}

#section-step01 .acc-wrap.nml-acc-wrap {
  border-top: none;
  border-bottom: none;
}

#section-step01 .acc-wrap.nml-acc-wrap .triggle {
  background-color: #004893;
  color: #fff;
  font-size: 2.0rem;
  font-weight: normal;
  text-align: center;
  padding: 10px 56px;
  -webkit-transition: all .7s;
  transition: all .7s;
}

#section-step01 .acc-wrap.nml-acc-wrap .triggle:hover {
  opacity: 0.8;
}

#section-step01 .nml-toggle-icn::before,
#section-step01 .nml-toggle-icn::after {
  content: "";
  background-color: var(--white);
  position: absolute;
}

#section-step01 .nml-toggle-icn::after {
  width: 2px;
  height: 30px;
  right: 39px;
  top: calc(50% - 14px);
  transition: var(--transition);
  border: none;
}

#section-step01 .nml-toggle-icn::before {
  width: 30px;
  height: 2px;
  right: 25px;
  left: auto;
  top: 50%;
}

#section-step01 .acc-wrap.nml-acc-wrap .acc-contents-inner {
  background-color: #fff;
  padding: var(--size16) var(--size32);
}

#section-step01 .bld-wrap {
  display: flex;
  align-items: center;
  gap: var(--size32);
}

#section-step01 .bld-text {
  flex: 1;
  font-size: 1.4rem;
  text-align: left;
  line-height: 1.8;
}

#section-step01 .bld-badge {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

#section-step01 .bld-badge img {
  display: block;
  width: 150px;
  height: auto;
}

#section-step01 .bld-badge-caption {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
}

#section-step01 .btn-wrap {
  margin-top: var(--size32);
}

#section-step01 .btn-nml {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: none;
  background-color: #f08300;
  width: 628px;
  max-width: 100%;
  min-height: 56px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 100vw;
  margin: 0 auto;
  padding: 6px;
}

#section-step01 .btn-nml:hover {
  opacity: .7;
}

#section-step01 .btn-wrap .btn-nml-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  margin-right: var(--size16);
}

#section-step01 .btn-wrap .btn-nml-arrow::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-step01 .acc-wrap {
    max-width: inherit;
    padding: 0 var(--size16);
  }

  #section-step01 .acc-wrap.nml-acc-wrap .triggle {
    font-size: 3.4vw;
    padding: 10px var(--size24);
  }

  #section-step01 .nml-toggle-icn::after {
    width: 2px;
    height: var(--size24);
    right: 22px;
    top: calc(50% - 13px);
    transition: var(--transition);
    border: none;
  }

  #section-step01 .nml-toggle-icn::before {
    width: var(--size24);
    height: 2px;
    right: 11px;
    left: auto;
    top: calc(50% - 2px);
  }

  #section-step01 .acc-wrap.nml-acc-wrap .acc-contents-inner {
    padding: var(--size16);
  }

  #section-step01 .bld-wrap {
    gap: var(--size16);
  }

  #section-step01 .bld-text {
    width: 80%;
    font-size: 2.8vw;
    text-align: justify;
  }

  #section-step01 .bld-badge {
    width: 20%;
    display: flex;
    align-items: center;
  }

  #section-step01 .btn-wrap {
    margin-top: var(--size16);
    margin-bottom: 0;
    padding: 0 var(--size16) var(--size8);
  }

  #section-step01 .btn-nml {
    width: inherit;
    min-height: auto;
    font-size: 3.4vw;
    padding: 10px var(--size24);
  }

  #section-step01 .btn-wrap .btn-nml-arrow {
    margin-right: var(--size8);
  }
}

@media (max-width:320px) {
  #section-step01 .acc-wrap.nml-acc-wrap .triggle {
    padding: 10px var(--size16);
    text-align: left;
  }
}

/*
***************************************************************
#section-step02
***************************************************************
*/
#section-step02 .car-wrap {
  margin: 0 auto;
}

#section-step02 .car-text {
  font-size: 2.0rem;
  text-align: center;
  padding-top: var(--size16);
}

#section-step02 .car-photo {
  overflow: hidden;
  /* margin collapsing 対策 */
  max-width: 790px;
  margin: 0 auto;
  padding-top: var(--size24);
}

@media (min-width: 769px) and (max-width: 980px) {
  #section-step02 .car-text {
    font-size: 2.2vw;
    padding-top: var(--size8);
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-step02 .car-text {
    font-size: 3.6vw;
    line-height: 1.6;
    padding-top: var(--size8);
  }

  #section-step02 .car-photo {
    max-width: inherit;
    padding-bottom: var(--size8);
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  #section-step02 .car-text {
    padding-top: var(--size32);
  }
}

/*
***************************************************************
#section-step03
***************************************************************
*/
#section-step03.base-bg {
  --step-grid-bottom: 40px;
  clip-path: none;
  /* isolation: isolate を除去。
   * .base-bg は position:relative + z-index:1 によって既に独立した
   * スタッキングコンテキストを形成しているため、isolation は完全に冗長。
   * かつ Chromium では filter(祖先) + isolation + z-index:-1 の三重複合で
   * 遅延ロード画像が GPU 合成レイヤーの無効化失敗により不描画になるバグが発生する。
   */
  padding: var(--step-panel-top) 24px calc(24px + 20px);
}

#section-step03 .charger-wrap {
  max-width: 780px;
  margin: 0 auto;
}

#section-step03 .charger-photo {
  position: relative;
  margin: -20px auto 0;
  z-index: -1;
}

#section-step03 .charger-photo img.charger {
  display: block;
  width: auto;
}

#section-step03 .charger-photo .charger-text {
  position: absolute;
  top: var(--size40);
  left: 0;
}

#section-step03 .charger-photo .charger-text .text-lead {
  font-size: 1.8rem;
}

#section-step03 .charger-photo .charger-text .text-spec {
  font-size: 1.4rem;
  padding-top: var(--size16);
}

#section-step03 .charger-photo .charger-icon {
  position: absolute;
  top: 0;
  right: 0;
}

#section-step03 .charger-note {
  max-width: 780px;
  font-size: 1.2rem;
  padding: var(--size16) 0 14px;
  margin: 0 auto;
}

@media (min-width: 769px) and (max-width: 900px) {
  #section-step03 .charger-note {
    max-width: 780px;
    font-size: 1.2rem;
    margin: 0 auto;
  }

  #section-step03 .charger-note br {
    display: none;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  #section-step03 .charger-photo .charger-text .text-lead {
    font-size: 1.8vw;
  }

  #section-step03 .charger-photo .charger-text .text-spec {
    font-size: 1.4vw;
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-step03.base-bg {
    padding: var(--step-panel-top) var(--size16) var(--size32) var(--size16);
  }

  #section-step03 .charger-text .text-lead {
    text-align: center;
    font-size: 3.6vw;
    line-height: 1.6;
    padding-top: var(--size8);
  }

  #section-step03 .charger-photo {
    position: relative;
    margin: 0 auto;
  }

  #section-step03 .charger-note {
    position: relative;
    width: 72%;
    max-width: inherit;
    font-size: 2.5vw;
    line-height: 1.6;
    text-align: justify;
    margin: clamp(-7em, -14vw, -4em) 0 0 auto;
    padding: var(--size32) 0 var(--size8);
    z-index: 1;
  }
}

@media (max-width: 390px) {
  #section-step03 .charger-note {
    font-size: 1.0rem;
  }
}

/*
***************************************************************
#section-drivecar
***************************************************************
*/
#section-drivecar {
  padding: 0 var(--size8);
  margin-bottom: var(--size40);
}

#section-drivecar .drivecar-inner {
  position: relative;
  max-width: 886px;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 7.8472px 7.8472px 7.8472px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  padding: var(--size32) var(--size16);
  overflow: visible;
}

#section-drivecar .btn-wrap {
  margin-top: 0;
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-drivecar {
    padding: 0 var(--size16);
    margin: var(--size40) 0;
  }

  #section-drivecar .drivecar-inner {
    max-width: inherit;
    padding: var(--size24) var(--size16);
  }
}

/*
***************************************************************
#section-story
***************************************************************
*/
#section-story {
  padding: 0 var(--size16);
}

#section-story .story-inner {
  position: relative;
  max-width: 886px;
  background-color: #fdf2e7;
  box-shadow: 7.8472px 7.8472px 7.8472px rgba(0, 0, 0, 0.15);
  margin: 0 auto;
  padding: var(--size40) var(--size16) var(--size16);
  overflow: visible;
}

#section-story h4.story-ttl {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  padding-bottom: var(--size24);
}

#section-story .story-wrap {
  position: relative;
  width: min(100vw, 960px);
  left: 50%;
  transform: translateX(-50%);
  margin-top: max(-140px, -14.583vw);
  margin-bottom: max(-40px, -4.167vw);
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-story {
    padding: 0 var(--size16);
  }

  #section-story .story-inner {
    width: 100%;
    max-width: inherit;
    padding: var(--size16) 0;
  }

  #section-story .story-wrap {
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    margin-top: calc(var(--size16) * -1);
    margin-bottom: -30px;
  }

  #section-story h4.story-ttl {
    width: 90%;
    max-width: inherit;
    padding-bottom: var(--size8);
  }

  #section-story .story-wrap {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: -24px;
    padding: 0 var(--size8);
  }
}

/*
***************************************************************
#section-trailseeker
***************************************************************
*/
#section-trailseeker {
  position: relative;
  background: #003F68;
  background: linear-gradient(-90deg, rgba(0, 63, 104, 1) 0%, rgba(0, 29, 47, 1) 20%, rgba(0, 29, 47, 1) 80%, rgba(0, 63, 104, 1) 100%);
  margin: 0 auto;
}

#section-trailseeker .trailseeker-inner {}

#section-trailseeker .trailseeker-exterior {
  position: relative;
}

#section-trailseeker .trailseeker-exterior img {
  display: block;
  width: 100%;
  height: auto;
}

#section-trailseeker h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

#section-trailseeker .trailseeker-photo-wrap {
  display: flex;
  gap: 19px;
  padding-top: var(--size16);
}

#section-trailseeker .trailseeker-photo-wrap>div {
  flex: 1;
  min-width: 0;
  max-width: 364px;
}

#section-trailseeker .trailseeker-photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-trailseeker .trailseeker-inner {
    padding: var(--size16);
  }

  #section-trailseeker h2 {}

  #section-trailseeker .trailseeker-photo-wrap {
    gap: 4%;
    padding-top: var(--size16);
  }
}

/*
***************************************************************
#section-trailseeker .trailseeker-features-wrap
***************************************************************
*/
#section-trailseeker .trailseeker-features-wrap {
  display: flex;
  gap: var(--size40);
  margin-top: var(--size48);
}

#section-trailseeker .feature {
  flex: 1;
  min-width: 0;
}

#section-trailseeker .feature h3 {
  background-color: #003893;
  color: #fff;
  font-size: 3.0rem;
  font-weight: bold;
  text-align: center;
  padding: var(--size8);
  margin-bottom: var(--size24);
}

#section-trailseeker .motor .feature-img {
  margin-left: 25px;
}

#section-trailseeker .cargoroom .feature-img {
  padding-right: 25px;
}

#section-trailseeker .feature-img img {
  display: block;
  width: 100%;
  height: auto;
}

#section-trailseeker .feature-text {
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.8;
  padding: var(--size16) 0;
}

#section-trailseeker .feature-text:not(:last-child) {
  padding-left: var(--size24);
}

#section-trailseeker .feature-note {
  color: #fff;
  font-size: 1.4rem;
  line-height: 1.8;
  padding-bottom: var(--size48);
}

#section-trailseeker .feature-note {
  padding-left: var(--size24);
}

@media (min-width: 769px) and (max-width: 1125px) {
  #section-trailseeker .feature h3 {
    font-size: 2.4vw;
  }

  #section-trailseeker .feature-text {
    font-size: 2vw;
  }

  #section-trailseeker .feature-note {
    font-size: 1.2vw;
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-trailseeker .trailseeker-features-wrap {
    flex-direction: column;
    gap: var(--size16);
    margin-top: var(--size32);
  }

  #section-trailseeker .feature {
    border-right: none;
  }

  #section-trailseeker .feature:last-child {
    border-bottom: none;
  }

  #section-trailseeker .feature h3 {
    font-size: 4.5vw;
    margin-bottom: var(--size16);
  }

  #section-trailseeker .feature {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 1fr);
    column-gap: var(--size16);
    align-items: start;
  }

  #section-trailseeker .feature h3,
  #section-trailseeker .feature .feature-note {
    grid-column: 1 / -1;
    padding-bottom: var(--size8);
  }

  #section-trailseeker .feature-img,
  #section-trailseeker .motor .feature-img {
    margin-left: 0;
    padding-top: var(--size8);
  }

  #section-trailseeker .cargoroom .feature-img {
    padding-right: 0;
  }

  #section-trailseeker .feature .feature-text {
    font-size: 3.2vw;
    line-height: 1.6;
    text-align: justify;
    padding: 0;
  }

  #section-trailseeker .feature .feature-note {
    font-size: 2.5vw;
    line-height: 1.6;
    text-align: justify;
    padding-top: var(--size16);
    padding-left: 0;
    padding-bottom: 0;
  }
}

@media (min-width: 600px) and (max-width: 768px) {

  #section-trailseeker .feature h3,
  #section-trailseeker .feature .feature-note {
    margin-bottom: var(--size32);
  }
}

@media (max-width: 390px) {
  #section-trailseeker .feature .feature-note {
    font-size: 1.0rem;
  }
}

/*
***************************************************************
#trailseeker-price
***************************************************************
*/
#section-trailseeker .trailseeker-price {
  background-color: #3d3a39 !important;
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-trailseeker .trailseeker-price {
    margin-top: var(--size24);
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  #section-trailseeker .trailseeker-price {
    margin-top: var(--size32);
  }
}

/*
***************************************************************
#section-credit
***************************************************************
*/
#section-credit {
  background: #003F68;
  background: linear-gradient(-90deg, rgba(0, 63, 104, 1) 0%, rgba(0, 29, 47, 1) 20%, rgba(0, 29, 47, 1) 80%, rgba(0, 63, 104, 1) 100%);
  margin: 0 auto;
  padding-top: var(--size40);
}

#section-credit .credit-cath {
  display: block;
  width: fit-content;
  position: relative;
  padding-inline: 30px;
  color: #fff;
  font-size: 3.0rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin: 0 auto var(--size32);
  padding: 0 var(--size16);
}

#section-credit .credit-cath::before,
#section-credit .credit-cath::after {
  content: "";
  height: 100%;
  width: 3px;
  background-color: #fff;
  position: absolute;
  top: 0;
}

#section-credit .credit-cath::before {
  left: 0;
  transform: rotate(-30deg);
}

#section-credit .credit-cath::after {
  right: 0;
  transform: rotate(30deg);
}

#section-credit .credit-detail {
  position: relative;
  background: #2B66A6;
  background: linear-gradient(90deg, rgba(43, 102, 166, 1) 45%, rgba(0, 24, 80, 1) 100%);
  margin: 0;
}

#section-credit .credit-detail-inner {
  padding: var(--size64) var(--size80) var(--size64) var(--size64);
}

#section-credit .credit-detail .detail .text {
  color: #fff;
  font-size: 1.8rem;
  text-align: justify;
  line-height: 1.6;
  letter-spacing: 0.01em;
  padding: var(--size24) 0 0 var(--size16);
}

#section-credit .plan4year {
  padding-top: var(--size80);
}

@media (min-width: 769px) and (max-width: 960px) {
  #section-credit .credit-detail .detail {
    font-size: 2vw;
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-credit {
    padding: var(--size8) var(--size16) var(--size32);
  }

  #section-credit .credit-cath {
    font-size: 3.8vw;
    margin: 0 auto var(--size16);
  }

  #section-credit .credit-detail-inner {
    padding: var(--size24) var(--size16) var(--size24) var(--size8);
  }

  #section-credit .credit-detail .detail .text {
    font-size: 2.5vw;
    padding: var(--size16) 0 0 var(--size8);
  }

  #section-credit .credit-detail .detail img {
    width: 100%;
  }

  #section-credit .plan4year {
    padding-top: var(--size32);
  }
}

@media (max-width: 390px) {
  #section-credit .credit-detail .detail {
    font-size: 1.0rem;
  }
  #section-credit .credit-detail .detail .text {
    font-size: 1.0rem;
  }
}

/*
***************************************************************
#section-point
***************************************************************
*/
#section-point {
  background-color: #003893;
  margin: var(--size64) auto 0;
  padding: var(--size48) var(--size16) var(--size64);
}

#section-point h2 {
  max-width: 886px;
  margin: 0 auto var(--size24);
}

#section-point .point-wrap {
  display: flex;
  flex-direction: column;
  gap: 55px;
}

/* point card */
#section-point .point {
  position: relative;
  width: 100%;
  max-width: 886px;
  border-radius: 10px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  padding: var(--size24);
}

#section-point .point:nth-child(odd) {
  background-color: #ebeaea;
}

#section-point .point:nth-child(even) {
  background-color: #d3ebef;
}

/* point head */
#section-point .point-head {
  /* badge left + badge width - card padding-left + gap */
  padding-left: calc(10px + 165px - var(--size24) + var(--size16));
  min-height: 44px;
  display: flex;
  align-items: center;
  margin-bottom: var(--size24);
}

/* point badge */
#section-point .point-badge {
  position: absolute;
  left: 10px;
  top: -30px;
  width: 165px;
  z-index: 2;
}

#section-point .point-badge img {
  display: block;
  width: 100%;
  height: auto;
}

/* point title */
#section-point .point-ttl {
  color: #003893;
  font-size: 4.0rem;
  font-weight: bold;
  line-height: 1;
}

/* point body */
#section-point .point-body {
  display: flex;
  align-items: flex-start;
  gap: var(--size24);
}

#section-point .point-photo {
  flex: 0 0 54.18%;
  max-width: 454px;
}

#section-point .point-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

#section-point .point-text {
  flex: 1;
  min-width: 0;
  font-size: 2.2rem;
  line-height: 1.6;
}

#section-point .point-text strong {
  font-weight: bold;
}

#section-point .point-text span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.8;
  padding-top: var(--size8);
}

@media (min-width: 769px) and (max-width: 960px) {
  #section-point .point-ttl {
    font-size: 4vw;
  }

  #section-point .point-text {
    font-size: 2vw;
  }

  #section-point .point-text span {
    font-size: 1.2vw;
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-point {
    margin: var(--size32) auto 0;
    padding: var(--size32) 0;
  }

  #section-point h2 {
    max-width: 90%;
    margin-bottom: var(--size16);
  }

  #section-point .point-wrap {
    gap: var(--size24);
    padding: 0 var(--size16);
  }

  #section-point .point {
    padding: var(--size8) var(--size16) var(--size16);
  }

  #section-point .point-badge {
    width: 80px;
    left: 6px;
    top: -12px;
  }

  #section-point .point-head {
    padding-left: 80px;
    min-height: 40px;
    margin-bottom: 0;
  }

  #section-point .point-ttl {
    font-size: 4vw;
    padding-bottom: var(--size8);
  }

  #section-point .point-body {
    gap: 16px;
  }

  #section-point .point-photo {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }

  #section-point .point-text {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
    font-size: 3.2vw;
    line-height: 1.6;
    text-align: justify;
  }

  #section-point .point-text span {
    font-size: 2.5vw;
    line-height: 1.6;
    text-align: justify;
  }
}

@media (min-width: 600px) and (max-width: 768px) {
  #section-point .point {
    padding: var(--size24) var(--size16) var(--size24);
  }

  #section-point .point-ttl {
    font-size: 4vw;
    padding-bottom: var(--size24);
  }
}

@media (max-width: 320px) {
  #section-point .point-ttl {
    font-size: 3.8vw;
  }
}

@media (max-width: 390px) {
  #section-point .point-text span {
    font-size: 1.0rem;
  }
}

/*
***************************************************************
共通ボタン
***************************************************************
*/
.btn-primary {
  padding: 0 var(--size8);
}

#section-bev-basic .btn-primary,
#section-bev-life .btn-primary {
  padding: 0;
}

.btn-primary .btn-wrap {
  margin-top: 0;
}

.btn-primary .btn-nml {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  color: #fff;
  border: none;
  background-color: #00398f;
  width: 100%;
  max-width: 800px;
  min-height: 72px;
  font-size: 3.6rem;
  font-weight: normal;
  text-align: center;
  border-radius: 100vw;
  margin: 0 auto;
  padding: 0;
}

.btn-primary .btn-nml:hover {
  background-color: #0c49a4;
}

.btn-primary .btn-wrap .btn-nml-arrow {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  margin-right: var(--size16);
}

.btn-primary .btn-wrap .btn-nml-arrow::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  .btn-primary .btn-wrap {
    margin-top: 0;
  }

  .btn-primary .btn-nml {
    max-width: inherit;
    min-height: auto;
    font-size: 4vw;
    font-weight: normal;
    text-align: center;
    border-radius: 100vw;
    margin: 0 auto;
    padding: var(--size8);
  }

  .btn-primary .btn-wrap .btn-nml-arrow::before {
    width: 18px;
    height: 18px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
}

/*
***************************************************************
section-bevlife
***************************************************************
*/
#section-bevlife {
  max-width: 1000px;
  background: #153160;
  background: linear-gradient(90deg, rgba(21, 49, 96, 1) 0%, rgba(1, 31, 35, 1) 100%);
  margin: var(--size80) auto;
  padding-bottom: var(--size48);
}

#section-bevlife .bevlife-inner {
  padding: 0 var(--size64);
}

#section-bevlife h3 {}

#section-bevlife .bevlife-target {
  border-left: 10px solid #7fbedc;
  color: #fff;
  padding-left: var(--size24);
  margin-top: var(--size32);
  margin-bottom: var(--size32);
}

#section-bevlife .bevlife-target .target-period {
  font-weight: bold;
  font-size: 3.0rem;
}

#section-bevlife .bevlife-target .target-period-note {
  font-size: 2.4rem;
}

#section-bevlife .bevlife-target .target-model {
  font-weight: bold;
  font-size: 3.0rem;
}

@media (min-width: 769px) and (max-width: 970px) {
  #section-bevlife .bevlife-target .target-period {
    font-size: 2.8vw;
  }

  #section-bevlife .bevlife-target .target-period-note {
    font-size: 2.4vw;
  }

  #section-bevlife .bevlife-target .target-model {
    font-size: 2.8vw;
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-bevlife {
    width: calc(100% - 32px);
    max-width: inherit;
    margin: var(--size32) auto 0;
    padding-bottom: var(--size32);
  }

  #section-bevlife .bevlife-inner {
    padding: 0 var(--size16) var(--size24);
  }

  #section-bevlife .bevlife-target {
    border-left: var(--size8) solid #7fbedc;
    color: #fff;
    margin: var(--size24) 0 0;
    padding-left: var(--size8);
  }

  #section-bevlife .bevlife-target .target-period {
    font-size: 3vw;
    text-align: justify;
  }

  #section-bevlife .bevlife-target .target-period-note {
    font-size: 2.75vw;
  }

  #section-bevlife .bevlife-target .target-model {
    font-size: 3vw;
    padding-top: 5px;
  }
}

/*
***************************************************************
　　#section-bev-basic
***************************************************************
*/
#section-bev-basic {
  max-width: 1000px;
  background: #00416C;
  background: linear-gradient(90deg, rgba(0, 65, 108, 1) 0%, rgba(0, 30, 48, 1) 10%, rgba(0, 30, 48, 1) 90%, rgba(0, 65, 108, 1) 100%);
  margin: var(--size80) auto;
  padding-bottom: var(--size48);
}

#section-bev-basic .bev-basic-inner {
  padding: 0 var(--size16);
}

#section-bev-basic h3 {
  color: #fff;
  font-size: 3.4rem;
  font-weight: normal;
  text-align: center;
  padding: var(--size40) 0;
}

@media (min-width: 769px) and (max-width: 960px) {
  #section-bev-basic h3 {
    font-size: 3.4vw;
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-bev-basic {
    width: calc(100% - 32px);
    max-width: inherit;
    margin: var(--size32) auto;
    padding: 0 0 var(--size32);
  }

  #section-bev-basic h3 {
    font-size: 3.8vw;
    padding: var(--size16) 0;
  }
}

/*
***************************************************************
　　#section-bev-life
***************************************************************
*/
#section-bev-life {
  max-width: 1000px;
  box-sizing: content-box;
  background-color: #fff;
  border: 1px solid #000;
  margin: var(--size80) auto 0;
  padding-bottom: var(--size48);
}

#section-bev-life .bev-life-inner {
  padding: 0 var(--size16);
}

#section-bev-life .h2-wrap {
  display: flex;
  align-items: flex-end;
}

#section-bev-life .h2-wrap h2 {
  flex: 0 1 38%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-inline: 5.6%;
  padding-block: 4.6% 0;
}

#section-bev-life .h2-wrap h2 img {
  display: block;
  width: 100%;
  height: auto;
}

#section-bev-life .h2-wrap .photo {
  flex: 0 1 62%;
  min-width: 0;
}

#section-bev-life h3 {
  color: #333;
  font-size: 3.4rem;
  font-weight: normal;
  text-align: center;
  padding: var(--size40) 0;
}

@media (min-width: 769px) and (max-width: 990px) {
  #section-bev-life h3 {
    font-size: 3.4vw;
  }
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-bev-life {
    width: calc(100% - 32px);
    max-width: inherit;
    margin: var(--size32) auto;
    padding: 0 0 var(--size32);
  }

  #section-bev-life .h2-wrap {
    flex-direction: column;
  }

  #section-bev-life .h2-wrap .photo {
    order: -1;
    flex: none;
    width: 100%;
  }

  #section-bev-life .h2-wrap h2 {
    flex: none;
    width: 50%;
    margin: 0 auto;
    padding-inline: 0;
    padding-block: 0;
    padding-top: var(--size24);
  }

  #section-bev-life h3 {
    font-size: 3.4vw;
    padding: var(--size16) 0;
  }
}

/*
***************************************************************
section-annotation
***************************************************************
*/
#section-annotation .annotation {
  font-size: 1.2rem;
  text-align: justify;
  line-height: 1.8;
  margin: var(--size48) 0 var(--size64);
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #section-annotation .annotation {
    font-size: 2.5vw;
    text-align: justify;
    margin: var(--size32) 0 var(--size48);
    padding: 0 var(--size16)
  }
}

@media (max-width: 390px) {
  #section-annotation .annotation {
    font-size: 1.0rem;
  }
}

/*
***************************************************************
btn-page-top
***************************************************************
*/
#campaign-contents .btn-page-top {
  position: fixed;
  right: var(--size48);
  bottom: 80px;
  z-index: 1000;
  width: var(--size48);
  height: var(--size48);
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

#campaign-contents .btn-page-top.show {
  opacity: 1;
  visibility: visible;
}

#campaign-contents .btn-page-top img {
  width: var(--size24);
  height: var(--size24);
}

/* -------------------------------------- */
/* ----------------- SP ----------------- */
/* -------------------------------------- */
@media (max-width: 768px) {
  #campaign-contents .btn-page-top {
    right: var(--size8);
  }
}

/*
***********************************************************
固定追従しないバージョン（通常ページ内）
***********************************************************
*/
#campaign-contents .btn-section {
  background-color: #dde2e6;
  max-width: var(--contentMaxW);
  margin: 0 auto 80px;
}

#campaign-contents .btn-section .btn-wrap-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: var(--size40) var(--size16);
}

#campaign-contents .btn-section .btn-nml.cv-btn {
  animation: none !important;
}

#campaign-contents .btn-section .btn-wrap-container .btn-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 326px;
  margin-top: 0;
}

#campaign-contents .btn-section .btn-wrap-container .btn-wrap .btn-nml {
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  #campaign-contents .btn-section .btn-wrap-container {
    display: block;
    width: 100%;
    padding: var(--size32) var(--size16);
  }

  #campaign-contents .btn-section .btn-wrap-container .btn-wrap {
    max-width: inherit;
    padding: var(--size8) 0;
  }
}

/*
**************************************************
  fixed-menu
**************************************************
*/
#fixedBottomBtn {
  position: fixed;
  bottom: -56px;
  left: 0;
  width: 100%;
  background: rgb(255, 255, 255, 0.9);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, bottom 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

#fixedBottomBtn.show {
  bottom: 0px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#fixedBottomBtn .btn-wrap-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: var(--size8);
}

#fixedBottomBtn .btn-wrap-container .btn-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 326px;
  margin-top: 0 !important;
}

#fixedBottomBtn .btn-wrap-container .btn-nml.fixed-btn {
  width: 100%;
  font-size: 1.8rem;
  min-height: var(--size48);
  color: var(--white);
}

#fixedBottomBtn .btn-wrap-container .btn-wrap .btn-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  #fixedBottomBtn .btn-wrap-container {
    flex-wrap: nowrap;
    gap: var(--size8);
    padding: var(--size8) 0;
  }

  #fixedBottomBtn .btn-wrap-container .btn-wrap {
    max-width: 375px;
  }

  #fixedBottomBtn .btn-wrap-container .btn-nml.fixed-btn {
    font-size: 1.6rem;
    min-height: var(--size24);
  }

  #fixedBottomBtn .btn-wrap-container .btn-wrap .btn-ttl {
    font-size: 1rem;
    margin-bottom: 5px;
  }
}

@media (max-width: 353px) {
  #fixedBottomBtn .btn-wrap-container .btn-wrap .btn-ttl {
    font-size: 0.8rem;
  }
}

/* --------------------- 共通 -------------------- */
#campaign-contents .btn-nml {
  color: var(--white);
}

#campaign-contents .btn-nml:hover {
  opacity: .85;
}

@media (max-width: 768px) {
  #campaign-contents .btn-nml:hover {
    color: #fff;
    opacity: 1;
  }
}

/*
***********************************************************
キャンペーン終了エリア
***********************************************************
*/
/*
  テキストを縦並び＆中央寄せ
  module.css のレイアウトをベースに、余白を最適化
*/
.notice-area-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.notice-area.alert .notice-area-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}

/*
***********************************************************
シンプルフッターマージン調整
***********************************************************
*/
.footer.footer-simple {
  margin-top: 0;
}

/*
***********************************************************
SNS注意喚起
***********************************************************
*/
.notice-area {
  margin-top: var(--size64);
}

.notice-area .notice-txt {
  text-align: justify !important;
}

@media (max-width: 768px) {
  .notice-area {
    margin: var(--size16);
  }
}

/*
***********************************************************
PRINT
***********************************************************
*/
#campaign-contents img.pr-img {
  display: none !important;
}

@media print {
  #fixedBottomBtn {
    display: none;
  }

  .swiper-pagination,
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  #section-step02 .car-text {
    font-size: 14px;
  }

  #section-story .story-text {
    font-size: 14px;
  }

  #section-quiz .base-shadow-wrap>.step-ttl {
    top: 40px;
  }

  #section-quiz .step-shadow-wrap {
    padding-top: 30px;
  }

  #section-bev-basic h3,
  #section-bev-life h3 {
    font-size: 24px;
  }
}
}



