@charset "UTF-8";
/* =====================================================
   Care Link りおら / 訪問介護サービスのご案内
   デザイン 001-003 準拠（白ボックス幅 1200px 基準）
===================================================== */

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

:root {
  --cream:     #FEF7CE;   /* ページ背景 */
  --hero-bg:   #F5ECB0;   /* ヒーロー黄 */
  --brown:     #D79777;   /* ブラウン帯 */
  --brown-dk:  #966953;   /* フッター */
  --salmon:    #DD8E7C;   /* サービス見出し */
  --pink:      #D66B9B;   /* タイトルピンク */
  --pink-v:    #F45E92;   /* ビビッドピンク（数字） */
  --txt:       #4c4c4c;
  --box:       1200px;    /* 白ボックス共通幅（お問合せ基準） */
  --gutter:    30px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  color: var(--txt);
  line-height: 1.9;
  background: var(--cream);
  -webkit-text-size-adjust: 100%;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ページ本体（全幅・背景クリーム） */
.page {
  width: 100%;
  background: var(--cream);
  overflow: hidden;
  position: relative;
}

/* 内側の白ボックスが --box 幅になるコンテナ */
.inner {
  max-width: calc(var(--box) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 2;
}

/* 見出しフォント */
.hero-sub, .hero-lead,
.lead-head, .promise-sub, .promise-head,
.service-catch, .ribbon-label, .flower-label,
.add-title, .visit-title, .contact-title,
.area-label, .area-city, .area-around,
.flow-step h3, .modal-title, .cta-line {
  font-family: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
}

/* =====================================================
   ヘッダー＋ヒーロー（全幅）
===================================================== */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 背景の茶帯はひまわり(z6)の下。z-index を持たせないことで
   子のロゴが .hero-wrap のスタッキング順で評価される */
.site-header {
  position: relative;
  background: var(--brown);
  padding: 20px 0;
  text-align: center;
}
/* ロゴだけひまわり(z6)より前面に出す */
.site-header img {
  position: relative;
  z-index: 7;
  height: 50px;
  width: auto;
  margin: 0 auto;
}

.hero {
  position: relative;
  z-index: 2;
  background: var(--hero-bg);
  padding: 74px 20px 88px;
  text-align: center;
}
.hero-inner { position: relative; z-index: 3; }

/* 中央の淡いひまわり（タイトル背後）※hero基準 = wrap上端 -84px
   デザイン001：直径570px(=ページ幅の29.1%)・中心 cy331 / 中央より25px左 */
.hero::before {
  content: "";
  --d: clamp(340px, 34vw, 660px);
  position: absolute;
  left: 50%;
  top: 50%;                                    /* ヒーローの垂直中央 */
  transform: translate(calc(-50% - 25px), -50%); /* 中央から25px左 */
  width: var(--d);
  height: var(--d);
  background: url(../image/himawari.png) no-repeat center/contain;
  opacity: .45;
  z-index: 1;
}

.hero-sub {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--pink-v);
  letter-spacing: .24em;
  margin-bottom: 22px;
  -webkit-text-stroke: 5px #fff;
  paint-order: stroke fill;
}
.hero-title { margin: 0 auto 26px; }
.hero-title img {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}
.hero-lead {
  font-size: 3.8rem;
  font-weight: 700;
  color: #4a4a4a;
  letter-spacing: .06em;
  -webkit-text-stroke: 10px #fff;
  paint-order: stroke fill;
}

.hero-bar { position: relative; z-index: 3; height: 58px; background: var(--brown); }

/* ---- ヒーロー装飾：ひまわり（葉を含む切り出し画像を四隅に密着）----
   デザイン001（ページ幅1960px / ヒーロー高915px）で角に接する形に書き出し済み。
   幅を vw 比例にしてデザインと同じ比率を保つ（画面が広い時は実寸で停止）。 */
.hero-wrap .hw {
  position: absolute;
  z-index: 6;        /* 茶帯より前面 */
}
.hero-wrap .hw-lt { top: 0;    left: 0;  width: 26.8vw; max-width: 526px; }
.hero-wrap .hw-rt { top: 0;    right: 0; width: 24.1vw; max-width: 473px; }
.hero-wrap .hw-rb { bottom: 0; right: 0; width: 14.0vw; max-width: 274px; }
.hero-wrap .hw-lb { bottom: 0; left: 0;  width: 28.8vw; max-width: 564px; }

/* =====================================================
   リード
===================================================== */
.lead { padding: 92px 0 14px; }
.lead-head {
  text-align: center;
  font-size: 2.9rem;
  font-weight: 700;
  color: #3c3c3c;
  letter-spacing: .01em;
  margin-bottom: 30px;
}
.lead-text {
  max-width: 1010px;
  margin: 0 auto;
  font-size: 1.85rem;
  line-height: 2.0;
  color: #5a5a52;
  text-align: left;
}

/* =====================================================
   4つの約束
===================================================== */
.promise { position: relative; padding: 84px 0 36px; }
/* デザイン001：promise02 の帯の右横に配置（画面右端で切れる） */
.promise .hw-p1 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: clamp(260px, 21vw, 410px);
  right: -5vw;
  top: 543px;       /* promise02 の帯の中心に合わせる */
  opacity: .9;
}

