@charset "utf-8";

/* =========================================
  柿っちょ LP v2
  - 共通（common.css）を尊重しつつ
  - “柿っちょらしさ”（ポップ/ちょいパク/やさしい甘さ）を強化
  ========================================= */

/* Base reset（既存CSSと二重でもOKだが、最小限） */
*,
::before,
::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
}

/* Theme tokens */
:root {
  --k-brown: #2e1b0b;
  --k-orange: #e06030;
  --k-pink: #fae1e5;
  --k-cream: #fffad6;
  --k-mint: #b7caa5;
  --k-ink: #1b1b1b;
  --k-card: rgba(255, 255, 255, 0.82);
  --k-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --k-radius: 22px;
}

/* Main wrapper */
.kakiccho {
  background: linear-gradient(180deg, var(--k-pink), var(--k-cream));
  padding-bottom: 24px;
}

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Typography helpers */
.sectionHead__en {
  font-family:
    "Montserrat",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: rgba(46, 27, 11, 0.7);
}
.sectionHead__jp {
  font-family: "bokutoh-rera", sans-serif;
  /* font-weight: 400; */
  /* font-style: normal; */
  font-size: 26px;
  font-size: 22px;
  font-size: clamp(26px, 3.2vw, 40px);
  color: var(--k-brown);
  margin-top: 6px;
  line-height: 1.15;
  color: #7a4600;
  margin-top: 6px;
  line-height: 1.15;
}
.sectionHead__sub {
  margin-top: 8px;
  color: rgba(46, 27, 11, 0.75);
  font-family: "vdl-logomarupop-shadow", sans-serif;
  font-size: 26px;
}
.sectionHead {
  margin-bottom: 22px;
}

.small {
  font-size: 12px;
  color: rgba(27, 27, 27, 0.65);
}

/* Sections */
.section {
  padding: 54px 0;
}
.section--tint {
  background: rgba(255, 255, 255, 0.35);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Grid */
.grid {
  display: grid;
  gap: 18px;
}
.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 920px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* Card */
.card {
  background: var(--k-card);
  border-radius: var(--k-radius);
  box-shadow: var(--k-shadow);
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(6px);
}
.card--soft {
  background: rgba(255, 255, 255, 0.62);
}
.card__title {
  font-family: zen-kurenaido, sans-serif;
  font-style: normal;
  font-weight: 800;
  color: var(--k-brown);
  font-size: 22px;
  margin-bottom: 10px;
}
.card__text {
  color: rgba(27, 27, 27, 0.85);
  padding-top: 15px;
  font-size: 1.1em;
}

/* Pills */
.pillRow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  padding: 10px 10px;
  border-radius: 999px;
  background: rgba(224, 96, 48, 0.12);
  color: rgba(46, 27, 11, 0.85);
  font-size: 14px;
  border: 1px solid rgba(224, 96, 48, 0.18);
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 8px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url(/images/kakiccho/kakiccho_BG2.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  filter: saturate(1.08) contrast(1.12) brightness(1.25) blur(1.8px);
  transform: scale(1);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    80% 80% at 50% 30%,
    rgba(0, 0, 0, 0.25),
    rgba(0, 0, 0, 0.55)
  );
}
.hero__inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 54px 18px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
  text-align: center;
  justify-items: center;
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    padding: 46px 18px 74px;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.06em;
  backdrop-filter: blur(8px);
}

.hero__title {
  margin-top: 10px;
  color: #fff;
}
/* ---- HERO centering fix ---- */
:root {
  --hero-center-nudge: 0px; /* ロゴ画像内の余白でズレる場合は 1px〜-3px で微調整 */
}
.hero__copy {
  text-align: center;
}
.hero__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transform: translateX(var(--hero-center-nudge));
}
.hero__titleLogo {
  width: 100%;
  display: flex;
  justify-content: center;
}
.hero__titleLogo img {
  margin-left: auto;
  margin-right: auto;
}
.hero__catch {
  width: 100%;
}
.hero__lead {
  margin-left: auto;
  margin-right: auto;
}
/* ---- /HERO centering fix ---- */

