@charset "UTF-8";

:root {
  --teal: #489CA4;
  --teal-dark: #3a838a;
  --teal-pale: #e9f3f4;
  --red: #CF2020;
  --dark: #333333;
  --green: #00b900;
  --text: #333333;
  --gray: #777777;
  --line: #dddddd;
  --bg-pale: #f4f8f8;
  --content-width-s: 1100px;
  --content-width-m: 1400px;
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, li { list-style: none; }

.txt-red { color: var(--red); }

/* SPでのみ改行する <br>（PCは1行） */
.br-sp { display: none; }

/* =========================================================
   共通：セクション見出し
   ========================================================= */
.section-heading {
  text-align: center;
  margin: 0 auto 50px;
}
.heading-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--red);
  margin: 0 auto 22px;
}
.heading-eyebrow {
  font-weight: 500;
  color: var(--teal);
  font-size: 30px;
  font-family: impact;
}
.heading-eyebrow-dark { color: var(--dark); }
.heading-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.4;
}
.heading-title-teal { color: var(--dark); }

/* ミニバッジ（赤い角丸ラベル） */
.mini-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  padding: 4px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.mini-badge-red { background: var(--red); }

/* =========================================================
   共通：ボタン
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  padding: 18px 40px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s;
}
.btn:hover { opacity: .88; transform: translateY(-2px); color:#fff;}
.btn-red  { background: var(--red); }
.btn-dark { background: var(--dark); }
.btn-green { background: var(--green); }

/* CTAボタン群（赤・黒・緑 横並び） */
.cta-group {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: var(--content-width);
  margin: 50px auto 0;
  padding: 0 20px;
}
.cta-group .btn { min-width: 260px; }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  height: 620px;
  overflow: hidden;
  cursor: pointer;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 60%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}
