@charset "UTF-8";
/*
Theme Name: Cocoon Child（ケータリング）
Template: cocoon-master
*/
:root {
  --orange: #E7904B;
  --orange-light: #E7904B;
  --orange-dark: #A0500F;
  --cream: #FBF7F2;
  --gray-bg: #F5F1EC;
  --text: #2C2C2C;
  --text-light: #666;
  --border: #E0D8CF;
  --white: #fff;
  --navy: #0F2453;
}

/*
Theme Name: Cocoon Child（ケータリング）
Template: cocoon-master
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
  background: #F2F0EB;
  font-size: 15px;
  line-height: 1.8;
}

/* ===== STICKY NAV ===== */
.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 84px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.inner-nav {
  width: min(900px, 100%);
  min-height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.sticky-nav .logo-image {
  display: inline-flex;
  align-items: center;
  color: #9f7d61;
  text-decoration: none;
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: 0.32em;
  white-space: nowrap;
}

.sticky-nav .logo-image span {
  display: block;
}

.sticky-nav .logo-image img {
  display: block;
  height: 74px;
  width: auto;
}

.page-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.page-nav-toggle__bar {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.page-nav-toggle__bar + .page-nav-toggle__bar {
  margin-top: 0;
}

.page-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 998;
}

body.nav-open {
  overflow: hidden;
}

.page-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #E7904B;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.page-nav a:hover {
  color: var(--orange);
}

