@charset "utf-8";

/* ==========================================================================
    変数定義 & 基本設定
   ========================================================================== */

/* --------------------------------------------------------------------------
   カラー変数
   -------------------------------------------------------------------------- */
:root {
  /* テーマカラー */
  --cl-base: #f9f4ed;
  --cl-base02: #f7f7f7;

  --cl-main: #74680f;
  --cl-sub: #ab4516;
  --cl-accent: #f9d6d8;

  --cl-cta: #e4680f;
  --cl-cta02: #169f12;
  --cl-cta03: #094707;

  --cl-font: #36211e;

  /* 基本カラー */
  --black: #36211e;
  --white: #fff;
  --red: #d81818;

  --blue-link: #1a73e8;
  --d-gray: #6e6e6e;
  --gray: #a8a8a8;
  --l-gray: #d4d4d4;
}

/* --------------------------------------------------------------------------
  フォント設定
   -------------------------------------------------------------------------- */
body {
  font-family: 'dnp-shuei-mgothic-std', 'A-OTF Shuei MaruGo Std', '秀英丸ゴシック Std', 'Hiragino Maru Gothic ProN', sans-serif !important;
}
.dela-gothic-one-regular {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ==========================================================================
  全体レイアウト
   ========================================================================== */
.sclub-lp-layout {
  width: 100%;
  display: flex;
  position: relative;
  padding-top: 60px;
}

.sclub-lp-hero {
  position: sticky;
  overflow: hidden;
  width: auto;
  top: 60px;
  flex: 1;
  background-image: url(./images/hero_bg.webp);
  height: calc(100vh - 60px);
  background-position: center 20%;
  background-size: cover;
  background-repeat: no-repeat;
}

.sclub-lp-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  flex: 0 0 auto;
}

/* レスポンシブ: 1024px以下 */
@media screen and (max-width: 1024px) {
  .sclub-lp-layout {
    flex-direction: column;
  }
  .sclub-lp-content {
    width: 100% !important;
    flex: none !important;
    max-width: none !important;
    overflow: visible;
  }
}

/* ==========================================================================
  共通パーツ & コンポーネント
   ========================================================================== */

/* --------------------------------------------------------------------------
   テキスト・見出し
   -------------------------------------------------------------------------- */
.ttl-2 {
  color: var(--cl-main);
  font-size: var(--fs-ttl-l);
  text-align: center;
}

.ttl-3 {
  display: inline;
  background-color: var(--white);
  padding: 6px 10px;
  border-radius: 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 1.7;
}

p,
li {
  line-height: 1.5;
  color: var(--black);
}
.text-highlight {
  font-weight: 600;
  background: linear-gradient(transparent 60%, var(--cl-accent) 60%);
}

/* --------------------------------------------------------------------------
   ボタン・リンク
   -------------------------------------------------------------------------- */
.cta-button-join {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 0;
  background-color: var(--cl-cta);
  color: var(--white);
  font-size: 17px;
  border-radius: 30px;
  box-shadow: 0 4px 0 #1a1a1a;
  transition:
    transform 0.1s ease,
    box-shadow 0.1s ease;
  cursor: pointer;
  max-width: 400px;
  margin-inline: auto;
}
.cta-button-join:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #1a1a1a;
}

.cta-button-request {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px 0;
  background-color: var(--cl-cta02);
  color: var(--white);
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 0 #1a1a1a;
  max-width: 400px;
  margin-inline: auto;
}

.link-anchor {
  color: var(--cl-main);
  text-decoration: underline;
}

.link-outer {
  text-decoration: underline;
  color: var(--black);
  margin-top: 20px;
}

