* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: #333333;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.9), rgba(245,239,232,0.9)),
    #f4eee8;
}

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

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 56px;
}

/* ヒーロー */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.hero__text {
  padding: 8px 8px 8px 4px;
}

.hero__text h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 3vw, 3.3rem);
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: #222222;
  font-weight: 700;
}
@media (max-width: 768px) {
  .hero__text h3 {
    font-size: 18px;
  }

  .hero__text h2 {
    font-size: 22px;
    line-height: 1.4;
  }
}
@media (max-width: 768px) {
  .hero__text {
    padding: 20px;
  }

  .hero__text h2 {
    margin-top: 10px;
  }
}
@media (max-width: 768px) {
  .hero__text h2 {
    font-size: 19px;   /* ←さらに上品に */
    line-height: 1.6;  /* ←詰まり解消 */
  }
}
.service__notice {
  margin: 20px 0;
  padding: 10px 0;
}
.hero__text h2 {
  font-size: 1.8rem;
  color: #2a2a2a;
  font-weight: 700;
  line-height: 1.5;
}

.hero__text h3 {
  font-size: 1.2rem;
  color: #2f2f2f;
  font-weight: 700;
  line-height: 1.5;
}

.hero__text p {
  margin: 0 0 24px;
  font-size: 1rem;
  line-height: 1.9;
  color: #4a433c;
  font-weight: 500;
}

.hero__button {
  display: inline-block;
  padding: 14px 34px;
  background: #ffffff;
  color: #5f6f52;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid #5f6f52;
  box-shadow: 0 6px 18px rgba(102, 114, 82, 0.12);
}

.hero__button:hover {
  background: #f3f7f0;
}

.hero__image img {
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(85, 73, 58, 0.12);
  object-fit: cover;
}

/* 設備一覧 */
.equipment {
  margin-top: 10px;
}

.equipment__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.equipment-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(210, 200, 190, 0.5);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(120, 102, 83, 0.08);
}

.equipment-card__image {
  height: 180px;
  background: #f3eee7;
}

.equipment-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.equipment-card__label {
  margin: 0;
  padding: 14px 10px 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #585146;
  background: rgba(255, 255, 255, 0.9);
}

/* タブレット */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hero__text {
    order: 1;
  }

  .hero__image {
    order: 2;
  }

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

/* スマホ */
@media (max-width: 600px) {
  .page {
    padding: 18px 14px 40px;
  }

  .hero__text h1 {
    font-size: 1.75rem;
    line-height: 1.5;
  }

  .hero__text p {
    font-size: 0.95rem;
  }

  .hero__button {
    padding: 12px 24px;
    font-size: 0.95rem;
  }

  .equipment__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .equipment-card__label {
    font-size: 0.95rem;
  }
}

/* 特長セクション */
.features {
  padding: 72px 0 40px;
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.5;
  color: #2a2a2a;
  font-weight: 700;
}

.section-heading p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 1rem;
  line-height: 1.9;
  color: #4a433c;
  font-weight: 500;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 200, 190, 0.5);
  border-radius: 18px;
  padding: 28px 22px;
  box-shadow: 0 10px 24px rgba(120, 102, 83, 0.08);
  text-align: center;
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #f2ece4;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
}

.feature-card h3 {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #2f2f2f;
}

.feature-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.9;
  color: #4a433c;
  text-align: left;
  font-weight: 500;
}

/* タブレット */
@media (max-width: 960px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    text-align: left;
  }

  .feature-card__icon {
    margin: 0 0 18px;
  }
}

/* スマホ */
@media (max-width: 600px) {
  .features {
    padding: 56px 0 24px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: 1.5rem;
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 22px 18px;
  }

  .feature-card h3 {
    font-size: 1.08rem;
  }

  .feature-card p {
    font-size: 0.94rem;
  }
}

/* お悩み（改善版） */
.problem {
  margin-top: 40px;
  text-align: center;
}

.problem__image-wide {
  max-width: 900px;
  margin: 0 auto;
}

.problem__image-wide img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(85, 73, 58, 0.1);
}

.problem__text-center {
  margin-top: 28px;
  font-size: 1.15rem;
  line-height: 2;
  color: #4a433c;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

/* 画像をコンパクトに */
.problem__image-compact {
  max-width: 700px;
  margin: 0 auto;
}

.problem__image-compact img {
  width: 100%;
  border-radius: 50px;
  opacity: 0.95;
}

.service {
  padding: 72px 0 16px;
}

.service__heading {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.service__heading h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 2.7vw, 2.6rem);
  line-height: 1.5;
  color: #2a2a2a;
}

