.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

.section-container {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  color: #60B753;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #60B753;
  padding-bottom: 10px;
}

.layout-wrapper {
  display: block;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 20px;
  text-align: center;
  background: #FAF9F6;
  position: fixed;
  overflow: visible;
}
.site-header .logo {
  color: #60B753;
  font-size: 1.4rem;
  font-weight: bold;
}
.site-header .main-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  background: #FAF9F6;
  padding: 0 0 15px;
}
.site-header .main-nav ul {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: space-evenly;
  gap: 15px;
  flex-wrap: wrap;
  font-weight: bold;
  color: #60B753;
}
.site-header.is-nav-visible .main-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.site-header .header-contact {
  display: none;
}

.main-content {
  padding-top: var(--sp-header-h, 0px);
}

section[id] {
  scroll-margin-top: var(--sp-header-h, 0px);
}

.hero-section {
  background-color: #60B753;
  height: calc(90vh - var(--sp-header-h, 0px) - var(--sp-bottom-h, 0px));
  min-height: 400px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.hero-section .hero-text-wrapper {
  display: inline-flex;
  flex-direction: row-reverse;
  gap: 12px;
  align-items: flex-start;
  animation: fadeUp 1.5s ease-out forwards;
  opacity: 0;
}
.hero-section .hero-text-wrapper .vertical-text {
  writing-mode: vertical-rl;
  margin: 0;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.5em;
}
.hero-section .hero-text-wrapper .vertical-text span {
  display: inline-block;
}
.hero-section .hero-decoration {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  max-width: 1200px;
  height: auto;
  pointer-events: none;
  color: initial;
}
.hero-section .hero-decoration svg {
  color: unset !important;
}
.hero-section .hero-decoration path {
  fill: #fff !important;
  animation: waveMove 6s ease-in-out infinite;
}
@keyframes waveMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-40px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-list dt, .fee-list dt {
  font-weight: bold;
  padding-top: 10px;
}
.info-list dd, .fee-list dd {
  padding: 4px 0 15px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.map-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
.map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

.specialty-item {
  text-align: center;
}
.specialty-item .placeholder-img {
  background-color: #ddd;
  aspect-ratio: 16/9;
  margin-bottom: 10px;
}
.specialty-item p {
  font-weight: bold;
}

.fee-note {
  font-size: 0.8rem;
  text-align: right;
  margin-top: 10px;
}

.site-footer {
  background-color: #60B753;
  color: #fff;
  padding: 40px 20px 70px;
}
.site-footer .footer-logo {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
.site-footer .footer-address {
  text-align: center;
  margin-bottom: 20px;
}
.site-footer .footer-address span {
  font-weight: bold;
}
.site-footer .btn-line-footer {
  display: block;
  background: #fff;
  color: #60B753;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 15px;
}
.site-footer .footer-tel {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.site-footer .footer-tel .icon_tel {
  width: 36px;
  margin-right: 10px;
  flex-shrink: 0;
}
.site-footer .footer-tel .icon_tel path {
  fill: #fff !important;
}
.site-footer .footer-hours {
  text-align: center;
  font-size: 0.9rem;
}
.site-footer .footer-hours span {
  font-weight: bold;
}
.site-footer .copyright {
  text-align: center;
  margin-top: 30px;
  font-size: 0.7rem;
}

.mobile-fixed-nav {
  background: #FAF9F6;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  height: 60px;
  z-index: 100;
  border-top: 2px solid #60B753;
}
.mobile-fixed-nav .nav-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #60B753;
  font-weight: bold;
  text-decoration: none;
}
.mobile-fixed-nav .nav-item.tel-btn {
  border-right: 1px solid #60B753;
}
.mobile-fixed-nav .nav-item .icon_tel {
  width: 36px;
  color: #60B753;
  margin-right: 10px;
}
.mobile-fixed-nav .nav-item .icon_line {
  width: 34px;
  color: initial;
  margin-right: 10px;
}

@media screen and (min-width: 769px) {
  .layout-wrapper {
    display: flex;
    max-width: 1500px;
    margin: 0 auto;
  }
  .site-header {
    width: 300px;
    height: 100vh;
    position: sticky;
    top: 0;
    text-align: center;
    padding: 80px 20px;
    border-right: 1px solid #eee;
  }
  .site-header .header-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }
  .site-header .main-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    background: transparent;
    padding: 0;
  }
  .site-header .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }
  .site-header .header-contact {
    display: block;
    margin-top: 40px;
  }
  .site-header .header-contact .tel {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #60B753;
    font-size: 1.8rem;
    font-weight: bold;
  }
  .site-header .header-contact .tel .icon_tel {
    width: 30px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  .site-header .header-contact .hours {
    color: #60B753;
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .site-header .btn-line-header {
    display: block;
    border: 3px solid #60B753;
    background: #fff;
    color: #60B753;
    text-align: center;
    font-weight: bold;
    padding: 10px;
    border-radius: 2px;
  }
  .main-content {
    flex: 1;
    padding-top: 0;
  }
  .hero-section {
    height: 600px;
  }
  .hero-section .hero-decoration {
    bottom: clamp(-120px, -14vw, -270px);
    max-width: 2500px;
  }
  .info-list, .fee-list {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .info-list dt, .info-list dd, .fee-list dt, .fee-list dd {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
  }
  .specialty-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-info-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .mobile-fixed-nav {
    display: none;
  }
  .site-footer {
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 1200px) {
  .hero-section .hero-decoration {
    bottom: clamp(-200px, -10vw, -270px);
  }
}/*# sourceMappingURL=style.css.map */