/* Base */
:root { color-scheme: light; }
body { background: #f4ede5; }

/* Pricing card glow animation */
.pricing-card {
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(255,255,255,0.9), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(212,184,146,0.55), transparent 60%);
  opacity: 0.45;
  filter: blur(6px);
  mix-blend-mode: screen;
  animation: pricingGlow 16s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes pricingGlow {
  0% { transform: translate3d(-8%, 4%, 0) scale(1); opacity: 0.35; }
  50% { transform: translate3d(6%, -6%, 0) scale(1.05); opacity: 0.55; }
  100% { transform: translate3d(2%, 8%, 0) scale(1.02); opacity: 0.4; }
}

/* GUCCI風ヘッダー：透明→うっすらベージュ＋ブラー */
.header-root {
  transition:
    background-color 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease;
}

.header-root.header-solid {
  background-color: rgba(244, 237, 229, 0.92);
  border-bottom: 1px solid rgba(148, 124, 96, 0.45);
  backdrop-filter: blur(12px);
}

/* ヒーロー巨大ロゴの初期状態 */
.hero-logo {
  transform: translate(-50%, -50%) translateY(0) scale(1.4);
  transform-origin: center center;
  transition: opacity 0.25s ease-out, transform 0.25s ease-out;
}

/* ===== Mobile Menu Styling ===== */
.mobile-menu-bg {
  background: linear-gradient(to bottom, #f4ede5, #faf6f0);
  position: relative;
  overflow: hidden;
}

.mobile-menu-bg::before {
  content: "";
  position: absolute;
  width: 30rem;
  height: 30rem;
  background: rgba(255, 255, 255, 0.45);
  filter: blur(160px);
  top: -10rem;
  left: -8rem;
  animation: menuGlow 18s ease-in-out infinite alternate;
}

@keyframes menuGlow {
  0% { transform: translate(0, 0); }
  50% { transform: translate(30px, 40px); }
  100% { transform: translate(-20px, -10px); }
}

/* メニューの行スタイル（英語＋日本語） */
.menu-item {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(92, 58, 36, 0.12);
  transition: all 0.25s ease;
}

.menu-item:last-of-type { border-bottom: none; }

.menu-item:hover {
  color: #5c3a24;
  transform: translateX(4px);
}

/* ヒーロー初期状態 */
#heroLogoImg {
  opacity: 0;
  filter: blur(14px);
}

#heroTitle,
#heroSub {
  opacity: 0;
  filter: blur(10px);
}

#heroBg {
  transform: scale(1.25);
}

#heroBg,
#heroLogoImg,
#heroTitle,
#heroSub {
  will-change: transform, opacity, filter;
}

 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", sans-serif;
    }

    body {
      background: #f4ede5;
      color: #111;
    }

    /* ===== Section ===== */
    .magic-hat {
      background: #fff;
      max-width: 1200px;
      margin: 120px auto;
      padding: 96px 64px;
      border-radius: 32px;
    }

    .eyebrow {
      text-align: center;
      font-size: 14px;
      color: #666;
      margin-bottom: 24px;
    }

    .title {
      text-align: center;
      font-size: 36px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 72px;
    }

    .apple {
      background: linear-gradient(90deg, #ff4ecd, #ff9a3c);
      background-clip: text;              /* 標準 */
      -webkit-background-clip: text;      /* WebKit */
      color: transparent;
    }


    /* ===== Cards ===== */
    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .card1 {
      background: #fafafa;
      border-radius: 24px;
      padding: 32px;
      display: flex;
      flex-direction: column;
      
    }
    .card2 {
      background: #fafafa;
      border-radius: 24px;
      padding: 32px;
      display: flex;
      flex-direction: column;
    }
    .card3 {
      background: #fafafa;
      border-radius: 24px;
      padding: 32px;
      display: flex;
      flex-direction: column;
    }

    .point {
      display: inline-block;
      background: #000;
      color: #fff;
      font-size: 12px;
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 16px;
      width: fit-content;
    }

    .card1 h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #5d4c4c;
    }
      .card2 h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #5d4c4c;
    }
      .card3 h3 {
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #5d4c4c;
    }

    .card1 p {
      font-size: 14px;
      line-height: 1.8;
      font-weight: 600;
      color: #040404;
      margin-bottom: 24px;
      text-shadow:
    -1px -1px 0 rgba(244,237,229,0.9),
     1px -1px 0 rgba(244,237,229,0.9),
    -1px  1px 0 rgba(244,237,229,0.9),
     1px  1px 0 rgba(244,237,229,0.9);

  /* Webkit対応（くっきり用・あっても崩れない） */
  -webkit-text-stroke: 0.6px rgba(244,237,229,0.6);
    }
     .card2 p {
      font-size: 14px;
      line-height: 1.8;
      font-weight: 600;
      color: #040404;
      margin-bottom: 24px;
      text-shadow:
    -1px -1px 0 rgba(244,237,229,0.9),
     1px -1px 0 rgba(244,237,229,0.9),
    -1px  1px 0 rgba(244,237,229,0.9),
     1px  1px 0 rgba(244,237,229,0.9);

  /* Webkit対応（くっきり用・あっても崩れない） */
  -webkit-text-stroke: 0.6px rgba(244,237,229,0.6);
    }
     .card3 p {
      font-size: 14px;
      line-height: 1.8;
      font-weight: 600;
      color: #040404;
      margin-bottom: 24px;
      text-shadow:
    -1px -1px 0 rgba(244,237,229,0.9),
     1px -1px 0 rgba(244,237,229,0.9),
    -1px  1px 0 rgba(244,237,229,0.9),
     1px  1px 0 rgba(244,237,229,0.9);

  /* Webkit対応（くっきり用・あっても崩れない） */
  -webkit-text-stroke: 0.6px rgba(244,237,229,0.6);
    }

    .btn {
      margin-top: auto;
      display: inline-block;
      padding: 10px 24px;
      border-radius: 999px;
      background: #ffe6f3;
      color: #d6006f;
      font-size: 14px;
      text-decoration: none;
      width: fit-content;
    }

    /* ===== Responsive ===== */
    @media (max-width: 900px) {
      .cards {
        grid-template-columns: 1fr;
      }

      .magic-hat {
        padding: 64px 24px;
        margin: 64px 16px;
      }

      .title {
        font-size: 28px;
      }
    }

    body.concept-page .js-header-logo {
  opacity: 1 !important;
}

