@charset "UTF-8";
:root {
  --forest:#6b8f4c;
  --green:#94b16f;
  --green-deep:#5e7d42;
  --moss:#b3d07e;
  --cream:#cbe1a4;
  --offwhite:#FAF8F2;
  --ink:#4a4a3c;
  --sub:#8b8a76;
  --line:#ece8da;
  --green-pale:#e4f1d7;
  --green-soft:#eef4e2;
  --cream-pale:#f6f1e7;
  --paper:#f6f1e7;
  --paper-2:#f6f1e7;
  --skin:#f6e2cf;
  --ill-line:#6f6a52;
  --pain:#e88b56;
  --white:#ffffff;
  --shadow:0 18px 40px rgba(90,110,70,.10);
  --shadow-sm:0 8px 22px rgba(90,110,70,.07);
  --radius:24px;
  --radius-lg:34px;
  --radius-sm:16px;
  --maxw:1140px;
  --gutter:24px;
  --serif:"Zen Maru Gothic","Noto Sans JP",sans-serif;
  --round:"Zen Maru Gothic","Noto Sans JP",sans-serif;
  --sans:"Noto Sans JP",sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 700;
  line-height: inherit;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.9;
  font-size: 18px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================================
   ヘッダー
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f3f7ee, #e4efd6);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(60, 110, 71, 0.08);
}

.logo-mark svg {
  display: block;
}

.logo-name {
  font-family: var(--round);
  font-weight: 700;
  font-size: 26px;
  color: var(--forest);
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.logo-name small {
  display: block;
  font-size: 9.5px;
  color: var(--sub);
  font-weight: 500;
  letter-spacing: 0.14em;
  font-family: var(--sans);
  margin-top: 6px;
}

.gnav {
  margin-left: auto;
}

.gnav ul {
  display: flex;
  gap: 18px;
  list-style: none;
}

.gnav a {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
  white-space: nowrap;
}

.gnav a:hover {
  color: var(--moss);
}

.gnav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--moss);
  border-radius: 2px;
  transition: width 0.25s;
}

.gnav a:hover::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.3;
  font-family: var(--round);
  margin-right: 20px;
}

.header-tel small {
  font-size: 18px;
  color: var(--sub);
  font-weight: 500;
}

.header-tel b {
  font-family: var(--round);
  font-size: 22px;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-line {
  background: #6b8f4c;
  color: #fff;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 14px rgba(91, 156, 100, 0.22);
}

.header-line .lbadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: #fff;
  color: #6b8f4c;
  flex-shrink: 0;
}

.header-reserve {
  background: #cbe1a4;
  color: #46612f;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  padding: 12px 20px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
}

/* ============================================================
   フッター FOOTER
   ============================================================ */
.footer {
  background: #6b8f4c;
  color: #fff;
  padding: 56px 0 26px;
  position: relative;
  margin-top: -1px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
}

.footer-logo .logo-mark {
  background: #fff;
}

.footer-logo b {
  font-family: var(--round);
  font-size: 19px;
}

.footer-info p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-sns {
  display: flex;
  gap: 12px;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-family: var(--round);
  font-weight: 700;
  background: #fff;
  padding: 13px 24px;
  border-radius: 999px;
  justify-content: center;
  width: 160px;
  transition: transform 0.2s;
}

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

.footer-sns .ig {
  color: #c13584;
}

.footer-sns .ig i {
  color: #c13584;
}

.footer-sns .ln {
  color: #56a7ad;
}

.footer-sns .ln i {
  color: #56a7ad;
}

.footer-sns a:hover {
  background: rgba(255, 255, 255, 0.12);
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  opacity: 0.75;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  max-width: var(--maxw);
  width: 100%;
}

/* 共通：水彩植物デコ */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.9;
}

.section {
  position: relative;
  overflow: hidden;
}

.section .container {
  position: relative;
  z-index: 2;
}

/* ブロブ写真マスク */
.photo-blob {
  position: relative;
}

.photo-blob .ph {
  border: none;
  border-radius: 48% 52% 56% 44%/52% 46% 54% 48%;
  background: linear-gradient(150deg, #eef4e6, #e2ecd6);
  box-shadow: 0 24px 50px rgba(90, 110, 70, 0.14);
}

.blob-soft {
  border-radius: 46% 54% 52% 48%/54% 48% 52% 46% !important;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ===== 共通：セクション見出し ===== */
.section {
  padding: 96px 0;
  position: relative;
}

.section--pale {
  background: var(--paper-2);
}

.section--green {
  background: var(--green-pale);
}

.section--cream {
  background: var(--cream-pale);
}

.section-head {
  text-align: center;
  margin-bottom: 52px;
}

.section-en {
  display: inline-block;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--moss);
  margin-bottom: 14px;
  position: relative;
  padding-left: 34px;
  padding-right: 34px;
}

.section-en::before, .section-en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 2px;
  background: var(--moss);
  border-radius: 2px;
}

.section-en::before {
  left: 0;
}

.section-en::after {
  right: 0;
}

.section-title {
  font-family: var(--round);
  font-weight: 700;
  font-size: 30px;
  line-height: 1.5;
  color: var(--forest);
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}

.section-title .accent {
  color: var(--moss);
}

.section-sub {
  font-size: 18px;
  color: var(--sub);
}

/* ===== 波形ディバイダ ===== */
.wave {
  display: block;
  width: 100%;
  height: auto;
  line-height: 0;
}

