@charset "UTF-8";
/* ==========================================================================
   Variables (Design System & Typography)
========================================================================== */
:root {
  /* Color */
  --Honey-Yellow: #f6b93b;
  --Paw-Pink: #ffdbdf;
  --Bitter-Choco: #4a3728;
  --Latte-Beige: #968373;
  --Milky-White: #fefcf5;
  --White: #ffffff;
  --Milky: #faf1d1;
  --blue: #59a9c2;
  /* Spacing */
  --Spacing-16: 1rem;
  --Spacing-24: 1.5rem;
  --Spacing-32: 2rem;
  --Spacing-40: 2.5rem;
  --Spacing-48: 3rem;
  --Spacing-64: 4rem;
  --Spacing-80: 5rem;
  /* Typography (Figma) */
  --font-zen: "Zen Maru Gothic", sans-serif;
  --font-nico: "Nico Moji", sans-serif;
  --text-14: 0.875rem;
  --text-16: 1rem;
  --text-18: 1.125rem;
  --text-20: 1.25rem;
  --text-24: 1.5rem;
  --text-28: 1.75rem;
  --text-32: 2rem;
  --text-46: 2.875rem;
  --lh-auto: 1.6;
  --lh-200: 2;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
}

button {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}

/* ==========================================================================
   Common & Base Styles (基本設定)
========================================================================== */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-zen);
  font-size: var(--text-16);
  font-weight: 500;
  color: var(--Bitter-Choco);
  background-color: var(--Milky-White);
  line-height: var(--lh-auto);
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   Layout Classes (レイアウト用の箱)
========================================================================== */
.l-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 16px;
}

.l-section {
  padding-block: var(--Spacing-80);
}

@media (max-width: 767px) {
  .l-section {
    padding-block: var(--Spacing-48);
  }
}
/* ==========================================================================
   Smooth Scroll Offset (スムーススクロール時の停止位置調整)
========================================================================== */
#troubles,
#concept,
#features,
#reviews,
#faq {
  scroll-margin-top: 80px;
}

@media screen and (max-width: 767px) {
  #troubles {
    scroll-margin-top: 70px;
  }
  #concept,
  #features,
  #reviews,
  #faq {
    scroll-margin-top: 20px;
  }
}
/* ==========================================================================
   Utility Classes (汎用クラス)
========================================================================== */
.u-bg-decor {
  background-image: url("../img/bg-decor-pattern.svg");
  background-size: 500px;
  background-repeat: repeat;
  background-position: center top;
}

.u-margin-bottom-24 {
  margin-bottom: clamp(16px, 2vw, 24px) !important;
}

.u-text-large {
  font-size: 1.5em;
  font-weight: 700;
}

/* ▼ 表示・非表示の切り替え */
@media screen and (min-width: 1025px) {
  .u-hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 1024px) {
  .u-hidden-sp {
    display: none !important;
  }
}
@keyframes drawCloud {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes fillCloud {
  100% {
    fill: var(--White);
  }
}
/* =========================================
   ヘッダー
========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--Milky-White);
  z-index: 1100;
}

.header__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo img {
  width: clamp(240px, 30vw, 500px);
  height: auto;
  background: none;
  transition: all 0.3s ease;
}

/* =======================================
   PC Navigation & Stores (基本スタイル)
======================================= */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3.5vw, 40px);
}

.header__nav-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--Bitter-Choco);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.header__nav-link:hover {
  opacity: 0.6;
}