/* ===== Header background fixed ===== */
.js-header {
  background-color: rgba(244, 237, 229, 0.92); /* ベージュ */
  
  border-bottom: 1px solid rgba(148, 124, 96, 0.45);
}

.title {
  font-weight: 700;
  line-height: 2.0;          /* ← 縦間を広げる（超重要） */
  letter-spacing: 0em;   /* 少しだけ文字間も広げる */
  margin-bottom: 56px;      /* 下との余白も大胆に */
}

.title .apple {
  display: inline-block;   /* 行として独立させる */
  line-height: 1.9;        /* 強調ワードはさらに間を空ける */
}

.eyebrow::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: #cbb8a8;
  margin: 16px auto 0;
}

/* ===== Cards background base ===== */
.card1,
.card2,
.card3 {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 文字を前面に出す（重要） */
.card1 > *,
.card2 > *,
.card3 > * {
  position: relative;
  z-index: 2;
}

/* オーバーレイ（色だけ・崩さない） */
.card1::before,
.card2::before,
.card3::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(244, 237, 229, 0.85),
    rgba(244, 237, 229, 0.95)
  );
  z-index: 1;
}

.card1::before,
.card2::before,
.card3::before {
  background: linear-gradient(
    to bottom,
    rgba(232, 203, 161, 0.65),
    rgba(244, 237, 229, 0.9)
  );
}


.card1 {
  background-image: url("../public/photos/about3.webp");
}

.card2 {
  background-image: url("../public/photos/logo-transparent.png");
}

.card3 {
  background-image: url("../public/photos/concept1.jpg");
}

/* Section base */
.section-strengths {
  padding: 160px 0;
}

.strengths-inner {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section-title {
  font-size: 40px;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition: all .9s cubic-bezier(.22,1,.36,1);
}

/* Strength item */
.strength-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 140px;
}

.strength-item.reverse {
  direction: rtl;
}
.strength-item.reverse > * {
  direction: ltr;
}

/* Image */
.strength-image img {
  width: 100%;
  display: block;
  border-radius: 20px;
  opacity: 0;
  transform: scale(.92);
  filter: blur(8px);
  transition: all 1s cubic-bezier(.16,1,.3,1);
}

/* Text */
.strength-text {
  opacity: 0;
  transform: translateY(24px);
  transition: all .7s ease-out;
}

.strength-text .point {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0;
  transform: scale(.8);
  transition: all .4s ease-out;
}

.strength-text h3 {
  font-size: 28px;
  margin-bottom: 20px;
}

.strength-text p {
  line-height: 1.8;
}

/* Inview */
.js-inview.is-inview .section-title,
.js-inview.is-inview.section-title {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.js-inview.is-inview .strength-image img {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.js-inview.is-inview .strength-text {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .25s;
}

.js-inview.is-inview .point {
  opacity: 1;
  transform: scale(1);
  transition-delay: .15s;
}

/* Mobile */
@media (max-width: 767px) {
  .section-strengths {
    padding: 100px 0;
  }

  .strength-item {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 100px;
  }

  .strength-image {
    order: 1;
  }

  .strength-text {
    order: 2;
  }

  .strength-item.reverse {
    direction: ltr;
  }
}

.strength-item {
  padding-bottom: 160px;
}

.strength-item:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 767px) {
  .strength-item {
    padding-bottom: 100px;
  }
}

.section-title {
  margin-top: 70px;
  
}

/* ===== Section title marquee ===== */
.section-title.marquee {
  width: 100%;
  overflow: hidden;
  background: #2f3540; /* 帯色（必要なら消してOK） */
  padding: 28px 0;
  text-align: left;
}

.section-title.marquee .marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: title-marquee 48s linear infinite;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
}

/* 左 → 右 */
@keyframes title-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.section-title.marquee {
  width: calc(100% + 128px);   /* padding分を足す */
  margin-left: -64px;
  margin-right: -24px;
  margin-top: 150px;
  padding: 22px 0;
  background: #796257;;
  overflow: hidden;
}

 @media (max-width: 767px) {
      .section-title.marquee {
  width: calc(100% + 48px);   /* padding分を足す */
  margin-left: -24px;
  margin-right: -24px;

  padding: 22px 0;
  background: #796257;;
  overflow: hidden;
}
    }

