/* せたがや生活サポート — Figma PC(1:2) / SP(4:2) 準拠 */

:root {
  --bg-page: #fcf8f0;
  --green: #22a975;
  --green-dark: #446653;
  --orange: #d58b41;
  --white: #fff;
  --gray-card: #f9f9f9;
  --gray-line: #d8d8d8;
  --black: #000;
  --font: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --max: 1170px;
  --header-h-pc: 80px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 10px;
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-scroll-dot: cubic-bezier(0.45, 0.05, 0.55, 0.95);
  --dur-hero-copy-sp: 0.85s;
  --dur-hero-copy-pc: 0.95s;
  --dur-hero-scroll-dot: 2.8s;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ----- Header ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  border-bottom-right-radius: var(--radius-lg);
  background-color: transparent;
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.header--scrolled {
  background-color: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

/* メニュー開時：ハンバーガー → × */
body.nav-open .header__menu-bar {
  background-color: var(--white);
}

body.nav-open .header__menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body.nav-open .header__menu-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .header__menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.header__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8px 16px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 77px;
}

a.header__logo h1 {
  margin: 0;
}

.header__logo img {
  width: auto;
  height: 48px;
  object-fit: contain;
}

.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 2.5rem;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.header__nav-list a:hover {
  color: var(--green);
}

.header__cta--desktop {
  display: none;
}

.header__cta {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 230px;
  margin-top: -40px;
}

.header__cta-circle img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__cta-icon {
  position: relative;
  z-index: 1;
  margin-top: 115px;
}

.header__cta-icon img {
  width: 40px;
  height: auto;
}

.header__cta-text {
  position: relative;
  z-index: 1;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.13em;
  color: var(--white);
}

.header__menu-btn {
  position: relative;
  width: 77px;
  height: 77px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.header__menu-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 62px;
  height: 62px;
}

.header__menu-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__menu-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  pointer-events: none;
}

.header__menu-bar {
  display: block;
  width: 22px;
  height: 3px;
  border-radius: 1px;
  background-color: var(--white);
  transition: transform 0.3s ease, opacity 0.25s ease, background-color 0.35s ease;
  transform-origin: center;
}

