@charset "UTF-8";

@font-face {
  font-family: "Neura Display";
  src: url("../fonts//NeuraDisplayVariable[wght].ttf") format("truetype");
  font-weight: 400 700;
  font-display: swap;
}
:root {
  --color-black: #2d2d2d;
  --color-white: #ffffff;
  --color-gray: #807e7b;
  --color-navy: #1d4984;
  --color-pink: #dbb7c3;
  --color-gold: #bd9e85;
}

/*============================
全体
============================*/
html {
  font-size: 10px;
}
body {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: 0;
  width: 100%;
}
main {
  overflow-x: hidden;
}
a {
  color: var(--color-black);
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
li {
  list-style: none;
}
.neura-display {
  font-family: "Neura Display", sans-serif;
}
.serif {
  font-family: "Noto Serif JP", serif;
}

/* ==========================================
   共通
   ========================================== */
.font-white {
  color: #ffffff;
}

/* ==========================================
   sectionごとの囲み
   ========================================== */

.scene_wrap {
  padding: 80px 0;
  text-align: center;
}
.scene_wrap-supplement {
  padding: 80px 0;
  text-align: center;
  background-color: #e8f3f4;
}
.scene_wrap-flavor {
  padding: 80px 0;
  text-align: center;
  background: url("../img/flavor_back.png") no-repeat center center;
  background-size: cover;
}

/* ==========================================
   グリッド・カードレイアウト
   ========================================== */
.scene__grid {
  display: flex;
  gap: 50px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .scene__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    max-width: 380px;
    margin: 30px auto;
    gap: 40px;
    padding-top: 0;
    padding-bottom: 0;
    width: 100%;
  }

  .thistime__card,
  .scene__card {
    width: 100% !important;
    max-width: 380px;
    overflow: hidden !important;
    box-sizing: border-box;
  }

  .thistime__slide-container,
  .scene__slide-container {
    display: flex !important;
    overflow-x: auto !important;
    width: 100% !important;
  }

  .scene__card--relax,
  .scene__card--refresh,
  .scene__card--energy,
  .scene__card--morning,
  .scene__card--focus,
  .scene__card--refresfsea,
  .scene__card--fruits,
  .scene__card--tea,
  .scene__card--cafe,
  .scene__card--sleep,
  .scene__card--stamina {
    transform: translateY(0) !important;
  }
}

.scene__card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px 0 15px; /* カード内部の上下余白 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* ==========================================
   各カード固有の背景
   ========================================== */
/* Scene: */
.scene__card--morning {
  background: url("../img/morning.jpg") no-repeat center center;
  background-size: cover;
  color: #1e2c5a;
  height: 600px;
}

.scene__card--focus {
  background: url("../img/focus.jpg") no-repeat center center;
  background-size: cover;
  color: #1e2c5a;
  height: 600px;
}
.scene__card--refresfsea {
  background: url("../img/refresh_sea.jpg") no-repeat center center;
  background-size: cover;
  color: #1e2c5a;
  height: 600px;
}
.scene__card--sleep {
  background: url("../img/sleep.jpg") no-repeat center center;
  background-size: 130%;
  color: #1e2c5a;
  height: 600px;
}
/* Supplement: */
.scene__card--relax {
  background: url("../img/relax.jpg") no-repeat center center;
  background-size: cover;
  color: #1e2c5a;
  height: 600px;
}
.scene__card--refresh {
  background: url("../img/refresh.jpg") no-repeat center center;
  background-size: cover;
  color: #1c352d;
  height: 600px;
}
.scene__card--energy {
  background: url("../img/energy.jpg") no-repeat center center;
  background-size: cover;
  background-position: -220px 0px;
  color: #1e334a;
  height: 600px;
}
/* Flavor: */
.scene__card--fruits,
.scene__card--tea,
.scene__card--cafe {
  background: url("../img/flavor.png") no-repeat center center;
  background-size: cover;
  color: #1c352d;
  height: 600px;
}
.scene__card--stamina {
  background: url("../img/stamina.jpg") no-repeat center center;
  background-size: cover;
  background-position: 0px -40px;
  color: #1c352d;
  height: 600px;
}

/* 白背景 */
.scene__slide-item {
  background-color: #f4feff;
  flex: 0 0 211px;
  width: 211px;
  box-sizing: border-box;
  height: auto;
  padding: 32px 40px;
  border-radius: 20px;
  text-align: center;
}

/* ==========================================
   スライダー（カルーセル風）の見た目の再現
   ========================================== */
.scene__slider-area {
  padding: 45px 0;
}

.scene__slide-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  width: 100%;
  gap: 20px;
  margin: 0 auto;
  overflow-y: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.scene__slide-container::-webkit-scrollbar {
  display: none;
}