@media (max-width: 767px) {
      .section-title.marquee {
  width: calc(100% + 48px);   /* padding分を足す */
  margin-left: -24px;
  margin-right: -24px;

  padding: 22px 0;
  background: #796257;;
  overflow: hidden;
}
    }

.section-title.marquee .marquee-track {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.18em;
}

.section-title.marquee .marquee-track {
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

/* ===== Strengths セクション：下線 ===== */
.strength-item {
  position: relative;
  padding-bottom: 48px; /* 線との余白 */
}

.strength-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px; /* ← 太さ（ここを変える） */
  background: rgba(0, 0, 0, 0.15);
}


/* ===== FAQ ===== */
.faq-section {
  margin: 140px auto 0;
  max-width: 960px;
  padding: 0 24px;
}

.faq-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 56px;
}

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

.faq-item {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

/* Q 丸 */
.faq-q {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f5c400;
  color: #000;
  font-weight: 700;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

/* 質問文 */
.faq-question {
  font-size: 15px;
  font-weight: 600;
  flex: 1;
}

/* 矢印 */
.faq-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #999;
  border-bottom: 2px solid #999;
  transform: rotate(45deg);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-arrow {
  transform: rotate(-135deg);
}

/* 回答 */
.faq-answer {
  padding: 0 24px 24px 68px;
  font-size: 14px;
  line-height: 1.8;
  color: #333;
}

/* ===== Footer ===== */
.site-footer {
  background: #f4ede5; /* 今の色そのまま */
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-row a {
  font-size: 14px;
  color: #3a2f2a;
  text-decoration: none;
  letter-spacing: 0.08em;
}

.footer-row span {
  color: rgba(0,0,0,0.3);
  font-size: 12px;
}

.footer-row a:hover {
  opacity: 0.6;
}

.footer-credit {
  margin-top: 28px;
  font-size: 12px;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.08em;
}

.footer-sns {
  margin-top: 16px;
  font-size: 12px;
  opacity: 0.6;
}

/* ===== Footer SNS ===== */
.footer-sns {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.footer-sns a {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #3a2f2a;
  opacity: 0.75;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-sns svg {
  width: 26px;
  height: 26px;
}

.footer-sns a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* ===== service page header background ===== */
body.service-page .js-header {
  background-color: rgba(244, 237, 229, 0.92);
  border-bottom: 1px solid rgba(148, 124, 96, 0.45);
  backdrop-filter: blur(12px);
}

body.service-page .js-header-logo {
  opacity: 1 !important;
}

/* ===== Works marquee (full width) ===== */
.works-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* ← 画面いっぱいにする最重要 */
  margin-right: calc(50% - 50vw);

  padding: 0px 0;
  background: #826d65;

  overflow: hidden;
}

.works-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: works-marquee-move 36s linear infinite;

  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.884);
  text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

@keyframes works-marquee-move {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Mobile */
@media (max-width: 767px) {
  .works-marquee {
    padding: 18px 0;
  }

  .works-marquee-track {
    letter-spacing: 0.16em;
  }
}

.works-marquee-track {
  display: inline-block;
  white-space: nowrap;
  animation: works-marquee-move 36s linear infinite;

  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 3.6rem);
  font-weight: 700;
  letter-spacing: 0.28em;

  color: rgba(255, 255, 255, 0.906);

  /* 影（立体感） */
  text-shadow:
    0 1px 2px rgb(15, 100, 248),
    0 6px 18px rgba(0,0,0,0.35);
}

/* ===== Works marquee lines ===== */
.works-marquee {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  padding: 5px 0;
  background: #796257;
  overflow: hidden;
}

/* 上下ライン */
.works-marquee::before,
.works-marquee::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

/* 上ライン */
.works-marquee::before {
  top: 0;
  background: rgb(235, 237, 240);
}

/* 下ライン */
.works-marquee::after {
  bottom: 0;
  background:  rgb(251, 252, 252);
}

/* スライダー本体 */
.works-slider {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;

  cursor: grab;

  -ms-overflow-style: none;
  scrollbar-width: none;
}
.works-slider::-webkit-scrollbar {
  display: none;
}
.works-slider:active {
  cursor: grabbing;
}

/* カード */
.work-card {
  flex: 0 0 420px;
}

/* 画像の長押し・ゴースト完全無効 */
.work-card img {
  pointer-events: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
}

/* ===== 選択状態を完全に無効化 ===== */
.works-slider,
.work-card,
.work-card * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ===== 横スクロールヒント ===== */
.scroll-hint {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);

  font-size: 22px;
  color: rgba(0,0,0,0.35);

  animation: hint-move 1.6s ease-in-out infinite;
  pointer-events: none;
}

/* ふわっと左右 */
@keyframes hint-move {
  0%   { transform: translate(0, -50%); opacity: .3; }
  50%  { transform: translate(6px, -50%); opacity: .6; }
  100% { transform: translate(0, -50%); opacity: .3; }
}

.works-slider-wrap {
  position: relative;
}

/* ===== スクロールボタン共通 ===== */
.scroll-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,0,0,0.12);

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  cursor: pointer;
  z-index: 10;

  opacity: 0;
  pointer-events: none;

  transition:
    opacity .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

/* SVG */
.scroll-btn svg {
  width: 28px;
  height: 28px;
  stroke: #5c3a24;
  stroke-width: 2;
  fill: none;
}

/* 位置 */
.scroll-left  { left: 16px; }
.scroll-right { right: 16px; }

/* 表示状態 */
.scroll-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* hover */
.scroll-btn:hover {
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

/* mobile */
@media (max-width: 767px) {
  .scroll-btn {
    width: 64px;
    height: 64px;
  }
}

/* ===== 下中央スクロールインジケーター（強調版） ===== */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: -60px; /* ← カードに近づける */
  transform: translateX(-50%);

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 20px;           /* ← 大きく */
  letter-spacing: .22em;
  font-weight: 500;

  color: rgba(0,0,0,0.55);

  pointer-events: none;
  animation: indicator-fade 2.2s ease-in-out infinite;
}

/* ドット（存在感UP） */
.scroll-indicator .dot {
  width: 7px;                /* ← 4px → 7px */
  height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
}

/* テキスト */
.scroll-indicator .label {
  margin-left: 8px;
  text-transform: uppercase;
}

/* ゆっくり呼吸 */
@keyframes indicator-fade {
  0%   { opacity: .35; }
  50%  { opacity: 1; }
  100% { opacity: .35; }
}

.arrow-left {
  display: inline-block;
  transform: scaleX(-1); /* ← 左向き */
}

/* ===== Contact Section ===== */
.contact-section {
  max-width: 960px;
  margin: 0px auto 0;
  padding: 0 24px 120px;
}

/* タイトル */
.contact-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 48px;
}

