:root {
  --bg: #fbf7ee;
  --paper: #fffdf8;
  --ink: #5b402d;
  --text: #594d43;
  --muted: #796d60;
  --green: #59b62d;
  --green-dark: #319318;
  --pink: #ff5369;
  --pink-dark: #eb3f56;
  --line: #eadfce;
  --shadow: 0 8px 20px rgba(90, 63, 43, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.72;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
.container { width: min(1120px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 2px 15px rgba(85, 63, 41, .08);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: 10vw;
}

.logo img { width: 200px; height: auto; }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  padding-right: 24px;
}
.header-tel {
  display: grid;
  color: var(--ink);
  font-weight: 900;
  line-height: 1.12;
  text-decoration: none;
}
.header-tel span { font-size: 32px; }
.header-tel span::before,
.bottom-tel::before { content: "TEL"; margin-right: 7px; font-size: .72em; color: #7d5c40; }
.header-tel small {
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.pill,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: var(--shadow);
}

.pill {
  min-width: 150px;
  padding: 10px 18px;
  font-size: 14px;
}
.pill-line,
.line-button,
.pill-mail,
.mail-button {
  gap: 8px;
}
.pill-line::before,
.line-button::before {
  content: "";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  background: url("../assets/icons8-line-96.png") center / contain no-repeat;
}
.pill-line::before {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
}
.pill-mail::before,
.mail-button::before {
  content: "";
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: inline-block;
  background: url("../assets/icons8-Mail.png") center / contain no-repeat;
}
.pill-line,
.btn-green { background: linear-gradient(180deg, #66ca37, #41a918); }
.pill-mail,
.btn-pink { background: linear-gradient(180deg, #ff7080, #ff405c); }
.btn {
  min-width: 230px;
  padding: 13px 26px;
  font-size: 17px;
}
.btn::after {
  content: "";
  width: 20px;
  height: 20px;
  margin-left: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .38);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: var(--bg);
}
.hero-banner { display: block; width: 100%; }
.hero-banner img { width: 100%; height: auto; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero-inner {
  position: relative;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 26px;
}
.hero-copy { position: relative; z-index: 2; padding: 36px 0; }
.area-badge {
  display: inline-flex;
  padding: 5px 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--green);
  font-size: 14px;
  font-weight: 900;
}
h1 {
  margin: 21px 0 12px;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(38px, 4.4vw, 54px);
  line-height: 1.2;
  font-weight: 900;
}
h1 span { white-space: nowrap; }
.hero-sub {
  margin-bottom: 16px;
  color: var(--pink);
  font-size: clamp(22px, 2.8vw, 31px);
  line-height: 1.36;
  font-weight: 900;
}
.hero-text { max-width: 520px; margin-bottom: 0; font-weight: 800; }
.hero-photo {
  height: 610px;
  margin-right: calc((50vw - 50%) * -1);
  overflow: hidden;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 530px;
  margin: 26px 0;
}
.feature-row div {
  min-height: 76px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
}
.feature-row img { width: 36px; height: 36px; object-fit: contain; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; }

section { padding: 54px 0; }
.center { display: block; text-align: center; }
.section-en {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .08em;
}
.contact .section-en.center {
  color: white;
}
.center-title {
  margin: 0 0 40px;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  text-align: center;
  font-size: 36px;
  line-height: 1.32;
  font-weight: 900;
}
.worry {
  padding-top: 60px;
  background: var(--bg);
}
.worry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.worry-grid article,
.service-grid article,
.plan-card,
.flow-grid article,
.area-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.worry-grid article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 26px 25px;
  text-align: center;
}
.worry-grid img { width: 96px; height: 96px; object-fit: contain; }
.worry-grid img.round-photo {
  width: 200px;
  height: 200px;
  border-radius: 5%;
  object-fit: cover;
  box-shadow: 0 3px 10px rgba(90, 63, 43, .16);
}
.worry-grid p { 
  margin: 0; color: 
  var(--ink); font-weight: 900; 
  line-height: 1.55; 
  font-size: 18px;
}
.red-message {
  margin: 22px 0 0;
  color: var(--pink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
}
.sp-only { display: none; }

.concept { background: #f1e8d9; }
.concept-inner {
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 34px;
}
.concept h2 {
  margin: 5px 0 16px;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(27px, 3.8vw, 40px);
  line-height: 1.28;
}
.concept h3 {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
}
.concept p {
  max-width: 570px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 800;
}
.concept img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
}

.service { padding-top: 80px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.service-grid article { padding: 27px 22px 25px; text-align: center; }
.service-grid img { width: 70px; height: 70px; margin: 0 auto 12px; object-fit: contain; }
.service-grid img.service-photo {
  width: 100%;
  height: 118px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(90, 63, 43, .16);
}
.service-grid h3 {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 900;
}
.service-grid p { margin: 0; text-align: left; font-weight: 800; font-size: 14px;}

.reason {
  padding-top: 31px;
  padding-bottom: 80px;
}
.reason-list { display: grid; gap: 50px; }
.reason-card {
  min-height: 155px;
  display: grid;
  grid-template-columns: 45% 55%;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.reason-card.image-right { grid-template-columns: 55% 45%; }
.reason-card img { width: 100%; object-fit: cover; }
.reason-card div { padding: 25px 34px; }
.reason-card span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 600;
}
.reason-card h3 {
  margin: 5px 0 10px;
  color: var(--green-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 900;
}
.reason-card p { margin: 0; font-weight: 800; }

.plan {
  padding-top: 40px;
  background: #f1e8d9;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.plan-card { padding: 30px 38px; }
.plan-card.pink { border-color: rgba(255, 82, 105, .45); }
.plan-card.green { border-color: rgba(88, 173, 37, .45); }
.plan-photo {
  width: 100%;
  margin: 18px 0 16px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(90, 63, 43, .16);
}
.plan-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.plan-card h3 {
  margin-bottom: 0;
  color: var(--pink-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 900;
}
.plan-card.green h3 { color: var(--green-dark); }
.price {
  margin: 10px 0 10px;
  color: var(--pink-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: clamp(44px, 6.8vw, 62px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}
.green .price { color: var(--green-dark); }
.price small { margin-left: 4px; font-size: 18px; }
.plan-card p:not(.price) { min-height: 88px; font-weight: 800; }
.plan-card .btn { width: 100%; min-width: 0; }

.flow { padding-top: 60px; }
.flow-grid {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
.flow-grid article {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  gap: 20px;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 5px;
  box-shadow: none;
}
.flow-grid span {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 8px;
  padding: 2px 10px;
  color: var(--pink-dark);
  background: transparent;
  border-radius: 999px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-align: center;
}
.flow-mark {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
}
.flow-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin: 0 auto;
  padding: 1px;
  border: 3px solid var(--green);
  border-radius: 50%;
  filter: invert(45%) sepia(84%) saturate(579%) hue-rotate(60deg) brightness(85%) contrast(91%);
  object-fit: contain;
  box-shadow: 0 5px 14px rgba(90, 63, 43, .12);
}
.flow-body {
  padding: 19px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(90, 63, 43, .10);
}
.flow-grid h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: 900;
}
.flow-grid p { margin: 0; font-size: 14px; font-weight: 800; text-align: left; }
.flow-grid small { color: var(--muted); font-weight: 800; }

.area { padding-top: 28px; }
.area-box {
  display: grid;
  grid-template-columns: 1fr 350px;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  padding: 28px 34px;
}
.area-box div { padding: 0; }
.area-box h3 {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 26px;
  line-height: 1.35;
  font-weight: 900;
  text-align: center;
}
.area-box p { font-weight: 800; }
.area-note { font-size: 12px; }
.area-box p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  text-align: center;
}
.area-box img {
  width: 350px;
  height: auto;
  min-height: 0;
  border-radius: 8px;
  object-fit: cover;
}

.contact {
  padding-top: 70px;
  padding-bottom: 80px;
  background: url("../assets/34238.png") center / cover no-repeat;
}
.contact-form {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 34px;
  padding-bottom: 50px;
  background: rgba(255, 255, 255, .94);
  border: 0;
  border-radius: 5px;
  box-shadow: 0 3px 14px rgba(90, 63, 43, .08);
}
.hidden-field { display: none; }
.form-note {
  margin: 0;
  padding: 24px 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  border-bottom: 1px solid #e8e5df;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.contact-form label {
  display: grid;
  grid-template-columns: minmax(220px, 34%) 1fr;
  align-items: center;
  gap: 30px;
  padding: 26px 0;
  color: var(--ink);
  font-weight: 900;
  border-bottom: 1px solid #e8e5df;
}
.contact-form label span {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 18px;
}
.required-label::after {
  content: "必須";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 6px;
  color: #fff;
  background: #f04444;
  font-size: 13px;
  line-height: 1.3;
  vertical-align: middle;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 13px 18px;
  color: var(--text);
  background: #f1f1f1;
  border: 0;
  border-radius: 6px;
  font: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(88, 173, 37, .35);
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
  min-height: 220px;
}
.form-full {
  margin-top: 0;
}
.contact-submit {
  display: flex;
  width: min(280px, 100%);
  margin: 34px auto 0;
  cursor: pointer;
}
.contact-submit::after {
  display: none;
}

.bottom-cta {
  padding: 30px 0;
  background: #fff;
  border-top: 1px solid var(--line);
}
.bottom-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 28px;
}
.mini-logo {
  width: 150px;
  height: auto;
}
.bottom-cta h2 {
  margin-bottom: 6px;
  color: var(--ink);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-size: 27px;
  line-height: 1.35;
  font-weight: 900;
}
.bottom-cta p { margin: 0; font-weight: 800; }
.bottom-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.bottom-tel {
  width: 100%;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
  text-align: right;
  text-decoration: none;
}

.footer {
  padding: 18px 0;
  color: #fff;
  background: #6d4b32;
}
.footer-inner {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Noto Serif JP", serif;
  font-weight: 900;
}
.mobile-cta { display: none; }

@media (max-width: 920px) {
  .container { width: min(100% - 32px, 760px); }
  .header-inner {
    width: 100%;
    min-height: 76px;
    padding-left: 0;
  }
  .header-actions { padding-right: 16px; }
  .logo img { width: 220px; }
  .header-tel { display: none; }
  .hero-inner,
  .concept-inner,
  .area-box,
  .bottom-inner { grid-template-columns: 1fr; }
  .concept-inner img { order: -1; }
  .hero-inner { gap: 0; padding-bottom: 24px; }
  .hero-photo {
    order: -1;
    height: auto;
    margin: 0 -16px;
    border-radius: 0 0 12px 12px;
  }
  .hero-photo img { height: auto; }
  .feature-row,
  .worry-grid,
  .service-grid,
  .flow-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .reason-card,
  .reason-card.image-right { grid-template-columns: 1fr; }
  .reason-card.image-right img { order: -1; }
  .reason-list { gap: 12px; }
  .plan-grid { grid-template-columns: 1fr; }
  .flow-grid article:not(:last-child)::after { display: none; }
  .bottom-actions { justify-content: flex-start; }
  .bottom-tel { text-align: left; }
}

@media (max-width: 560px) {
  body { padding-bottom: 78px; }
  .container { width: min(100% - 24px, 760px); }
  .section-en { font-size: 14px; }
  .center-title { font-size: 22px; }
  .concept h2 { font-size: 20px; }
  .concept p { font-size: 14px; }
  .sp-only { display: block; }
  .worry .center-title { margin-bottom: 20px; }
  .header-actions .pill { display: none; }
  .logo img { width: 150px; }
  h1 { font-size: 34px; }
  h1 span { white-space: normal; }
  .hero-sub { font-size: 22px; }
  .feature-row { gap: 8px; }
  .feature-row div { grid-template-columns: 34px 1fr; min-height: 68px; }
  .hero-buttons .btn,
  .plan-card .btn { width: 100%; }
  section { padding: 48px 0; }
  .worry-grid article { min-height: 190px; padding: 22px 18px; }
  .worry-grid img { width: 82px; height: 82px; }
  .worry-grid img.round-photo { width: 200px; height: 200px; }
  .worry-grid p { font-size: 16px; }
  .red-message { font-size: 18px; }
  .service { padding-top: 60px; }
  .flow-grid article {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }
  .flow-body { padding: 18px; }
  .flow-grid p { text-align: left; }
  .service-grid article,
  .plan-card,
  .reason-card div,
  .area-box { padding: 22px; gap: 18px; }
  .area-box div { padding: 0; }
  .area-box img {
    order: -1;
    width: 100%;
  }
  .contact-form {
    padding: 0 18px 24px;
    border-radius: 5px;
  }
  .form-note {
    padding: 20px 0;
    text-align: left;
  }
  .contact-form label {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }
  .contact-form label span {
    justify-content: flex-start;
    gap: 0;
    font-size: 16px;
  }
  .required-label::after {
    min-width: 25px;
    margin-left: 8px;
    padding: 1px 1px;
    border-radius: 6px;
    font-size: 10px;
    line-height: 1.3;
  }
  .contact-form textarea {
    min-height: 180px;
  }
  .contact-submit {
    display: flex;
    width: min(80px, 100%);
    margin: 34px auto 0;
    cursor: pointer;
  }
  .bottom-cta {
    text-align: center;
  }
  .bottom-cta h2 { font-size: 20px; }
  .bottom-cta p { font-size: 14px; }
  .bottom-inner {
    justify-items: center;
  }
  .bottom-actions {
    justify-content: center;
  }
  .bottom-tel {
    text-align: center;
  }
  .reason-card span { font-size: 14px; }
  .reason-card h3 { font-size: 20px; }
  .reason-card p { font-size: 14px; }
  .plan-card h3 { font-size: 20px; }
  .price { font-size: 32px; }
  .price small { font-size: 14px; }
  .plan-grid p:not(.price) { font-size: 14px; }
  .area-box h3 { font-size: 20px; }
  .footer-inner {
    display: grid;
    gap: 4px;
    text-align: center;
    font-size: 13px;
  }
  .mobile-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px;
    background: rgba(255, 253, 248, .96);
    border-top: 1px solid var(--line);
  }
  .mobile-cta .btn {
    min-width: 0;
    min-height: 52px;
    padding: 10px;
    font-size: 15px;
    gap: 7px;
  }
  .mobile-cta .btn::after {
    display: none;
  }
  .mobile-cta .line-button::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .mobile-cta .mail-button::before {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }
  .mobile-cta .line-button::before,
  .mobile-cta .mail-button::before {
    animation: mobileIconHover 3s ease-in-out infinite;
    transform-origin: center;
  }
}

@media (min-width: 561px) {
  .concept p { font-size: 16px; }
}

@keyframes mobileIconHover {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.18);
  }
}