.hero__titleLogo img {
  display: block;
  justify-items: center;
  width: min(350px, 80vw);
  height: auto;
  filter: drop-shadow(1px 10px 20px rgba(0, 0, 0, 0.3));
}
.hero__catch {
  display: block;
  margin-top: 16px;
  justify-items: center;
  font-family: "vdl-logomarupop-shadow", sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.55);
}
.hero__catch em {
  font-style: normal;
  color: #ffe28b;
  text-shadow: 1px 1px 16px rgba(0, 0, 0, 0.55);
}

.hero__lead {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-family: tk-takumi-yutori-font-norm, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.55);
  max-width: 48ch;
  font-size: 1.5em;
}
.hero__inner {
  grid-template-columns: 1fr;
}

.hero__headline {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
  margin-top: 12px;
}
.hero__headlineRight .hero__lead {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero__headline {
    grid-template-columns: 1fr;
  }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero__meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  list-style: none;
  padding: 0;
}
.hero__meta li {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 7px 10px;
  backdrop-filter: blur(8px);
}

/* Hero card */
.heroCard {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--k-radius);
  padding: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}
.heroCard__chara {
  width: min(240px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.25));
}
.heroCard__note {
  margin-top: 10px;
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "vdl-logomarupop-shadow", sans-serif;
  text-shadow: 1px 1px 12px rgba(0, 0, 0, 0.55);
}

/* Wave separator */
.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 56px;
  background:
    radial-gradient(
        24px 24px at 24px 24px,
        rgba(255, 255, 255, 0.92) 50%,
        transparent 52%
      )
      0 0/48px 48px,
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.72));
  opacity: 0.9;
  mask: linear-gradient(#000, transparent);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: zen-kurenaido, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  text-decoration: none;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: linear-gradient(135deg, #ffbf66, var(--k-orange));
  color: #1b0b00;
  box-shadow: 0 10px 22px rgba(224, 96, 48, 0.35);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(224, 96, 48, 0.42);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}
.btn--wide {
  width: 100%;
}

/* Lists */
.sceneList {
  font-family: mizolet, sans-serif;
  font-style: normal;
  font-weight: 400;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  font-size: 1.3em;
  gap: 10px;
  color: rgba(27, 27, 27, 0.85);
}