.header__stores {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header__store-btn img {
  height: 42px;
  width: auto;
  transition: transform 0.3s ease;
  background: none;
}

.header__store-btn:hover img {
  transform: scale(1.05);
}

/* =======================================
   PC Layout (FV内と追従バナーの切り替え)
======================================= */
@media screen and (min-width: 768px) {
  .header {
    position: absolute;
    background-color: transparent;
  }
  .header__nav,
  .header__stores {
    display: none;
  }
  .header.is-active {
    position: fixed;
    background-color: var(--Milky);
    box-shadow: 0 4px 16px rgba(74, 55, 40, 0.08);
    animation: headerSlideDown 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  }
  .header.is-active .header__inner {
    height: 60px;
    padding: 0 clamp(20px, 2vw, 40px);
    justify-content: space-between;
  }
  .header.is-active .header__logo img {
    width: clamp(140px, 12vw, 160px);
  }
  .header.is-active .header__nav,
  .header.is-active .header__stores {
    display: flex;
  }
}
@keyframes headerSlideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
/* ==========================================================================
   Hamburger Menu (2本線デザイン)
========================================================================== */
.header__hamburger {
  position: absolute;
  right: 10px;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 100;
}

.header__hamburger-line {
  position: absolute;
  height: 2px;
  background-color: var(--Bitter-Choco);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.header__hamburger-line:nth-child(1) {
  top: 19px;
  right: 12px;
  width: 20px;
}

.header__hamburger-line:nth-child(2) {
  bottom: 18px;
  left: 8px;
  width: 28px;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  top: 50%;
  right: 50%;
  width: 32px;
  transform: translate(50%, -50%) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  bottom: 50%;
  left: 50%;
  width: 32px;
  transform: translate(-50%, 50%) rotate(-45deg);
}

@media screen and (max-width: 1024px) {
  .header__inner {
    height: 60px;
    justify-content: center;
  }
  .header__hamburger {
    display: block;
  }
}
@media (max-width: 767px) {
  .header__inner {
    padding: 0 16px;
  }
  .header__logo img {
    height: 28px;
    width: auto;
  }
}
/* ==========================================================================
   First View (FV)
========================================================================== */
.fv {
  font-family: var(--font-zen);
  color: var(--Bitter-Choco);
  background-color: var(--Milky-White);
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: clamp(40px, 8vw, 80px);
}

.fv__main {
  position: relative;
}

.fv__lead-top {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: clamp(20px, 3vw, 40px);
}

.fv__sp-top {
  padding-top: 20px;
}

.fv__copy-group {
  margin-bottom: clamp(24px, 3vw, 40px);
}

.fv__sp-bottom .fv__copy-group {
  text-align: center;
  margin-top: 24px;
}

.fv__lead-bottom {
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 500;
  margin-bottom: 8px;
}

.fv__title img {
  width: auto;
  height: clamp(32px, 4vw, 46px);
  margin-left: -30px;
}

.fv__visual {
  width: 100%;
  padding: 100px 0;
}

.fv__visual .swiper {
  overflow: visible !important;
}

.fv__slide {
  transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0.2;
  transform: scale(0.85);
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.fv__slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1.2) !important;
  z-index: 2;
}

.fv__mockup {
  width: 100%;
  height: auto;
  border-radius: 36px;
  box-shadow: 0 8px 24px rgba(74, 55, 40, 0.15);
  background-color: #fafafa;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__pc-float {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.fv__pc-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1500px;
  width: 95%;
  margin: 0 auto;
}

.fv__pc-left,
.fv__pc-right {
  pointer-events: auto;
  width: 35%;
}

.fv__pc-right {
  display: flex;
  justify-content: flex-end;
}

.fv__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fv__pc-right .fv__cta {
  align-items: flex-start;
}

.fv__cta-bubble {
  position: relative;
  display: inline-block;
  background-color: var(--White);
  border: 1px solid var(--Bitter-Choco);
  padding: 4px 16px;
  border-radius: 30px;
  font-size: clamp(12px, 1.1vw, 15px);
  font-weight: 700;
  margin-bottom: 6px;
}

.fv__cta-bubble::before,
.fv__cta-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  border: solid transparent;
}

.fv__cta-bubble::before {
  left: 20px;
  border-top-color: var(--Bitter-Choco);
  border-width: 8px;
}