.promise-sub {
  text-align: center;
  font-size: 1.95rem;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 4px;
}
.promise-head {
  text-align: center;
  font-size: 3.3rem;
  font-weight: 700;
  color: #3c3c3c;
  line-height: 1.2;
  margin-bottom: 40px;
}
.promise-head strong {
  font-size: 5.6rem;
  font-weight: 900;
  color: var(--pink-v);
  margin: 0 8px;
  vertical-align: -10px;
}

.promise-item { margin-bottom: 56px; }
.promise-item:last-child { margin-bottom: 0; }

.promise-band {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 845px;
  margin: 0 auto;
  height: 200px;
  padding: 0 40px 0 26px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
.band01 { background-image: url(../image/promise01-back.png); }
.band02 { background-image: url(../image/promise02-back.png); }
.band03 { background-image: url(../image/promise03-back.png); }
.band04 { background-image: url(../image/promise04-back.png); }

/* 白丸（promise 0X）：位置・サイズは変更しない */
.promise-no {
  width: 142px;
  flex-shrink: 0;
  margin-right: 33px;
}
/* アイコン：デザインは原寸比のままなので個別に指定 */
.promise-icon {
  flex-shrink: 0;
  margin-right: 30px;
}
.band01 .promise-icon { width: 127px; }
.band02 .promise-icon { width: 90px; }
.band03 .promise-icon { width: 127px; }
.band04 .promise-icon { width: 110px; }

.promise-text {
  flex: 1;
  font-size: 2.45rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  letter-spacing: .01em;
}
.promise-cap {
  max-width: 845px;
  margin: 16px auto 0;
  padding: 0 22px;
  font-size: 1.78rem;
  font-weight: 500;
  color: #8a877a;
  line-height: 1.6;
}

/* =====================================================
   スライド＋電話CTA
===================================================== */
.cta-block {
  background: var(--brown);
  padding: 62px 0 72px;
  margin-top: 62px;
  position: relative;
  z-index: 3;
}
.slider { overflow: hidden; width: 100%; }
.slide-track { display: flex; gap: 18px; width: max-content; padding-left: 24px; }
.slide-track img {
  width: 305px;
  height: 222px;
  object-fit: cover;
  border-radius: 14px;
  flex-shrink: 0;
  background: #fff;
}

.cta-card {
  max-width: var(--box);
  margin: 52px auto 0;
  background: #fff;
  border-radius: 34px;
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.cta-text { flex: 1; }
.cta-line {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3c3c3c;
  line-height: 1.5;
}
.cta-line span { font-size: 1.7rem; margin-right: 14px; }
.cta-line em {
  font-style: normal;
  background: linear-gradient(transparent 72%, #f5d76e 72%, #f5d76e 88%, transparent 88%);
}
.cta-desc {
  margin-top: 18px;
  font-size: 1.5rem;
  line-height: 1.75;
  color: #6a6a62;
}
.cta-tel { flex-shrink: 0; width: 430px; transition: opacity .2s; }
.cta-tel:hover { opacity: .88; }

/* =====================================================
   サービス内容
===================================================== */
.service { position: relative; padding: 84px 0 50px; }
/* デザイン001：サービスセクション左下（画面左端で切れる） */
.service .hw-s1 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  width: clamp(260px, 21vw, 410px);
  left: -6vw;
  bottom: 380px;
  opacity: .9;
}

.service-catch {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #804040;            /* デザインS003より採色 */
  letter-spacing: .02em;
  -webkit-text-stroke: 6px #fff;
  paint-order: stroke fill;
  margin-bottom: 14px;
}

/* もこもこ見出し（サービス内容） */
.ribbon-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 52px;
}
/* デザインS003より：葉は回転なし・帯から離す・帯中心より11px上 */
.ribbon-head .lf-l { width: 121px; margin-right: 39px; transform: translateY(-11px); }
.ribbon-head .lf-r { width: 168px; margin-left: 33px;  transform: translateY(-11px); }
.ribbon-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 505px;
  height: 146px;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
}
.ribbon-mokomoko {
  background: url(../image/service-back.png) no-repeat center/100% 100%;
}