.nav-cta {
  background: var(--orange-light);
  color: var(--white) !important;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-cta-white {
  background: #fff;
  color: #E7904B;
  border: 1px solid #E7904B;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-cta-white-grey {
  background: #fff;
  color: #696969 !important;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-cta-grey-white {
  background: #696969;
  color: #fff;
  border: 1px solid #fff;
  padding: 11px 24px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
}

/* ===== HERO ===== */
.hero {
  margin-top: 40px;
  position: relative;
  height: 660px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
  isolation: isolate;
}

/* 横幅100%で左右は切らない。縦に長いときは中央ではなく上基準にして、俯瞰構図の手前〜左側が見えやすくする */
.hero-overlay {
  position: absolute;
  inset: 0;
  bottom: 20px; /* オレンジ帯の分だけ表示領域を短くする */
  z-index: 0;
  background-color: var(--gray-bg);
  background-image: url("/catering-lp/wp-content/themes/cocoon-child-master/assets/images/hero-bg.avif");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
@media screen and (min-width: 375px) {
  .hero-overlay {
    background-image: url("/catering-lp/wp-content/themes/cocoon-child-master/assets/images/hero-bg-sp.avif");
  }
}

.hero-band-wrapper {
  position: relative;
  z-index: 1;
}

.hero-band {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -42px;
  height: 64px;
  background: var(--orange-light);
  z-index: 1;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 70px 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #324158;
  z-index: 2;
  /* デフォルトは横長（画面半分でも縦長になりにくくする） */
  background-image: url("/catering-lp/wp-content/themes/cocoon-child-master/assets/images/hero-in-bg.avif");
  background-size: cover;
  /* 450px以下は縦長画像 */
}
@media (max-width: 450px) {
  .hero-content {
    background-image: url("/catering-lp/wp-content/themes/cocoon-child-master/assets/images/hero-in-bg-sp.png");
    background-size: contain;
  }
}
.hero-content {
  /* 451〜767pxは横長画像だが、coverだと切れすぎるので抑える */
}
@media screen and (min-width: 451px) and (max-width: 767px) {
  .hero-content {
    background-size: contain;
    background-position: center;
  }
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 24px;
}

.hero-title span {
  font-size: 27px;
}

.hero-desc {
  font-size: 13px;
  line-height: 2;
  opacity: 0.9;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  margin: 0 auto 30px;
  text-align: left;
  font-weight: bold;
}

/* SP: 767px以下は常に適用（375px未満でも崩れないようにする） */
@media screen and (max-width: 767px) {
  .hero {
    height: auto;
    /* 固定ヘッダー(64px)・固定フッター分を除いた可視領域で中央寄せ */
    box-sizing: border-box;
    padding-top: 64px;
    padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
    min-height: calc(100svh - 64px - 56px);
    margin-top: 0;
    align-items: center;
  }
  .hero-overlay {
    bottom: 0;
  }
  .hero-band {
    display: none;
  }
  .hero-content {
    padding: 24px;
    margin: 20px 16px;
    box-sizing: border-box;
    width: calc(100% - 32px);
    max-width: 560px;
    /* 横長背景（AVIF）を前提に、上下が切れすぎない設定にする */
    background-size: 140% 115%;
    background-position: 50% 10%;
    background-repeat: no-repeat;
  }
  .hero-title {
    font-size: 22px;
    text-shadow: none;
  }
  .hero-title span {
    font-size: 20px;
  }
  .hero-desc {
    font-size: 13px;
    text-align: left;
  }
  /* CTAボタン */
  .btn-primary {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border-radius: 50px;
    font-size: 16px;
    padding: 16px;
  }
  /* 下部固定フッター */
  .sp-fixed-footer {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  .sp-fixed-footer a {
    flex: 1;
    padding: 14px;
    text-align: center;
    color: #fff;
    font-size: 13px;
    text-decoration: none;
  }
  .sp-fixed-footer .btn-reserve {
    background: var(--orange);
  }
  .sp-fixed-footer .btn-contact {
    background: #1a2a4a;
  }
}
@media screen and (min-width: 768px) {
  .sp-fixed-footer {
    display: none;
  }
  .hero {
    min-height: 0;
  }
  .hero-content {
    padding: 70px;
  }
}
.icon-reply {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url("assets/images/check.svg") center/contain no-repeat;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(200, 101, 26, 0.4);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--orange);
  color: var(--orange);
  text-decoration: none;
  padding: 14px 48px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--orange);
  color: var(--white);
}

/* ===== SECTION COMMON ===== */
section {
  padding: 80px 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 40px;
}

.section-label {
  font-family: "Montserrat", sans-serif;
  font-weight: 420;
  letter-spacing: -0.02em;
  color: #0F2453;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 8px;
}
@media screen and (min-width: 375px) {
  .section-label {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .section-label {
    font-size: 50px;
  }
}

.section-label::before,
.section-label::after {
  content: "";
  flex: 1;
  height: 2px;
  background: currentColor;
  opacity: 0.35;
  max-width: 160px;
}

.section-title-ja {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 48px;
  color: var(--text);
}

.section-title-center {
  text-align: center;
}

/* ===== CONCEPT ===== */
.concept {
  background: #F2F0EB;
}

.concept-text-inner {
  display: grid;
  gap: 60px;
  align-items: start;
}
@media screen and (min-width: 375px) {
  .concept-text-inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .concept-text-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.concept-text-outer h2 {
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #0F2453;
}
@media screen and (min-width: 375px) {
  .concept-text-outer h2 {
    font-size: 20px;
  }
}
@media screen and (min-width: 768px) {
  .concept-text-outer h2 {
    font-size: 31px;
  }
}

.concept-text p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.15;
}

.concept-img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

/* ===== PAIN ===== */
.pain {
  background: var(--gray-bg);
}
.pain .section-title-ja {
  margin-bottom: 0;
}

.pain-outer {
  background: #fff;
  border-radius: 8px;
  padding: 40px 20px;
  margin-bottom: 40px;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  padding: 32px 24px;
  text-align: center;
}

.pain-icon {
  width: 170px;
  height: 170px;
  background: var(--gray-bg);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.pain-card p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.7;
}

.pain-cta {
  text-align: center;
  font-size: 15px;
  line-height: 1.9;
  color: #0F2453;
  font-weight: 500;
}

.pain-cta-icon {
  width: 34px;
  margin: 0 auto 18px;
  line-height: 0;
}

.pain-cta-icon svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #E7904B;
}

.pain-cta span {
  color: #E7904B;
  font-weight: 700;
}

/* ===== REASONS ===== */
.reasons {
  background: #E7904B;
}
.reasons .section-label, .reasons .section-title-ja {
  color: #fff;
}

.reason-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.reason-item {
  display: grid;
  gap: 20px;
  background: #fff;
  padding: 40px 36px;
  align-items: start;
  margin-bottom: 20px;
}
@media screen and (min-width: 375px) {
  .reason-item {
    grid-template-columns: 1fr;
  }
}
@media screen and (min-width: 768px) {
  .reason-item {
    grid-template-columns: 120px 1fr;
  }
}

.reason-item:first-child {
  border-top: 1px solid var(--border);
}

.reason-num {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 375px) {
  .reason-num {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .reason-num {
    align-items: flex-start;
  }
}

.reason-num .num {
  font-family: "Montserrat", sans-serif;
  font-size: 80px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  display: inline-block;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 10px;
}

.reason-num .label {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--navy);
  margin-top: 4px;
}

.reason-body h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--navy);
}

.reason-body p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--navy);
}

/* ===== FLOW ===== */
.flow {
  background: var(--gray-bg);
}

.flow-block {
  margin-bottom: 48px;
}

.flow-block-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 24px;
  background: var(--orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
}