.fv__cta-bubble::after {
  left: 21px;
  border-top-color: var(--White);
  border-width: 7px;
}

.fv__cta-text {
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  margin-bottom: 20px;
}

.fv__cta-text strong {
  font-size: 1.2em;
}

.fv__store-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.fv__store-btn {
  display: block;
  transition: opacity 0.3s ease;
}

.fv__store-btn:hover {
  opacity: 0.7;
}

.fv__store-btn img {
  height: clamp(52px, 6vw, 60px);
  width: auto;
  background: none;
}

/* ==========================================================================
   Troubles Section
========================================================================== */
.troubles {
  position: relative;
  background-color: var(--Milky-White);
  overflow: hidden;
}

.troubles > .l-container {
  position: relative;
  z-index: 1;
}

.troubles__title {
  font-size: clamp(var(--text-16), 2vw, var(--text-20));
  font-weight: 700;
  line-height: var(--lh-200);
  text-align: center;
  margin-bottom: var(--Spacing-80);
}

.troubles__content {
  position: relative;
  max-width: 900px;
  margin: 0 auto var(--Spacing-64);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 500px;
}

.troubles__figure {
  position: relative;
  z-index: 2;
}

.troubles__figure img {
  width: 100%;
  max-width: 280px;
  height: auto;
  padding-top: 200px;
}

.troubles__bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.troubles__bubble {
  position: absolute;
  width: clamp(240px, 25vw, 300px);
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(var(--text-14), 1.2vw, var(--text-16));
  font-weight: 700;
  line-height: var(--lh-auto);
  text-align: center;
}

.troubles__bubble--1 {
  top: 15%;
  left: 0;
  background-image: url("../img/bubble-bg-1.svg");
  padding: 70px 46px 50px;
}

.troubles__bubble--2 {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-image: url("../img/bubble-bg-2.svg");
  padding: 50px 70px 40px;
}

.troubles__bubble--3 {
  top: 15%;
  right: 0;
  background-image: url("../img/bubble-bg-3.svg");
  padding: 70px 31px 60px;
}

.troubles__bubble--4 {
  bottom: 10%;
  left: 5%;
  background-image: url("../img/bubble-bg-4.svg");
  padding: 60px 57px 40px;
}

.troubles__bubble--5 {
  bottom: 10%;
  right: 5%;
  background-image: url("../img/bubble-bg-5.svg");
  padding: 60px 70px 55px;
}

.troubles__conclusion {
  text-align: center;
}

.troubles__conclusion-text {
  font-size: clamp(var(--text-20), 2.5vw, var(--text-24));
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: var(--Spacing-32);
}

.troubles__marker {
  background: linear-gradient(transparent 60%, var(--Paw-Pink) 60%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90% 100%;
  padding: 0 4px;
  display: inline-block;
}

.troubles__arrow-wrap {
  margin-top: -10px;
}

.troubles__arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: var(--Spacing-80);
  padding-bottom: var(--Spacing-16);
}

.troubles__arrow {
  display: block;
  width: 24px;
  height: 24px;
  border-right: 3px solid;
  border-bottom: 3px solid;
  transform: rotate(45deg);
}

.troubles__arrow--yellow {
  border-color: var(--Honey-Yellow);
}

.troubles__arrow--pink {
  border-color: var(--Paw-Pink);
}

.troubles__arrow--blue {
  border-color: var(--blue);
}

/* ==========================================================================
   Concept Section
========================================================================== */
.concept {
  background-color: var(--Milky-White);
  overflow: hidden;
  z-index: 0;
}

.concept > .l-container {
  position: relative;
  z-index: 1;
}

.concept__title {
  font-size: clamp(var(--text-24), 3vw, var(--text-28));
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--Spacing-40);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   Concept Cloud (SVGアニメーション化)
========================================================================== */
.concept__cloud {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 64px);
  text-align: center;
  z-index: 1;
}

