/* ============================================
   momohana.jp 共通スタイル v4（POP）
   白ベース×ロゴピンク×リーフグリーン
   太ゴシック・アウトライン英字・ステッカー風カード
   ロゴ実測色：ピンク #FA66A1 ／ グリーン #36B244
   ============================================ */

:root {
  --bg: #FFFFFF;
  --pink-soft: #FDF2F7;
  --green-soft: #EBF7EC;
  --cream: #FBF2D6;
  --pink: #FA66A1;
  --rose: #D6437F;
  --rose-deep: #B93368;
  --green: #36B244;
  --green-deep: #2E9639;
  --yellow: #FFDE59;
  --ink: #241419;
  --ink2: #5A3848;
  --ink3: #A08691;
  --white: #FFFFFF;
  --sans: "Zen Kaku Gothic New", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --display: "Montserrat", "Zen Kaku Gothic New", sans-serif;
  --radius: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 2.05;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--rose);
  text-decoration: none;
}

/* ---------- 桃の花モチーフ（ピンクの花＋緑の葉） ---------- */

.flower-mark,
.page-header::after {
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 110'%3E%3Cg fill='none' stroke='%23FA66A1' stroke-width='3'%3E%3Cellipse cx='50' cy='27' rx='9' ry='15'/%3E%3Cellipse cx='50' cy='27' rx='9' ry='15' transform='rotate(72 50 50)'/%3E%3Cellipse cx='50' cy='27' rx='9' ry='15' transform='rotate(144 50 50)'/%3E%3Cellipse cx='50' cy='27' rx='9' ry='15' transform='rotate(216 50 50)'/%3E%3Cellipse cx='50' cy='27' rx='9' ry='15' transform='rotate(288 50 50)'/%3E%3Ccircle cx='50' cy='50' r='3.5'/%3E%3C/g%3E%3Cg fill='none' stroke='%2336B244' stroke-width='3'%3E%3Cpath d='M50 72 Q38 84 24 82 Q30 68 44 68 Q48 69 50 72 Z'/%3E%3Cpath d='M50 72 Q62 84 76 82 Q70 68 56 68 Q52 69 50 72 Z'/%3E%3C/g%3E%3C/svg%3E");
}

.flower-mark {
  width: 72px;
  height: 79px;
}

/* ---------- レイアウト共通 ---------- */

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.narrow {
  max-width: 780px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* 角丸色面バンド */
.alt {
  background: var(--pink-soft);
  border-radius: 40px;
  margin: 0 20px;
}

.alt-green {
  background: var(--green-soft);
}

.alt + .alt {
  margin-top: 24px;
}

/* ---------- セクション見出し ---------- */

.section-label {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(38px, 5.5vw, 60px);
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(23px, 3vw, 30px);
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ---------- ヘッダー ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--ink);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  margin: 0 auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--rose);
}

.global-nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.global-nav a {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.global-nav a:hover,
.global-nav a.current {
  color: var(--rose);
}

.nav-cta {
  background: var(--rose);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.nav-cta:hover {
  background: var(--green);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

/* ---------- ヒーロー（トップ） ---------- */

.hero {
  position: relative;
  padding: 120px 0 170px;
  overflow: hidden;
  background: var(--white);
}

.hero-deco {
  position: absolute;
  top: -60px;
  right: -20px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 380px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(250, 102, 161, 0.14);
  pointer-events: none;
  user-select: none;
}

.hero-side {
  position: absolute;
  right: 36px;
  top: 150px;
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--ink3);
  text-transform: uppercase;
}

.hero-catch {
  font-family: var(--sans);
  font-weight: 900;
  font-size: clamp(34px, 4.5vw, 50px);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 28px;
}

.hero-catch em {
  font-style: normal;
  background: linear-gradient(transparent 62%, var(--yellow) 62%);
}

.hero-lead {
  font-size: 15.5px;
  color: var(--ink2);
  max-width: 560px;
  margin-bottom: 40px;
}

.hero-illust {
  border-radius: var(--radius);
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--pink);
}

.mascot {
  position: absolute;
  left: 3%;
  bottom: 4px;
  width: 126px;
  transform: rotate(-7deg);
}

/* ---------- ボタン ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 16px 38px;
  border-radius: 999px;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--pink);
  transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
}

.btn::after {
  content: "→";
  transition: transform 0.2s;
}

.btn:hover {
  background: var(--rose);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--green);
}

.btn:hover::after {
  transform: translateX(4px);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--green);
}

.btn-ghost:hover {
  background: var(--green);
  color: var(--white);
  box-shadow: 6px 6px 0 var(--pink);
}

/* ---------- 画像プレースホルダ ---------- */

.img-placeholder {
  background: repeating-linear-gradient(
    -45deg,
    rgba(250, 102, 161, 0.07),
    rgba(250, 102, 161, 0.07) 12px,
    rgba(250, 102, 161, 0.13) 12px,
    rgba(250, 102, 161, 0.13) 24px
  );
  border: 2px dashed var(--pink);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink3);
  font-size: 12.5px;
  letter-spacing: 0.12em;
}