.flow-block:nth-of-type(3) .flow-block-title {
  background: #0F2453;
}
.flow-block:nth-of-type(3) .step-num {
  background: #0F2453;
}
.flow-block:nth-of-type(3) .flow-step {
  border: 1px solid #0F2453;
}

.flow-steps {
  display: grid;
  grid-template-columns: 1fr 24px 1fr 24px 1fr;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 24px;
  align-items: stretch;
}

.flow-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flow-step-connector svg {
  display: block;
  width: 18px;
  height: auto;
  flex-shrink: 0;
  fill: var(--orange);
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}

.flow-block:nth-of-type(3) .flow-step-connector svg {
  fill: #0F2453;
}

.flow-step {
  border: 1px solid var(--orange);
  padding-bottom: 28px;
  position: relative;
  text-align: center;
}

.step-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  color: #fff;
  background: var(--orange);
  padding: 5px 10px;
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 40px;
}

.step-icon {
  font-size: 36px;
  display: block;
  width: 100px;
  max-height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0 auto 40px;
}

.flow-step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
}

.flow-step p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.8;
  padding-left: 10px;
  padding-right: 10px;
}

/* ===== CTA BAND ===== */
.cta-band {
  padding: 20px 0 80px;
  text-align: center;
}

.cta-band-title {
  border-top: 1px solid #0F2453;
  padding-top: 40px;
  padding-bottom: 20px;
  font-size: 37px;
}

.cta-band h3 {
  color: #0F2453;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (min-width: 375px) {
  .cta-band h3 {
    font-size: 30px;
  }
}
@media screen and (min-width: 768px) {
  .cta-band h3 {
    font-size: 46px;
  }
}

.cta-band p {
  color: #0F2453;
  font-size: 13px;
  margin-bottom: 40px;
}

.btn-navy {
  display: inline-block;
  background: #0F2453;
  color: #fff;
  text-decoration: none;
  padding: 16px 48px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  border-radius: 50px;
}

.btn-navy:hover {
  color: var(--orange);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-2px);
}

/* ===== PLAN ===== */
.plan {
  background: var(--white);
}

.plan-note {
  text-align: center;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.plan-card {
  background: var(--white);
}

.plan-course {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 10px 12px;
  margin-bottom: 20px;
}

.plan-course small {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 600;
}

.plan-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #e8ddd0;
}

.plan-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.plan-body {
  padding: 14px 0 0;
}

.plan-desc {
  font-size: 13px;
  color: var(--navy);
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
  border-bottom: 1px solid var(--navy);
  padding: 10px 12px 12px;
}

.plan-menu {
  font-size: 12px;
  color: var(--text-light);
  line-height: 2;
  padding: 0 12px 18px;
}

.plan-menu li::before {
  content: "";
  color: var(--orange);
}

/* ===== DRINK ===== */
.drink-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
  background: #fff;
  margin: 0 20px;
}

.drink-card {
  border-right: 1px solid var(--orange);
}

.drink-header {
  background: #E7904B;
  color: #fff;
  padding: 14px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  margin: 20px;
}

.drink-body {
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-light);
  line-height: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.drink-block {
  background: #E7904B;
  padding-bottom: 20px;
}

.drink-title-sub {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 32px;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* ===== VOICE ===== */
.voice {
  background: var(--gray-bg);
}

.voice-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.voice-card {
  border-radius: 8px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.voice-img {
  width: 100%;
  min-height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 12px;
}

.voice-body {
  padding: 28px 32px;
}

.voice-client {
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 12px;
}

.voice-body p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
}

/* ===== FAQ ===== */
.faq {
  background: #E7904B;
  color: #fff;
}
.faq .section-label, .faq .section-title-ja {
  color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  background: #fff;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 20px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  color: var(--text);
}

.faq-q .icon {
  color: var(--orange);
  font-size: 20px;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 20px 24px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 2;
  width: 100%;
}

.faq-item.open .faq-a {
  display: block;
}

/* ===== RESERVATION ===== */
.reservation {
  background: #fff;
}

.reserve-intro {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.reserve-tel {
  text-align: center;
  margin-bottom: 40px;
}

.reserve-tel p {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 8px;
}

.reserve-tel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(520px, 100%);
  padding: 18px 24px;
  background: var(--navy);
  color: var(--white);
  font-size: 44px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
  letter-spacing: 0.04em;
}

.reserve-tel a::before {
  content: "☎";
  font-size: 22px;
  line-height: 1;
  margin-right: 16px;
  opacity: 0.95;
}

.reserve-form-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.reserve-tel p,
.reserve-form-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--navy);
  letter-spacing: 0.06em;
}