.contact-title span {
  display: inline-block;
  width: 20px;
  height: 4px;
  background: #f5c400;
  margin: 0 10px;
  vertical-align: middle;
  border-radius: 2px;
}

/* ===== SNS Grid（コンパクト） ===== */
.contact-sns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 80px;
  justify-content: center;
  margin-bottom: 56px;
}

.sns-square {
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.sns-square:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.18);
}

/* アイコン */
.sns-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 24px;
}

.sns-square h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 4px 0 0;
}

.sns-square p {
  font-size: 11px;
  opacity: .9;
  line-height: 1.4;
  margin: 0;
}

/* LINE */
.sns-square.line {
  background: #2fc15b;
}
.line-icon {
  color: #2fc15b;
}

/* Instagram */
.sns-square.instagram {
  background: linear-gradient(
    135deg,
    #405de6,
    #5851db,
    #833ab4,
    #c13584,
    #e1306c
  );
}
.instagram-icon svg {
  width: 50px;
  height: 50px;
  stroke: #111;
  stroke-width: 1.6;
  fill: none;
}

/* ===== Contact Form ===== */
.contact-form-section {
  max-width: 960px;
  margin: 50px auto;
  padding: 0 24px;
}

.form-head {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-sub {
  text-align: center;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* 外枠 */
.form-box {
  border: 4px solid #f5c400;
  border-radius: 20px;
  padding: 32px;
  background: #fff;
}

/* ステップ */
.form-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 32px;
  font-size: 13px;
}

.form-steps li {
  flex: 1;
  text-align: center;
  color: #aaa;
  position: relative;
}

.form-steps li::before {
  content: "●";
  display: block;
  font-size: 10px;
  margin-bottom: 6px;
}

.form-steps li.active {
  color: #f5a200;
  font-weight: 700;
}

/* フォーム行 */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  gap: 16px;
}

.form-row label {
  font-size: 14px;
}

.required {
  background: #e53935;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.form-row.textarea {
  align-items: flex-start;
}

/* 送信 */
.form-submit-wrap {
  margin-top: 32px;
  text-align: center;
}

.form-submit-wrap button {
  background: #f5a200;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

/* モバイル */
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-steps {
    flex-direction: column;
    gap: 12px;
  }
}

/* ===== お問い合わせフォーム下の余白調整 ===== */
.contact-form-section {
  margin-bottom: -50px !important;
  padding-bottom: 0 !important;
}

.equired {
  background: #329dea;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 6px;
}

/* 共通 */
.compare-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 20px;
  margin-bottom: 6px;
}

/* 一般的な制作会社 */
.compare-label.other {
  color: rgba(7, 176, 233, 0.45);
}

.compare-text.other {
  position: relative;
  padding-left: 14px;
  margin-bottom: 18px;
  color: rgba(107, 99, 99, 0.65);
  line-height: 1.9;
}

.compare-text.other::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 2px;
  height: calc(100% - 0.5em);
  background: rgba(0, 0, 0, 0.12);
}

/* Chillue（線なし・デフォルト） */
.compare-label.chillue {
  color: #5c3a24;
}

.compare-text.chillue {
  margin-bottom: 32px;
  line-height: 2.0;
  color: #511010;
}

.compare-label.chillue {
  padding-top: 50px;
}

.compare-block {
  padding-top: 10px;
}

@media (max-width: 767px) {
  .strength-text h3 {
    text-align: center;
  }
}

.strength-closing {
  margin: 96px auto 56px;
  text-align: center;
  color: #2b2b2b;
}

.closing-line {
  display: block;
  width: 48px;
  height: 1px;
  background: rgba(0,0,0,0.25);
  margin: 0 auto 28px;
}