.ph-hero { aspect-ratio: 3 / 2; max-width: 720px; }
.ph-wide { aspect-ratio: 3 / 1; }
.ph-photo { aspect-ratio: 3 / 2; }
.ph-portrait { aspect-ratio: 3 / 4; max-width: 320px; }

/* ---------- セクション実写画像（ステッカー枠） ---------- */

.section-img {
  width: 100%;
  border-radius: var(--radius);
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--pink);
  object-fit: cover;
}

.section-img.sh-green { box-shadow: 8px 8px 0 var(--green); }
.si-photo { aspect-ratio: 3 / 2; }
.si-wide { aspect-ratio: 3 / 1; }
.si-portrait { aspect-ratio: 3 / 4; max-width: 340px; }

/* ---------- ヒーロー・スライドショー ---------- */

.hero-slider {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--radius);
  border: 2.5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--pink);
  overflow: hidden;
  background: var(--pink-soft);
}

.hero-slider .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.hero-slider .slide.active {
  opacity: 1;
}

.hero-slider .dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  display: flex;
  gap: 8px;
  justify-content: center;
  z-index: 2;
}

.hero-slider .dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1.5px solid var(--ink);
  transition: background 0.3s;
}

.hero-slider .dots span.on {
  background: var(--pink);
}

/* ---------- 下層ページのマスコット ---------- */

.page-header {
  position: relative;
}

.page-mascot {
  position: absolute;
  right: 5%;
  bottom: -6px;
  width: 104px;
  transform: rotate(-6deg);
  pointer-events: none;
}

.page-header:has(.page-mascot)::after { display: none; }

@media (max-width: 768px) {
  .page-mascot { width: 72px; right: 4%; }
}

/* ---------- カード（ステッカー風） ---------- */

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

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 38px 30px;
  border: 2.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--pink);
  transition: transform 0.15s, box-shadow 0.15s;
}

.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--green);
}

.card h3 {
  font-weight: 900;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.7;
}

.card p {
  font-size: 13.5px;
  color: var(--ink2);
}

.card .step-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--green);
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 12px;
  border: 2px solid var(--green);
  border-radius: 999px;
}

/* ---------- 2カラム ---------- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---------- CTA帯（ピンクのベタ塗り） ---------- */

.cta-band {
  background: var(--pink);
  color: var(--white);
  text-align: center;
  padding: 100px 24px;
  border-radius: 40px;
  margin: 24px 20px;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "CONTACT";
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  font-family: var(--display);
  font-weight: 900;
  font-size: 150px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.25);
  pointer-events: none;
  white-space: nowrap;
}

.cta-band .section-label {
  -webkit-text-stroke: 2px var(--white);
}

.cta-band .section-title {
  color: var(--white);
}

.cta-band p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-band .btn {
  box-shadow: 4px 4px 0 var(--green);
}

.cta-band .btn:hover {
  background: var(--white);
  color: var(--ink);
  box-shadow: 6px 6px 0 var(--green);
}

/* ---------- ページタイトル（下層） ---------- */

.page-header {
  padding: 90px 0 56px;
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}

.page-header .page-title {
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 36px);
  color: var(--ink);
}

.page-header .page-title-en {
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(46px, 6.5vw, 76px);
  line-height: 1.05;
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  margin-bottom: 12px;
}

.page-header::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 18px;
  width: 64px;
  height: 70px;
}

/* ---------- 理念ブロック ---------- */

.philosophy-block {
  background: var(--white);
  border-radius: 20px;
  border: 2.5px solid var(--ink);
  box-shadow: 6px 6px 0 var(--pink);
  padding: 52px;
  margin-bottom: 32px;
}

.philosophy-block:nth-of-type(2) {
  box-shadow: 6px 6px 0 var(--green);
}

.philosophy-block h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.2em;
  color: var(--rose);
  margin-bottom: 18px;
}

.philosophy-block .statement {
  font-weight: 700;
  font-size: 19px;
  line-height: 2.2;
  color: var(--ink);
}

/* ---------- 番号付きリスト ---------- */

