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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
  text-align: justify;
}
@media (min-width: 768px) {
  .container {
    max-width: 635px;
    padding: 0;
  }
}

.header {
  padding: 15px 0;
  background-color: rgb(255, 255, 255);
  position: relative;
  z-index: 100;
}
.header .logo {
  margin: 0 auto;
  max-width: 244px;
  height: 43px;
}

.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero .hero-image {
  width: 100%;
  height: 249px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (min-width: 768px) {
  .hero .hero-image {
    height: 100%;
  }
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: end;
  justify-content: center;
}
.hero .hero-content {
  padding: 15px;
  text-align: center;
  color: rgb(0, 0, 0);
  margin: 0 50px 15px;
  text-wrap: balance;
  background-color: rgba(255, 255, 255, 0.8);
}
.hero .hero-content .hero-subtitle {
  margin-bottom: 0;
}
.hero .hero-content h1 {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .hero .hero-content {
    margin: 0 20px 8px;
    padding: 5px 15px;
    font-size: 16px;
  }
  .hero .hero-content h1 {
    margin-bottom: 0;
  }
}
.hero .hero-subtitle {
  font-size: 16px;
  max-width: 300px;
  margin: 0 auto 10px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.6;
}
.hero .hero-title {
  font-size: 18px;
  max-width: 350px;
  line-height: 1.6;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .hero .hero-title {
    font-size: 20px;
  }
}

.section {
  padding: 20px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  margin-top: 20px;
}

.sub-section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: rgb(0, 0, 0);
}
@media (min-width: 768px) {
  .section-title {
    font-size: 28px;
  }
}

.section-title-white {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
}

.section-underline {
  width: 85px;
  height: 5px;
  background-color: rgb(0, 0, 0);
  margin: 0 auto;
}

.greeting .container {
  max-width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .greeting .container {
    max-width: 635px;
  }
}
.greeting .greeting-heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .greeting .greeting-heading {
    font-size: 20px;
  }
}
.greeting .greeting-text {
  font-size: 16px;
  line-height: 1.8;
}
.greeting .greeting-text p {
  margin-bottom: 15px;
}
.greeting .greeting-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .section-color {
    padding: 20px 30px;
  }
}

.promises .container {
  background-color: rgb(94, 150, 140);
  border-radius: 25px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .promises .container {
    max-width: 635px;
    padding: 50px 50px;
  }
}
.promises .section-title-white {
  margin-bottom: 30px;
}
.promises .promises-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.promises .promise-item .promise-title {
  font-size: 16px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  margin-bottom: 15px;
  line-height: 1.6;
}
.promises .promise-item .promise-text {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.8;
}

.thoughts .container {
  background-color: rgb(200, 160, 122);
  border-radius: 25px;
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
}
@media (min-width: 768px) {
  .thoughts .container {
    max-width: 635px;
    padding: 50px 50px;
  }
}
.thoughts .section-title-white {
  margin-bottom: 30px;
}
.thoughts .thoughts-content {
  font-size: 16px;
  color: rgb(255, 255, 255);
  line-height: 1.8;
}
.thoughts .thoughts-content p {
  margin-bottom: 15px;
}
.thoughts .thoughts-content p:last-child {
  margin-bottom: 0;
}

.medical-services {
  padding-bottom: 0;
}
.medical-services .service-box {
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(194, 194, 194);
  border-radius: 26px;
  padding: 25px;
  margin-bottom: 30px;
}
.medical-services .service-box:last-child {
  margin-bottom: 0;
}
.medical-services .service-box + .section-header {
  margin-top: 50px;
}
.medical-services .service-subtitle {
  font-size: 20px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}
.medical-services .service-list {
  font-size: 16px;
  line-height: 1.8;
}
.medical-services .service-list li {
  margin-bottom: 15px;
}
.medical-services .service-list li:last-child {
  margin-bottom: 0;
}
.medical-services .service-image {
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .medical-services .service-image {
    max-width: 300px;
  }
}

.rehab-box {
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(194, 194, 194);
  border-radius: 25px;
  padding: 20px;
  font-size: 16px;
  line-height: 1.8;
  text-wrap: balance;
}

.clinic-overview .overview-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .clinic-overview .overview-content {
    align-items: flex-start;
  }
}
.clinic-overview .overview-info {
  flex: 1;
}
.clinic-overview .overview-map {
  width: 100%;
  aspect-ratio: 16/9;
  border-width: 0;
}
.clinic-overview .info-list {
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .clinic-overview .info-list {
    min-width: 550px;
  }
}
.clinic-overview .info-item {
  margin-bottom: 20px;
}
.clinic-overview .info-item:first-child {
  margin-top: 0;
}
.clinic-overview .info-item:last-child {
  margin-bottom: 0;
}
.clinic-overview .info-item-group {
  display: flex;
  gap: 20px;
  flex-direction: row;
}
.clinic-overview .info-item-group .info-item {
  width: 50%;
}
.clinic-overview .info-label {
  font-weight: 700;
  font-size: 18px;
}
.clinic-overview .info-value {
  font-size: 16px;
  line-height: 1.8;
}
.clinic-overview .btn-map {
  display: inline-block;
  margin: auto;
  background-color: rgb(107, 107, 107);
  color: rgb(255, 255, 255);
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  text-align: center;
  transition: opacity 0.3s ease;
}
.clinic-overview .btn-map:hover {
  opacity: 0.8;
}
.clinic-overview .map-image {
  width: 100%;
  border-radius: 10px;
}

.access .access-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .access .access-content {
    gap: 50px;
  }
}
.access .access-item .access-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}
.access .access-item p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}
.access .access-item p:last-child {
  margin-bottom: 0;
}
.access .access-item p strong {
  font-weight: 700;
}

.footer {
  background-color: rgb(94, 150, 140);
  padding: 30px 0;
  color: rgb(255, 255, 255);
  text-align: center;
}
.footer .footer-content {
  text-align: center;
}
.footer .footer-content .footer-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer .footer-content .footer-subtitle {
  font-size: 16px;
  margin-bottom: 20px;
}
.footer .footer-content .footer-copyright {
  font-size: 14px;
  opacity: 0.9;
}

.fw-thin {
  font-weight: 100;
}

.fw-100 {
  font-weight: 100;
}

.fw-extralight {
  font-weight: 200;
}

.fw-200 {
  font-weight: 200;
}

.fw-light {
  font-weight: 300;
}

.fw-300 {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-400 {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-500 {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-600 {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-700 {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fw-800 {
  font-weight: 800;
}

.fw-black {
  font-weight: 900;
}

.fw-900 {
  font-weight: 900;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.hidden-mobile {
  display: none;
}
@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

.hidden-pc {
  display: block;
}
@media (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}/*# sourceMappingURL=app.css.map */