.concept__cloud-content {
  position: relative;
  z-index: 2;
}

/* =======================================
   SVGアニメーションの動き
======================================= */
.concept__cloud-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: visible;
}

.concept__cloud-path {
  fill: transparent;
  stroke-dasharray: 3500;
  stroke-dashoffset: 3500;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concept__cloud.is-active .concept__cloud-path {
  animation: drawCloud 6s ease-in-out forwards, fillCloud 0.6s ease 4s forwards;
}

.concept__lead {
  font-size: clamp(var(--text-16), 2vw, var(--text-20));
  font-weight: 700;
  margin-bottom: var(--Spacing-16);
  white-space: nowrap;
}

.concept__text {
  font-size: clamp(var(--text-14), 1.5vw, var(--text-16));
  line-height: var(--lh-200);
  white-space: nowrap;
}

.concept__emoji {
  display: inline-block;
  font-size: 1.1em;
  vertical-align: middle;
  transform: translateY(-2px);
}

/* ==========================================================================
   Features Section (機能紹介)
========================================================================== */
.p-features {
  position: relative;
  background-color: var(--Milky-White);
  padding-block: clamp(60px, 8vw, 100px);
  overflow: hidden;
  z-index: 0;
}

.p-features__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.p-features__main-title {
  display: inline-block;
  background-color: var(--Paw-Pink);
  padding: 4px 6px;
  border-radius: 40px;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
}

.p-features__emoji {
  display: inline-block;
  margin-left: 8px;
}

.p-features__block {
  margin-bottom: clamp(64px, 8vw, 120px);
}

.p-features__block:last-child {
  margin-bottom: 0;
}

.p-features__block-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.p-features__label img {
  width: clamp(48px, 6vw, 64px);
  height: auto;
  background-color: transparent;
}

.p-features__head-content {
  flex: 1;
  padding-top: 4px;
}

.p-features__title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

.p-features__desc {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: var(--lh-200);
  color: rgba(74, 55, 40, 0.85);
}

.p-features__body {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
}

.p-features__item--reverse .p-features__body {
  flex-direction: row-reverse;
}

.p-features__visual {
  flex: 0 0 45%;
  position: relative;
  display: flex;
  justify-content: center;
}

.p-features__mockup {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 36px;
  box-shadow: 0 12px 30px rgba(74, 55, 40, 0.1);
  border: 1px solid var(--Bitter-Choco);
}

.p-features__content {
  flex: 1;
}

.p-features__sub-title {
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  margin-bottom: 12px;
}

.p-features__sub-desc {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: var(--lh-auto);
  color: rgba(74, 55, 40, 0.85);
  margin-bottom: 24px;
}

.p-features__card {
  background-color: var(--White);
  border: 1px solid rgba(74, 55, 40, 0.15);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px);
}

.p-features__card-row {
  margin-bottom: 20px;
}

.p-features__card-row:last-child {
  margin-bottom: 0;
}

.p-features__card-row dt {
  font-weight: 700;
  margin-bottom: 8px;
  font-size: clamp(14px, 1.2vw, 16px);
}

.p-features__card-row dd {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: var(--lh-auto);
  color: rgba(74, 55, 40, 0.85);
}

.p-features__card-text {
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: var(--lh-200);
  color: rgba(74, 55, 40, 0.85);
  letter-spacing: 0.03em;
  font-weight: bold;
}

/* ==========================================================================
   Gift Section (ちゅ〜るギフト機能)
========================================================================== */
.p-gift {
  margin-top: clamp(80px, 10vw, 120px);
}

.p-gift__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 5vw, 64px);
  margin-bottom: clamp(0px, 0vw, 80px);
}

.p-gift__text-area {
  flex: 0 0 55%;
}

.p-gift__icon {
  margin-bottom: 24px;
}

.p-gift__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.p-gift__marker {
  position: relative;
  display: inline-block;
  background: linear-gradient(transparent 60%, var(--Paw-Pink) 60%);
  padding: 0 4px;
}