.link-outer::after {
  content: '';
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 4px;
  vertical-align: -2px;
  background-image: url('images/icon-external.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* --------------------------------------------------------------------------
   共通カードスタイル (Reason & Use セクション共通)
   -------------------------------------------------------------------------- */
.sec-reason-card,
.sec-use-card {
  background-color: var(--white);
  border-radius: 30px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.sec-reason-card-img,
.sec-use-card-img {
  max-width: 190px;
  flex: 0 0 45%;
}

.sec-reason-card-img img,
.sec-use-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.sec-reason-card-text,
.sec-use-card-text {
  max-width: 400px;
}

/* ==========================================================================
    ヒーローセクション (Hero Area)
   ========================================================================== */
.hero-wrap {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
.hero-txt {
  display: block;
  padding-top: 10px;
}
@media only screen and (min-width: 1025px) {
  .hero-txt {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.hero-oricon-img {
  display: block;
  width: 100px;
  max-width: 100px;
}
.hero-copy {
  max-width: 530px;
  width: 100%;
}
.hero-copy-sp {
  display: none;
}
.hero-txt p {
  -webkit-text-stroke: 3px var(--white);
  paint-order: stroke fill;
}
.hero-cta {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: calc(62% - 10px);
  max-width: 360px;
  background-color: var(--cl-base);
  border-radius: 20px;
  padding: 30px 20px 20px 20px;
  z-index: 3;
}
.hero-cta > img {
  position: absolute;
  top: -70px;
  left: -12px;
  width: 90px;
  height: auto;
  z-index: 4;
}
.hero-cta-text-join {
  text-align: center;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.hero-cta-text-join::before,
.hero-cta-text-join::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background-color: currentColor;
  border-radius: 2px;
}
.hero-cta-text-join::before {
  transform: rotate(-30deg);
}
.hero-cta-text-join::after {
  transform: rotate(30deg);
}
.hero-cta hr {
  border: none;
  border-top: 1px solid var(--l-gray);
  margin: 14px 0 10px 0;
}
.hero-cta-text-request {
  text-align: center;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .sclub-lp-hero {
    position: static;
    overflow: hidden;
    top: 0;
    flex: 1;
    background-image: url(./images/hero_bg_tb.webp);
    aspect-ratio: 1 / 1;
    background-position: center 20%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .hero-cta {
    display: none;
  }
  .hero-txt {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
  }
  .hero-txt p {
    position: absolute;
    display: block;
    bottom: 120px;
    right: 20px;
    width: fit-content;
    text-wrap: nowrap;
  }
}
@media screen and (max-width: 599px) {
  .sclub-lp-hero {
    background-image: url(./images/hero_bg_sp.webp);
    aspect-ratio: 10 / 16;
  }
  .hero-copy-pc {
    display: none;
  }
  .hero-copy-sp {
    display: block;
  }
  .hero-txt {
    padding-top: var(--wrap-pd);
  }
}
@media only screen and (max-width: 400px) {
  .hero-oricon-img {
    width: 80px;
    max-width: 80px;
  }
  .hero-txt {
    padding-top: 10px;
  }
  .hero-txt p {
    right: 10px;
  }
}
/* ==========================================================================
 特典セクション (Benefits Section)
   ========================================================================== */

.sec-benefits-container {
  padding: 30px;
  border-radius: 40px;
}

.sec-benefits-ttl-acc {
  display: block;
  max-width: 224px;
  width: 100%;
}

.sec-benefits-box {
  background-color: var(--white);
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  max-width: 600px;
  margin: 40px auto 0;
}

.sec-benefits-bubble {
  position: absolute;
  top: -14px;
  right: 0;
  background-color: var(--cl-sub);
  color: var(--white);
  font-size: var(--fs-notes);
  padding: 6px 16px;
  border-radius: 20px;
  z-index: 2;
}

.sec-benefits-bubble::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 55%;
  width: 4px;
  height: 14px;
  background-color: var(--cl-sub);
  transform: rotate(12deg);
}

.sec-benefits-bubble span {
  color: var(--cl-accent);
}

.sec-benefits-badge {
  position: absolute;
  left: 0;
  top: -32px;
}

.sec-benefits-coupon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.sec-benefits .coupon-card {
  background-color: var(--cl-base02);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sec-benefits .coupon-card-wide {
  grid-column: 1 / -1;
  padding: 14px 16px;
}

/* レスポンシブ: 特典セクション */
@media screen and (min-width: 1025px) {
  .sec-benefits-cta-badge {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .sec-benefits-container:first-of-type {
    position: relative;
    margin-top: -100px;
  }

  .sec-benefits-cta-badge {
    position: absolute;
    top: -60px;
    left: 0px;
    z-index: 4;
    width: 90px;
  }
}

@media screen and (max-width: 599px) {
  .sec-benefits-container {
    padding: 20px;
  }

  .sec-benefits-coupon {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 350px;
  }

  .sec-benefits .coupon-card {
    margin-top: 10px;
  }
}

@media screen and (max-width: 399px) {
  .sec-benefits-badge {
    width: 60px;
  }
}

@media screen and (max-width: 369px) {
  .sec-benefits-container {
    padding-top: 30px;
  }

  .sec-benefits-cta-badge {
    width: 70px;
    top: -30px;
  }

  .sec-benefits-badge {
    width: 50px;
  }
}

/* ==========================================================================
   メリットセクション (Merit Section)
   ========================================================================== */
.sec-merit {
  overflow: hidden;
}
.sec-merit-box {
  background-color: var(--cl-base);
  padding: 30px;
  border-radius: 40px;
}
/* ポイントグリッド */
.sec-merit .features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 16px;
  list-style: none;
  padding: 0;
}

.sec-merit .features-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.sec-merit .features-img {
  width: 100%;
  max-width: 100px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 12px;
}

.sec-merit-close {
  position: relative;
  display: inline-block;
  padding: 0 40px;
  margin-bottom: 24px;
}

.sec-merit-close::before,
.sec-merit-close::after {
  content: '“';
  position: absolute;
  font-family: serif;
  font-size: 60px;
  color: #f0e6d2;
  line-height: 1;
  height: 40px;
}
.sec-merit-close::before {
  top: -10px;
  left: 0;
}
.sec-merit-close::after {
  content: '”';
  bottom: -30px;
  right: 0;
}

/* スライダー */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.sec-merit-slider {
  display: flex;
  overflow: hidden;
  width: 600px;
  margin-left: -20px;
}

.sec-merit-slider ul {
  display: flex;
  list-style: none;
  padding: 0;
  animation: scroll-left 80s infinite linear 0.5s both;
}

.sec-merit-slider li {
  width: 200px;
  margin-right: 20px;
}

.sec-merit-slider li img {
  width: 100%;
  border-radius: 20px;
}

/* スクロール誘導矢印 */
.sec-merit-scroll-arrow-wrap {
  display: flex;
  justify-content: center;
  height: 60px;
  margin-bottom: 40px;
}

.sec-merit-scroll-arrow {
  position: relative;
  width: 1px;
  height: 40px;
  background-color: #8c8369;
  animation: gentle-bounce 2s ease-in-out infinite;
}

.sec-merit-scroll-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #8c8369;
  border-right: 1px solid #8c8369;
}

@keyframes gentle-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@media only screen and (max-width: 1024px) {
  .sec-merit-slider {
    width: 100vw;
  }
}

@media screen and (max-width: 599px) {
  .sec-merit-box {
    padding: 30px 20px;
  }
  .sec-merit-slider li {
    width: 33.3vw;
    margin-right: 3.33vw;
  }
}
@media only screen and (max-width: 530px) {
  .sec-merit .features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .sec-merit .features-grid li {
    width: calc(50% - 10px);
  }
}

@media screen and (max-width: 490px) {
  .sec-merit-br {
    display: none;
  }
}

/* ==========================================================================
    選ばれる理由セクション (Reason Section)
   ========================================================================== */

.sec-reason {
  background-color: var(--cl-base);
}

.sec-reason h3 span {
  display: block;
  width: fit-content;
  background-color: var(--white);
  border-radius: 10px;
  padding: 4px 12px;
}

.sec-reason-ttl-acc {
  display: block;
  max-width: 395px;
  width: 100%;
}

.sec-reason-img {
  position: relative;
}
.sec-reason-divider {
  display: block;
  width: 100%;
  height: 60px;
}

@media (max-width: 599px) {
  .sec-reason-divider {
    height: 40px;
  }

  .sec-reason-ttl-h3-br {
    display: none;
  }

  .sec-reason-card,
  .sec-use-card {
    display: block;
  }

  .sec-reason-card-img,
  .sec-use-card-img {
    margin-left: auto;
    margin-right: auto;
  }

  .sec-reason-card-text,
  .sec-use-card-text {
    margin-top: var(--space-ss);
    margin-left: auto;
    margin-right: auto;
  }
}
/* ==========================================================================
  使い方・品揃えセクション (Use Section)
   ========================================================================== */

.sec-use {
  margin-top: -80px;
}

.sec-use-bg {
  background-color: var(--cl-base);
}

.sec-use-ttl-acc {
  display: block;
  max-width: 395px;
  width: 100%;
}

/* Splideスライダー */
.sec-use-slider {
  position: relative;
}
.sec-use-slider .splide__slide {
  display: flex;
  flex-direction: column;
}

.sec-use-slider-comment {
  display: block;
  color: var(--white);
  background-color: var(--cl-sub);
  border-radius: 999px;
  width: fit-content;
  padding: 0.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.sec-use-slider-comment::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 10px;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--cl-sub);
}

.sec-use-slider-box {
  flex: 1;
  background-color: var(--white);
  padding: 1.5rem 1rem;
  border-radius: 16px;
  height: 100%;
}

.sec-use-slider-box h3 {
  text-align: center;
  font-size: var(--fs-ttl-m);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cl-sub);
}

.sec-use-slider-box img {
  display: block;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
}

.sec-use-slider .splide__pagination {
  position: relative;
  display: block;
  margin-top: var(--space-mm);
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}

.sec-use-slider .splide__pagination__page {
  background: var(--gray);
  width: 10px;
  height: 10px;
  opacity: 0.7;
}

.sec-use-slider .splide__pagination__page.is-active {
  background: var(--cl-sub);
  opacity: 1;
  transform: none;
}

@media only screen and (max-width: 450px) {
  .sec-use-slider-box img {
    width: 130px;
    height: 130px;
  }
}

/* ==========================================================================
  CTAセクション (CTA Section)
   ========================================================================== */
.sec-cta-join-box {
  background-color: var(--cl-base);
  padding: 30px 20px;
  border-radius: 40px;
}

.sec-cta-coupon {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.sec-cta-coupon-item {
  flex: 1;
  background-color: var(--white);
  border-radius: 20px;
  padding: 10px 20px;
  text-align: center;
}

.sec-cta-join-box02 {
  background-color: var(--cl-base02);
  border-radius: 40px;
  padding: 30px 20px;
  text-align: center;
}

.sec-cta-br,
.sec-cta-br-join {
  display: none;
}

@media (max-width: 1190px) {
  .sec-cta-br-join {
    display: block;
  }
}

@media (max-width: 599px) {
  .sec-cta-coupon {
    display: block;
    max-width: 350px;
    margin: 40px auto 0;
  }
  .sec-cta-coupon-item {
    margin-top: 10px;
  }
  .sec-cta-br {
    display: block;
  }
}