.closing-lead {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.closing-text {
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: rgba(0,0,0,0.75);
}

.closing-text strong {
  font-weight: 600;
  color: #111;
}

/* =========================
  Flow Page
========================= */

.bg-beige {
  background: #f4ede5;
}

/* ===== Hero ===== */
.flow-hero {
  text-align: center;
  padding: 120px 20px 60px;
}

.flow-hero h1 {
  font-size: 32px;
  letter-spacing: .08em;
}

.flow-hero-line {
  display: block;
  width: 100px;
  height: 2px;
  background: rgba(92,58,36,.3);
  margin: 16px auto;
}

.flow-hero p {
  font-size: 14px;
  color: rgba(0,0,0,.6);
  line-height: 1.8;
}

/* ===== Flow ===== */
.flow-section {
  padding-bottom: 120px;
}

.flow-frame {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(121,98,87,.08);
  border-radius: 24px;
  padding: 32px;
}

.flow-card {
  display: grid;
  grid-template-columns: 120px 1fr 240px;
  gap: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.05);
  overflow: hidden;
  position: relative;
}

.flow-card:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid rgba(121,98,87,.5);
}

/* Step bar */
.flow-step {
  background: #796257;
  color: #fff;
  text-align: center;
  padding: 26px 10px;
  font-size: 12px;
  letter-spacing: .2em;
}

.flow-step strong {
  display: block;
  font-size: 26px;
  margin-top: 6px;
}

/* Text */
.flow-body {
  padding: 26px 10px 26px 0;
}

.flow-body h2 {
  font-size: 22px;
  margin-bottom: 6px;
}

.flow-lead {
  font-weight: 600;
  color: #5c3a24;
  margin-bottom: 10px;
}

.flow-body p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(0,0,0,.7);
}

.flow-note {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed rgba(92,58,36,.2);
  font-size: 13px;
  color: rgba(0,0,0,.55);
}

/* Image */
.flow-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 20px;
}

.flow-image img {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  opacity: .9;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .flow-card {
    grid-template-columns: 90px 1fr;
  }

  .flow-image {
    grid-column: 1 / -1;
    padding: 0 20px 20px;
  }

  .flow-image img {
    max-width: 100%;
  }

  .flow-body {
    padding: 20px;
  }

  .flow-body h2 {
    font-size: 18px;
  }
}

.site-header {
  background: #f4ede5 !important;
}

@media (max-width: 768px) {
  .flow-card {
    grid-template-columns: 1fr;
  }
}

.flow-image img {
  width: 100%;
  max-width: none;      /* ← これが一番重要 */
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
}

.flow-card {
  grid-template-columns: 120px 1fr 320px;
}

@media (max-width: 768px) {
  .flow-card {
    grid-template-columns: 1fr;
  }
}

.flow-image {
  padding: 0;
}


/* =========================
   PRICE HERO
========================= */

.price-hero {
  background-color: #f8f4ee; /* カンプのベージュ */
  padding-top: 140px;  /* ヘッダー下からの距離 */
  padding-bottom: 120px;
}

.price-hero__inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.price-hero__title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.35;
  color: #1f2937; /* 濃いグレー */
  letter-spacing: 0.02em;
}

.price-hero__lead {
  margin-top: 32px;
  font-size: 15px;
  line-height: 2;
  color: #4b55636f;
}

/* =========================
   WEB PRODUCTION FEE : HEAD
========================= */

.price-production-head {
  background-color: #f8f4ee; /* HEROと同じ背景 */
  padding: 0 20px 40px;
}

.price-production-head__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #ddd; /* カンプの薄い区切り線 */
}

.price-production-head__left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #6b7280; /* 薄いグレー */
}

.price-heading {
  font-size: 28px;
  font-weight: 600;
  color: #1f2937;
}

.price-production-head__right {
  max-width: 420px;
}

.price-production-head__right p {
  font-size: 13px;
  line-height: 1.9;
  color: #6b7280;
  text-align: right;
}

/* =========================
   WEB PRODUCTION FEE : PLAN WRAP
========================= */

.price-production-wrap {
  background-color: #f8f4ee; /* 全体背景（ベージュ） */
  padding: 48px 20px 0;
}

.price-production-wrap__inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* 白い箱（3カードの外枠） */
.price-plan-frame {
  background-color: #ffffff;
  border-radius: 24px;              /* カンプの大きめ角丸 */
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.04);  /* 弱く広い影 */
  overflow: hidden;                 /* 中の区切り線をはみ出させない */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

/* 将来カードを入れたときのための縦区切り線 */
.price-plan-frame > * + * {
  border-left: 1px solid #eee;
}

/* =========================
   PRICE PLAN : ESSENCE
========================= */

.price-plan {
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* 上半分（テキスト） */
.price-plan__body {
  flex: 1;
}

.price-plan__title {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
}

.price-plan__sub {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #9ca3af;
}

.price-plan__desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.9;
  color: #4b5563;
}

.price-plan__list {
  margin-top: 24px;
  padding-left: 0;
  list-style: none;
}

.price-plan__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #4b5563;
}

.price-plan__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  color: #6b7280;
}

/* 下部 価格エリア */
.price-plan__price {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.price-plan__price-label {
  display: block;
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 4px;
}

.price-plan__price-value {
  font-size: 28px;
  font-weight: 600;
  color: #1f2937;
}

.price-plan__price-value span {
  font-size: 18px;
  margin-left: 2px;
  color: #6b7280;
}

/* =========================
   PRICE PLAN : IDENTITY
========================= */

.price-plan--identity {
  position: relative;
  background-color: #f3ede6;   /* カンプの薄いベージュ */
}

/* 上部の細いアクセントバー */
.price-plan__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: #6b4f3f;   /* ブランドブラウン */
}