.p-gift__desc {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: var(--lh-200);
  color: rgba(74, 55, 40, 0.85);
  letter-spacing: 0.03em;
}

.p-gift__ill {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
}

.p-gift__ill-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  background-color: transparent;
}

.p-gift__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.p-gift__card {
  position: relative;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 4vw, 50px);
  text-align: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 94% 87%;
  border-radius: 50%;
  min-width: 0;
}

.p-gift__card--orange {
  background-image: url("../img/card-pattern-orange.webp");
}

.p-gift__card--yellow {
  background-image: url("../img/card-pattern-yellow.webp");
}

.p-gift__card--blue {
  background-image: url("../img/card-pattern-blue.webp");
}

.p-gift__card--orange,
.p-gift__card--yellow,
.p-gift__card--blue {
  background-color: transparent;
  border: none;
}

.p-gift__card-title {
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: clamp(16px, 2vw, 24px);
}

.p-gift__card-text {
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: var(--lh-200);
  color: rgba(74, 55, 40, 0.85);
}

/* ==========================================================================
   Reviews Section (レビュー)
========================================================================== */
.p-reviews {
  position: relative;
  background-color: var(--Milky-White);
  padding-block: clamp(60px, 8vw, 100px);
  overflow: hidden;
  z-index: 0;
}

.p-reviews__header {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.p-reviews__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 2vw, 24px);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--Bitter-Choco);
}

.p-reviews__title-decor {
  width: clamp(24px, 4vw, 40px);
  height: 50px;
}

.p-reviews__title-decor--reverse {
  transform: scaleX(-1);
}

.p-reviews__slider-wrap {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.p-reviews__card {
  background-color: var(--White);
  border: 1px solid var(--Bitter-Choco);
  border-radius: 24px;
  padding: clamp(20px, 3vw, 32px) clamp(20px, 3vw, 32px) clamp(32px, 4vw, 40px);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.p-reviews__thumb {
  margin-bottom: clamp(16px, 2vw, 24px);
}

.p-reviews__img {
  width: 100%;
  aspect-ratio: 16/11;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  background-color: #f0f0f0;
}

.p-reviews__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-reviews__stars {
  margin-bottom: 12px;
}

.p-reviews__stars img {
  width: auto;
  height: 35px;
}

.p-reviews__label {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  margin-bottom: 16px;
  text-align: center;
}

.p-reviews__text {
  font-size: var(--text-16);
  line-height: var(--lh-200);
  color: var(--Bitter-Choco);
  text-align: left;
  width: 100%;
}

/* ==========================================================================
   FAQ Section (Q&A)
========================================================================== */
.p-faq {
  position: relative;
  background-color: var(--Milky-White);
  padding-block: clamp(60px, 8vw, 100px);
  z-index: 0;
}

.p-faq__container {
  max-width: 800px;
}

.p-faq__title {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--Bitter-Choco);
  margin-bottom: clamp(40px, 6vw, 64px);
}

.p-faq__list {
  border-top: 1px solid rgba(74, 55, 40, 0.2);
}

.p-faq__item {
  border-bottom: 1px solid rgba(74, 55, 40, 0.2);
}

.p-faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 16px);
  padding: clamp(20px, 3vw, 28px) 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--Bitter-Choco);
}