/* ===== ボタン ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--round);
  font-weight: 700;
  border-radius: 999px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-tel {
  background: var(--white);
  border: 2px solid var(--forest);
  color: var(--forest);
  flex-direction: column;
  padding: 14px 22px;
  border-radius: 18px;
  line-height: 1.3;
}

.btn-line {
  background: #6b8f4c;
  color: #fff;
  padding: 15px 26px;
  box-shadow: 0 6px 16px rgba(6, 199, 85, 0.25);
}

.btn-form {
  background: var(--forest);
  color: #fff;
  padding: 15px 26px;
  box-shadow: 0 6px 16px rgba(60, 110, 71, 0.25);
}

.btn-line:hover, .btn-form:hover {
  box-shadow: 0 10px 22px rgba(60, 110, 71, 0.28);
}

/* アイコン円 */
.pict {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.pict svg {
  display: block;
}

/* 写真プレースホルダ */
.ph {
  background: repeating-linear-gradient(45deg, #eef2e9 0 12px, #e8eee1 12px 24px);
  border: 1px dashed #bcccae;
  border-radius: var(--radius-sm);
  color: var(--moss);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 18px;
  gap: 8px;
  min-height: 140px;
  padding: 16px;
  font-weight: 500;
}

.ph svg {
  opacity: 0.55;
}

.ph span {
  color: #8a9a7c;
  letter-spacing: 0.04em;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-inline-block {
  display: inline-block;
}

.d-grid {
  display: grid;
}

.d-none {
  display: none !important;
}

.flex {
  display: flex;
}
.flex.fd-row {
  flex-direction: row;
}
.flex.fd-col {
  flex-direction: column;
}

.ai-start {
  align-items: flex-start;
}

.ai-center {
  align-items: center;
}

.ai-end {
  align-items: flex-end;
}

.ai-stretch {
  align-items: stretch;
}

.jc-start {
  justify-content: flex-start;
}

.jc-center {
  justify-content: center;
}

.jc-end {
  justify-content: flex-end;
}

.jc-between {
  justify-content: space-between;
}

.fw-wrap {
  flex-wrap: wrap;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid--cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid--cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid--cols-5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid--cols-6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap-4 {
  gap: 4px;
}

.gap-8 {
  gap: 8px;
}

.gap-10 {
  gap: 10px;
}

.gap-12 {
  gap: 12px;
}

.gap-16 {
  gap: 16px;
}

.gap-20 {
  gap: 20px;
}

.gap-24 {
  gap: 24px;
}

.gap-32 {
  gap: 32px;
}

.gap-40 {
  gap: 40px;
}

.gap-60 {
  gap: 60px;
}

.gap-80 {
  gap: 80px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.ml-0 {
  margin-left: 0px;
}

.mr-0 {
  margin-right: 0px;
}

.pt-0 {
  padding-top: 0px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pl-0 {
  padding-left: 0px;
}

.pr-0 {
  padding-right: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-5 {
  margin-bottom: 5px;
}

.ml-5 {
  margin-left: 5px;
}

.mr-5 {
  margin-right: 5px;
}

.pt-5 {
  padding-top: 5px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pl-5 {
  padding-left: 5px;
}

.pr-5 {
  padding-right: 5px;
}

.mt-8 {
  margin-top: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-10 {
  margin-bottom: 10px;
}

.ml-10 {
  margin-left: 10px;
}

.mr-10 {
  margin-right: 10px;
}

.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pl-10 {
  padding-left: 10px;
}

.pr-10 {
  padding-right: 10px;
}

.mt-12 {
  margin-top: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.mt-16 {
  margin-top: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.mt-80 {
  margin-top: 80px;
}

.mb-80 {
  margin-bottom: 80px;
}

.ml-80 {
  margin-left: 80px;
}

.mr-80 {
  margin-right: 80px;
}

.pt-80 {
  padding-top: 80px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pl-80 {
  padding-left: 80px;
}

.pr-80 {
  padding-right: 80px;
}

.b-m5 {
  margin-bottom: 5px;
}

.b-m10 {
  margin-bottom: 10px;
}

.b-m20 {
  margin-bottom: 20px;
}

.b-m30 {
  margin-bottom: 30px;
}

.b-m40 {
  margin-bottom: 40px;
}

.b-m60 {
  margin-bottom: 60px;
}

.b-m80 {
  margin-bottom: 80px;
}

.t-m10 {
  margin-top: 10px;
}

.t-m20 {
  margin-top: 20px;
}

.t-m40 {
  margin-top: 40px;
}

.w-100pe {
  width: 100%;
}

.h-100pe {
  height: 100%;
}

.asp-1-1 {
  aspect-ratio: 1/1;
}

.img-cover {
  object-fit: cover;
}

.rounded-4 {
  border-radius: 4px;
}

.rounded-8 {
  border-radius: 8px;
}

.rounded-12 {
  border-radius: 12px;
}

.rounded-16 {
  border-radius: 16px;
}

.rounded-24 {
  border-radius: 24px;
}

.rounded-32 {
  border-radius: 32px;
}

.b-r8 {
  border-radius: 8px;
}

.b-r16 {
  border-radius: 16px;
}

.b-r24 {
  border-radius: 24px;
}

.b-r50pe {
  border-radius: 50%;
}

.line-h200 {
  line-height: 2;
}

.text-center,
.tcenter,
.tcenter_pc {
  text-align: center;
}

.text-right,
.tright {
  text-align: right;
}

.bold {
  font-weight: 700;
}

.bold2 {
  font-weight: 900;
}

.bigger {
  font-size: 1.2em;
  line-height: 2;
}

.smaller {
  font-size: 0.65em;
  letter-spacing: 0;
}

.en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.color01 {
  color: #6b8f4c;
}

.color02 {
  color: #94b16f;
}

.color-w {
  color: #ffffff !important;
}

.bg_line {
  background: #6b8f4c !important;
}

.bg_instagram {
  background: #c13584 !important;
}

.bg_line {
  background: #6b8f4c !important;
}

.bg_youtube {
  background: #ff0000 !important;
}

.para-gap p + p {
  margin-top: 20px;
}
.para-gap--large p + p {
  margin-top: 30px;
}
.para-gap--mini p + p {
  margin-top: 12px;
}

.bg {
  position: relative;
}
.bg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.bg--img01::after {
  background: url(../img/bg-01.png) no-repeat center/contain;
  opacity: 0.6;
}
.bg--img02 {
  margin-top: 100px;
}
.bg--img02::after {
  background: url(../img/wave3.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
}
.bg--img03::after {
  background: url(../img/wave4.svg) no-repeat center bottom/100%;
  top: -150px;
  height: 190px;
  z-index: 1;
}
.bg--img04::after {
  background: url(../img/bg-04-1.png) no-repeat top left/100%;
  width: 60%;
  left: -20%;
  opacity: 0.6;
}
.bg--img04::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  background: url(../img/bg-04-2.png) no-repeat bottom left/100%;
  transform: scale(-1, 1);
  opacity: 0.6;
}
.bg--round {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 60px;
  overflow: hidden;
}

.bg--w {
  background: #fff;
}

.bg--w2 {
  background: rgba(255, 255, 255, 0.5);
}

.bg--cream {
  background: #cbe1a4;
}

.bg--main {
  background: #6b8f4c;
}

.bg--sub {
  background: #94b16f;
}

.bg--sub2 {
  background: #b3d07e;
}

.bg--gray {
  background: #f5f5f5;
}

.u-decor {
  position: absolute;
  bottom: 10%;
  inline-size: min(28vw, 320px);
  opacity: 0.9;
  pointer-events: none;
  width: fit-content;
}
.u-decor img {
  display: block;
  inline-size: 100%;
  height: auto;
}
.u-decor--left {
  left: clamp(8px, 4vw, 40px);
  top: 20%;
}
.u-decor--right {
  right: clamp(8px, 4vw, 40px);
  bottom: 20%;
}
.u-decor.w150 img {
  width: 150px;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z--1 {
  z-index: -1;
}

.z-1 {
  z-index: 1;
}

.z-5 {
  z-index: 5;
}

.z-10 {
  z-index: 10;
}

.spbr {
  display: none;
}

.hidden {
  overflow: hidden;
}

.marker {
  background: linear-gradient(transparent 70%, rgba(255, 147, 109, 0.3) 0%);
  display: inline;
  border-radius: 2px;
  padding: 0 0.1em;
}

.text-link a {
  color: #6b8f4c;
  text-decoration: underline;
}
.text-link.white a {
  color: #ffffff;
}

.shadow {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
}

.shadow-md {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.tcenter_sp {
  text-align: center;
}

[data-ani] {
  --a-duration: 3.8s;
  --a-delay: 0s;
  --a-distance: 24px;
  --a-ease: cubic-bezier(.2, .7, .2, 1);
  --a-blur: 0px;
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity var(--a-duration) var(--a-ease) var(--a-delay), transform var(--a-duration) var(--a-ease) var(--a-delay), filter var(--a-duration) var(--a-ease) var(--a-delay);
  will-change: opacity, transform, filter;
}
[data-ani].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* フェード（指定がある時だけ透明スタート） */
[data-ani*=fade]:not(.is-visible) {
  opacity: 0;
}

[data-ani*=up]:not(.is-visible) {
  transform: translate3d(0, var(--a-distance), 0);
}

[data-ani*=down]:not(.is-visible) {
  transform: translate3d(0, calc(var(--a-distance) * -1), 0);
}

[data-ani*=left]:not(.is-visible) {
  transform: translate3d(var(--a-distance), 0, 0);
}

[data-ani*=right]:not(.is-visible) {
  transform: translate3d(calc(var(--a-distance) * -1), 0, 0);
}

[data-ani*=zoom-in]:not(.is-visible) {
  transform: scale(0.94);
}

[data-ani*=zoom-out]:not(.is-visible) {
  transform: scale(1.06);
}

[data-ani*=blur]:not(.is-visible) {
  filter: blur(var(--a-blur, 8px));
}

[data-ani*=rotate]:not(.is-visible) {
  transform: rotate(2.5deg);
}

.ani-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}
.ani-stagger > * {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s var(--a-ease) var(--a-delay), transform 0.6s var(--a-ease) var(--a-delay);
}

.ani-stagger.is-visible > *:nth-child(1) {
  transition-delay: calc(var(--a-delay, 0s) + 0s);
}

.ani-stagger.is-visible > *:nth-child(2) {
  transition-delay: calc(var(--a-delay, 0s) + 0.06s);
}

.ani-stagger.is-visible > *:nth-child(3) {
  transition-delay: calc(var(--a-delay, 0s) + 0.12s);
}

.ani-stagger.is-visible > *:nth-child(4) {
  transition-delay: calc(var(--a-delay, 0s) + 0.18s);
}

.ani-stagger.is-visible > *:nth-child(5) {
  transition-delay: calc(var(--a-delay, 0s) + 0.24s);
}

.ani-stagger.is-visible > *:nth-child(6) {
  transition-delay: calc(var(--a-delay, 0s) + 0.3s);
}

.ani-stagger.is-visible > *:nth-child(7) {
  transition-delay: calc(var(--a-delay, 0s) + 0.36s);
}

.ani-stagger.is-visible > *:nth-child(8) {
  transition-delay: calc(var(--a-delay, 0s) + 0.42s);
}

.ani-stagger.is-visible > *:nth-child(9) {
  transition-delay: calc(var(--a-delay, 0s) + 0.48s);
}

.ani-stagger.is-visible > *:nth-child(10) {
  transition-delay: calc(var(--a-delay, 0s) + 0.54s);
}

@media (prefers-reduced-motion: reduce) {
  [data-ani],
  .ani-stagger > * {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
[data-fx] {
  --fx-duration: 6s;
  --fx-delay: 0s;
  --fx-amp: 8px;
  /* 振幅(px) */
  --fx-rot: 3deg;
  /* 回転幅 */
  --fx-ease: ease-in-out;
  --fx-iter: infinite;
  --fx-dir: normal;
  --fx-fill: both;
  display: inline-block;
  will-change: transform, filter;
  animation-delay: var(--fx-delay);
  animation-iteration-count: var(--fx-iter);
  animation-direction: var(--fx-dir);
  animation-fill-mode: var(--fx-fill);
  animation-timing-function: var(--fx-ease);
}

/* ふわふわ(上下) */
[data-fx*=float] {
  animation-name: fx-float-y;
  animation-duration: var(--fx-duration);
}

@keyframes fx-float-y {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateY(var(--fx-amp));
  }
}
/* 横ゆらゆら */
[data-fx*=float][data-fx*=x],
[data-fx*=sway][data-fx*=x] {
  animation-name: fx-float-x;
}

@keyframes fx-float-x {
  0% {
    transform: translateX(calc(var(--fx-amp) * -1));
  }
  100% {
    transform: translateX(var(--fx-amp));
  }
}
/* なめらかスウェイ（回転＋上下少し） */
[data-fx*=sway] {
  animation-name: fx-sway;
  transform-origin: center;
  animation-duration: var(--fx-duration);
}

@keyframes fx-sway {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(var(--fx-rot));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(calc(var(--fx-rot) * -1));
  }
}
/* なめらかスウェイ反転（回転＋上下少し） */
[data-fx*=sway-rev] {
  animation-name: fx-sway-rev;
}

@keyframes fx-sway-rev {
  0% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
  50% {
    transform: translateY(calc(var(--fx-amp) * 0.35)) rotate(calc(var(--fx-rot) * -1));
  }
  100% {
    transform: translateY(calc(var(--fx-amp) * -0.35)) rotate(var(--fx-rot));
  }
}
/* 振り子（支点を上に） */
[data-fx*=pendulum] {
  transform-origin: top center;
  animation-name: fx-pendulum;
}

@keyframes fx-pendulum {
  0% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
  50% {
    transform: rotate(var(--fx-rot));
  }
  100% {
    transform: rotate(calc(var(--fx-rot) * -1));
  }
}
/* くるくる（連続回転） */
[data-fx*=spin] {
  animation-name: fx-spin;
  animation-duration: calc(var(--fx-duration) * 1.2);
  animation-timing-function: linear;
}

@keyframes fx-spin {
  to {
    transform: rotate(360deg);
  }
}
/* ぷかぷか + ちょい拡縮 */
[data-fx*=float][data-fx*=soft],
[data-fx*=float][data-fx*=gentle] {
  animation-name: fx-float-soft;
}

@keyframes fx-float-soft {
  0% {
    transform: translateY(calc(var(--fx-amp) * -1)) scale(0.995);
  }
  100% {
    transform: translateY(var(--fx-amp)) scale(1.005);
  }
}
/* 小刻みゆれ（やわらか） */
[data-fx*=wiggle] {
  animation-name: fx-wiggle;
  animation-duration: calc(var(--fx-duration) * 0.6);
}

@keyframes fx-wiggle {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(calc(var(--fx-rot) * 0.6));
  }
  50% {
    transform: rotate(calc(var(--fx-rot) * -0.6));
  }
  75% {
    transform: rotate(calc(var(--fx-rot) * 0.4));
  }
  100% {
    transform: rotate(0deg);
  }
}
/* 速さ */
[data-fx*=fast] {
  animation-duration: calc(var(--fx-duration) * 0.3);
}

[data-fx*=slow] {
  animation-duration: calc(var(--fx-duration) * 1.6);
}

[data-fx*=slower] {
  animation-duration: calc(var(--fx-duration) * 2.2);
}

/* 振幅 */
[data-fx*=sm] {
  --fx-amp: 6px;
  --fx-rot: 2deg;
}

[data-fx*=md] {
  --fx-amp: 10px;
  --fx-rot: 3deg;
}

[data-fx*=lg] {
  --fx-amp: 16px;
  --fx-rot: 5deg;
}

/* 方向／挙動 */
[data-fx*=alternate] {
  animation-direction: alternate;
}

/* デフォの往復を明示したい時 */
[data-fx*=reverse] {
  --fx-dir: reverse;
}

/* 回転の反転などに */
[data-fx*=pause-hover]:hover {
  animation-play-state: paused;
}

/* 親が見えたら動かす（入場後に発動させたい場合） */
.is-visible [data-fx-start=visible] {
  animation-play-state: running;
}

[data-fx-start=visible] {
  animation-play-state: paused;
}

/* アクセシビリティ：動きを抑制 */
@media (prefers-reduced-motion: reduce) {
  [data-fx] {
    animation: none !important;
    transform: none !important;
  }
}
/* ============================================================
   FV ファーストビュー
   ============================================================ */
.fv {
  position: relative;
  background: linear-gradient(165deg, #fbf8f1 0%, #f7f3e8 55%, #f1f1e2 100%);
  overflow: hidden;
  padding: 64px 0 56px;
}

.fv .blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.4;
  z-index: 0;
}

.fv .blob1 {
  width: 380px;
  height: 380px;
  background: #e3ecd4;
  top: -120px;
  right: -90px;
}

.fv .blob2 {
  width: 200px;
  height: 200px;
  background: var(--cream);
  bottom: 40px;
  right: 120px;
  opacity: 0.35;
}

.fv .leaf {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}

.fv-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.22fr;
  gap: 40px;
  align-items: center;
}

.fv-lead {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 700;
  color: var(--green-deep);
  background: none;
  padding: 0;
  box-shadow: none;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}

.fv-lead svg {
  color: var(--moss);
}

.fv-catch {
  font-family: var(--round);
  font-weight: 700;
  font-size: 29px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  white-space: nowrap;
}

.fv-catch .gr {
  font-size: 1.55em;
  color: var(--forest);
}

.fv-catch .line2 {
  font-size: 1.34em;
}

.fv-features {
  list-style: none;
  display: flex;
  gap: 18px;
  margin-bottom: 34px;
}

.fv-features li {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #ece6d6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  font-family: var(--round);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.45;
  letter-spacing: 0;
}

.fv-features li .ficon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  height: 34px;
}

.fv-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: stretch;
}

.fv-cta .btn-tel {
  flex: 1;
  min-width: 200px;
}

.fv-cta .btn-tel small {
  font-size: 18px;
  color: var(--sub);
  font-weight: 500;
  font-family: var(--sans);
}

.fv-cta .btn-tel b {
  font-size: 23px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fv-cta .btn-tel .time {
  font-size: 18px;
  color: var(--sub);
  font-weight: 500;
  font-family: var(--sans);
}

.fv-cta-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  flex: 1;
  min-width: 170px;
}

.fv-cta-side .btn {
  width: 100%;
}

/* FVビジュアル */
.fv-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-hero {
  position: relative;
  width: 100%;
  max-width: 520px;
  z-index: 2;
}

.fv-hero {
  max-width: 620px !important;
}

.fv-hero .ph {
  aspect-ratio: 1/1;
  min-height: 0;
  border: none;
  border-radius: 48% 52% 50% 50%/51% 49% 51% 49%;
  background: linear-gradient(150deg, #eef4e6, #dfead2);
  box-shadow: 0 28px 56px rgba(90, 110, 70, 0.16);
}

.fv-hero .ph svg {
  opacity: 0.45;
}

.fv-family {
  position: absolute;
  right: -20px;
  bottom: -6px;
  width: 230px;
  height: auto;
  display: block;
  z-index: 5;
}

.fv-leaf-top {
  top: -30px;
  right: 6px;
  width: 120px;
  z-index: 1;
  transform: rotate(8deg);
}

.fv-leaf-bot {
  left: -28px;
  top: 30px;
  width: 96px;
  z-index: 1;
  transform: rotate(-18deg) scaleX(-1);
  opacity: 0.95;
}

.fv-mascot {
  position: absolute;
  left: -18px;
  bottom: -18px;
  width: 118px;
  height: auto;
  z-index: 6;
  filter: drop-shadow(0 10px 16px rgba(60, 110, 71, 0.2));
  animation: mascot-bob 3.4s ease-in-out infinite;
}

@keyframes mascot-bob {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
/* 交通事故 ソフトバナー（FV直下） */
.accident-banner {
  position: relative;
  z-index: 2;
  margin-top: 34px;
}

.accident-banner a {
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  border: 1.5px solid #e3eccf;
  border-radius: var(--radius-lg);
  padding: 20px 22px 20px 118px;
  transition: transform 0.2s;
}

.accident-banner a:hover {
  transform: translateY(-2px);
}

.accident-banner-ill {
  width: 175px;
  height: auto;
  display: block;
  z-index: 2;
}

.accident-banner-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--moss);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.accident-banner-main {
  font-family: var(--round);
  font-weight: 700;
  font-size: 20px;
  color: var(--forest);
  line-height: 1.55;
  margin-bottom: 8px;
}

.accident-banner-sub {
  font-size: 18px;
  color: var(--sub);
}

.accident-banner-arrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: var(--forest);
  color: #fff;
  font-family: var(--round);
  font-weight: 700;
  font-size: 14px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 1.3;
  border: none;
  flex-shrink: 0;
}

.accident-banner-arrow i {
  font-size: 15px;
}

/* ============================================================
   お悩み WORRIES
   ============================================================ */
.worry-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-bottom: 46px;
}

.worry-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.worry-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.worry-ill {
  position: relative;
  width: 100%;
  height: 178px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.worry-ill::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 138px;
  height: 138px;
  border-radius: 50%;
  background: #eef5e2;
  z-index: 0;
}

.worry-ill img {
  position: relative;
  z-index: 1;
  height: 172px;
  width: auto;
  max-width: 96%;
  object-fit: contain;
  display: block;
}

.worry-card p {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
  line-height: 1.6;
}

.worry-card p .em {
  color: var(--green);
}

.worry-msg {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(120deg, #f6f1e7, #efe8d4);
  padding: 26px 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.worry-msg .staff {
  width: 158px;
  height: auto;
  flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 2;
}

.worry-msg-text {
  text-align: center;
  position: relative;
  z-index: 2;
}

.worry-msg-text p {
  font-family: var(--round);
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.5;
}

.worry-msg-text .big {
  color: var(--forest);
  font-size: 30px;
}

.worry-msg-cta {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
  transition: transform 0.2s;
}

.worry-msg-cta:hover {
  transform: scale(1.05);
}

.worry-msg .deco {
  opacity: 0.85;
}

/* ============================================================
   交通事故 ACCIDENT
   ============================================================ */
.accident-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 54px;
}

.accident-hero-visual {
  position: relative;
}

.accident-hero-visual .ph {
  aspect-ratio: 1/1;
  min-height: 0;
  border: none;
  border-radius: 48% 52% 50% 50%/51% 49% 51% 49%;
  background: linear-gradient(150deg, #eef4e6, #e0ebd4);
}

.accident-hero-visual .ph svg {
  opacity: 0.45;
}

.accident-bike {
  position: absolute;
  left: -18px;
  bottom: -16px;
  width: 178px;
  height: auto;
  z-index: 3;
}

.accident-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #5e7d42;
  color: #fff;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.accident-catch {
  font-family: var(--round);
  font-weight: 700;
  font-size: 27px;
  line-height: 1.55;
  color: var(--forest);
  margin-bottom: 18px;
}

.accident-desc {
  font-size: 18px;
  color: #54614f;
  line-height: 1.95;
}

.accident-desc .hl {
  color: var(--forest);
  font-weight: 700;
}

.accident-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 54px;
}

.point {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 20px 28px;
  text-align: center;
  border: 1px solid var(--line);
  position: relative;
}

.point-num {
  display: none;
}

.point .pict {
  width: auto;
  height: 100px;
  background: none;
  border-radius: 0;
  margin: 6px auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point .pict img {
  height: 100px;
  width: auto;
  display: block;
}

.point-num {
  display: none !important;
}

.point h4 {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 9px;
}

.point p {
  font-size: 18px;
  color: var(--sub);
  line-height: 1.7;
}

.accident-symptoms {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 38px;
}

.block-title {
  font-family: var(--round);
  font-weight: 700;
  font-size: 20px;
  color: var(--forest);
  text-align: center;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.block-title svg {
  color: var(--moss);
}

.symptom-tags {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.symptom-tags li {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--green-soft);
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 18px;
  font-weight: 500;
}

.symptom-tags .pict {
  width: 38px;
  height: 38px;
  background: #fff;
  color: var(--green);
  flex-shrink: 0;
}

.accident-flow {
  margin-bottom: 44px;
}

.flow4 {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}

.flow4 li {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 22px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}

.flow4 li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid var(--moss);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  z-index: 2;
}

.flow-step {
  display: inline-block;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--moss);
  padding: 3px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.flow4 h4 {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 8px;
}

.flow4 p {
  font-size: 18px;
  color: var(--sub);
  line-height: 1.7;
}

/* 帯CTA */
.cta-band {
  background: linear-gradient(120deg, #7ba259, #94b16f);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  top: -90px;
  right: -60px;
}

.cta-band-lead {
  position: relative;
  font-family: var(--round);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 28px;
}

.cta-band-btns {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-band-btns .btn {
  width: 306px;
  height: 90px;
  border-radius: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  border: none;
}

.cta-band-btns .btn:hover {
  transform: translateY(-3px);
}

.cta-band .btn-tel small {
  font-size: 18px;
  color: var(--sub);
  font-weight: 500;
}

.cta-band .btn-tel b {
  font-size: 25px;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-band .btn-tel b i {
  color: var(--green);
  font-size: 20px;
}

.cta-band .btn-line,
.cta-band .btn-form {
  flex-direction: row;
  gap: 11px;
  color: var(--forest);
}

.cta-band .btn-line i,
.cta-band .btn-form i {
  color: var(--green);
  font-size: 22px;
}

/* ============================================================
   症状カード SYMPTOM
   ============================================================ */
.symptom-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.symptom-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.2s, box-shadow 0.2s;
}

.symptom-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.symptom-card .ph {
  min-height: 172px;
  border: none;
  border-radius: 16px;
  margin: 14px 14px 0;
}

.symptom-card .ph .pict {
  width: 58px;
  height: 58px;
  background: #fff;
  color: var(--green);
  margin-bottom: 6px;
}

.symptom-card-body {
  padding: 16px 22px 24px;
}

.symptom-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.cat-acute {
  background: #e08a6a;
}

.cat-chronic {
  background: var(--green);
}

.cat-body {
  background: var(--moss);
}

.symptom-card h3 {
  font-family: var(--round);
  font-weight: 700;
  font-size: 19px;
  color: var(--forest);
  margin-bottom: 10px;
}

.symptom-card p {
  font-size: 18px;
  color: #5a6755;
  line-height: 1.8;
  margin-bottom: 14px;
}

.symptom-pace {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 18px;
  font-weight: 500;
  color: var(--green);
  background: var(--green-soft);
  padding: 9px 14px;
  border-radius: 10px;
}

.symptom-pace svg {
  flex-shrink: 0;
}

/* ============================================================
   スポーツ SPORTS
   ============================================================ */
.sports {
  position: relative;
  overflow: hidden;
}

.sports-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 36px;
}

.sports-ill {
  position: relative;
}

.sports-ill .ph {
  aspect-ratio: 1/1;
  min-height: 0;
  border: none;
  border-radius: 48% 52% 50% 50%/51% 49% 51% 49%;
  background: linear-gradient(150deg, #eef4e6, #dfead2);
}

.sports-ill .ph i {
  opacity: 0.5;
}

.sports-catch {
  font-family: var(--round);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.6;
  color: var(--forest);
  margin-bottom: 16px;
}

.sports-catch .gr {
  color: var(--green);
}

.sports-desc {
  font-size: 18px;
  color: #5a6755;
  line-height: 1.95;
  margin-bottom: 18px;
}

.sports-target {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.sports-target li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
  font-size: 18px;
  padding: 8px 15px;
  border-radius: 999px;
}

.sports-target li i {
  color: var(--green);
  font-size: 18px;
}

.sports-menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.sports-menu li {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

.sports-menu .ph {
  min-height: 228px;
  border: none;
  border-radius: 0;
}

.sports-menu .sm-body {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: center;
  padding: 15px 16px 18px;
}

.sports-menu .pict {
  width: 40px;
  height: 40px;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sports-menu h4 {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  margin: 0;
}

.sports-menu p {
  grid-column: 1/-1;
  font-size: 18px;
  color: var(--sub);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   リラクゼーション RELAX
   ============================================================ */
.relax-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.relax-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  transition: transform 0.2s, box-shadow 0.2s;
}

.relax-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.relax-card .ph {
  min-height: 210px;
  border: none;
  border-radius: 18px;
  margin: 16px;
  align-self: stretch;
}

.relax-body {
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.relax-body .pict {
  width: 48px;
  height: 48px;
  background: var(--cream-pale);
  color: var(--forest);
  margin-bottom: 12px;
}

.relax-body h3 {
  font-family: var(--round);
  font-weight: 700;
  font-size: 20px;
  color: var(--forest);
  margin-bottom: 10px;
}

.relax-body p {
  font-size: 18px;
  color: #5a6755;
  line-height: 1.85;
  margin-bottom: 14px;
}

.relax-price {
  display: inline-block;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  background: var(--green-soft);
  padding: 6px 14px;
  border-radius: 10px;
}

/* ============================================================
   選ばれる理由 REASON
   ============================================================ */
.reason-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.reason-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px 26px 30px;
  text-align: center;
  transition: transform 0.2s;
}

.reason-card:hover {
  transform: translateY(-4px);
}

.reason-no {
  position: absolute;
  top: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--round);
  font-weight: 700;
  font-size: 25px;
  border: 3px solid #fff;
}

.reason-ill {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.reason-ill img {
  max-height: 140px;
  max-width: 90%;
  width: auto;
  display: block;
}

.reason-card h3 {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 11px;
  line-height: 1.55;
}

.reason-card p {
  font-size: 18px;
  color: var(--sub);
  line-height: 1.85;
  text-align: left;
}

/* ============================================================
   施術の流れ FLOW
   ============================================================ */
.flow-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.flow-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}

.flow-card .ph {
  min-height: 158px;
  border: none;
  border-radius: 16px;
  margin-bottom: 16px;
}

.flow-card h3,
.flow-card p {
  padding: 0 8px;
}

.flow-card p {
  padding-bottom: 6px;
}

.flow-card {
  padding-top: 18px;
}

.flow-card .ph {
  position: relative;
  margin-bottom: 18px;
}

.flow-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -32px 0 12px;
  padding: 0 8px;
  position: relative;
  z-index: 2;
}

.flow-badge .step {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: var(--forest);
  padding: 8px 20px;
  border-radius: 999px;
  letter-spacing: 0.08em;
  border: 3px solid #fff;
}

.flow-card h3 {
  font-family: var(--round);
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 9px;
}

.flow-card p {
  font-size: 18px;
  color: #5a6755;
  line-height: 1.8;
}

/* ============================================================
   院長紹介 DOCTOR
   ============================================================ */
.doctor-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: start;
}

.doctor-photo {
  position: relative;
}

.doctor-photo .ph {
  min-height: 400px;
  border: none;
  border-radius: 48% 52% 47% 53%/53% 47% 53% 47%;
  background: linear-gradient(150deg, #eef4e6, #dce8cd);
  position: relative;
  z-index: 2;
}

.doctor-photo .deco {
  z-index: 1;
}

.doctor-id {
  text-align: center;
  margin-top: 26px;
}

.doctor-name {
  font-family: var(--round);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink);
  margin-bottom: 10px;
}

.doctor-name small {
  font-size: 18px;
  font-weight: 500;
  color: var(--sub);
  margin-left: 4px;
}

.doctor-qual {
  font-size: 18px;
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  padding: 7px 20px;
  border-radius: 999px;
}

.doctor-qual i {
  color: var(--green);
}

.doctor-msg-title {
  font-family: var(--round);
  font-weight: 700;
  font-size: 21px;
  color: #5e7d42;
  margin-bottom: 16px;
  padding-bottom: 14px;
  line-height: 1.6;
  border-bottom: 1.5px solid var(--line);
}

.doctor-msg p {
  font-size: 18px;
  color: #54614f;
  line-height: 1.95;
  margin-bottom: 13px;
}

.doctor-profile {
  border-radius: var(--radius);
  padding: 8px 0;
  margin-top: 22px;
}

.doctor-profile .dp-row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 6px 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.doctor-profile .dp-row:last-child {
  border-bottom: none;
}

.doctor-profile .dp-ic {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-pale);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  grid-row: span 1;
}

.doctor-profile dt {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  align-self: center;
}

.doctor-profile dd {
  grid-column: 3;
  font-size: 18px;
  color: #54614f;
  line-height: 1.8;
  align-self: center;
}

.doctor-profile dd:last-child {
  margin-bottom: 0;
}

.ig-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1.5px solid #efdbe3;
  border-radius: 22px;
  padding: 22px 30px;
  max-width: 780px;
  margin: 36px auto 0;
  transition: transform 0.2s;
}

.ig-banner:hover {
  transform: translateY(-2px);
}

.ig-icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f9ce56, #ee583f, #d92e7f, #a431b0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}

.ig-icon i {
  font-size: 30px !important;
}

.ig-tag {
  font-size: 18px;
  color: var(--sub);
  margin-bottom: 4px;
}

.ig-title {
  font-family: var(--round);
  font-weight: 700;
  font-size: 19px;
  color: var(--ink);
  margin-bottom: 4px;
  line-height: 1.5;
}

.ig-text {
  font-size: 18px;
  color: var(--sub);
  line-height: 1.6;
}

.ig-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #ee583f, #d92e7f, #a431b0);
  padding: 13px 24px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================================
   お客様の声 VOICE
   ============================================================ */
.voice-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.voice-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid #e3ddcb;
  position: relative;
}

.voice-head {
  margin: 6px 0 12px !important;
}

.voice-card::before {
  content: "“";
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: var(--serif);
  font-size: 64px;
  color: var(--green-pale);
  line-height: 1;
}

.voice-sample {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--moss);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 999px;
}

.voice-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 16px;
}

.voice-avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--moss);
  flex-shrink: 0;
}

.voice-name {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.voice-symptom {
  font-size: 18px;
  color: var(--sub);
}

.voice-card h3 {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 10px;
}

.voice-card .voice-text {
  font-size: 18px;
  color: #5a6755;
  line-height: 1.85;
}

/* ============================================================
   料金 PRICE
   ============================================================ */
.price-first {
  background: #fff;
  border: 2px solid var(--cream);
  border-radius: var(--radius-lg);
  padding: 38px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 34px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.price-first-label {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
  background: var(--green-soft);
  display: inline-block;
  padding: 5px 18px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.price-first-value {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 44px;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 16px;
}

.price-first-value small {
  font-size: 20px;
}

.price-first-note {
  font-size: 18px;
  color: var(--sub);
  line-height: 1.85;
}

.price-group {
  margin-bottom: 30px;
}

.price-group-title {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-group-title svg {
  color: var(--moss);
}

.price-menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.price-menu li {
  background: #fff;
  border-radius: 14px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.price-menu .name {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
}

.price-menu .detail {
  font-size: 18px;
  color: var(--sub);
}

.price-accident {
  background: linear-gradient(120deg, #f4f8ee, #eaf2e1);
  border-radius: var(--radius);
  padding: 24px 28px;
  font-size: 18px;
  color: #54614f;
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.8;
}

.price-accident .pict {
  width: 52px;
  height: 52px;
  background: #fff;
  color: var(--green);
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  list-style: none;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 56px 20px 24px;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  cursor: pointer;
  position: relative;
}

.faq-q .qmark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--round);
  font-size: 18px;
}

.faq-q::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--moss);
  font-size: 18px;
  transition: transform 0.25s;
}

.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-a {
  display: none;
  align-items: flex-start;
  gap: 14px;
  padding: 0 24px 20px 24px;
  font-size: 18px;
  color: #5a6755;
  line-height: 1.85;
}

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

.faq-a .amark {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 18px;
}

/* ============================================================
   お問い合わせ CONTACT
   ============================================================ */
.contact {
  background: linear-gradient(160deg, #eef4e8, #e6f0dc);
  position: relative;
  overflow: hidden;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 46px;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card .pict {
  width: 62px;
  height: 62px;
  margin-bottom: 16px;
}

.cc-tel .pict {
  background: #e08a52;
  color: #fff;
}

.cc-line .pict {
  background: #56a7ad;
  color: #fff;
}

.cc-form .pict {
  background: #d6a13c;
  color: #fff;
}

.contact-card .label {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 12px;
}

.contact-card .number {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact-card .time,
.contact-card .desc {
  font-size: 18px;
  color: var(--sub);
  margin-bottom: 14px;
  line-height: 1.7;
}

.contact-card .qr {
  width: 108px;
  height: 108px;
  border-radius: 14px;
  background: repeating-linear-gradient(45deg, #eef2e9 0 8px, #e8eee1 8px 16px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9a7c;
  font-size: 18px;
  margin-bottom: 12px;
}

.contact-card .btn-mini {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: var(--forest);
  padding: 11px 24px;
  border-radius: 999px;
}

.cc-line .btn-mini {
  background: #6b8f4c;
}

.contact-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 22px;
}

.form-label {
  display: flex;
  align-items: center;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 9px;
  color: var(--ink);
}

.req {
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 6px;
  margin-left: 10px;
  vertical-align: middle;
  letter-spacing: 0.04em;
}

.opt {
  background: var(--line);
  color: var(--sub);
  font-size: 18px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 5px;
  margin-left: 9px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid #e6e6e1;
  border-radius: 12px;
  font-size: 18px;
  font-family: var(--sans);
  background: #f6f6f4;
  transition: border-color 0.2s, background 0.2s;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b8f4c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
  padding-right: 46px;
  cursor: pointer;
}

.form-title {
  font-family: var(--round);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 16px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--moss);
  background: #fff;
}

.form-check-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.form-check,
.form-radio {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 18px;
  background: var(--green-soft);
  padding: 11px 15px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-check:hover,
.form-radio:hover {
  background: var(--green-pale);
}

.form-check input,
.form-radio input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.form-radio-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-radio-group .form-radio {
  flex: 1;
  min-width: 120px;
  justify-content: center;
}

.form-privacy {
  text-align: center;
  margin: 26px 0 22px;
  font-size: 18px;
}

.form-privacy label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
}

.form-privacy input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.form-privacy a {
  color: var(--green);
  text-decoration: underline;
}

.form-submit {
  text-align: center;
}

.form-submit button {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(120deg, var(--forest), var(--green));
  border: none;
  padding: 16px 60px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(60, 110, 71, 0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.form-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(60, 110, 71, 0.32);
}

/* ============================================================
   アクセス ACCESS
   ============================================================ */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: repeating-linear-gradient(45deg, #eef2e9 0 14px, #e8eee1 14px 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a9a7c;
  font-size: 18px;
  margin-bottom: 28px;
  gap: 8px;
}

.access-info {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  margin-bottom: 40px;
}

.access-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px 24px;
}

.access-dl dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: var(--green);
}

.access-dl dd {
  font-size: 18px;
  color: #54614f;
}

.route-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-left: 0;
}

.route-step {
  background: #fff;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  position: relative;
}

.route-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: var(--round);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 12px;
}

.route-step .ph {
  min-height: 150px;
  margin-bottom: 12px;
}

.route-step p {
  font-size: 14px;
  color: #54614f;
  line-height: 1.7;
}

/* ============================================================
   店舗情報 STORE
   ============================================================ */
.store-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: stretch;
}

.store-photo {
  display: flex;
}

.store-photo .ph {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  border: none;
  background: linear-gradient(150deg, #e9f0e0, #dce8cd);
}

.store-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}

.store-table th,
.store-table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 18px;
  border-bottom: 1px solid var(--line);
}

.store-table tr:last-child th,
.store-table tr:last-child td {
  border-bottom: none;
}

.store-table th {
  background: var(--green-soft);
  width: 130px;
  font-family: var(--round);
  font-weight: 700;
  color: var(--green);
  vertical-align: top;
}

.store-table td {
  color: #54614f;
}

.store-sns {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.store-sns a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  padding: 11px 22px;
  border-radius: 999px;
  color: #fff;
}

.store-sns .ig {
  background: linear-gradient(135deg, #f09433, #dc2743, #bc1888);
}

.store-sns .ln {
  background: #6b8f4c;
}

/* ============================================================
   追従CTA（スマホ）
   ============================================================ */
.floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: none;
  gap: 0;
  background: #fff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 10px;
}

.floating a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  padding: 8px 4px;
  border-radius: 14px;
}

.floating .f-tel {
  color: #e08a52;
}

.floating .f-line {
  color: #56a7ad;
}

.floating .f-form {
  color: #d6a13c;
}

.floating a svg {
  margin-bottom: 1px;
}

.floating-pc {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-pc a {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: #fff;
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.floating-pc a:hover {
  transform: translateY(-3px);
}

.floating-pc .f-tel {
  background: #e08a52;
}

.floating-pc .f-line {
  background: #56a7ad;
}

.floating-pc .f-form {
  background: #d6a13c;
}

/* ============================================================
   レスポンシブ
   ============================================================ */
/* ===== 写真の自動表示（images/ に置くだけで反映） ===== */
.ph {
  position: relative;
  overflow: hidden;
}

.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.ph.has-img > svg,
.ph.has-img > span {
  display: none;
}

/* ===== 参考トーン仕上げ ===== */
.point,
.symptom-card,
.reason-card,
.flow-card,
.flow4 li,
.sports-menu li,
.access-info,
.faq-item,
.price-menu li,
.route-step,
.worry-card,
.symptom-tags li,
.relax-card,
.store-table {
  border: none !important;
}

.voice-card {
  border: 1.5px solid #ddd5c2 !important;
}

.contact-card {
  border: 1.5px solid #e3ddcb !important;
}

.section-en {
  color: var(--moss);
}

.section-title {
  letter-spacing: 0.03em;
}

.cta-band {
  box-shadow: 0 20px 44px rgba(60, 110, 71, 0.18);
}

.deco-bl {
  left: -30px;
  bottom: -20px;
}

.deco-tr {
  right: -26px;
  top: -18px;
}

.deco-tl {
  left: -30px;
  top: -16px;
}

.deco-br {
  right: -26px;
  bottom: -18px;
}

/* ===== FV：交通事故バナーを左カラムへ＋CTAを最下部フル幅3カラムに ===== */
.fv-inner {
  align-items: start;
}

.fv-text .accident-banner {
  margin-top: 28px;
}

.fv-text .accident-banner a {
  padding: 18px 20px 18px 104px;
  gap: 14px;
}

.fv-text .accident-banner-main {
  font-size: 20px;
}

.fv-cta-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 24px;
  border-radius: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-card:hover {
  transform: translateY(-3px);
}

.cta-card .cc-ic {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-card .cc-body {
  flex: 1;
}

.cta-card .cc-arrow {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-phone {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.cta-phone .cc-ic {
  background: var(--green-pale);
  color: var(--green);
}

.cta-phone small {
  font-size: 14px;
  color: var(--sub);
  font-weight: 500;
  display: block;
}

.cta-phone b {
  font-family: var(--round);
  font-weight: 700;
  font-size: 26px;
  color: var(--ink);
  display: block;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.cta-phone .cc-time {
  font-size: 14px;
  color: var(--sub);
}

.cta-line {
  background: #6b8f4c;
  color: #fff;
  box-shadow: 0 12px 24px rgba(6, 199, 85, 0.22);
}

.cta-line .cc-ic {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.cta-form {
  background: #cbe1a4;
  color: #46612f;
}

.cta-form .cc-ic {
  background: #fff;
  color: #46612f;
}

.cta-line .cc-body b,
.cta-form .cc-body b {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18.5px;
  line-height: 1.4;
  display: block;
}

.cta-line .cc-arrow {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.cta-form .cc-arrow {
  background: rgba(255, 255, 255, 0.7);
  color: #46612f;
}

/* 改行崩れ防止 */
.header-line,
.header-reserve {
  white-space: nowrap;
}

.gnav ul {
  gap: 16px;
}

.fv-features li {
  white-space: nowrap;
}

.cta-line .cc-body b,
.cta-form .cc-body b {
  white-space: nowrap;
}

.accident-banner-main,
.accident-banner-tag,
.accident-banner-sub {
  white-space: nowrap;
}

/* ===== ロゴ（カモ画像） ===== */
.logo-mark {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

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

/* ===== Font Awesome サイズ調整 ===== */
.fv-features .ficon i {
  font-size: 30px;
  line-height: 1;
}

.cc-ic i {
  font-size: 22px;
}

.cta-card .cc-arrow i {
  font-size: 18px;
}

.worry-msg-cta i {
  font-size: 18px;
  margin-top: 3px;
}

i.fa-solid,
i.fa-brands {
  line-height: 1;
}

/* ===== シャドウ全廃 → フラット＋淡ボーダー ===== */
* {
  box-shadow: none !important;
}

.worry-card,
.point,
.symptom-card,
.reason-card,
.flow-card,
.flow4 li,
.sports-menu li,
.voice-card,
.contact-card,
.faq-item,
.price-menu li,
.route-step,
.access-info,
.cta-phone,
.store-table {
  border: 1.5px solid #ece6d6;
}

.cta-form {
  border: none;
}

.fv-hero .ph,
.accident-hero-visual .ph,
.doctor-photo .ph,
.store-photo .ph,
.map-embed {
  border: none;
}

.header {
  border-bottom: none !important;
}

/* ===== ハンバーガーナビ ===== */
.header-inner {
  position: relative;
}

.header-cta {
  margin-left: auto;
}

.menu-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 20px;
  flex-shrink: 0;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: #e3edd5;
}

.gnav {
  position: absolute;
  top: calc(100% + 14px);
  right: var(--gutter);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 22px;
  padding: 16px;
  min-width: 270px;
  display: none;
  z-index: 400;
}

.gnav.open {
  display: block;
}

.gnav ul {
  flex-direction: column;
  gap: 6px;
}

.gnav li {
  width: 100%;
}

.gnav a {
  display: block;
  padding: 16px 24px;
  border-radius: 14px;
  font-size: 18px;
  white-space: nowrap;
}

.gnav a::after {
  display: none !important;
}

.gnav a:hover {
  background: var(--green-pale);
  color: var(--forest);
}

/* ===== セクション色：FVベージュ×白の交互（順番で厳密指定） ===== */
body {
  background: #f6f1e7;
}

.section {
  background: #ffffff;
}

.section--pale,
.section--green,
.section--cream,
.contact {
  background: transparent;
}

.section[data-bg=beige] {
  background: #f6f1e7 !important;
}

.section[data-bg=white] {
  background: #ffffff !important;
}

.fv {
  background: #f6f1e7 !important;
}

/* ===== 波型セクション区切り ===== */
.section,
.fv {
  padding-bottom: 124px;
}

.swave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 60px;
  display: block;
  z-index: 4;
  pointer-events: none;
}

/* ===== 文字サイズ拡大（LP向け）＋見出し黒系 ===== */
body {
  font-size: 18px;
}

.section-title {
  font-size: 34px;
  color: #363129;
  letter-spacing: 0.04em;
}

.section-title .accent {
  color: #5e7d42;
}

.section-sub {
  font-size: 18px;
}

.accident-desc,
.sports-desc,
.doctor-msg p,
.faq-a,
.voice-card .voice-text,
.store-table th,
.store-table td,
.access-dl dt,
.access-dl dd,
.price-accident,
.price-first-note {
  font-size: 18px;
  line-height: 1.95;
}

.doctor-msg-title {
  font-size: 21px;
}

.worry-card p {
  font-size: 18px;
}

.point p,
.symptom-card p,
.reason-card p,
.flow-card p,
.sports-menu p,
.route-step p,
.voice-symptom,
.voice-name {
  font-size: 18px;
}

.symptom-card h3 {
  font-size: 19px;
}

.reason-card h3,
.flow-card h3,
.relax-body h3 {
  font-size: 18px;
}

.point h4,
.sports-menu h4 {
  font-size: 18px;
}

.faq-q {
  font-size: 18px;
}

.cta-band-lead,
.worry-msg-text p {
  font-size: 25px;
}

.section-en {
  font-size: 18px;
}

/* 初診料ノート（お問い合わせ内） */
.price-note-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  background: #fff;
  border: 1.5px solid #e3ddcb;
  border-radius: 20px;
  padding: 20px 28px;
  max-width: 640px;
  margin: 0 auto 44px;
  text-align: center;
}

.pnb-label {
  font-family: var(--round);
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  background: var(--forest);
  padding: 6px 16px;
  border-radius: 999px;
}

.pnb-value {
  font-family: var(--round);
  font-weight: 700;
  font-size: 30px;
  color: var(--ink);
}

.pnb-value small {
  font-size: 18px;
}

.pnb-note {
  flex-basis: 100%;
  font-size: 18px;
  color: var(--sub);
  line-height: 1.7;
  margin: 0;
}

/* ===== CTAボタン＝フローティングの3色（電話=テラコッタ/LINE=ティール/フォーム=マスタード） ===== */
.cta-phone,
.cta-band .btn-tel,
.cc-tel .btn-mini {
  background: #e08a52 !important;
}

.cta-phone *,
.cta-band .btn-tel *,
.cta-band-btns .btn,
.cta-band-btns .btn * {
  color: #fff !important;
}

.cta-phone .cc-ic,
.cta-band .btn-tel .cc-ic {
  background: rgba(255, 255, 255, 0.24) !important;
  color: #fff !important;
}

.cta-line,
.cta-band .btn-line,
.cc-line .btn-mini,
.header-line {
  background: #56a7ad !important;
}

.cta-line *,
.cta-band .btn-line *,
.cc-line .btn-mini,
.header-line {
  color: #fff !important;
}

.cta-line .cc-ic {
  background: rgba(255, 255, 255, 0.24) !important;
}

.header-line .lbadge {
  background: transparent !important;
  width: auto !important;
  height: auto !important;
}

.header-line .lbadge i {
  color: #fff !important;
}

.cta-form,
.cta-band .btn-form,
.cc-form .btn-mini,
.header-reserve {
  background: #d6a13c !important;
}

.cta-form *,
.cta-band .btn-form *,
.cc-form .btn-mini,
.header-reserve,
.header-reserve i {
  color: #fff !important;
}

.cta-form .cc-ic {
  background: rgba(255, 255, 255, 0.28) !important;
}

.cta-form .cc-arrow {
  background: rgba(255, 255, 255, 0.28) !important;
}

.ph.has-img {
  position: relative;
  overflow: hidden;
  border: none !important;
  background: none !important;
  padding: 0 !important;
}

.ph.has-img picture {
  position: absolute;
  inset: 0;
  display: block;
}

.ph.has-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.map-embed {
  padding: 0 !important;
  overflow: hidden;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.form-embed {
  max-width: 760px;
  margin: 0 auto;
}

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
    will-change: opacity, transform;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   フィードバック対応（ホバー演出 / フォームボタン / 症状カード高さ / フッターSNS）
   ============================================================ */
/* ヘッダー LINE・予約ボタン ホバー */
.header-line,
.header-reserve {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.header-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(86, 167, 173, 0.35);
  filter: brightness(1.04);
}

.header-reserve:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(214, 161, 60, 0.35);
  filter: brightness(1.04);
}

/* FV フォームボタン：緑のアイコン色を解消（白アイコンを半透明丸の上に） */
.cta-form .cc-ic {
  background: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}

/* 症状・お悩み別メニュー：カード高さ揃え＋通院目安を下端に */
.symptom-card {
  display: flex;
  flex-direction: column;
}

.symptom-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.symptom-card p {
  flex: 0 0 auto;
}

.symptom-pace {
  margin-top: auto;
}

/* 院長紹介 Instagramバナー ボタンホバー */
.ig-arrow {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.ig-banner:hover .ig-arrow {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 20px rgba(217, 46, 127, 0.4);
  filter: brightness(1.05);
}

/* お問い合わせ 各CTAボタン ホバー */
.contact-card .btn-mini {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-card .btn-mini:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(60, 110, 71, 0.3);
  filter: brightness(1.05);
}

.form-submit button {
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.form-submit button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 20px rgba(60, 110, 71, 0.3);
  filter: brightness(1.05);
}

/* フッター SNS：白ボタンが消えないホバー（ブランド色で塗り） */
.footer-sns a {
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.2s ease;
}

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

.footer-sns .ig:hover {
  background: #c13584;
  color: #fff;
  box-shadow: 0 8px 18px rgba(193, 53, 132, 0.35);
}

.footer-sns .ig:hover i {
  color: #fff;
}

.footer-sns .ln:hover {
  background: #56a7ad;
  color: #fff;
  box-shadow: 0 8px 18px rgba(86, 167, 173, 0.35);
}

.footer-sns .ln:hover i {
  color: #fff;
}

/* ============================================================
   レスポンシブ全面見直し（横はみ出し / タイトル / フォーム / 窮屈解消）
   ============================================================ */
/* 横スクロール（右の余白）対策：html・bodyの両方でクリップ */
html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  max-width: 100%;
}

img,
picture,
svg,
iframe {
  max-width: 100%;
}

/* ---- a-polloメールフォーム：CMS標準の見た目に委ねる（独自フォームCSSは全解除） ---- */
.form-embed {
  max-width: 760px;
  margin: 0 auto;
}

/* ---- タブレット以下（〜900px） ---- */
@media (max-width: 900px) {
  .container {
    padding: 0 20px;
  }
  .fv-catch {
    white-space: normal !important;
    font-size: 26px;
    text-align: center;
  }
}
/* ---- スマホ（〜680px）：横はみ出し・タイトル・FVの作り直し ---- */
@media (max-width: 680px) {
  .container {
    padding: 0 18px;
  }
  .section {
    padding: 52px 0;
  }
  .section-head {
    margin-bottom: 34px;
  }
  .section-title {
    font-size: 22px;
    line-height: 1.5;
  }
  .section-en {
    font-size: 14px;
    letter-spacing: 0.22em;
  }
  .section-sub {
    font-size: 15px;
  }
  /* ヘッダー：予約ボタンを小さく＋ロゴ調整で収める */
  .header-inner {
    gap: 8px;
    padding: 10px 14px;
  }
  .logo-name {
    font-size: 21px;
  }
  .logo-name small {
    font-size: 8.5px;
    letter-spacing: 0.1em;
  }
  .logo-mark {
    width: 42px;
    height: 42px;
  }
  .accident-banner-tag {
    font-size: 16px;
  }
  .header-reserve {
    font-size: 13px;
    padding: 9px 12px;
    border-radius: 11px;
    gap: 5px;
  }
  .header-reserve i {
    font-size: 13px;
  }
  /* FV：キャッチは折り返し可・縮小、3つの丸は3列で必ず収める */
  .fv {
    padding: 34px 0 28px;
  }
  .fv-lead {
    font-size: 13px;
    justify-content: center;
    display: flex;
  }
  .fv-catch {
    white-space: normal !important;
    font-size: 22px;
    line-height: 1.55;
    margin-bottom: 22px;
  }
  .fv-catch .gr {
    font-size: 1.35em;
  }
  .fv-catch .line2 {
    font-size: 1.05em;
  }
  .fv-features {
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 0;
  }
  .fv-features li {
    width: 31% !important;
    height: auto !important;
    aspect-ratio: 1/1;
    font-size: 11.5px !important;
    line-height: 1.35;
    gap: 4px;
    padding: 6px;
    white-space: normal !important;
  }
  .fv-features .ficon {
    height: auto;
  }
  .fv-features .ficon i {
    font-size: 22px !important;
  }
  .fv-cta-row {
    grid-template-columns: 1fr !important;
    gap: 12px;
    margin-top: 24px;
  }
  .cta-card {
    padding: 16px 18px;
  }
  .cta-phone b {
    font-size: 22px;
  }
  .fv-hero {
    max-width: 100% !important;
  }
  /* 交通事故バナー：折り返し許可 */
  .accident-banner-main,
  .accident-banner-tag,
  .accident-banner-sub {
    white-space: normal !important;
  }
  .accident-banner-main {
    font-size: 16px !important;
  }
  .cta-band-lead,
  .worry-msg-text p {
    font-size: 20px;
  }
  .worry-msg-text .big {
    font-size: 22px;
  }
  .accident-banner-sub {
    font-size: 14px;
  }
  .cta-line .cc-body b,
  .cta-form .cc-body b {
    white-space: normal !important;
  }
  /* 院長 Instagramバナー：縦積み */
  .ig-banner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 14px;
    padding: 24px 20px;
  }
  .ig-arrow {
    justify-content: center;
  }
  /* お問い合わせ */
  .form-embed {
    padding: 0;
  }
  .price-note-box {
    padding: 20px 18px;
  }
  /* 余白の窮屈感を軽減 */
  .cta-band {
    padding: 30px 20px;
  }
  .cta-band-btns .btn {
    width: 100%;
    max-width: 340px;
  }
}
/* ---- 小型スマホ（〜400px） ---- */
@media (max-width: 400px) {
  .fv-visual {
    min-height: auto !important;
  }
  .section-title {
    font-size: 20px;
  }
  .fv-features li {
    font-size: 10.5px !important;
  }
  .fv-features .ficon i {
    font-size: 19px !important;
  }
  .header-reserve span,
  .header-reserve {
    font-size: 12px;
  }
  .logo-name {
    font-size: 19px;
  }
}
/* ============================================================
   FV：キャッチ＋画像は横並び（縦中央・バランス）／交通事故バナーは下に
   ============================================================ */
.fv-catch {
  white-space: normal !important;
}

@media (min-width: 769px) {
  .fv-inner {
    grid-template-columns: 1.08fr 0.92fr !important;
    align-items: center !important;
    gap: 50px;
  }
  .fv-visual {
    min-height: 0 !important;
  }
  .fv-hero {
    max-width: 460px !important;
    margin: 0 auto;
  }
  .fv-text {
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
  }
}
.fv .accident-banner {
  width: 100%;
  max-width: 900px;
  margin: 14px auto 0;
}

.accident-banner-arrow {
  flex-direction: row !important;
  width: auto !important;
  height: auto !important;
  border-radius: 999px !important;
  padding: 14px 26px !important;
  font-size: 16px !important;
  gap: 8px !important;
  white-space: nowrap;
}

.accident-banner-arrow i {
  font-size: 15px !important;
}

@media (min-width: 681px) {
  .fv .accident-banner a {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 30px;
    position: relative;
  }
  .fv .accident-banner > a > div {
    flex: 1;
    text-align: left;
  }
}
.form-contents .submit-btn {
  background: var(--forest) !important;
  border-radius: 100px !important;
}
.form-contents .submit-btn:hover {
  opacity: 0.6;
}
.form-contents dl {
  display: flex;
  flex-direction: column;
  margin-bottom: 0 !important;
}
.form-contents dt,
.form-contents dd {
  width: 100%;
}
.form-contents dd:not(.pattern-exclusion) {
  padding-left: 0 !important;
  padding-top: 8px !important;
  border-bottom: none !important;
}
.form-contents dd:not(.pattern-exclusion) input.textarea {
  height: 50px !important;
}
.form-contents .textarea-datetime {
  width: 100% !important;
}
.form-contents dt:not(.pattern-exclusion) span.required::before {
  background: var(--forest) !important;
  padding: 5px 10px !important;
  border-radius: 14px !important;
}

@media (max-width: 980px) {
  .gnav {
    display: none;
  }
  .voice-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header-tel {
    display: none;
  }
  .fv-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .fv-visual {
    max-width: 520px;
  }
  .accident-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .accident-points {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .flow4 li:nth-child(2)::after {
    display: none;
  }
  .sports-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sports-menu {
    grid-template-columns: repeat(2, 1fr);
  }
  .doctor-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .doctor-photo .ph {
    min-height: 300px;
  }
  .store-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .route-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-sns {
    grid-column: 1/-1;
    flex-direction: row;
  }
  .footer-sns a {
    flex: 1;
  }
}
@media (max-width: 680px) {
  body {
    font-size: 18px;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 24px;
  }
  .header-line {
    display: none;
  }
  .header-inner {
    gap: 12px;
  }
  .fv {
    padding: 40px 0 30px;
  }
  .fv-visual {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .fv-img-main {
    grid-row: auto;
    min-height: 240px;
  }
  .fv-img-sub {
    min-height: 140px;
  }
  .fv-cta {
    flex-direction: column;
  }
  .accident-banner a {
    position: static;
    grid-template-columns: 1fr;
    text-align: center;
    gap: 14px;
    padding: 24px 20px !important;
  }
  .accident-banner-ill {
    position: static;
    width: 120px;
    margin: 0 auto;
  }
  .accident-banner-arrow {
    justify-content: center;
  }
  .worry-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .form-contents {
    padding: 0 !important;
  }
  .worry-card {
    padding: 22px 14px;
  }
  .worry-card .pict {
    width: 64px;
    height: 64px;
  }
  .accident-symptoms {
    padding: 20px;
  }
  .symptom-tags li {
    font-size: 16px;
  }
  .relax-body {
    padding: 20px;
    padding-top: 0;
  }
  .flow-grid {
    padding-left: 0;
    gap: 0;
  }
  .accident-points {
    grid-template-columns: 1fr;
  }
  .symptom-tags {
    grid-template-columns: 1fr;
  }
  .symptom-grid {
    grid-template-columns: 1fr;
  }
  .sports-menu {
    grid-template-columns: 1fr;
  }
  .accident-catch {
    font-size: 20px;
  }
  .relax-grid {
    grid-template-columns: 1fr;
  }
  .relax-card {
    grid-template-columns: 1fr;
  }
  .relax-card .ph {
    min-height: 180px;
  }
  .reason-grid {
    grid-template-columns: 1fr;
  }
  .reason-card p {
    text-align: center;
  }
  .flow-grid {
    grid-template-columns: 1fr;
  }
  .voice-grid {
    grid-template-columns: 1fr;
  }
  .price-menu {
    grid-template-columns: 1fr;
  }
  .contact-methods {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 26px 20px;
  }
  .form-check-group {
    grid-template-columns: 1fr;
  }
  .route-list {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .floating {
    display: flex;
  }
  .floating-pc {
    display: none;
  }
  body {
    padding-bottom: 74px;
  }
  .cta-band {
    padding: 28px 20px;
  }
  .flow4 {
    grid-template-columns: 1fr;
  }
  .flow4 li::after {
    display: none !important;
  }
  .fv-family {
    width: 128px;
  }
  .fv-hero .ph {
    min-height: 300px;
  }
  .worry-msg {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 28px 22px;
  }
  .worry-msg .staff {
    width: 120px;
  }
  .worry-msg-cta {
    font-size: 14px;
    width: 120px;
    height: 120px;
  }
  .sports-catch {
    font-size: 20px;
  }
  .sports-target li {
    font-size: 14px;
  }
}
@media (max-width: 980px) {
  .fv-cta-row {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .section,
  .fv {
    padding-bottom: 88px;
  }
  .swave {
    height: 36px;
  }
}