/* カルーセル配置（中央にアクティブ、左右にチラ見せスライド） */
.scene__carousel-view {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* スライドの基本スタイル */
.scene__slide {
  position: absolute;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/* 中央のアクティブスライド（大きくハッキリ表示） */
.scene__slide--active {
  width: 140px;
  height: 200px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

/* 左右の非アクティブスライド（小さく、端に寄せて配置） */
.scene__slide--prev,
.scene__slide--next {
  width: 120px;
  height: 170px;
  opacity: 0.75;
  z-index: 1;
}

.scene__slide--prev {
  transform: translateX(-110px) scale(0.9);
}

.scene__slide--next {
  transform: translateX(110px) scale(0.9);
}

/* スライド内の製品画像 */
.scene__product-img {
  width: 118px;
  height: auto;
  object-fit: contain;
}

/* 矢印ナビゲーションボタン */
.scene__arrow {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.scene__arrow--prev {
  left: 27%;
}

.scene__arrow--next {
  right: 27%;
}

/* 矢印の簡易アイコン (< と >) */
.scene__arrow::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-top: 1px solid #666666;
  border-right: 1px solid #666666;
}

.scene__arrow--prev::before {
  transform: rotate(-135deg) translate(-1px, -1px);
}

.scene__arrow--next::before {
  transform: rotate(45deg) translate(-1px, -1px);
}

/* ==========================================
   テキスト・コンテンツエリア
   ========================================== */
.scene__card-content {
  padding: 0 35px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scene__top-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scene__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.scene__sub-title {
  display: inline-block;
  font-family: "Times New Roman", Times, serif;
  font-size: 32px;
  color: #1d4984;
  margin-bottom: 4px;
  position: relative;
  width: 18%;
  text-align: left;
}

.scene__sub-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #1e457e;
  margin-top: 4px;
}

.scene__main-title {
  margin-top: 10px;
  margin-bottom: 25px;
  letter-spacing: 0.15em;
}

.scene__main-title h2 {
  width: 20%;
  font-size: 20px;
  margin: 0 auto;
  text-align: right;
  color: #666666;
  font-weight: normal;
}

/* カード3のみテキストの色を画像に合わせて少し濃く調整したい場合に適用 */
.scene__card--energy .scene__card-title {
  color: #1e334a;
}

.scene__card-desc {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 5px;
  height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border-top: 2px solid #1d4984;
  padding-top: 10px;
}
.scene__card-desc_gray {
  font-size: 20px;
  line-height: 1.6;
  margin-top: 0;
  margin-bottom: 5px;
  height: 3.2em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #807e7b;
  border-top: 2px solid #1d4984;
  padding-top: 10px;
}

/* ==========================================
   詳細ボタン（シャープな矩形の枠線ボタン）
   ========================================== */
.scene__btn {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid currentColor; /* 各カードの文字色と同じ色の枠線 */
  color: #1d4984;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  background: transparent;
  margin-top: 32px;
}

.scene__btn:hover {
  background-color: rgba(255, 255, 255, 0.25);
}

/*============================
カード横並び
============================*/
.scene__flex {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.scene__padding {
  padding-top: 50px;
}
.scene_beauty {
  background: url("../img/beauty_back.jpg") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.scene_aging {
  background: url("../img/aging_back.jpg") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}
.scene_caffe {
  background: url("../img/cafe_back.png") no-repeat center center;
  background-size: cover;
  padding: 80px 0;
}

@media (max-width: 960px) {
  .scene__flex {
    display: flex;
    justify-self: center;
    flex-direction: column;
    gap: 40px;
  }
}

/*============================
スターターキット下部
============================*/
.starter-kit {
  background-color: #e0f2f7;
  padding: 60px 20px;
  font-family: "Noto Serif JP", serif;
}

.starter-kit__inner {
  background-color: #ffffff;
  border-radius: 16px;
  max-width: 1017px;
  margin: 0 auto;
  padding: 40px 130px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.starter-kit__title {
  color: #1d4984;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.starter-kit__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.starter-kit__item {
  display: flex;
  flex-direction: column;
}

.starter-kit__item--devices {
  align-items: center;
}

.starter-kit__item--flavors {
  align-items: flex-start;
}

.starter-kit__text {
  color: #333333;
  font-size: 16px;
  margin: 10px 0 0 0;
  text-align: center;
}

.starter-kit__sub-text {
  color: #333333;
  font-size: 16px;
  margin-bottom: 10px;
}

.starter-kit__image-wrap img {
  max-width: 100%;
  height: auto;
  display: block;
}

.starter-kit__arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #1d4984;
  flex-shrink: 0;
  margin-top: 20px;
}

/* ボタン */
.starter-kit__btn-wrap {
  text-align: center;
}

.starter-kit__btn {
  display: inline-block;
  background-color: #1d4984;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  padding: 14px 60px;
  border-radius: 6px;
  font-size: 16px;
  transition: background-color 0.3s;
}

.starter-kit__btn:hover {
  background-color: #141e3e;
}

@media (max-width: 768px) {
  .starter-kit__content {
    flex-direction: column;
    gap: 20px;
  }
  .starter-kit__arrow {
    border-width: 16px 10px 0 10px;
    border-color: #1d4984 transparent transparent transparent;
    margin-top: 0;
  }
  .starter-kit__item--flavors {
    align-items: center;
  }
}