.hero-badge {
  font-size: 20px;
  font-weight: 400;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
  color: #62C3CC;
  font-family: impact;
}
.hero-title { display: block; width:100% !important;}
.hero-model {
  display: block;
  font-weight: 900;
  font-size: 68px;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-catch {
  display: block;
  font-size: 42px;
  font-weight: 900;
  margin-top: 6px;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.hero-lead {
  font-size: 19px;
  margin: 18px 0 30px;
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
  color:#fff;
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-buttons .btn { min-width: 240px; }
.hero-end{
  font-size: 24px;
  margin-top: 20px;
  color: white;
  font-weight: 700;
}

/* =========================================================
   買取サービス
   ========================================================= */
.buy-service { padding: 80px 20px; max-width: var(--content-width-m); margin: 0 auto; }
.buy-service-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.buy-service-img img { border-radius: 4px; }
.buy-service-lead {
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
}
.buy-service-text p { font-size: 15px; }

/* =========================================================
   3つの強み
   ========================================================= */
.strengths {
  position: relative;
  padding: 80px 20px 90px;
  background: var(--bg-pale);
  overflow: hidden;
}
.strengths-chara {
  position: absolute;
  top: 60px;
  right: 0;
  width: 230px;
  z-index: 1;
}
.strengths .section-heading { position: relative; z-index: 2; }
.strengths-list {
  max-width: var(--content-width-s);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.strength-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}
.strength-text { padding: 44px 40px; position: relative; }
.strength-num {
  font-weight: 500;
  font-size: 56px;
  color: var(--teal);
  line-height: 1;
  display: block;
  border-top: 3px solid var(--red);
  padding-top: 14px;
  width: max-content;
  font-family: impact;
  opacity: 0.5;
}
.strength-icon {
  width: 110px;
  position: absolute;
  top: 50px;
  right: 40px;
}
.strength-en {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .05em;
  margin-top: 28px;
}
.strength-title {
  font-size: 24px;
  font-weight: 900;
  margin: 4px 0 18px;
}
.strength-desc { font-size: 14px; }
.strength-img img { width: 100%; height: 100%; object-fit: cover; }
/* 02 は画像左・テキスト右 */
.strength-card-rev { grid-template-columns: 1.1fr 1fr; }

/* =========================================================
   R35 GT-R のご紹介
   ========================================================= */
.intro { padding: 80px 20px; }
.intro-inner {
  max-width: var(--content-width-s);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}
.intro-img {
  position: relative;
}
.intro-img::before {
  content: "";
  position: absolute;
  left: -100px;
  bottom: -60px;
  width: 350px;
  height: 600px;
  background: var(--teal-pale);
  z-index: -1;
}
.intro-img img { border-radius: 2px; }
.intro-title {
  font-size: 30px;
  font-weight: 900;
  margin-bottom: 24px;
}
.intro-text p { font-size: 15px; margin-bottom: 18px; }
.intro-text p:last-child { margin-bottom: 0; }

/* =========================================================
   高価買取ポイント
   ========================================================= */
.points { padding: 80px 20px; max-width: var(--content-width-s); margin: 0 auto; }
.point-top{
  color: var(--teal);
}
.points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.point-card {
  position: relative;
  border: 2px solid var(--teal);
  border-radius: 4px;
  padding: 30px 26px;
  background: #fff;
  overflow: hidden;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.point-num {
  font-weight: 900;
  font-size: 46px;
  color: #cfe3e5;
  line-height: 1;
  display: block;
  font-family: impact;
}
.point-face {
  position: absolute;
  top: 0;
  right: 5px;
  width: 92px;
}
.point-title {
  font-size: 20px;
  font-weight: 900;
  margin: 12px 0 14px;
  color: var(--dark);
}
.point-desc { font-size: 14px; font-weight:500;}

/* 最高額査定（強調カード） */
.point-card-highlight {
  position: relative;
  background: var(--teal-pale);
  border-color: var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.point-highlight-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--red);
  text-align: left;
  text-shadow: 2px 2px 2px #fff;
}
.point-highlight-desc {
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  margin-top: 8px;
  text-shadow: 2px 2px 2px #fff;
}
.point-highlight-face {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 145px;
}
.point-card:last-child {
  background-color: #E9FDFF;
  background-image: url("../../images/renewal/second_bg.png");
  background-size: 530px;
  background-position: left top;
}

/* =========================================================
   買取査定参考相場
   ========================================================= */
.market { padding: 70px 20px; background: var(--bg-pale); }
.market-inner {
  max-width: var(--content-width-m);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.market-title {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 20px;
}
.market-text p { font-size: 14px; margin-bottom: 16px; }
.market-note { font-size: 12px; color: var(--gray); }

/* 横棒グラフ */
.chart {
  background: #fff;
  border-radius: 6px;
  padding: 26px 24px 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
}
.chart-tag {
  display: inline-block;
  background: #f0f0f0;
  border: 1px solid #ddd;
  font-size: 14px;
  padding: 3px 16px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.chart-rows {
  border-left: 1px solid #ccc;
}
.chart-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 10px;
  min-height: 54px;
}
.chart-label {
  font-size: 13px;
  font-weight: 700;
  text-align: right;
  line-height: 1.3;
  padding-right: 4px;
}
.chart-bar-wrap {
  position: relative;
  background-image: repeating-linear-gradient(
    to right, transparent, transparent calc(33.33% - 1px),
    #e6e6e6 calc(33.33% - 1px), #e6e6e6 33.33%);
}
.chart-bar {
  display: block;
  width: 0;
  height: 30px;
  border-radius: 0 3px 3px 0;
  transition: width 1.4s cubic-bezier(.22, .61, .36, 1);
}
/* スクロールでグラフが画面に入ったら棒が伸びる */
.chart.is-animated .chart-bar { width: var(--w); }
.bar-1 { background: #b51616; transition-delay: .10s; }
.bar-2 { background: #d24a4a; transition-delay: .25s; }
.bar-3 { background: #dd6b6b; transition-delay: .40s; }
.bar-4 { background: #e89494; transition-delay: .55s; }
.bar-5 { background: #f0bcbc; transition-delay: .70s; }
.chart-axis {
  position: relative;
  height: 24px;
  margin-left: 110px; /* グラフ開始位置に合わせる */
  margin-right: 24px; /* グラフ右端に合わせる */
  margin-top: 10px;
}
.chart-axis span {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  font-size: 12px;
}
.chart-axis span:nth-child(1) {
  left: 0%;
  transform: none;
}
.chart-axis span:nth-child(2) {
  left: 33.333%;
}
.chart-axis span:nth-child(3) {
  left: 66.666%;
}
.chart-axis span:nth-child(4) {
  left: 100%;
}
.chart-unit {
  text-align: right;
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

/* アニメーションを切ってほしい環境では即表示 */
@media (prefers-reduced-motion: reduce) {
  .chart-bar { transition: none; width: var(--w); }
}

/* =========================================================
   買取の流れ
   ========================================================= */
.flow { padding: 80px 20px; max-width: var(--content-width-s); margin: 0 auto; }
.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.flow-card {
  background: var(--bg-pale);
  border-radius: 4px;
  padding: 30px 24px 28px;
  text-align: center;
  position: relative;
}
.flow-step {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border: 7px solid #AAD8DC;
  border-radius: 50%;
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  background: #fff;
  margin-bottom: 18px;
  position: absolute;
  left: -15px;
  top: -15px;
}
.flow-step strong { font-size: 28px; font-weight: 900; }
.flow-img img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 18px;
}
.flow-tag {
  display: inline-block;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 40px;
  border-radius: 50px;
  margin-top: 20px;
}
.flow-desc { font-size: 14px; text-align: left; }

/* =========================================================
   お問合せフォーム
   ========================================================= */
.contact {
  position: relative;
  padding: 80px 20px 90px;
  overflow: hidden;
}

/* 回転する画像 */
.rotating-img1 {
  position: absolute;
  top: 0%;
  right: 3%;
  width: 200px;
  height: 200px;
  background-image: url("../../images/lp/second_circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  animation: spin 15s linear infinite;
  z-index: 1;
}
.rotating-img2 {
  position: absolute;
  bottom: -14%;
  right: 0%;
  width: 250px;
  height: 250px;
  background-image: url("../../images/lp/second_circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  animation: spin2 20s linear infinite;
  z-index: 1;
}
.rotating-img3 {
  position: absolute;
  bottom: -5%;
  left: 11%;
  width: 190px;
  height: 190px;
  background-image: url("../../images/lp/second_circle.png");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  animation: spin 25s linear infinite;
  z-index: 1;
}
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@keyframes spin2 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(-360deg); }
}

/* =========================================================
   よくあるご質問
   ========================================================= */
.faq {
  position: relative;
  padding: 80px 20px 90px;
  background: linear-gradient(rgba(255,255,255,.82), rgba(255,255,255,.82)),
              url("../../images/lp/faq_bg.png") center/cover no-repeat;
}
.faq-inner { max-width: var(--content-width-s); margin: 0 auto; }
.section-heading-left { text-align: left; margin-bottom: 40px; }
.faq-heading {
  font-size: 34px;
  font-weight: 900;
  color: var(--dark);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.faq-card {
  background: rgba(255,255,255,.92);
  border-top: 3px solid var(--teal);
  border-radius: 2px;
  padding: 28px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
}
.faq-q {
  color: var(--teal);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}
.faq-a { font-size: 14px; }

/* =========================================================
   最下部CTA
   ========================================================= */
/* 最下部CTA（FAQと同一セクション内・キャラクターはボックス上に中央寄せ） */
.final-cta {
  position: relative;
  max-width: 1020px;
  margin: 20px auto 0;
  text-align: center;
}
.final-cta-chara {
  display: block;
  width: 240px;
  margin: 0 auto 0;
  position: relative;
  z-index: 2;
}
.final-cta-box {
  position: relative;
  z-index: 1;
  background: var(--teal-pale);
  border-radius: 6px;
  text-align: center;
  padding: 40px 30px 40px;
  box-shadow: 0px 5px 10px rgba(0,0,0,0.2);
}
.final-cta-title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 14px;
}
.final-cta-text {
  font-size: 17px;
  color:var(--teal);
  font-weight:500;
}


/* =========================================================
   レスポンシブ（スマホ：SPデザイン準拠）
   ========================================================= */
@media (max-width:970px){
  .buy-service-lead br{display:none;}
}
@media (max-width: 767px) {
  body { line-height: 1.7; }

  /* 見出し */
  .heading-eyebrow { font-size: 20px; }
  .heading-title { font-size: 26px; }
  .section-heading { margin-bottom: 36px; }

  /* ボタン共通：縦積み・全幅 */
  .btn { width: 100%; font-size: 16px; padding: 16px 20px; }
  .cta-group { flex-direction: column; gap: 16px; }
  .cta-group .btn { min-width: 0; width: 100%; }

  /* ヒーロー */
  .hero { height: 575px; }
  .hero-model { font-size: 46px; }
  .hero-catch { font-size: 28px; }
  .hero-lead { font-size: 14px; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; min-width: 0; }
  .br-sp { display: inline; }
  .hero-badge{margin-top: 30px;}
  .hero-end{font-size: 18px;}

  /* 買取サービス */
  .buy-service { padding: 50px 18px; }
  .buy-service-body { grid-template-columns: 1fr; gap: 24px; }
  .buy-service-lead { font-size: 21px; }

  /* 3つの強み */
  .strengths { padding: 50px 18px 60px; }
  .strengths-chara { display: none; }
  .strength-card,
  .strength-card-rev { grid-template-columns: 1fr; }
  /* SP：画像→テキストの順（02も画像が先） */
  .strength-card .strength-img { order: -1; }
  .strength-text { padding: 30px 24px; }
  .strength-num { font-size: 46px; }
  .strength-icon { width: 100px; top: 34px; right: 24px; }
  .strength-img img { height: 200px; }

  /* GT-R紹介 */
  .intro { padding: 50px 18px; }
  .intro-inner { grid-template-columns: 1fr; gap: 30px; }
  .intro-img { max-width: 300px; margin: 0 auto; }
  .intro-img::before { display: none; }
  .intro-title { font-size: 24px; }

  /* 高価買取ポイント */
  .points { padding: 50px 18px; }
  .points-grid { grid-template-columns: 1fr; gap: 20px; }
  .point-card { padding: 26px 22px; }
  .point-num { font-size: 50px; }
  .point-card-highlight { min-height: 230px; padding-bottom: 0; }
  .point-card:last-child{padding: 50px 35px;}
  .point-highlight-title { font-size: 38px; text-align: left; }
  .point-highlight-desc { position: relative; z-index: 2; }
  .point-highlight-face { width: 125px;}

  /* 参考相場 */
  .market { padding: 50px 18px; }
  .market-inner { grid-template-columns: 1fr; gap: 36px; }
  .market-text { order: -1; }
  .market-title { font-size: 23px; }

  /* 買取の流れ */
  .flow { padding: 50px 18px; }
  .flow-grid { grid-template-columns: 1fr; gap: 24px; }

  /* フォーム */
  .contact { padding: 50px 18px 60px; }
  .rotating-img1, .rotating-img2, .rotating-img3 { display: none; }

  /* FAQ */
  .faq { padding: 50px 18px 60px; }
  .faq-heading { font-size: 28px; }
  .faq-grid { grid-template-columns: 1fr; gap: 20px; }
  .faq-q { font-size: 16px; }

  /* 最下部CTA */
  .final-cta { margin-top: 40px; max-width: 100%; }
  .final-cta-chara { width: 170px; margin-bottom: 0; }
  .final-cta-title { font-size: 22px; }

}

/* =========================================================
   お問合せフォーム（Snow Monkey Forms）
   ========================================================= */
.bg-layered{background-repeat: repeat-y,no-repeat,no-repeat;}
.contact .smf-progress-tracker { display: none; }
.contact .snow-monkey-form {
  max-width: 1040px;
  margin: 50px auto;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .06);
  padding: 14px 44px;
}
.contact .smf-item {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 22px 4px;
  border-bottom: 1px solid #ededed;
}
.contact .smf-item__col {
  width: auto;
  max-width: none;
  min-width: 0;
  flex: initial;
  padding: 0;
}

/* ラベル */
.contact .smf-item__label { margin: 0; padding: 0; }
.contact .smf-item__label__text {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
/* 必須項目（required バリデーション付き）のラベルに「（必須）」を赤で付与 */
.contact .smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
  content: "（必須）";
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  margin-left: 4px;
}

.contact .smf-item__controls { margin: 0; padding: 0; }
.contact .smf-item__controls > .smf-placeholder + .smf-placeholder { margin-top: 14px; }
.contact .smf-text-control__control,
.contact .smf-textarea-control__control,
.contact .smf-select-control__control {
  width: 100%;
  background: #f2f2f2;
  border: 1px solid #e8e8e8;
  border-radius: 3px;
  padding: 13px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  line-height: 1.6;
}
.contact .smf-text-control__control::placeholder,
.contact .smf-textarea-control__control::placeholder {
  color: #b5b5b5;
  font-size: 14px;
}
.contact .smf-text-control__control:focus,
.contact .smf-textarea-control__control:focus,
.contact .smf-select-control__control:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
}
.contact .smf-control-description {
  font-size: 12px;
  color: var(--gray);
  margin-top: 4px;
}
.contact .smf-item__controls .smf-placeholder[data-name^="file"] {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.contact .smf-file-control {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.contact .smf-file-control label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.contact .smf-file-control__label {
  display: inline-block;
  background: #f0f0f0;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 5px 14px;
  font-size: 13px;
  cursor: pointer;
}
.contact .smf-file-control__filename { font-size: 13px; color: var(--gray); }
.contact .smf-file-control__clear {
  font-size: 12px;
  background: none;
  border: none;
  color: var(--gray);
  text-decoration: underline;
  cursor: pointer;
}

/* 送信ボタン（ダークの大ボタン・中央） */
.contact .smf-button-control {
  display: block;
  text-align: center;
  margin-top: 28px;
}
.contact .smf-button-control__control {
  display: inline-block;
  min-width: 300px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 16px 40px;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .3em;
  cursor: pointer;
  transition: opacity .2s;
}
.contact .smf-button-control__control:hover { opacity: .88; }
.smf-complete-content{
  padding:20px;
}
.smf-complete-content .has-medium-font-size{
  font-weight: 600;
  margin: 30px auto;
  text-align: center;
  font-size: 35px !important;
}
.smf-complete-content p{
  text-align:left;
  margin: 20px auto;
  font-size: 16px;
}

/* フォーム：スマホ（ラベル上・入力下の縦積み） */
@media (max-width: 767px) {
  .contact .snow-monkey-form { padding: 6px 18px; border-radius: 6px; }
  .contact .smf-item {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 10px;
    padding: 18px 2px;
  }
  .contact .smf-button-control__control { min-width: 0; width: 100%; }
}