.p-faq__icon {
  flex-shrink: 0;
  position: relative;
  width: clamp(28px, 3.5vw, 32px);
  height: clamp(28px, 3.5vw, 32px);
  border: 1px solid var(--Honey-Yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-faq__icon::after {
  content: "";
  width: 8px;
  height: 8px;
  border-bottom: 2px solid var(--Honey-Yellow);
  border-right: 2px solid var(--Honey-Yellow);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.3s ease;
}

.p-faq__q[aria-expanded=true] .p-faq__icon::after {
  transform: translateY(2px) rotate(-135deg);
}

.p-faq__q-text {
  font-size: clamp(16px, 1.3vw, 18px);
  font-weight: 700;
  line-height: 1.5;
  padding-top: clamp(2px, 0.5vw, 4px);
}

.p-faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease-in-out;
}

.p-faq__a[aria-hidden=false] {
  grid-template-rows: 1fr;
}

.p-faq__a-inner {
  min-height: 0;
  overflow: hidden;
}

.p-faq__a-text {
  padding-left: clamp(40px, 5vw, 48px);
  padding-bottom: clamp(20px, 3vw, 28px);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: var(--lh-200);
  color: rgba(74, 55, 40, 0.85);
  letter-spacing: 0.03em;
}

/* ==========================================================================
   CTA Section
========================================================================== */
.p-cta {
  position: relative;
  background-color: var(--Milky-White);
  padding-block: clamp(60px, 8vw, 120px);
  overflow: hidden;
  z-index: 0;
}

.p-cta__lead {
  font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 700;
  color: rgba(74, 55, 40, 0.85);
  margin-bottom: 8px;
}

.p-cta__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--Bitter-Choco);
  line-height: 1.5;
}

.p-cta__marker {
  display: inline-block;
  background: linear-gradient(transparent 60%, var(--Paw-Pink) 60%);
  padding: 0 4px;
}

.p-cta__emoji {
  display: inline-block;
  margin-left: 4px;
}

.p-cta__visual {
  display: flex;
  justify-content: center;
}

.p-cta__img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.p-cta__stores {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
}

.p-cta__store {
  display: inline-block;
  transition: opacity 0.3s ease;
}

.p-cta__store:hover {
  opacity: 0.7;
}

.p-cta__store img {
  height: 56px;
  width: auto;
}

/* ==========================================================================
   Drawer Menu (ハンバーガーメニュー)
========================================================================== */
.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background-color: var(--Milky-White);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer__header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 20px;
  height: 70px;
}

.drawer__logo img {
  height: 28px;
  background: none;
}

.drawer__nav {
  flex: 1;
  padding-top: 20px;
}

.drawer__link {
  display: block;
  text-align: center;
  padding: var(--Spacing-16);
  font-size: var(--text-18);
  font-weight: 700;
  border-top: 1px solid var(--Bitter-Choco);
  background-color: var(--Milky);
}

.drawer__item:last-child .drawer__link {
  border-bottom: 1px solid var(--Bitter-Choco);
}

.drawer__footer {
  padding: var(--Spacing-40) 20px;
  text-align: center;
}

.drawer__catch {
  font-size: var(--text-16);
  font-weight: 700;
  margin-bottom: var(--Spacing-16);
}