.service__heading p {
  margin: 0;
  font-size: 1rem;
  line-height: 2;
  color: #4a433c;
  font-weight: 500;
}

.service__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}

.service-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 200, 190, 0.5);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: 0 10px 24px rgba(120, 102, 83, 0.08);
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2f2f2f;
}

.service-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.9;
  color: #4a433c;
  font-weight: 500;
}

.service__box {
  background: #f7f2ec;
  border-radius: 18px;
  padding: 28px 26px;
  margin-bottom: 24px;
  box-shadow: inset 0 0 0 1px rgba(210, 200, 190, 0.45);
}

.service__box h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  color: #2f2f2f;
}

.service__box p {
  margin: 0 0 10px;
  font-size: 0.98rem;
  line-height: 1.9;
  color: #4a433c;
  font-weight: 500;
}

.service__box p:last-child {
  margin-bottom: 0;
}

.service__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service__info-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 200, 190, 0.5);
  border-radius: 18px;
  padding: 24px 22px;
}

.service__info-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
  color: #2f2f2f;
}

.service__info-card p {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.9;
  color: #4a433c;
  font-weight: 500;
}

@media (max-width: 960px) {
  .service__features {
    grid-template-columns: 1fr;
  }

  .service__info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .service {
    padding: 56px 0 24px;
  }

  .service__heading h2 {
    font-size: 1.5rem;
  }

  .service__heading p,
  .service-card p,
  .service__box p,
  .service__info-card p {
    font-size: 0.95rem;
  }

  .service-card,
  .service__box,
  .service__info-card {
    padding: 20px 18px;
  }
}

.contact-cta {
  padding: 8px 0 40px;
}

.contact-cta__inner {
  background: linear-gradient(135deg, #f7f2ec 0%, #efe7dd 100%);
  border-radius: 24px;
  padding: 32px 36px;
  box-shadow: 0 14px 34px rgba(120, 102, 83, 0.1);
  text-align: center;
}

.contact-cta__text {
  max-width: 780px;
  margin: 0 auto 28px;
}

.contact-cta__text h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.6;
  color: #2a2a2a;
}

.contact-cta__text p {
  margin: 0 0 12px;
  font-size: 1rem;
  line-height: 1.95;
  color: #4a433c;
  font-weight: 500;
}

.contact-cta__text p:last-child {
  margin-bottom: 0;
}

.contact-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-cta__button {
  display: inline-block;
  min-width: 240px;
  padding: 16px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-cta__button:hover {
  opacity: 0.92;
}

.contact-cta__button--primary {
  background: #5f6f52;
  color: #ffffff;
  border: 2px solid #5f6f52;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.contact-cta__button--primary:hover {
  background: #506046;
}

.contact-cta__button--secondary {
  background: #ffffff;
  color: #5f6f52;
  border: 2px solid #5f6f52;
  font-weight: 700;
}

.contact-cta__button--secondary:hover {
  background: #f3f7f0;
}

@media (max-width: 600px) {
  .contact-cta {
    padding: 8px 0 32px;
  }

  .contact-cta__inner {
    padding: 28px 18px;
    border-radius: 18px;
  }

  .contact-cta__text h2 {
    font-size: 1.45rem;
  }

  .contact-cta__text p {
    font-size: 0.95rem;
  }

  .contact-cta__button {
    width: 100%;
    min-width: 0;
  }
}

html {
  scroll-behavior: smooth;
}

.service__notice {
  margin-top: 24px;
  padding: 18px 20px;
  background: rgba(247, 242, 236, 0.7);
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a433c;
  text-align: center;
  font-weight: 500;
}

/* 問い合わせページ */
.contact-page {
  padding: 56px 0 32px;
}

.contact-page__heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 32px;
}

.contact-page__sub {
  margin: 0 0 8px;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: #7a7066;
}

.contact-page__heading h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.5;
  color: #222222;
}

.contact-page__lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: #4a433c;
  font-weight: 500;
}

.contact-page__box {
  max-width: 820px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(210, 200, 190, 0.5);
  border-radius: 22px;
  padding: 34px 28px;
  box-shadow: 0 12px 30px rgba(120, 102, 83, 0.08);
}