/* ----- 全画面モバイルメニュー ----- */
body.nav-open {
  overflow: hidden;
  touch-action: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(24px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) max(32px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  background: linear-gradient(165deg, var(--green-dark) 0%, #2d4a38 48%, var(--green-dark) 100%);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-overlay__inner {
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.nav-overlay__title {
  margin: 0 0 2.5rem;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-overlay__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-overlay__link {
  display: block;
  padding: 1.35rem 1rem;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-overlay__link:hover,
.nav-overlay__link:focus-visible {
  background-color: rgba(255, 255, 255, 0.08);
  outline: none;
}

.nav-overlay__tel {
  display: inline-block;
  margin-top: 2.75rem;
  padding: 1rem 2rem;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  text-decoration: none;
  background: var(--green);
  border-radius: var(--radius-sm);
  transition: filter 0.2s ease;
}

.nav-overlay__tel:hover,
.nav-overlay__tel:focus-visible {
  filter: brightness(1.1);
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.nav-overlay__tel-note {
  margin: 1rem 0 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.7;
  letter-spacing: 0.04em;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 569px;
  overflow: hidden;
  border-bottom-right-radius: var(--radius-lg);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: ellipse(150% 100% at 50% 0%);
}

/* SP 既定表示、PC は 1024px 以上で表示 */
.hero__bg--pc {
  display: none;
}

.hero__bg--sp {
  display: block;
}

.hero__copy {
  position: absolute;
  left: 22px;
  right: 22px;
  top: 214px;
  z-index: 2;
  max-width: 306px;
  opacity: 0;
  animation: hero-copy-enter-sp var(--dur-hero-copy-sp) var(--ease-smooth) 0.08s forwards;
}

.hero__line {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.24em;
  line-height: 2;
  color: var(--green);
}

.hero__highlight {
  display: inline;
  background: var(--white);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  padding: 0.08em 0.35em;
}

.hero__line--2 .hero__highlight {
  padding-right: 0.5em;
}

/* Hero アニメーション（SP: 既定 / PC はメディア内で別キーフレーム） */
@keyframes hero-copy-enter-sp {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-copy-enter-pc {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 16px));
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes hero-scroll-dot-along-sp {

  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, 73px);
    opacity: 1;
  }

  58% {
    transform: translate(-50%, 73px);
    opacity: 0;
  }

  59% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  68% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

@keyframes hero-scroll-dot-along-pc {

  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  50% {
    transform: translate(-50%, 177px);
    opacity: 1;
  }

  58% {
    transform: translate(-50%, 177px);
    opacity: 0;
  }

  59% {
    transform: translate(-50%, 0);
    opacity: 0;
  }

  68% {
    transform: translate(-50%, 0);
    opacity: 1;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.hero__scroll-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__scroll-track {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 87px;
}

.hero__scroll-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 1px;
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
}

.hero__scroll-dot {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  height: 14px;
  margin: 0;
  animation: hero-scroll-dot-along-sp var(--dur-hero-scroll-dot) var(--ease-scroll-dot) infinite;
  backface-visibility: hidden;
}

.hero__scroll-dot img {
  display: block;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

.hero__scroll-dot .hero__scroll-dot-img--pc {
  display: none;
}

.hero__scroll-dot .hero__scroll-dot-img--sp {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy {
    animation: none;
    opacity: 1;
    transform: none;
  }

  @media (min-width: 1024px) {
    .hero__copy {
      transform: translate(-50%, -50%);
    }
  }

  .hero__scroll-dot {
    animation: none;
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ----- スクロールでセクション表示 ----- */
.reveal-on-scroll {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.75s var(--ease-smooth), transform 0.75s var(--ease-smooth);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* ----- Area news ----- */
.area-news {
  padding: 32px 16px 40px;
  background: var(--bg-page);
}

.area-news__bar {
  max-width: 341px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
}

.area-news__text {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: 0.05em;
}

.area-news__em {
  color: var(--green);
}

/* ----- Services ----- */
.services {
  padding: 24px 0 48px;
  max-width: 1440px;
  margin: 0 auto;
}

.services__lead {
  margin: 0 16px 32px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  line-height: 1.45;
}

.service-card {
  margin: 0 16px 40px;
}

.service-card__inner {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.service-card__visual--ac-pc,
.service-card__visual--range-pc {
  display: none;
}

.service-card__visual--ac-sp,
.service-card__visual--range-sp {
  display: block;
  position: relative;
  height: 170px;
  overflow: hidden;
}

.service-card__photo {
  position: absolute;
  inset: 0;
}

.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card__body {
  padding: 24px 20px 28px;
  text-align: center;
}

.service-card__title {
  margin: 0 0 16px;
  font-size: 32px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.service-card__title--ac {
  font-size: 32px;
}

.service-card__desc {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  text-align: left;
}

.service-card__desc--pc {
  display: none;
}

.service-card__list-price {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 600;
  color: var(--green);
}

.service-card__price {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--green);
}

.service-card__price-num {
  font-size: 62px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.service-card__price-yen {
  font-size: 40px;
  font-weight: 700;
}

.service-card__tax {
  font-size: 16px;
  vertical-align: middle;
  margin-left: 4px;
}

.service-card__subhead {
  margin: 28px 0 16px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.service-card__thumbs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card__figure {
  width: 85% !important;
  margin: 0 auto;
  text-align: center;
}




.service-card__figure figcaption {
  margin-top: 12px;
  font-size: 18px;
  font-weight: 600;
}

.service-card__thumb--pc {
  display: none;
}

.service-card__thumb--sp {
  display: block;
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 348 / 226;
  object-fit: cover;
}

.service-card__figure--single .service-card__thumb--sp {
  aspect-ratio: 344 / 223;
}

/* ----- Price ----- */
.price {
  position: relative;
  padding: 48px 0 64px;
  overflow: hidden;
  background: #fff;
}

.price__inner {
  position: relative;
  max-width: calc(var(--max) + 48px);
  margin: 0 auto;
  padding: 0 20px;
}

.price__title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
}

.price__intro {
  margin: 0 0 40px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.price__br-pc {
  display: none;
}

.price-block {
  background: var(--gray-card);
  border-radius: var(--radius-lg);
  padding: 24px 16px 32px;
  margin-bottom: 24px;
}

.price-block__head {
  margin: 0 auto 24px;
  max-width: 305px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--gray-line);
}

.price-row--last {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.price-row__thumb {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 16px;
}

.price-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price-row__text h4 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.price-row__text p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.1em;
  text-align: left;
}

.price-row__price {
  font-size: 16px;
  color: var(--green);
  letter-spacing: 0.12em;
}

.price-row__price strong {
  display: block;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 4px;
}

.price-row--bath .price-row__text p {
  min-height: auto;
}

/* ----- CTA ----- */
.cta {
  padding: 48px 20px 64px;
  text-align: center;
}

.cta__title {
  margin: 0 0 24px;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.cta__text {
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 0.1em;
}

.cta__text--pc {
  display: none;
}

.cta__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 53px;
  padding: 0 24px;
  background: var(--green);
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  width: 100%;
  max-width: 335px;
}

.cta__phone--pc {
  display: none;
}

.cta__phone--sp {
  position: relative;
}

.cta__phone-sp-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.cta__phone-sp-icon img {
  filter: brightness(0) invert(1);
  width: 22px;
  height: 22px;
}

/* ----- Footer ----- */
.footer {
  position: relative;
  margin-top: 0;
  padding-top: 0;
}

.footer__wave {
  position: relative;
  width: 100%;
  line-height: 0;
  overflow: hidden;
}

.footer__wave img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__wave--pc {
  display: none;
}

.footer__body {
  background: var(--green-dark);
  color: var(--white);
  text-align: center;
  padding: 90px 20px 40px;
  margin-top: -1px;
  clip-path: ellipse(100% 85% at 50% 100%);
}

.footer__logo {
  margin: 0 0 24px;
}

.footer__logo img {
  width: 172px;
  height: auto;
}

.footer__address {
  margin: 0 0 24px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: 0.06em;
}

.footer__address--pc {
  display: none;
}

.footer__copy {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

/* ========== Desktop (PC / Figma 1440) ========== */
@media (min-width: 1024px) {
  .header__inner {
    padding: 8px 32px 11px;
    min-height: var(--header-h-pc);
    align-items: center;
  }

  .header__logo img {
    height: 66px;
  }

  .header__nav {
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .header__menu-btn {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

  body.nav-open {
    overflow: auto;
    touch-action: auto;
  }

  .header__cta--desktop {
    display: flex;
    position: absolute;
    right: -26px;
    top: -91px;
  }

  .hero {
    min-height: min(82vh, 900px);
  }

  .hero__bg--pc {
    display: block;
  }

  .hero__bg--sp {
    display: none;
  }

  .hero__copy {
    left: 50%;
    right: auto;
    top: 50%;
    max-width: 750px;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: hero-copy-enter-pc var(--dur-hero-copy-pc) var(--ease-smooth) 0.1s forwards;
  }

  .hero__line {
    margin: 0.5em 0;
    font-size: 2.4vw;
    letter-spacing: 0.24em;
    line-height: 50px;
  }

  .hero__line--1 .hero__highlight {
    padding: 0 24px;
  }

  .hero__line--2 .hero__highlight {
    display: inline-block;
    padding: 0 32px;
    margin-top: 4px;
  }

  .hero__scroll {
    bottom: clamp(72px, 14vh, 140px);
  }

  .hero__scroll-track {
    display: block;
    height: 191px;
  }

  .hero__scroll-dot {
    animation: hero-scroll-dot-along-pc var(--dur-hero-scroll-dot) var(--ease-scroll-dot) infinite;
  }

  .hero__scroll-dot .hero__scroll-dot-img--pc {
    display: block;
  }

  .hero__scroll-dot .hero__scroll-dot-img--sp {
    display: none;
  }

  .area-news {
    padding: 68px 24px 48px;
  }

  .area-news__bar {
    max-width: 1173px;
    padding: 18px 24px;
  }

  .area-news__text {
    font-size: 24px;
  }

  .services__lead {
    font-size: 30px;
    letter-spacing: 0.1em;
    margin-bottom: 48px;
  }

  .service-card {
    max-width: var(--max);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 56px;
  }

  .service-card__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    min-height: 385px;
    align-items: stretch;
  }

  .service-card--range .service-card__inner {
    grid-template-columns: 1fr 1fr;
  }

  .service-card__visual--ac-sp,
  .service-card__visual--range-sp {
    display: none;
  }

  .service-card__visual--ac-pc,
  .service-card__visual--range-pc {
    display: block;
    grid-column: 2;
    grid-row: 1;
    position: relative;
    min-height: 385px;
  }

  .service-card__body {
    grid-column: 1;
    grid-row: 1;
    padding: 40px 36px 48px 40px;
    text-align: left;
    align-self: center;
  }

  .service-card__title,
  .service-card__title--ac {
    font-size: 30px;
    text-align: left;
    margin-bottom: 20px;
  }

  .service-card__desc--sp {
    display: none;
  }

  .service-card__desc--pc {
    display: block;
  }

  .service-card__list-price {
    font-size: 16px;
    margin-top: 8px;
  }

  .service-card__price-num {
    font-size: 85px;
  }

  .service-card__price-yen {
    font-size: 40px;
  }

  .service-card__visual--ac-pc .service-card__photo,
  .service-card__visual--range-pc .service-card__photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    min-width: 100%;
    height: 100%;
    min-height: 385px;
  }

  .service-card__subhead {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 24px;
  }

  .service-card__thumbs {
    flex-direction: row;
    gap: 32px;
    justify-content: center;
	margin-bottom: 2em;  
  }

  .service-card__thumb--pc {
    display: block;
    width: 100%;
    max-width: 497px;
    border-radius: 8px;
    aspect-ratio: 497 / 322;
    object-fit: cover;
  }

  .service-card__thumb--sp {
    display: none;
  }

  .service-card__figure--single {
    max-width: 501px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card__figure--single .service-card__thumb--pc {
    max-width: 501px;
  }

  .price__title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .price__intro {
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 48px;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0.1em;
  }

  .price__br-pc {
    display: inline;
  }

  .price-block {
    padding: 40px 44px 48px;
    margin-bottom: 32px;
  }

  .price-block__head {
    max-width: none;
    width: calc(100% - 88px);
    margin-left: 44px;
    margin-right: 44px;
    font-size: 30px;
    padding: 28px 24px;
  }

  .price-row {
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .price-row__thumb {
    margin-bottom: 0;
  }

  .price-row__text {
    flex: 1;
    min-width: 0;
    max-width: 649px;
  }

  .price-row__text h4 {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .price-row__text p {
    font-size: 14px;
    line-height: 25px;
    letter-spacing: 0.1em;
    margin-bottom: 0;
  }

  .price-row__price {
    flex-shrink: 0;
    width: 200px;
    text-align: center;
    padding-top: 40px;
  }

  .price-row__price strong {
    font-size: 30px;
  }

  .price-row--bath .price-row__price {
    align-self: flex-end;
    padding-top: 0;
  }

  .price-row--single.price-row--bath {
    align-items: flex-start;
  }

  .cta__title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .cta__text--sp {
    display: none;
  }

  .cta__text--pc {
    display: block;
    font-size: 16px;
    letter-spacing: 0.1em;
  }

  .cta__phone--sp {
    display: none;
  }

  .cta__phone--pc {
    display: inline-flex;
    width: auto;
    max-width: none;
    min-width: 373px;
    min-height: 53px;
    padding: 0 40px;
    font-size: 30px;
    gap: 16px;
  }

  .cta__phone-icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
  }

  .footer__wave--sp {
    display: none;
  }

  .footer__wave--pc {
    display: block;
  }

  .footer__logo img {
    width: 215px;
  }

  .footer__address--sp {
    display: none;
  }

  .footer__address--pc {
    display: block;
  }

  .to-top {
    right: 32px;
    bottom: 40px;
  }
}

/*---------------------------------
TOP追記　20260408
----------------------------------*/

.tp_box {
	width:85%;
	margin:-3em auto 3em;
	padding:2em 0;
	display:flex;
	align-items:center;
}
.tp_box dt{
	width:40%;
	padding:0;
	text-align:center;
}
.tp_box dd{
	width:55%;
	padding: 0;
  	margin: 0;
}
.tp_box dt img{
	width:85%;
	height:auto;
}
.tp_box dd p{
	width:90%;
	margin:0 auto;
	line-height:2.2;
}
@media (max-width: 1024px) {
.tp_box {
	width:90%;
	margin:-3em auto 3em;
	padding:2em 0;
	display:block;
	align-items:center;
}
.tp_box dt{
	width:100%;
	}	
.tp_box dd{
	width:100%;
	margin-top:2em;
	}	
}
/* ----- 先頭へ戻る（矢印のみ） ----- */
.to-top {
  position: fixed;
  right: 16px;
  bottom: max(24px, env(safe-area-inset-bottom, 0px));
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, filter 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.to-top:hover {
  filter: brightness(1.08);
}
.to-top:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}
.to-top__icon {
  display: block;
  margin-top: 2px;
}

/*---------------------------------
 Formarea Styles
----------------------------------*/
.c-btn a.c-btn span {
  font-size: 1.45rem;
  font-weight: 600;
}
.formarea {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
.formarea__field {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
}
.formarea__field>.formarea__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  width: 300px;
}
.formarea__field.check>.formarea__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  width: 230px;
}
.mw_wp_form_confirm .formarea__field.check>.formarea__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  width: 300px;
}
.mw_wp_form_confirm .formarea__field > .formarea__label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  width: 350px;
  margin-right: 6em;
}
.mw_wp_form_confirm .right_form {
	text-align:left;
}
.formarea__required {
  display: inline-block;
  background-color: #ce151f;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 8px;
  border-radius: 2px;
  flex-shrink: 0;
  line-height: 1.5;
  margin-right: 1em;
}
.formarea__label {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  color: #000;
}
.formarea__input,
.formarea__textarea {
  width: 600px !important;
  padding: 0.75rem;
  border: 1px solid #1a57b1 !important;
  border-radius: 4px;
  background-color: #fff;
  color: #000;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.formarea__input:focus,
.formarea__textarea:focus {
  outline: none;
  border-color: #346ABC;
  box-shadow: 0 0 0 2px rgba(52, 106, 188, 0.1);
}
.formarea__textarea {
  min-height: 150px;
  resize: vertical;
}
.formarea__checkbox-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  margin-left: -1em;
}
.formarea__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 16px;
  color: #000;
}
.formarea__checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #346ABC;
}
.formarea__submit {
  text-align: center;
  margin-top: 2rem;
}
.formarea__button {
  width: 280px;
  background-color: #ce151f !important;
  color: #fff;
  border: none;
  padding: 1rem 3rem;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  border:none !important;
  line-height: 13px;	
}
.formarea__button:hover,
.formarea__button:focus {
  background-color: #a81119;
  outline: none;
}
.formarea__button:active {
  background-color: #8d0e15;
}
p.thx_txt {
  width: 80%;
  margin: 2em auto;
  text-align: center;
  line-height: 2;
}
input,
select,
textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-height: var(--input-height, 45px);
  padding: var(--input-padding-y, .3rem) var(--input-padding-x, .7rem);
  border: 1px solid #446653 !important;
  border-radius: var(--input-border-radius, 6px);
  background-clip: padding-box;
  color: var(--input-color, var(--color-input-text));
  font-size: 16px;
  line-height: 1.5;
  transition-duration: .3s;
  transition-property: border-color, box-shadow;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}
input[type="text"][name="address"]{
    width: 94%;
  margin-left: 6%;
}
.mw_wp_form_items label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}
input[type="checkbox"],
input[type="radio"] {
    display: inline-block !important; 
    width: 20px !important;
    height: 20px !important;
    min-height: auto !important;
    margin: 0 8px 0 0 !important;
    padding: 0 !important;
    border: 1px solid #446653 !important;
    cursor: pointer;
    vertical-align: middle;
    flex-shrink: 0;
    position: relative;
    top: -1px; 
}
.mw_wp_form_items label {
    display: inline-flex !important;
    align-items: center; 
    justify-content: center;
    margin-right: 15px;
    font-size: 16px;
    cursor: pointer;
    width: auto;
    line-height: 1;
}
.formarea__checkbox-group {
    width: 100%;
    display: flex !important;
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 0 !important; /* マイナスマージンのリセット */
    margin-top: 0.5rem;
}
.formarea__input,
.formarea__textarea,
input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    display: block;
    width: 100%;
    max-width: 600px;
    min-height: 45px;
    padding: 0.75rem;
    border: 1px solid #446653 !important;
    border-radius: 6px;
    background-color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}
.right_form {
	width:650px;
	display:block;
}

.error_area {
    width: 100%;
    max-width: 800px;
    margin: 2em auto;
    text-align: left;
}
.p-country-name {
  display: none;
}
.error_area {
	width:800px;
	margin:2em auto;
	text-align:left;
}
.pc{
	display:block;
}
.sp{
	display:none;
}


@media (max-width: 1024px) {
.pc{
	display:none;
}
.sp{
	display:block;
}
	.right_form {
		width:100%;
		margin:0 auto;
		display:block;
	}
	.formarea__checkbox-group {
        justify-content: flex-start !important;
        margin-left: 0;
        gap: 15px;
    }
    .formarea__input,
    .formarea__textarea,
    input,
    select,
    textarea {
        max-width: 100%;
    }
    input[type="text"][name="address"],
    input[type="text"][name="contact_date01"] {
        width: 100% !important;
        margin-left: 0 !important;
    }
    .formarea__field {
        display: block !important;
    }
  .header__cta {
    display: none;
  }
  .service-card__figure {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    margin-bottom: 50px;
    position: relative;
  }
  .service-card__figure iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  input[type="checkbox"]:checked+label::before {
    background-color: #000;
    /* 例：チェック時に黒くする */
    content: "✔";
    /* チェックマークを表示する */
    color: #fff;
    text-align: center;
    line-height: 1.2;
  }
  .formarea {
    width: 100%;
    padding: 0 .5rem !important;
  }

  .formarea__field {
    width: 100%;
    display: block !important;
    align-items: center;
  }
.formarea__checkbox-group {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  margin-left: -.5em;
}
input[type="text"][name="contact_date01"]{
  width:88%;
  margin-left:1%;
}
input {
    height: 45px; /* 任意の高さ */
    line-height: 1.5;
    vertical-align: middle;
    box-sizing: border-box; /* 枠線を含めた計算にする */
}
}