.drawer__download {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.drawer__download img {
  height: clamp(52px, 6vw, 60px);
  background: none;
}

/* ==========================================================================
   Drawer Menu (タブレット専用の調整)
========================================================================== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .drawer__header {
    display: none;
  }
  .drawer__nav {
    flex: none;
    padding-top: 100px;
  }
  .drawer__footer {
    margin-top: 40px;
  }
}
/* ==========================================================================
   Footer Section
========================================================================== */
.p-footer {
  position: relative;
  background-color: var(--Honey-Yellow);
  overflow: hidden;
  z-index: 0;
}

.p-footer__bg {
  display: none;
}

.p-footer::before,
.p-footer::after {
  content: "";
  position: absolute;
  top: 0;
  width: clamp(100px, 25vw, 300px);
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.p-footer::before {
  left: 0;
  background-image: url("../img/bg-footer-left.svg");
  background-position: left top;
}

.p-footer::after {
  right: 0;
  background-image: url("../img/bg-footer-right.svg");
  background-position: right top;
}

.p-footer__inner {
  position: relative;
  padding-top: clamp(20px, 2vw, 60px);
  display: flex;
  justify-content: center;
}

/* =======================================
   装飾の猫たち (PC版のみ)
======================================= */
.p-footer__cats {
  position: absolute;
  bottom: clamp(80px, 10vw, 100px);
  left: 0;
  width: 100%;
  height: 0;
  z-index: 0;
  pointer-events: none;
}

.p-footer__cat {
  position: absolute;
  bottom: 0;
  height: auto;
}

.p-footer__cat--sit {
  left: 6%;
  width: clamp(80px, 7vw, 120px);
  transform: translateY(50px);
}

.p-footer__cat--loaf {
  left: 23%;
  width: clamp(100px, 10vw, 140px);
}

.p-footer__cat--stretch {
  right: 5%;
  width: clamp(160px, 20vw, 240px);
}

/* =======================================
   コンテンツ（猫・ロゴ・コピーライト）
======================================= */
.p-footer__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: clamp(32px, 5vw, 30px);
  transition: opacity 0.3s ease;
  text-decoration: none;
}

.p-footer__brand:hover {
  opacity: 0.7;
}

.p-footer__brand-cat {
  width: clamp(100px, 15vw, 110px);
  height: auto;
}

.p-footer__brand-logo {
  width: clamp(160px, 25vw, 240px);
  height: auto;
}

.p-footer__copy {
  color: var(--White);
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1024px) {
  .fv {
    padding-top: 60px;
  }
  .fv__visual {
    padding: 0 0;
  }
  .fv__slide.swiper-slide-active {
    transform: scale(1) !important;
    transition: transform 0.3s ease;
  }
  .fv__slide {
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }
  .fv__title img {
    margin-left: 0px;
  }
  .troubles__title {
    text-align: left;
    margin-bottom: var(--Spacing-40);
    font-size: var(--text-16);
  }
  .troubles__content {
    flex-direction: column;
    min-height: auto;
    margin-bottom: var(--Spacing-48);
  }
  .troubles__bubbles {
    position: static;
    display: flex;
    flex-direction: column;
    order: 1;
    max-width: 400px;
  }
  .troubles__bubble {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
  }
  .troubles__bubble:nth-child(odd) {
    margin-right: auto;
    margin-left: 0;
    margin-top: -25px;
  }
  .troubles__bubble:nth-child(even) {
    margin-left: auto;
    margin-right: 0;
    margin-top: -25px;
  }
  .troubles__bubble--1 {
    top: 15%;
    left: 0;
    background-image: url("../img/bubble-bg-1.svg");
    padding: 70px 20px 50px;
  }
  .troubles__bubble--2 {
    top: 0;
    left: 5%;
    background-image: url("../img/bubble-bg-2.svg");
    padding: 50px 50px 40px;
  }
  .troubles__bubble--4 {
    bottom: 10%;
    left: 5%;
    background-image: url("../img/bubble-bg-4.svg");
    padding: 50px 57px 40px;
  }
  .troubles__figure {
    order: 2;
  }
  .troubles__figure img {
    max-width: 150px;
    padding-top: 0px;
  }
  .troubles__conclusion-text {
    font-size: var(--text-18);
  }
  .troubles__arrow {
    width: 16px;
    height: 16px;
  }
  .troubles__arrows {
    padding-top: var(--Spacing-32);
  }
}
/* ==========================================================================
   SP Layout (Concept Section)
========================================================================== */
@media (max-width: 767px) {
  .concept {
    padding-block: var(--Spacing-48);
  }
  .concept__title {
    margin-bottom: var(--Spacing-16);
    font-size: var(--text-24);
  }
}
/* ==========================================================================
   PC Layout (縦積み設定)
========================================================================== */
@media screen and (min-width: 768px) {
  .p-features__block .swiper-wrapper {
    flex-direction: column;
    gap: clamp(60px, 8vw, 100px);
  }
  .p-features__item {
    width: 100% !important;
  }
  .js-features-prev,
  .js-features-next,
  .js-reviews-prev,
  .js-reviews-next {
    display: none !important;
  }
}
/* ==========================================================================
   SP Layout (スライダー用調整)
========================================================================== */
@media screen and (max-width: 767px) {
  .p-features__sub-title {
    text-align: center;
  }
  .p-features__body {
    flex-direction: column;
  }
  .p-features__item--reverse .p-features__body {
    flex-direction: column;
  }
  .p-features__visual {
    width: 100%;
    margin-bottom: 24px;
  }
  .swiper-button-next.js-features-next,
  .swiper-button-prev.js-features-prev {
    top: 300px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--Latte-Beige);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: var(--Latte-Beige);
  }
  .swiper-button-next.js-features-next {
    right: 0;
  }
  .swiper-button-prev.js-features-prev {
    left: 0;
  }
  .swiper-button-next.js-features-next::after,
  .swiper-button-prev.js-features-prev::after {
    font-size: 16px;
  }
}
/* ==========================================================================
   SP Layout (Gift Section)
========================================================================== */
@media screen and (max-width: 1024px) {
  .p-gift__title {
    text-align: left;
  }
  .p-gift__top {
    flex-direction: column;
    text-align: center;
    gap: 0px;
  }
  .p-gift__text-area,
  .p-gift__ill {
    flex: none;
    width: 100%;
  }
  .p-gift__ill-img {
    max-width: 320px;
  }
  .p-gift__cards {
    grid-template-columns: 1fr;
    gap: 0px;
  }
  .p-gift__card {
    max-width: 336px;
    margin: 0 auto;
    width: 100%;
  }
  .p-gift__card-title {
    font-size: 16px;
  }
  .p-gift__card-text {
    font-size: 13px;
  }
}
/* ==========================================================================
   PC Layout (Grid設定)
========================================================================== */
@media screen and (min-width: 768px) {
  .p-reviews .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(20px, 3vw, 32px);
  }
  .p-reviews__item {
    width: 100% !important;
  }
}
/* ==========================================================================
   SP Layout (スライダー調整)
========================================================================== */
@media screen and (max-width: 767px) {
  .swiper-button-prev.js-reviews-prev,
  .swiper-button-next.js-reviews-next {
    top: 45%;
    width: 40px;
    height: 40px;
    color: var(--Latte-Beige);
    margin-top: 0;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--Latte-Beige);
  }
  .swiper-button-prev.js-reviews-prev {
    left: 0;
  }
  .swiper-button-next.js-reviews-next {
    right: 0;
  }
  .swiper-button-prev.js-reviews-prev::after,
  .swiper-button-next.js-reviews-next::after {
    font-size: 16px;
  }
}
/* ==========================================================================
   PC Layout (Gridエリアを使った配置)
========================================================================== */
@media screen and (min-width: 768px) {
  .p-cta__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual title" "visual stores";
    gap: 24px clamp(32px, 5vw, 64px);
    align-items: center;
  }
  .p-cta__title-area {
    grid-area: title;
    align-self: end;
  }
  .p-cta__visual {
    grid-area: visual;
  }
  .p-cta__stores {
    grid-area: stores;
    align-self: start;
  }
}
/* ==========================================================================
   SP Layout
========================================================================== */
@media screen and (max-width: 767px) {
  .p-cta__grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 5vw, 40px);
    text-align: center;
  }
  .p-cta__title-area {
    order: 1;
  }
  .p-cta__visual {
    order: 2;
  }
  .p-cta__stores {
    order: 3;
    justify-content: center;
  }
}
/* ==========================================================================
   フッターSP Layout
========================================================================== */
@media screen and (max-width: 767px) {
  .p-footer::before,
  .p-footer::after {
    display: none;
  }
  .p-footer__bg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/bg-footer-sp.svg");
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: -1;
  }
  .p-footer__inner {
    padding-top: 80px;
  }
}/*# sourceMappingURL=style.css.map */