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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #1b331b;
  background-color: #f6f8f6;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul, ol {
  list-style: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 6px;
}
.btn--lg {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
}
.btn--full {
  width: 100%;
  padding: 14px;
  font-size: 15px;
}
.btn--cta {
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .btn--cta {
    width: 100%;
    padding: 16px;
  }
}
.btn--primary {
  background: #2E7D5B;
  color: #fff;
  border-color: #2E7D5B;
}
.btn--primary:hover {
  background: rgb(35.0245614035, 95.1754385965, 69.2877192982);
  border-color: rgb(35.0245614035, 95.1754385965, 69.2877192982);
}
.btn--ghost {
  background: transparent;
  color: #2E7D5B;
  border-color: #cfe7cf;
}
.btn--ghost:hover {
  background: rgba(46, 125, 91, 0.1);
}
.btn--outline-white {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(4px);
}
.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.25);
}
.btn--line {
  background: #06c755;
  color: #fff;
  border-color: #06c755;
}
.btn--line:hover {
  background: rgb(5.1043902439, 169.2956097561, 72.312195122);
  border-color: rgb(5.1043902439, 169.2956097561, 72.312195122);
}
.btn--tel {
  background: #fff;
  color: #2E7D5B;
  border-color: #cfe7cf;
}
.btn--tel:hover {
  background: rgba(46, 125, 91, 0.1);
  border-color: #2E7D5B;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .section-heading {
    margin-bottom: 32px;
  }
}
.section-heading__label {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2E7D5B;
  margin-bottom: 8px;
}
.section-heading__title {
  font-size: 28px;
  font-weight: 700;
  color: #0d1b0d;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .section-heading__title {
    font-size: 22px;
  }
}
.section-heading__bar {
  width: 40px;
  height: 3px;
  background: #2E7D5B;
  border-radius: 2px;
  margin: 0 auto 16px;
}
.section-heading__sub {
  font-size: 15px;
  color: #4a6b4a;
  max-width: 560px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-heading__sub {
    font-size: 14px;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #EEF5EB;
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .header__inner {
    padding: 12px 20px;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header__logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #0d1b0d;
  letter-spacing: 0.02em;
}
.header__nav {
  flex: 1;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header__nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #4a6b4a;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.15s ease;
}
.header__nav-link:hover {
  color: #2E7D5B;
  background: rgba(46, 125, 91, 0.1);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__cta {
    display: none;
  }
}
.header__hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0d1b0d;
  margin-left: auto;
  border-radius: 6px;
  transition: background 0.15s;
}
.header__hamburger:hover {
  background: rgba(46, 125, 91, 0.1);
}
@media (max-width: 768px) {
  .header__hamburger {
    display: flex;
  }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #fff;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #EEF5EB;
}
.mobile-menu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  color: #0d1b0d;
  border-radius: 6px;
  transition: background 0.15s;
}
.mobile-menu__close:hover {
  background: #F5F8F3;
}
.mobile-menu__nav {
  flex: 1;
  overflow-y: auto;
}
.mobile-menu__nav-list {
  padding: 8px 0;
}
.mobile-menu__nav-link {
  display: block;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  color: #1b331b;
  border-bottom: 1px solid #EEF5EB;
  transition: background 0.15s;
}
.mobile-menu__nav-link:hover {
  background: #F5F8F3;
  color: #2E7D5B;
}
.mobile-menu__cta {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #EEF5EB;
}

.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero {
    height: 420px;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
}
@media (min-width: 769px) {
  .hero__overlay {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.85) 35%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
  }
}
@media (max-width: 768px) {
  .hero__overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 50%, rgba(255, 255, 255, 0.1) 100%);
  }
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 64px 40px 64px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 32px 20px;
    max-width: 100%;
    gap: 16px;
  }
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(46, 125, 91, 0.1);
  color: #2E7D5B;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  width: fit-content;
  border: 1px solid #cfe7cf;
}
.hero__title {
  font-size: 40px;
  font-weight: 700;
  color: #0d1b0d;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 24px;
  }
}
.hero__subtitle {
  font-size: 16px;
  color: #4a6b4a;
  line-height: 1.8;
  max-width: 460px;
}
@media (max-width: 768px) {
  .hero__subtitle {
    font-size: 14px;
  }
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero__actions .btn {
    width: 100%;
  }
}

.concerns {
  background: #F5F8F3;
  padding: 80px 192px;
}
@media (max-width: 768px) {
  .concerns {
    padding: 48px 20px;
  }
}
.concerns__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.concerns__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .concerns__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.concerns__message {
  text-align: center;
  font-size: 15px;
  color: #4a6b4a;
  padding: 20px 32px;
  background: rgba(46, 125, 91, 0.05);
  border-radius: 12px;
  border: 1px solid #cfe7cf;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .concerns__message {
    font-size: 14px;
    padding: 16px 20px;
  }
}

.concern-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
@media (max-width: 768px) {
  .concern-card {
    padding: 16px 18px;
  }
}
.concern-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(46, 125, 91, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.concern-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #0d1b0d;
  margin-bottom: 4px;
}
.concern-card__desc {
  font-size: 13px;
  color: #4a6b4a;
  line-height: 1.7;
}