.reserve-tel p::before,
.reserve-tel p::after,
.reserve-form-label::before,
.reserve-form-label::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

@media (max-width: 768px) {
  .reserve-tel a {
    min-width: 100%;
    font-size: 34px;
    padding: 16px 18px;
    text-underline-offset: 6px;
  }
  .reserve-tel a::before {
    font-size: 20px;
    margin-right: 12px;
  }
  .reserve-tel p::before,
  .reserve-tel p::after,
  .reserve-form-label::before,
  .reserve-form-label::after {
    width: 40px;
  }
}
/* ===== FOOTER ===== */
footer {
  background: #696969;
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-addr {
  font-size: 13px;
  line-height: 2;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 12px;
}

/* ===== FLOAT CTA ===== */
.float-cta {
  position: fixed;
  right: 2%;
  top: 90%;
  transform: translateY(-50%);
  z-index: 999;
}

.float-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-light);
  color: var(--white);
  text-decoration: none;
  width: 150px;
  height: 150px;
  padding: 16px;
  border-radius: 50%;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  transition: all 0.2s;
  border: 3px solid #fff;
}
@media screen and (min-width: 375px) {
  .float-cta a {
    width: 100px;
    height: 100px;
    padding: 12px;
    font-size: 12px;
  }
}

.float-cta a:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

@media screen and (min-width: 768px) {
  .page-nav {
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .page-nav {
    gap: 16px;
  }
}

/* ===== RESPONSIVE (max-width) ※ヒーローは mq("sm")/mq("md") で制御するためここでは指定しない) ===== */
@media (max-width: 768px) {
  .sticky-nav {
    padding: 0 20px;
    height: 64px;
  }
  .inner-nav {
    min-height: 64px;
    justify-content: space-between;
  }
  .sticky-nav .logo-image {
    position: static;
    transform: none;
    font-size: 12px;
    letter-spacing: 0.24em;
    text-align: center;
  }
  .sticky-nav .logo-image img {
    height: 52px;
    width: auto;
  }
  .page-nav-toggle {
    display: inline-flex;
  }
  .page-nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    width: min(320px, 86vw);
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 16px;
    box-shadow: -12px 0 24px rgba(0, 0, 0, 0.08);
    transform: translateX(110%);
    transition: transform 0.22s ease;
    z-index: 999;
  }
  .page-nav.is-open {
    transform: translateX(0);
  }
  .page-nav li + li {
    margin-top: 10px;
  }
  .page-nav a {
    display: block;
    padding: 12px 12px;
    border-radius: 10px;
    color: var(--navy);
    font-weight: 700;
  }
  .nav-cta,
  .nav-cta-white {
    display: block;
    text-align: center;
    padding: 14px 16px;
    font-size: 13px;
  }
  .float-cta {
    top: auto;
    bottom: 20px;
    right: 20px;
    transform: none;
  }
  .concept-inner {
    grid-template-columns: 1fr;
  }
  .pain-grid {
    grid-template-columns: 1fr;
  }
  .flow-steps {
    grid-template-columns: 1fr;
  }
  .flow-step-connector {
    padding: 4px 0;
  }
  .flow-step-connector svg {
    transform: rotate(180deg);
  }
  .plan-grid {
    grid-template-columns: 1fr;
  }
  .drink-table {
    grid-template-columns: 1fr;
  }
  .voice-card {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .container {
    padding: 0 20px;
  }
  section {
    padding: 60px 0;
  }
}
/* ===== Contact Form 7 フォームスタイル ===== */
.wpcf7-form p {
  margin-bottom: 20px;
  text-align: left;
}

.wpcf7-form p,
.wpcf7-form label {
  font-size: 14px;
  color: #333;
  display: block;
  margin-bottom: 6px;
}

.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=tel],
.wpcf7-form input[type=number],
.wpcf7-form input[type=date],
.wpcf7-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  color: #333;
  background: #fff;
  box-sizing: border-box;
}

.wpcf7-form input::-moz-placeholder, .wpcf7-form textarea::-moz-placeholder {
  color: #aaa;
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #aaa;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: #999;
}

/* ラジオボタン縦並び */
.wpcf7-radio .wpcf7-list-item {
  display: block;
  margin: 6px 0;
}

.wpcf7-radio .wpcf7-list-item input {
  margin-right: 8px;
}

/* 送信ボタン */
.wpcf7-form input[type=submit] {
  display: block;
  margin: 30px auto 0;
  padding: 14px 60px;
  background: var(--navy);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.1em;
}

.wpcf7-form input[type=submit]:hover {
  opacity: 0.85;
}/*# sourceMappingURL=style.css.map */