/* Photo placeholder */
.photoFrame {
  margin-top: 14px;
  border-radius: 16px;
  border: 1px dashed rgba(46, 27, 11, 0.35);
  background: rgba(255, 255, 255, 0.55);
  padding: 14px;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.photoFrame__hint {
  font-size: 12px;
  color: rgba(46, 27, 11, 0.7);
  text-align: center;
}

/* Features */
.feature {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--k-radius);
  padding: 18px;
  box-shadow: var(--k-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.feature__num {
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(224, 96, 48, 0.85);
  margin-bottom: 6px;
}
.feature__title {
  font-family: mizolet, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  color: var(--k-brown);
  margin-bottom: 8px;
}
.feature__text {
  color: rgba(27, 27, 27, 0.82);
}
.package{
  position: relative;
}
.package{
  display: flex;
  justify-content: center;
  padding: 28px 0 6px;
}

.package img{
  width: 72vw;        /* スマホでは画面に合わせる */
  max-width: 320px;   /* PCで大きくなりすぎない */
  height: auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,.14);
  transform: translateZ(0); /* 画像のにじみ対策（任意） */
}
.package::before{
  content: "";
  position: absolute;
  width: 520px;
  max-width: 92vw;
  height: 180px;
  bottom: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  filter: blur(2px);
}
.package img{
  position: relative;
}
.package{
  display:flex;
  justify-content:center;
  padding: 28px 0 6px;
}

.package__wrap{
  position: relative;
  display: inline-block;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.514); /* セクション背景になじませる */
  backdrop-filter: blur(5px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.package__wrap img{
  width: 72vw;
  max-width: 360px;
  height: auto;
  display:block;
  border-radius: 16px;
}
/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.step {
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--k-radius);
  padding: 18px;
  box-shadow: var(--k-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.step__badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(183, 202, 165, 0.35);
  border: 1px solid rgba(183, 202, 165, 0.45);
  color: rgba(46, 27, 11, 0.8);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.step__title {
  margin-top: 10px;
  font-family: mizolet, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  color: var(--k-brown);
}
.step__text {
  margin-top: 6px;
  color: rgba(27, 27, 27, 0.82);
}

/* Note box */
.noteBox {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(224, 96, 48, 0.1);
  border: 1px solid rgba(224, 96, 48, 0.18);
  color: rgba(46, 27, 11, 0.85);
}

/* Spec */
.spec {
  margin-top: 6px;
}
.spec__row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.spec__row dt {
  color: rgba(46, 27, 11, 0.75);
  font-weight: 700;
}
.spec__row dd {
  margin: 0;
  color: rgba(27, 27, 27, 0.88);
}

/* Tips */
.tips {
  margin: 0;
  padding-left: 18px;
  color: rgba(27, 27, 27, 0.85);
}
.tips li {
  margin: 8px 0;
}

/* CTA box */
.ctaBox {
  margin-top: 14px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(183, 202, 165, 0.26);
  border: 1px solid rgba(183, 202, 165, 0.35);
}
.ctaBox__text {
  margin: 0 0 10px 0;
  color: rgba(46, 27, 11, 0.8);
  font-size: 13px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faqItem {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--k-shadow);
  padding: 14px 16px;
}
.faqItem summary {
  cursor: pointer;
  font-family: bokutoh-rera, sans-serif;
  font-style: normal;
  font-weight: 200;
  color: var(--k-brown);
  font-size: 18px;
  list-style: none;
}
.faqItem summary::-webkit-details-marker {
  display: none;
}
.faqItem summary::after {
  content: "＋";
  float: right;
  color: rgba(224, 96, 48, 0.95);
  font-family: "Montserrat", system-ui, sans-serif;
}
.faqItem[open] summary::after {
  content: "−";
}
.faqItem p {
  margin-top: 10px;
  color: rgba(27, 27, 27, 0.82);
}

/* Sticky CTA (mobile) */
.stickyCta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
  display: none;
  z-index: 20;
}
.stickyCta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffbf66, var(--k-orange));
  color: #1b0b00;
  font-family: zen-kurenaido, sans-serif;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(224, 96, 48, 0.28);
}
@media (max-width: 860px) {
  .stickyCta {
    display: block;
  }
  /* スティッキーに被らないよう余白 */
  .kakiccho {
    padding-bottom: 88px;
  }
}

/* Page top button（既存の見た目維持。クリック領域だけ上げる） */
#page_top {
  z-index: 25;
}

/* 既存CSSで footer img { width:200% } があると崩れるので、ここで矯正 */
.footer img {
  width: auto;
  max-width: 235px;
}
/* page top button */
#page_top {
  width: 90px;
  height: 90px;
  position: fixed;
  right: 0;
  bottom: 0;
  opacity: 0.6;
}
#page_top a {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  text-decoration: none;
}
#page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f102";
  font-size: 25px;
  color: #ff9900;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -40px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
#page_top a::after {
  content: "PAGE TOP";
  font-size: 13px;
  color: #fff;
  position: absolute;
  top: 45px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
  color: #ff9900;
}

/* --- footer image fix：ロゴだけ調整＆QRは元通り --- */

/* フッターロゴだけを想定サイズに */
.footer-logo img{
  width: 235px;
  max-width: 235px;
  height: auto;
}

/* Instagram QR：小さく表示して hover で拡大（common.css の挙動を維持） */
.instagram_qr{
  display: block;      /* 幅指定を効かせる */
  width: 80px;         /* PC時の基本サイズ */
  margin-top: 30px;
}
.instagram_qr img{
  width: 100%;
  height: auto;
}

/* common.css のモバイル指定に合わせる */
@media (max-width: 1200px){
  .instagram_qr{ width: 10%; }
}