.why-us {
  padding: 80px 24px;
}
@media (max-width: 768px) {
  .why-us {
    padding: 48px 20px;
  }
}
.why-us__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.why-us__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.reason-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid #EEF5EB;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .reason-card {
    padding: 24px 20px;
  }
}
.reason-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(46, 125, 91, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.reason-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #0d1b0d;
  margin-bottom: 10px;
}
.reason-card__desc {
  font-size: 14px;
  color: #4a6b4a;
  line-height: 1.8;
}

.treatment {
  background: #EEF5EB;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .treatment {
    padding: 48px 20px;
  }
}
.treatment__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .treatment__inner {
    padding: 0;
  }
}
.treatment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .treatment__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.treatment-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.treatment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.treatment-card__img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.treatment-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.treatment-card:hover .treatment-card__img {
  transform: scale(1.04);
}
.treatment-card__body {
  padding: 24px;
}
.treatment-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #2E7D5B;
  background: rgba(46, 125, 91, 0.1);
  border: 1px solid #cfe7cf;
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 10px;
}
.treatment-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #0d1b0d;
  margin-bottom: 8px;
}
.treatment-card__desc {
  font-size: 13px;
  color: #4a6b4a;
  line-height: 1.8;
  margin-bottom: 16px;
}
.treatment-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid #EEF5EB;
}
.treatment-card__price-label {
  font-size: 12px;
  color: #6b8f6b;
}
.treatment-card__price-value {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2E7D5B;
}
.treatment-card__price-tax {
  font-size: 11px;
  color: #6b8f6b;
}

.first-time {
  padding: 80px 24px;
}
@media (max-width: 768px) {
  .first-time {
    padding: 48px 20px;
  }
}
.first-time__card {
  max-width: 1280px;
  margin: 0 auto;
  background: #F5F8F3;
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .first-time__card {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
}
.first-time__image-wrap {
  overflow: hidden;
  aspect-ratio: auto;
}
@media (max-width: 768px) {
  .first-time__image-wrap {
    aspect-ratio: 16/9;
  }
}
.first-time__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.first-time__content {
  padding: 56px 48px;
}
@media (max-width: 768px) {
  .first-time__content {
    padding: 32px 0;
  }
}
.first-time__title {
  font-size: 26px;
  font-weight: 700;
  color: #0d1b0d;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .first-time__title {
    font-size: 22px;
  }
}
.first-time__lead {
  font-size: 14px;
  color: #4a6b4a;
  line-height: 1.8;
  margin-bottom: 28px;
}
.first-time__steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.first-time__step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.first-time__step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2E7D5B;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.first-time__step-title {
  font-size: 15px;
  font-weight: 700;
  color: #0d1b0d;
  margin-bottom: 2px;
}
.first-time__step-desc {
  font-size: 13px;
  color: #4a6b4a;
  line-height: 1.7;
}
.first-time__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #2E7D5B;
  background: rgba(46, 125, 91, 0.1);
  border: 1px solid #cfe7cf;
  border-radius: 8px;
  padding: 10px 14px;
}

.access {
  background: #fff;
  padding: 80px 24px;
}
@media (max-width: 768px) {
  .access {
    padding: 48px 20px;
  }
}
.access__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.access__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 768px) {
  .access__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
.access__dl {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.access__dl-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 16px;
  padding: 16px 0;
  border-bottom: 1px solid #EEF5EB;
}
.access__dl-row:first-child {
  padding-top: 0;
}
.access__dt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #2E7D5B;
  white-space: nowrap;
}
.access__dd {
  font-size: 14px;
  color: #1b331b;
  line-height: 1.8;
}
.access__tel {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #2E7D5B;
}
.access__tel:hover {
  text-decoration: underline;
}
.access__map-wrap {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #cfe7cf;
  aspect-ratio: 4/3;
}
@media (max-width: 768px) {
  .access__map-wrap {
    border-radius: 16px;
  }
}
.access__map-iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.cta-section {
  background: rgba(46, 125, 91, 0.05);
  padding: 80px 192px;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 20px;
  }
}
.cta-section__inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.cta-section__title {
  font-size: 32px;
  font-weight: 700;
  color: #0d1b0d;
  line-height: 1.4;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .cta-section__title {
    font-size: 24px;
  }
}
.cta-section__sub {
  font-size: 15px;
  color: #4a6b4a;
  line-height: 1.8;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cta-section__sub {
    font-size: 14px;
  }
}
.cta-section__btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .cta-section__btns {
    flex-direction: column;
    gap: 12px;
  }
}
@media (min-width: 769px) {
  .cta-section__btns .btn--cta {
    width: 416px;
    max-width: 416px;
  }
}
.cta-section__note {
  font-size: 12px;
  color: #6b8f6b;
  line-height: 1.8;
}

.footer {
  background: #0d1b0d;
  padding: 48px 0;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 0;
  }
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.footer__logo-text {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 768px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.footer__nav-link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.15s;
}
.footer__nav-link:hover {
  color: #fff;
}
.footer__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  font-family: "Inter", sans-serif;
}

/*# sourceMappingURL=style.css.map */