.value-list {
  list-style: none;
  counter-reset: value;
}

.value-list li {
  counter-increment: value;
  padding: 32px 0 32px 86px;
  position: relative;
  border-bottom: 2px dashed rgba(250, 102, 161, 0.4);
}

.value-list li::before {
  content: "0" counter(value);
  position: absolute;
  left: 0;
  top: 30px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  color: var(--green);
}

.value-list h3 {
  font-weight: 900;
  font-size: 17.5px;
  color: var(--ink);
  margin-bottom: 6px;
}

.value-list p {
  font-size: 13.5px;
  color: var(--ink2);
}

/* ---------- FAQ ---------- */

.faq-item {
  background: var(--white);
  border-radius: 18px;
  border: 2.5px solid var(--ink);
  box-shadow: 5px 5px 0 var(--cream);
  padding: 28px 34px;
  margin-bottom: 18px;
}

.faq-item .q {
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
}

.faq-item .q::before {
  content: "Q";
  font-family: var(--display);
  font-weight: 800;
  color: var(--pink);
  margin-right: 10px;
}

.faq-item .a {
  font-size: 13.5px;
  color: var(--ink2);
}

/* ---------- フォーム ---------- */

.form-field {
  margin-bottom: 30px;
}

.form-field label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 3px solid var(--pink);
  border-color: var(--ink);
}

/* ---------- フッター ---------- */

.site-footer {
  background: var(--white);
  color: var(--ink2);
  padding: 68px 0 36px;
  font-size: 13px;
  border: 2.5px solid var(--ink);
  border-bottom: none;
  border-radius: 40px 40px 0 0;
  margin: 24px 20px 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-logo {
  font-family: var(--display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: 0.03em;
  color: var(--rose);
  margin-bottom: 14px;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav a {
  color: var(--ink);
  font-weight: 700;
  line-height: 2.3;
  transition: color 0.2s;
}

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

.copyright {
  text-align: center;
  margin-top: 48px;
  color: var(--green-deep);
  font-family: var(--display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
}

/* ---------- レスポンシブ ---------- */

@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .card-grid { grid-template-columns: 1fr; }
  .hero-side { display: none; }
  .hero-deco { font-size: 240px; }
  .mascot { width: 96px; }
}

/* ---- ハンバーガーメニュー（タブレット・スマホ） ---- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .global-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--ink);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .global-nav.open { max-height: 380px; }
  .global-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px 0;
  }
  .global-nav li { width: 100%; }
  .global-nav a { display: block; padding: 15px 28px; font-size: 15px; }
  .global-nav a.current { color: var(--rose); }
  .nav-cta {
    background: none !important;
    color: var(--rose) !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 15px 28px !important;
  }
  .nav-cta:hover { background: var(--pink-soft) !important; color: var(--rose) !important; }
}

/* ---- スマホ全般の最適化 ---- */
@media (max-width: 768px) {
  .container { padding: 0 22px; }
  section { padding: 60px 0; }
  .hero { padding: 52px 0 58px; }
  .hero-catch { font-size: clamp(28px, 8vw, 40px); line-height: 1.7; margin-bottom: 22px; }
  .hero-lead { font-size: 15px; line-height: 1.95; }
  .hero-deco { font-size: 200px; top: -20px; }
  .section-label { font-size: clamp(34px, 12vw, 48px); }
  .section-title { font-size: clamp(21px, 6vw, 27px); margin-bottom: 32px; }
  .alt { border-radius: 24px; margin: 0 10px; }
  .cta-band { border-radius: 24px; margin: 16px 10px; padding: 66px 22px; }
  .cta-band::before { font-size: 62px; top: 18px; }
  .site-footer { border-radius: 24px 24px 0 0; margin: 16px 10px 0; padding: 52px 0 32px; }
  .footer-inner { flex-direction: column; gap: 22px; }
  .card { padding: 30px 24px; box-shadow: 5px 5px 0 var(--pink); }
  .philosophy-block { padding: 30px 24px; }
  .philosophy-block .statement { font-size: 18px; line-height: 2; }
  .value-list li { padding: 26px 0 26px 54px; }
  .value-list li::before { font-size: 24px; top: 27px; }
  .btn { padding: 15px 32px; }
  .mascot { width: 84px; left: 4%; }
  .hero-slider { box-shadow: 6px 6px 0 var(--pink); }
  .section-img { box-shadow: 6px 6px 0 var(--pink); }
  .section-img.sh-green { box-shadow: 6px 6px 0 var(--green); }
  .si-portrait { max-width: 260px; margin: 0 auto; }
}