.service-card {
  background: #fff;
  border-radius: 34px;
  padding: 34px 32px 40px;
  margin-bottom: 42px;
}
.service-card:last-child { margin-bottom: 0; }

.service-band {
  border-radius: 60px;
  padding: 16px 38px;
  color: #fff;
  text-align: center;
  line-height: 1.4;
}
.service-band strong {
  font-size: 2.05rem;
  font-weight: 700;
  margin-right: 16px;
  font-family: "Zen Maru Gothic", sans-serif;
}
.service-band span { font-size: 1.6rem; font-weight: 500; }
.band-pink  { background: #DFA0BF; }
.band-green { background: #8DBB40; }
.band-teal  { background: #66C4CC; }

.service-icons {
  display: flex;
  justify-content: center;
  align-items: flex-end;   /* アイコン画像を下揃え */
  gap: 32px;
  margin-top: 36px;
}
.service-icons2 {
  display: flex;
  justify-content: center;
  align-items: flex-end;   /* アイコン画像を下揃え */
  gap: 32px;
  margin-top: 36px;
}
.service-icons.cols3 {
  align-items: flex-end;
  gap: 80px;
}
.service-icons.cols5 {
  align-items: flex-start;
  gap: 44px;
}

.service-icons img { width: 100%; }
.service-icons2 img { width: 100%; }

/* =====================================================
   ひまわり見出し（ご利用のながれ / 追加サービス）
===================================================== */
.flower-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 240px;
  /* ひまわり画像が枠から約74px下にはみ出すため、その分＋余白30pxを確保 */
  margin-bottom: 104px;
}
.flower-head .fh-hw { position: absolute; width: 310px; top: 8px; z-index: 1; }
.flower-head .fh-l { left: 108px; }
.flower-head .fh-r { right: 108px; }
.flower-head .fh-lf { position: absolute; width: 144px; z-index: 0; }
.flower-head .fh-lf-l { left: 32px; top: 100px; transform: rotate(-16deg); }
.flower-head .fh-lf-r { right: 32px; top: 108px; transform: rotate(10deg); }

.flower-label {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 505px;
  min-height: 142px;
  border-radius: 50%;
  background: var(--salmon);
  color: #fff;
  font-size: 2.65rem;
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.3;
}
.flower-label small {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-top: -4px;
}

/* =====================================================
   ご利用のながれ
===================================================== */
.flow { padding: 56px 0 36px; }
/* デザインS004：カード間の隙間 69px */
.flow-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 69px;
}

.flow-step {
  position: relative;
  width: 550px;
  background: #fff;
  border-radius: 34px;
  padding: 48px 36px 44px;
  text-align: center;
}
/* STEPバッジ：カード内に収める（デザイン：左25px / 上17px / 径109px） */
.step-no {
  position: absolute;
  top: 17px; left: 25px;
  width: 109px;
  z-index: 2;
}
/* カード下端に密着して下に伸びる白い三角（step01〜03） */
.tri-down {
  position: absolute;
  bottom: -58px;
  left: 50%;
  transform: translateX(-50%);
  width: 67px;
  z-index: 2;
}
/* カード上端中央を逆三角に削る（step02〜04） */
.tri-up {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 67px;
  z-index: 2;
}
.step-icon {
  width: 215px;
  margin: 10px auto 18px;
}
.flow-step h3 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #3c3c3c;
  margin-bottom: 8px;
}
.flow-step p {
  font-size: 1.55rem;
  line-height: 1.65;
  color: #6f6f68;
}

/* =====================================================
   追加サービス
===================================================== */
.addsvc { padding: 62px 0 74px; }