/* タイトル強調 */
.price-plan--identity .price-plan__title {
  color: #3b2a1f;
}

/* 説明文を少しだけ太く */
.price-plan--identity .price-plan__desc {
  font-weight: 500;
}

/* リストの最初の1行を強調 */
.price-plan__list .is-emphasis {
  font-weight: 600;
  color: #1f2937;
}

.price-plan__list .is-emphasis::before {
  content: "✦";
  color: #6b4f3f;
  font-size: 11px;
}

/* 価格エリアも少し強調 */
.price-plan--identity .price-plan__price {
  border-top-color: #ddd;
}

.price-plan--identity .price-plan__price-value {
  color: #3b2a1f;
}

/* =========================
   PRICE PLAN : EXPERIENCE
========================= */

.price-plan--experience {
  background-color: #ffffff; /* Essenceと同じ白 */
}

/* 説明文は少し情報量多めなので行間を微調整 */
.price-plan--experience .price-plan__desc {
  line-height: 1.95;
}

/* 最初の1行だけ強調（Identityを継承していることを示す） */
.price-plan--experience .price-plan__list .is-emphasis {
  font-weight: 600;
  color: #1f2937;
}

.price-plan--experience .price-plan__list .is-emphasis::before {
  content: "✓";
  color: #6b7280;
  font-size: 12px;
}

/* 価格は一番高いので数字だけ少し落ち着かせる */
.price-plan--experience .price-plan__price-value {
  font-size: 26px; /* Identityよりわずかに控えめ */
}

/* =========================
   PLAN FRAME : FINAL TUNING
========================= */

/* 全体 */
.price-plan-frame {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;           /* 高さを揃える */
}

/* 罫線（PC） */
.price-plan-frame > .price-plan {
  position: relative;
}
.price-plan-frame > .price-plan + .price-plan::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: #eee;
}

/* カード内の最低高さを揃える（価格帯が違っても安定） */
.price-plan {
  min-height: 560px;              /* カンプ基準 */
}

/* 価格エリアを下に固定 */
.price-plan__price {
  margin-top: auto;
}

/* =========================
   TABLET（～1024px）
========================= */
@media (max-width: 1024px) {
  .price-plan-frame {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 2列時の罫線調整 */
  .price-plan-frame > .price-plan::before {
    display: none;
  }
  .price-plan-frame > .price-plan:nth-child(2n)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 24px;
    bottom: 24px;
    width: 1px;
    background: #eee;
  }

  /* 3枚目は下段で横いっぱい */
  .price-plan-frame > .price-plan:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 520px;
  }
}

/* =========================
   MOBILE（～768px）
========================= */
@media (max-width: 768px) {
  .price-production-wrap {
    padding-top: 32px;
  }

  .price-plan-frame {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  /* 罫線は上下に */
  .price-plan-frame > .price-plan::before,
  .price-plan-frame > .price-plan::after {
    display: none;
  }
  .price-plan-frame > .price-plan + .price-plan {
    border-top: 1px solid #eee;
  }

  .price-plan {
    min-height: auto;
    padding: 32px 24px;
  }

  /* 中央カードの強調をSPでは弱める（やりすぎ防止） */
  .price-plan--identity {
    background-color: #f6f1ea;
  }
  .price-plan__accent {
    height: 3px;
  }
}

/* =========================
   SMALL MOBILE（～480px）
========================= */
@media (max-width: 480px) {
  .price-plan__title {
    font-size: 20px;
  }
  .price-plan__desc {
    font-size: 13px;
  }
  .price-plan__price-value {
    font-size: 24px;
  }
}

/* =========================
   MONTHLY SUPPORT
========================= */

.monthly-support {
  background: #f8f4ee;
  padding: 120px 20px;
}

.monthly-support__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
}

/* 左説明 */
.monthly-support__lead h2 {
  margin-top: 8px;
}
.monthly-support__lead p {
  margin-top: 24px;
  font-size: 12px;
  line-height: 1.9;
  color: #4b5563;
}

/* 右カード群 */
.monthly-support__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* 共通カード */
.support-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.support-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #1f2937;
}

.support-card__desc {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
}

.support-card__list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.support-card__list li {
  font-size: 13px;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.support-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6b7280;
}

/* 価格を下に固定 */
.support-card__price {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: right;
}
.support-card__price span {
  font-size: 11px;
  color: #6b7280;
}
.support-card__price strong {
  font-size: 22px;
  font-weight: 600;
  color: #1f2937;
}

/* 強調カード */
.support-card--primary {
  background: #6b4f3f;
  color: #ffffff;
}
.support-card--primary .support-card__desc,
.support-card--primary .support-card__list li {
  color: #f5f5f5;
}
.support-card--primary .support-card__price {
  border-top-color: rgba(255,255,255,0.2);
}
.support-card--primary .support-card__price strong {
  color: #ffffff;
}