.contact-form__group {
  margin-bottom: 22px;
}

.contact-form__group label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  font-weight: 600;
  color: #585146;
}

.contact-form__group label span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #efe7dd;
  color: #7a6655;
  font-size: 0.78rem;
  font-weight: 600;
}

.contact-form__group input,
.contact-form__group textarea {
  width: 100%;
  border: 1px solid #d7cdc1;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  line-height: 1.7;
  background: #fff;
  color: #4a433c;
  outline: none;
}

.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: #9aa184;
  box-shadow: 0 0 0 4px rgba(154, 161, 132, 0.12);
}

.contact-form__group textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form__note {
  margin-top: 6px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.8;
  color: #5c544b;
}

.contact-form__actions {
  text-align: center;
}

.contact-form__button {
  display: inline-block;
  min-width: 220px;
  padding: 16px 28px;
  border: none;
  border-radius: 999px;
  background: #667252;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(102, 114, 82, 0.2);
}

.contact-form__button:hover {
  opacity: 0.92;
}

.contact-page__back {
  margin-top: 26px;
  text-align: center;
}

.contact-page__back a {
  color: #5c544b;
  text-decoration: none;
  border-bottom: 1px solid rgba(106, 98, 89, 0.35);
}

.contact-page__back a:hover {
  opacity: 0.85;
}

/* フッター */
.footer {
  margin-top: 60px;
  padding: 32px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #7a7066;
}

.footer__name {
  margin: 0 0 6px;
  font-weight: 600;
}

.footer__address {
  margin: 0 0 6px;
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.7;
}

@media (max-width: 600px) {
  .contact-page {
    padding: 36px 0 20px;
  }

  .contact-page__box {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .contact-page__heading h1 {
    font-size: 1.7rem;
  }

  .contact-page__lead,
  .contact-form__group input,
  .contact-form__group textarea {
    font-size: 0.95rem;
  }

  .contact-form__button {
    width: 100%;
    min-width: 0;
  }
}

.contact-form__checkbox {
  margin-bottom: 20px;
  font-size: 0.95rem;
  color: #5c544b;
}

.contact-form__checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.7;
}

.contact-form__checkbox input {
  margin-top: 4px;
}

.example-section {
  background: #eef5e8;
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.topbar {
  background: #5f6f52;
  color: #fff;
  padding: 10px 0;
  font-size: 14px;
}

.page-label {
  display: inline-block;
  background: #eef3ea;
  color: #4c5b41;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 16px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn-secondary {
  background: #5f6f52;
  color: #ffffff;
  border: 1px solid #5f6f52;
}

.site-topbar {
  background: #5f6f52;
  color: #f3eee7;  
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}
.site-topbar p {
  margin: 0;
  text-align: center;
  letter-spacing: 0.08em;
  color: #f6f1ea !important;}

.hero-id-link {
  margin-top: 18px;
}

.btn-id {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #5f6f52;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  border: 2px solid #5f6f52;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-id:hover {
  background: #506046;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

section {
  margin-bottom: 48px;
}

h2,
h3 {
  margin-bottom: 12px;
}

p,
li {
  color: #333333;
  line-height: 1.8;
  font-weight: 500;
}

small,
.note,
.subtext {
  color: #555555;
}
.service__notice {
  margin: 20px 0;
  padding: 10px 0;
}


.site-footer {
  margin-top: 40px;
  padding: 34px 20px 38px;
  background: #364238;
  color: #ffffff;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-name {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.footer-desc {
  margin: 0 0 10px;
  font-size: 0.92rem;
  opacity: 0.9;
}

.footer-address {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.8;
  opacity: 0.88;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  opacity: 0.65;
}

@media (max-width: 600px) {
  .site-footer {
    margin-top: 28px;
    padding: 28px 16px 30px;
  }

  .footer-name {
    font-size: 1rem;
  }

  .footer-desc,
  .footer-address {
    font-size: 0.88rem;
  }
}
.site-footer,
.site-footer p,
.site-footer .footer-name,
.site-footer .footer-address,
.site-footer .footer-copy,
.site-footer .footer-desc {
  color: #ffffff !important;
}
.item-name {
  font-weight: 500;
}

.price {
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  color: #2f3e34;
}