.add-card {
  background: #fff;
  border-radius: 34px;
  padding: 48px 48px 44px;
  margin-bottom: 44px;
  text-align: center;
}
.add-title {
  font-size: 2.85rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 18px;
}
.add-title.blue  { color: #1A82E2; }
.add-title.green { color: #2FB474; }
.add-desc {
  font-size: 1.72rem;
  line-height: 1.75;
  color: #5a5a52;
  margin-bottom: 26px;
}
.add-ex {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  text-align: left;
}
.ex-badge {
  flex-shrink: 0;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #9a9a90;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.ex-body { flex: 1; }
.ex-list { font-size: 1.7rem; line-height: 1.6; color: #5a5a52; }
.ex-note { font-size: 1.4rem; line-height: 1.5; color: #8a8a80; margin-top: 4px; }

/* 訪問エリア（白カード・002） */
.visit-card {
  background: #fff;
  border-radius: 34px;
  padding: 40px 40px 48px;
  text-align: center;
}
.visit-map {
  width: 100%;
  max-width: 780px;
  margin: 0 auto 26px;
  border-radius: 6px;
}
.visit-title {
  font-size: 2.45rem;
  font-weight: 700;
  color: var(--salmon);
  margin-bottom: 8px;
}
.visit-desc { font-size: 1.65rem; line-height: 1.7; color: #5a5a52; }

/* =====================================================
   お問合せ
===================================================== */
.contact { padding: 36px 0 62px; }

.contact-box {
  background: #fff;
  border-radius: 34px;
  padding: 74px 62px 62px;
}
.contact-title {
  text-align: center;
  font-size: 3.85rem;
  font-weight: 500;
  color: #4a4a4a;
  letter-spacing: .12em;
  margin-bottom: 48px;
}

table.formTable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid #cfcfcf;
}
table.formTable th,
table.formTable td {
  border: 1px solid #cfcfcf;
  padding: 22px 26px;
  vertical-align: middle;
  text-align: left;
  font-size: 1.6rem;
  line-height: 1.6;
}
table.formTable th {
  width: 30%;
  background: #f4f4f4;
  font-weight: 500;
  color: #4a4a4a;
}
.form-th-head th {
  background: #fff;
  color: #4a4a4a;
  font-size: 1.9rem;
  font-weight: 500;
  width: auto;
}
.th-head-note { font-size: 1.4rem; color: #e0392b; margin-left: 12px; }
.req-mark { color: #e0392b; margin-left: 6px; }

.field-row { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.field-row + .field-row { margin-top: 18px; }
.field-row input { flex: 1 1 260px; }
.field-hint { color: #8a8a8a; font-size: 1.55rem; }
.field-note { font-size: 1.45rem; color: #7a7a7a; line-height: 1.6; margin-top: 10px; }

.radio-item { margin-right: 26px; cursor: pointer; white-space: nowrap; }
.radio-item input { margin-right: 9px; width: 20px; height: 20px; vertical-align: -3px; }
.radio-note { color: #8a8a8a; font-size: 1.45rem; }

form input[type="text"],
form input[type="email"],
form input[type="tel"],
form textarea {
  font-size: 1.6rem;
  padding: 12px 16px;
  border: 1px solid #b9b9b9;
  border-radius: 5px;
  outline: none;
  transition: border-color .2s;
  background: #fff;
  font-family: inherit;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"] { width: 100%; max-width: 430px; }
form input.inp-mid  { width: 100%; max-width: 350px; }
form input.inp-wide { width: 100%; max-width: 720px; }
form textarea { width: 100%; max-width: 720px; }
form input:focus, form textarea:focus { border-color: var(--brown); }
.input-error { border-color: #cc3300 !important; background: #fff8f8 !important; }
.err-msg { display: block; color: #cc3300; font-size: 1.4rem; margin-top: 6px; }

.btn-send-row { text-align: center; margin-top: 34px; }
.btn-clear-row { text-align: center; margin-top: 18px; }

.btn-send,
.btn-clear {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  padding: 20px 112px;
  cursor: pointer;
  border: none;
  border-radius: 60px;
}
.btn-send { color: #fff; background: var(--brown); }
.btn-clear { color: #333; background: #e6e6e6; }
.btn-send:hover, .btn-clear:hover { opacity: .9; }

.contact-note { text-align: center; margin-top: 34px; font-size: 1.55rem; color: #5a5a52; }
.privacy-link { color: #e0392b; }
.privacy-link:hover { text-decoration: underline; }

/* =====================================================
   Googleマップ
===================================================== */
.gmap {
  line-height: 0;
  text-align: center;
  position: relative;
  z-index: 3;
  margin-bottom: -112px;
}
.gmap iframe {
  width: 100%;
  max-width: var(--box);
  height: 555px;
  border: 0;
  margin: 0 auto;
  display: block;
}

/* =====================================================
   訪問エリア（ブラウン弧）
===================================================== */
.area {
  position: relative;
  z-index: 1;
  background-image: url(../image/back.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% 100%;
  padding: 172px 0 74px;
}
.area-inner {
  max-width: calc(var(--box) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: flex-start;
  gap: 60px;
}
.area-map { flex-shrink: 0; width: 300px; }
.area-map img { width: 100%; }
.area-info {
  flex: 1;
  color: #fff;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
}
.area-label {
  display: inline-block;
  border: 2px solid #fff;
  border-radius: 7px;
  padding: 2px 24px;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 14px;
  order: 1;
  align-self: flex-start;
}
.area-city {
  font-size: 3.15rem;
  font-weight: 700;
  line-height: 1.2;
  order: 2;
}
.area-around {
  font-size: 2.15rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 22px;
  order: 3;
}
.area-info::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,.6);
  margin: 0 0 22px;
  order: 4;
}
.area-addr { font-size: 1.55rem; line-height: 1.6; order: 5; margin-bottom: 20px; }
.area-tel {
  align-items: center;
  gap: 14px;
  transition: opacity .2s;
  order: 6;
  line-height: 3em;
}
.area-tel:hover { opacity: .85; }
.area-tel span { font-size: 2.95rem; font-weight: 700; letter-spacing: .01em; }

/* =====================================================
   フッター
===================================================== */
.site-footer {
  background: var(--brown-dk);
  padding: 24px 20px;
  text-align: center;
}
.site-footer p { color: #fff; font-size: 1.5rem; letter-spacing: .02em; }
.site-footer strong { font-weight: 700; }

/* =====================================================
   個人情報保護方針モーダル
===================================================== */
.modal { display: none; position: fixed; inset: 0; z-index: 1000; }
.modal.is-open { display: flex; align-items: flex-start; justify-content: center; }
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.modal-box {
  position: relative;
  z-index: 1;
  max-width: var(--box);
  width: 92%;
  max-height: 88vh;
  margin: 6vh auto;
  background: #fff;
  border-radius: 30px;
  padding: 62px 64px;
  overflow-y: auto;
  box-shadow: 0 12px 40px rgba(0,0,0,.3);
}
.modal-close {
  position: absolute;
  top: 20px; right: 28px;
  width: 52px; height: 52px;
  border: none;
  background: transparent;
  font-size: 2.6rem;
  line-height: 1;
  color: #999;
  cursor: pointer;
}
.modal-close:hover { color: #555; }
.modal-title { text-align: center; font-size: 2.6rem; font-weight: 700; color: #444; margin-bottom: 36px; }
.modal-body { font-size: 1.55rem; color: #555; line-height: 1.9; }
.modal-body p { margin-bottom: 18px; }
.modal-body h3 { font-size: 1.7rem; font-weight: 700; color: #444; margin: 30px 0 6px; }
.modal-body .indent { padding-left: 1em; margin-bottom: 6px; }

/* =====================================================
   中間幅（〜1260px）：ヒーロー装飾と余白を縮める
===================================================== */
@media screen and (max-width: 1260px) {
  :root { --gutter: 24px; }

  .hero { padding: 58px 20px 70px; }
  .hero::before { --d: clamp(300px, 34vw, 500px); }
  .hero-sub { font-size: 1.8rem; }
  .hero-lead { font-size: 3.1rem; -webkit-text-stroke-width: 8px; }
  .hero-title img { max-width: 760px; }
  .hero-bar { height: 46px; }

  .promise .hw-p1 { top: 980px; right: -7vw; }
  .service .hw-s1 { bottom: 330px; left: -8vw; }

  .flower-head .fh-l { left: 40px; }
  .flower-head .fh-r { right: 40px; }
  .flower-head .fh-lf-l { left: -4px; }
  .flower-head .fh-lf-r { right: -4px; }

  .gmap { margin-bottom: -90px; }
  .gmap iframe { height: 460px; }
  .area { padding: 150px 0 64px; }
}

/* =====================================================
   タブレット（〜1100px）：フォントを一段縮小
===================================================== */
@media screen and (max-width: 1100px) {
  .lead-head { font-size: 2.3rem; }
  .lead-text { font-size: 1.6rem; }
  .promise-sub { font-size: 1.6rem; }
  .promise-head { font-size: 2.6rem; }
  .promise-head strong { font-size: 4.4rem; }
  .promise-band { height: 168px; padding: 0 32px 0 22px; }
  .promise-no { width: 118px; margin-right: 27px; }
  .promise-icon { margin-right: 25px; }
  .band01 .promise-icon { width: 105px; }
  .band02 .promise-icon { width: 74px; }
  .band03 .promise-icon { width: 105px; }
  .band04 .promise-icon { width: 91px; }
  .promise-text { font-size: 2rem; }
  .promise-cap { font-size: 1.5rem; }

  .cta-line { font-size: 2rem; }
  .cta-line span { font-size: 1.4rem; }
  .cta-desc { font-size: 1.35rem; }
  .cta-tel { width: 340px; }

  .service-catch { font-size: 1.8rem; -webkit-text-stroke-width: 6px; }
  .ribbon-label { width: 420px; height: 122px; font-size: 2.3rem; }
  .ribbon-head .lf-l { width: 100px; margin-right: 32px; transform: translateY(-9px); }
  .ribbon-head .lf-r { width: 140px; margin-left: 28px;  transform: translateY(-9px); }
  .service-band strong { font-size: 1.7rem; }
  .service-band span { font-size: 1.35rem; }
  .service-icons { gap: 40px; }
  .service-icons.cols5 { gap: 26px; }
  .service-icons li { width: 124px; }
	.service-icons2 li { width: 174px; }

  .flower-head { height: 200px; margin-bottom: 88px; }
  .flower-head .fh-hw { width: 250px; }
  .flower-label { width: 420px; min-height: 120px; font-size: 2.2rem; }
  .flower-label small { font-size: 1.3rem; }

  .flow-step h3 { font-size: 2.1rem; }
  .flow-step p { font-size: 1.35rem; }
  .step-icon { width: 180px; }
  .step-no { width: 98px; top: 15px; left: 22px; }
  .tri-down { bottom: -50px; width: 58px; }
  .tri-up { width: 58px; }
  .flow-list { gap: 60px; }

  .add-title { font-size: 2.3rem; }
  .add-desc { font-size: 1.5rem; }
  .ex-list { font-size: 1.45rem; }
  .ex-note { font-size: 1.25rem; }
  .visit-title { font-size: 2rem; }
  .visit-desc { font-size: 1.4rem; }

  .contact-title { font-size: 3rem; }
  table.formTable th, table.formTable td { font-size: 1.4rem; padding: 18px 20px; }
  .form-th-head th { font-size: 1.6rem; }
  .field-hint { font-size: 1.35rem; }
  .field-note { font-size: 1.3rem; }
  form input[type="text"], form input[type="email"], form input[type="tel"], form textarea { font-size: 1.4rem; }
  .btn-send, .btn-clear { font-size: 1.8rem; padding: 17px 84px; }
  .contact-note { font-size: 1.35rem; }

  .area-city { font-size: 2.6rem; }
  .area-around { font-size: 1.8rem; }
	.area-tel {
  line-height: 2.2em;
}
  .area-tel span { font-size: 2.4rem; }
  .site-footer p { font-size: 1.3rem; }
  .modal-title { font-size: 2.2rem; }
  .modal-body { font-size: 1.4rem; }
}

/* =====================================================
   スマホ（〜700px）
===================================================== */
@media screen and (max-width: 700px) {
  :root { --gutter: 16px; }

  /* ヒーロー */
  .site-header { padding: 12px 0; }
  .site-header img { height: 32px; }
  .hero { padding: 34px 16px 42px; }
  /* スマホ：四隅のひまわりを少し大きめの比率にして存在感を保つ */
  .hero-wrap .hw-lt { width: 36vw; }
  .hero-wrap .hw-rt { width: 32vw; }
  .hero-wrap .hw-rb { width: 20vw; }
  .hero-wrap .hw-lb { width: 38vw; }
  .hero::before { --d: clamp(170px, 48vw, 250px); }
  .hero-sub { font-size: .95rem; letter-spacing: .16em; margin-bottom: 10px; -webkit-text-stroke-width: 3px; }
  .hero-title { margin-bottom: 10px; }
  .hero-title img { max-width: 260px; }
  .hero-lead { font-size: 1.45rem; -webkit-text-stroke-width: 4px; }
  .hero-bar { height: 24px; }

  /* リード */
  .lead { padding: 34px 0 4px; }
  .lead-head { font-size: 1.2rem; margin-bottom: 12px; }
  .lead-text { font-size: .9rem; line-height: 1.85; max-width: 100%; }

  /* 約束 */
  .promise { padding: 32px 0 12px; }
  .promise .hw-p1 { width: clamp(140px, 34vw, 200px); right: -12vw; top: 560px; }
  .promise-sub { font-size: .95rem; }
  .promise-head { font-size: 1.42rem; margin-bottom: 18px; }
  .promise-head strong { font-size: 2.3rem; vertical-align: -5px; }
  .promise-item { margin-bottom: 26px; }
  .promise-band { height: 96px; padding: 0 14px 0 10px; max-width: 100%; }
  .promise-no { width: 58px; margin-right: 12px; }
  .promise-icon { margin-right: 11px; }
  .band01 .promise-icon,
  .band03 .promise-icon { width: 54px; }
  .band02 .promise-icon { width: 38px; }
  .band04 .promise-icon { width: 47px; }
  .promise-text { font-size: 1.06rem; }
  .promise-cap { font-size: .84rem; padding: 0 8px; margin-top: 8px; }

  /* CTA */
  .cta-block { padding: 24px 0 30px; margin-top: 26px; }
  .slide-track { gap: 10px; padding-left: 14px; }
  .slide-track img { width: 156px; height: 114px; border-radius: 8px; }
  .cta-card { flex-direction: column; padding: 22px 20px; gap: 16px; margin: 22px 16px 0; border-radius: 18px; }
  .cta-line { font-size: 1.2rem; }
  .cta-line span { font-size: .9rem; margin-right: 6px; }
  .cta-desc { font-size: .86rem; margin-top: 10px; }
  .cta-tel { width: 100%; max-width: 270px; }

  /* サービス */
  .service { padding: 32px 0 20px; }
  .service .hw-s1 { width: clamp(140px, 34vw, 200px); left: -13vw; bottom: 240px; }
  .service-catch { font-size: 1.02rem; -webkit-text-stroke-width: 4px; margin-bottom: 6px; }
  .ribbon-head { margin-bottom: 24px; gap: 0; }
  .ribbon-head .lf-l { width: 50px; margin-right: 14px; transform: translateY(-5px); }
  .ribbon-head .lf-r { width: 70px; margin-left: 12px;  transform: translateY(-5px); }
  .ribbon-label { width: 210px; height: 62px; font-size: 1.22rem; }
  .service-card { padding: 14px 12px 18px; border-radius: 16px; margin-bottom: 20px; }
  .service-band { padding: 8px 14px; border-radius: 30px; }
  .service-band strong { font-size: 1rem; display: block; margin-right: 0; }
  .service-band span { font-size: .82rem; }
  .service-icons { gap: 2px; flex-wrap: wrap; margin-top: 16px; }
	.service-icons2 { gap: 2px; flex-wrap: wrap; margin-top: 16px; }
  .service-icons.cols5 { gap: 10px; }
	.service-icons.cols3 { gap: 10px; }
  .service-icons li { width: 62px; }
	.service-icons2 li { width: 80px; }

  /* ひまわり見出し */
  .flower-head { height: 104px; margin-bottom: 44px; }
  .flower-head .fh-hw { width: 118px; }
  .flower-head .fh-l { left: 6px; }
  .flower-head .fh-r { right: 6px; }
  .flower-head .fh-lf { width: 56px; }
  .flower-head .fh-lf-l { left: -8px; top: 48px; }
  .flower-head .fh-lf-r { right: -8px; top: 52px; }
  .flower-label { width: 210px; min-height: 62px; font-size: 1.18rem; }
  .flower-label small { font-size: .76rem; margin-top: -2px; }

  /* 流れ */
  .flow { padding: 26px 0 16px; }
  .flow-step { width: 100%; max-width: 320px; padding: 24px 18px 22px; border-radius: 18px; }
  .flow-step h3 { font-size: 1.24rem; }
  .flow-step p { font-size: .86rem; }
  .step-no { width: 54px; top: 10px; left: 12px; }
  .step-icon { width: 100px; margin: 6px auto 10px; }
  .tri-down { bottom: -28px; width: 34px; }
  .tri-up { width: 34px; }
  .flow-list { gap: 34px; }

  /* 追加サービス */
  .addsvc { padding: 26px 0 30px; }
  .add-card { padding: 22px 18px 20px; border-radius: 18px; margin-bottom: 20px; }
  .add-title { font-size: 1.22rem; margin-bottom: 8px; }
  .add-desc { font-size: .88rem; margin-bottom: 14px; }
  .add-ex { gap: 10px; }
  .ex-badge { width: 32px; height: 32px; font-size: .8rem; }
  .ex-list { font-size: .86rem; }
  .ex-note { font-size: .76rem; }
  .visit-card { padding: 18px 16px 22px; border-radius: 18px; }
  .visit-map { margin-bottom: 14px; }
  .visit-title { font-size: 1.18rem; }
  .visit-desc { font-size: .86rem; }

  /* フォーム */
  .contact { padding: 18px 0 30px; }
  .contact-box { padding: 26px 16px 24px; border-radius: 18px; }
  .contact-title { font-size: 1.6rem; margin-bottom: 20px; }
  table.formTable th,
  table.formTable td { display: block; width: 100%; padding: 10px 12px; font-size: .9rem; }
  table.formTable th { border-bottom: 0; }
  .form-th-head th { font-size: 1rem; }
  .th-head-note { font-size: .78rem; margin-left: 4px; }
  form input[type="text"],
  form input[type="email"],
  form input[type="tel"],
  form input.inp-mid,
  form input.inp-wide,
  form textarea { width: 100%; max-width: 100%; font-size: .92rem; padding: 8px 10px; }
  .field-row { flex-direction: column; align-items: stretch; gap: 5px; }
  .field-row + .field-row { margin-top: 10px; }
  .field-hint { white-space: normal; font-size: .82rem; }
  .field-note { font-size: .8rem; margin-top: 6px; }
  .radio-item { display: inline-block; margin-bottom: 4px; margin-right: 12px; }
  .radio-item input { width: 15px; height: 15px; margin-right: 4px; }
  .radio-note { font-size: .78rem; }
  .err-msg { font-size: .78rem; }
  .btn-send-row { margin-top: 18px; }
  .btn-clear-row { margin-top: 10px; }
  .btn-send, .btn-clear { padding: 12px 40px; font-size: 1.08rem; }
  .contact-note { font-size: .84rem; margin-top: 16px; }

  /* マップ・エリア */
  .gmap { margin-bottom: 0; }
  .gmap iframe { height: 240px; }
  .area {
    background-size: cover;
    background-position: center top;
    padding: 36px 0 30px;
  }
  .area-inner { flex-direction: column; align-items: center; text-align: center; gap: 18px; }
  .area-map { width: 190px; }
  .area-info { align-items: center; text-align: center; padding-top: 0; }
  .area-label { font-size: .9rem; padding: 1px 14px; border-width: 1.5px; align-self: center; margin-bottom: 8px; }
  .area-city { font-size: 1.5rem; }
  .area-around { font-size: 1.02rem; margin-bottom: 12px; }
  .area-info::after { margin-bottom: 12px; }
  .area-addr { font-size: .84rem; margin-bottom: 10px; }
  .area-tel { align-self: center; gap: 8px; line-height: 1.8em; }
  .area-tel span { font-size: 1.42rem; }

  /* フッター */
  .site-footer { padding: 14px 16px; }
  .site-footer p { font-size: .78rem; }

  /* モーダル */
  .modal-box { padding: 34px 20px; width: 94%; border-radius: 18px; }
  .modal-close { top: 12px; right: 16px; width: 38px; height: 38px; font-size: 1.9rem; }
  .modal-title { font-size: 1.3rem; margin-bottom: 20px; }
  .modal-body { font-size: .88rem; }
  .modal-body h3 { font-size: .96rem; margin: 18px 0 4px; }
  .modal-body p { margin-bottom: 12px; }
}