/* =========================
   TABLET（～1024px）
========================= */
@media (max-width: 1024px) {
  .monthly-support__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =========================
   MOBILE（～768px）
========================= */
@media (max-width: 768px) {
  .monthly-support {
    padding: 80px 16px;
  }

  .monthly-support__cards {
    grid-template-columns: 1fr;
  }

  .support-card {
    min-height: auto;
    padding: 28px 24px;
  }
}

/* =========================
   SMALL MOBILE（～480px）
========================= */
@media (max-width: 480px) {
  .support-card__title {
    font-size: 17px;
  }
  .support-card__price strong {
    font-size: 20px;
  }
}

/* =========================
   OUR STANCE
========================= */

.our-stance {
  background: #f8f4ee;
  padding: 120px 20px;
}

.our-stance__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.our-stance__head {
  text-align: center;
  margin-bottom: 64px;
}

/* テーブル外枠 */
.our-stance__table-wrap {
  overflow-x: auto;
}

.our-stance__table {
  width: 100%;
  min-width: 760px; /* SPは横スクロール */
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* ヘッダー */
.our-stance__table thead th {
  padding: 20px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  color: #6b7280;
  border-bottom: 1px solid #eee;
}

.our-stance__table thead th.is-me {
  font-size: 15px;
  color: #3b2a1f;
}

/* ボディ */
.our-stance__table tbody th {
  padding: 18px 16px;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  color: #1f2937;
  border-bottom: 1px solid #eee;
  white-space: nowrap;
}

.our-stance__table tbody td {
  padding: 18px 16px;
  font-size: 13px;
  line-height: 1.7;
  text-align: center;
  color: #4b5563;
  border-bottom: 1px solid #eee;
}

/* 自社列を強調 */
.our-stance__table .is-me {
  background: #f3ede6;
  color: #3b2a1f;
  font-weight: 500;
}

/* 最終行の線を消す */
.our-stance__table tbody tr:last-child th,
.our-stance__table tbody tr:last-child td {
  border-bottom: none;
}

/* =========================
   TABLET（～1024px）
========================= */
@media (max-width: 1024px) {
  .our-stance {
    padding: 96px 20px;
  }
}

/* =========================
   MOBILE（～768px）
========================= */
@media (max-width: 768px) {
  .our-stance {
    padding: 72px 16px;
  }

  .our-stance__head {
    margin-bottom: 48px;
  }

  /* SPでは「比較できる」ことを優先 → 横スク */
  .our-stance__table {
    min-width: 720px;
  }
}

/* =========================
   SMALL MOBILE（～480px）
========================= */
@media (max-width: 480px) {
  .our-stance__table thead th,
  .our-stance__table tbody th,
  .our-stance__table tbody td {
    font-size: 12px;
    padding: 14px 12px;
  }
}

@media (max-width: 768px) {
  .price-hero__title {
    white-space: nowrap;     /* 改行させない */
    font-size: 30px;         /* 1行に収まるサイズ */
    letter-spacing: 0.02em;  /* 少し詰めて安定させる */
  }
}

/* ===== プレミアムプラン 強調 ===== */
.price-plan--experience {
  background: linear-gradient(
    180deg,
    #efe4d6 0%,
    #e6d6c3 100%
  );
  box-shadow:
    0 24px 60px rgba(92, 58, 36, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.7);
  border: 1px solid rgba(148, 124, 96, 0.35);
}

/* タイトルも少しだけ重く */
.price-plan--experience .price-plan__title {
  color: #5c3a24;
}

/* 価格をより目立たせる */
.price-plan--experience .price-plan__price-value {
  color: #5c3a24;
  font-weight: 800;
}

.price-plan--experience::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.45),
    transparent 60%
  );
  pointer-events: none;
}

/* ===== Growth Partner = プレミアム同色 ===== */
.support-card--primary {
  background: linear-gradient(
    180deg,
    #efe4d6 0%,
    #e6d6c3 100%
  );
  box-shadow:
    0 24px 60px rgba(92, 58, 36, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.7);
  border: 1px solid rgba(148, 124, 96, 0.35);
}

/* ===== Growth Partner：文字色を黒に ===== */
.support-card--primary {
  color: #111;
}

.support-card--primary .support-card__title,
.support-card--primary .support-card__desc,
.support-card--primary .support-card__list li,
.support-card--primary strong,
.support-card--primary span {
  color: #111;
}

/* ===== Growth Partner：価格だけ白くなるのを強制修正 ===== */
.support-card--primary .support-card__price strong {
  color: #111 !important;
}

/* ===== Maintenanceのみ：ライト〜スタンダード グラデ ===== */
.support-card:not(.support-card--primary) {
  background: linear-gradient(
    135deg,
    #faf6f1 0%,
    #f1e6da 100%
  );
  border: 1px solid rgba(148, 124, 96, 0.22);
  box-shadow:
    0 10px 28px rgba(92, 58, 36, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

/* ===== SNS Grid Responsive Fix ===== */

/* デフォルト（PC） */
.contact-sns-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 240px));
  gap: 80px;
  justify-content: center;
}

/* ===== SP ===== */
@media (max-width: 768px) {
  .contact-sns-grid {
    grid-template-columns: 1fr; /* ← 1カラム */
    gap: 32px;                  /* ← 詰める */
  }

  .sns-square {
    max-width: 280px;
    margin: 0 auto;
  }

  .sns-icon {
    width: 96px;
    height: 96px;
    font-size: 20px;
  }

  .sns-square h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  #heroBg {
    object-position: center 30%;
    transform: scale(0.92);
  }
}


.plan-consult {
  text-align: center;
  margin-top: 48px;
}

.consult-link {
  font-size: 16px;
  font-weight: 600;
  color: #5c3a24;
  text-decoration: none;
  border-bottom: 1px solid rgba(92,58,36,0.4);
  padding-bottom: 4px;
}

.consult-link:hover {
  opacity: 0.7;
}

.consult-note {
  margin-top: 12px;
  font-size: 13px;
  color: #777;
}

/* ===== Strength image square ===== */
.strength-image {
  aspect-ratio: 1 / 1;   /* 正方形 */
  width: 100%;
  overflow: hidden;
  border-radius: 20px;   /* 今のデザインに合わせる */
}

.strength-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* 中央トリミング */
  display: block;
}

/* ===== 確認モーダル ===== */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  z-index: 999;
}

.confirm-modal {
  width: min(92%, 520px);
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: modalUp .25s ease-out;
}

@keyframes modalUp {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.confirm-title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.confirm-sub {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin-top: 6px;
}

.confirm-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.confirm-list div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  font-size: 14px;
}

.confirm-list div.full {
  grid-template-columns: 1fr;
}

.confirm-list span {
  color: #777;
  font-size: 12px;
}

.confirm-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

.btn-ghost {
  background: transparent;
  border: none;
  color: #666;
}

.btn-primary {
  background: #5c3a24;
  color: #fff;
  border-radius: 999px;
  padding: 10px 20px;
}

.hidden {
  display: none;
}

.faq-section {
  padding-bottom: 100px;
}

/* ===== CARD SCROLL indicator ===== */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 20;
  pointer-events: none;
}

.scroll-indicator .label {
  display: inline-block;
  white-space: nowrap;      /* ← 1行固定 */
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #5c3a24;
  opacity: 0.75;
}

.scroll-indicator {
  bottom: -30px; /* or 12px */
}

@media (max-width: 768px) {
  .form-box {
    padding: 24px 18px;   /* ← 左右を広げる */
    border-width: 3px;    /* ← 黄色枠を少し細く */
  }

  .contact-form-section {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.form-row label {
  display: flex;
  align-items: center;
  gap: 6px;
}

@media (max-width: 768px) {
  .form-row input,
  .form-row textarea {
    padding: 14px 14px;   /* ← 高さと横幅のバランスUP */
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .form-submit-wrap button {
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding-left: 0;
    padding-right: 0;
  }

  .contact-form {
    padding: 0 20px;   /* ← 中身だけ余白 */
  }
}
@media (max-width: 768px) {
  .form-box {
    border: none;          /* ← 枠を殺す */
    border-radius: 0;
    padding: 0;            /* ← カード感を消す */
    background: transparent;
  }
}
@media (max-width: 768px) {
  .contact-form {
    gap: 14px;   /* ← 18px → 14px */
  }

  .form-row {
    gap: 6px;    /* ラベルと入力の距離 */
  }
}
@media (max-width: 768px) {
  .form-row label {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.85;
  }
}

.plan-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #7a7a7a;
  margin-bottom: 8px;
}

.plan-tag.accent {
  color: #5c3a24;
  font-weight: 600;
}

.plan-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(92,58,36,0.55);
  margin-bottom: 14px;
}

.plan-tag::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: rgba(92,58,36,0.35);
  margin-top: 10px;
}
.support-card__title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  color: #1f2937;
}

.support-card__desc {
  font-size: 14px;
  line-height: 2.0;
  color: rgba(0,0,0,0.65);
  margin-bottom: 22px;
}

.support-card__price {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.12);
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
  gap: 6px;
}

.support-card__price span {
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  letter-spacing: 0.12em;
}

.support-card__price strong {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.support-card-primary {
  background: linear-gradient(
    180deg,
    #efe4d6 0%,
    #e6d6c3 100%
  );
  box-shadow:
    0 28px 70px rgba(92,58,36,0.22),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.support-card-primary .support-card__title {
  color: #5c3a24;
}

.support-card-primary .support-card__price strong {
  color: #5c3a24;
}

/* 価格全体 */
.support-card__price strong {
  font-family: 
    "Inter",
    "Helvetica Neue",
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 30px;
  font-weight: 500;          /* ← 太さを落とす */
  letter-spacing: 0.02em;    /* ← 呼吸させる */

  color: #1f2937;

  display: inline-block;
  transform: skewX(-6deg);   /* ← ほんのり斜め */
}

.support-card__price strong::first-letter {
  font-size: 16px;
  font-weight: 400;
  vertical-align: super;
  margin-right: 3px;
  opacity: 0.7;
}

/* =========================
   PRICE PLAN : 金額デザイン
========================= */

.price-plan__price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ラベル */
.price-plan__price-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.45);
}

/* 金額本体 */
.price-plan__price-value {
  font-family:
    "Inter",
    "Helvetica Neue",
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 34px;
  font-weight: 500;           /* ← 細め */
  letter-spacing: 0.02em;

  color: #1f2937;

  display: inline-block;
  line-height: 1.1;

  transform: skewX(-6deg);    /* ← ちょい斜め */
}

.price-plan__price-value::first-letter {
  font-size: 18px;
  font-weight: 400;
  vertical-align: super;
  margin-right: 3px;
  opacity: 0.65;
}
.price-plan__price-value span {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-left: 6px;
  opacity: 0.65;
}
