@charset "utf-8";
:root {
  --color-red:#FA1F6C;
  --color-pink:#FF9B9B;
  --box-shadow:0 3px 10px rgba(0, 0, 0, 0.16);
  --back-gradient:linear-gradient(45deg, #FA1FCD 0%, #FA1F6C 30%, #FA1F6C 100%);
}

html {
  font-style: normal;
  font-size: 62.5%;
  color: #503615;
  position: relative;
  text-align: justify;
  letter-spacing: 0.1em;
  scroll-padding-top: 100px;
}
@media screen and (min-width: 769px) and (max-width: 800px) {
  html {
    overflow-x: hidden; 
  }
}


body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  overflow-x: hidden; 
}


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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  border: none;
  background-color: #FFFFFF;
  padding: 5px;
}

input[type="checkbox"] {
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

h1,h2,h3,h4,h5,h6 {
  line-height: 1;
  font-weight: 700;
  color: #4f3614;
}

p,th,td,li,dt,dd {
  font-size: 1.6rem;
  line-height: 1.6;
}

dt {
  font-weight: 500;
}

a,button {
  cursor: pointer;
  cursor: hand;
}

a {
  transition: all 0.2s ease;
}
@media screen and (min-width: 769px) {
  h1 {
    font-size: 4rem;
  }
  
  h2 {
    font-size: 3rem;
    text-align: center;
  }
  
  h3 {
    font-size: 2.4rem;
  }
  h4,h5,h6 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.8rem;
  }
  
  h4,h5,h6 {
    font-size: 1.6rem;
  }
  p {
    font-size: 1.5rem;
  }
}


/* 全ページ共通パーツ */
.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding: 0 20px;
  }
}

/* TOPページパーツ */
.title-img {
  width: 340px;
  margin-bottom: 10px;
}
.more {
  width: 160px;
  max-width: 200px;
  display: flex;
  justify-content: center;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #DD1057;
  padding: 12px 20px;
  border-radius: 50px;
}
.more:hover {
  opacity: 0.6;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 768px) {
  .title-img {
    width: 260px;
  }
  .more {
    margin: 0 auto;
    width: 196px;
  }
}


/* ヘッダー */
header {
  display: flex;
  width: 100%;
  height: 240px;
  position: relative;
  z-index: 999;
  padding: 20px 40px;
}

.wrapper.header {
  width: 100%;
  height: 100%;
}
header .header_logo {
  width: 220px;
  max-width: inherit;
}
.header_menu {
  display: none;
}

.header_menu .menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #3E3E3E;
}
.header_menu .menu > li {
  margin-right: 28px;
  text-align: center;
  font-size: 1.8rem;
}
.header_menu .menu > li:last-child {
  margin-right: 0px;
}
.header_menu .menu > li span, .header_contact span {
  display: block;
  font-size: 1.2rem;
  line-height: 1.1;
}
.header_menu .menu .contact-box {
  text-align: center;
  margin-left: 28px;
}
.header_menu .menu .contact-box .tel a {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding-left: 10px;
  position: relative;
}
.header_menu .menu .contact-box .tel a::before {
  content: '';
  display: inline-block;
  background-image: url('../img/icon-tel.svg');
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 10px;
  left: -10px;
}
.header_menu .menu .contact-box .reserve a {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #DD1057;
  padding: 4px 40px;
  border-radius: 50px;
  position: relative;
}
.header_menu .menu .contact-box .reserve a:hover {
  opacity: 0.6;
  transition: opacity 0.5s ease;
}
.header_menu .btn_menu {
  display: flex;
  align-items: center;
}
.header_menu .btn_menu a {
  width: 104px;
  height: 31px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 60px;
  position: relative;
  color: white;
  z-index: 1;
}

.header_menu .btn_menu a::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(45deg, #FA1FCD 0%, #FA1F6C 30%, #FA1F6C 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
  transition: all 0.3s ease;
}

.header_menu .btn_menu a.login {
  background: white;
  margin-right: 10px;
  color: var(--color-red);
}

.header_menu .btn_menu a::after {
  content: '';
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border-radius: 100px;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  transition: all 0.3s ease;
  opacity: 0;
}
@media screen and (min-width: 651px) {
  header .openbtn {
    display: none;
  }
}

@media screen and (max-width: 650px) {
  header {
    background-image: url("../img/header-bg.png");
    background-size: cover;
    background-position: center;
    transition: all 0.3s ease;
    height: 64px;
    width: 100%;
    padding: 20px;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    padding: 12px 20px 0 20px;
  }
  header.on {
    position: fixed;
  }
  header .wrapper {
    width: 100%;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
  }
  header .header_logo {
    width: 140px;
  }
  .header_menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: #057b44;
    display: none;
  }
  .header_menu .menu {
    display: block;
  }
  .header_menu nav {
    margin-top: 45px;
    padding: 0 20px;
  }
  .header_menu .menu > li {
    margin-right: 0;
    font-size: 1.6rem;
    color: #FFFFFF;
    padding: 18px 0px 18px 10px;
    display: flex;
    align-items: baseline;
    list-style: none;
  }
  .header_menu .menu > li:not(:last-child) {
    border-bottom: 1px solid #FFFFFF;
  }
  .header_menu .btn_menu {
    justify-content: center;
  }
  .header_menu .btn_menu a {
    width: 50%;
    max-width: 120px;
    height: 34px;
    font-size: 1.5rem;
  }
  header .openbtn{
    position: relative;
    cursor: pointer;
    width: 46px;
    height: 42px;
  }
  .header_menu.pc-hide .menu > li {
    font-size: 3rem;
  }

  /*ボタン内側*/
  header .openbtn{
    width: 40px;
    height: 32px;
  }
  header .openbtn span {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 28.3%;
    height: 1px;
    border-radius: 2px;
    background: #057b44;
    width: 65%;
  }
  header .openbtn span:nth-of-type(1) {
    top: 40%; 
  }
  
  header .openbtn span:nth-of-type(2) {
    top: 60%;
  }

   header .openbtn span:nth-of-type(3) {
    top: 80%;
  }
      
  /*activeクラスが付与されると線が回転して×に*/
  header .openbtn.active span:nth-of-type(1) {
      top: 13px;
      left: 10px;
      transform: translateY(6px) rotate(-45deg);
      width: 50%;
      background-color: #FFFFFF;
  }
  header .openbtn.active span:nth-of-type(2){
      top: 25px;
      left: 10px;
      transform: translateY(-6px) rotate(45deg);
      width: 50%;
      background-color: #FFFFFF;
  }
  header .openbtn.active span:nth-of-type(3){
    display: none;
  }

  /* ヘッダーSPメニューレイアウト */
  .header_menu .menu > li span, .header_contact span {
    display: inline-block;
    padding-left: 10px;
  }
  header .sns-icon-box img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (max-width: 460px) {
  header {
    padding: 12px 20px 0 20px;
  }
  header .openbtn{
    width: 40px;
    height: 32px;
  }
}
@media screen and (max-width: 360px) {
  header .openbtn{
    width: 36px;
    height: 30px;
  }
  header .header_logo {
    width: 120px;
  }
}
/* フッター */
footer {
  background-color: #FFFFFF;
  position: relative;
}
footer .wrapper {
  padding-top: 32px;
  text-align: center;
}
footer .logo {
  width: 220px;
}
footer .scroll {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  transition: top 1.2s;
}
.scroll:hover {
  transform: translateY(-3px);
}
footer .copy {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  footer .wrapper {
    padding-top: 24px;
    padding-bottom: 32px;
  }
  footer .logo {
    width: 180px;
  }
  footer .scroll {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    transition: top 1.2s;
  }
  .scroll:hover {
    transform: translateY(-3px);
  }
  footer .copy {
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    margin-top: 32px;
    margin-bottom: 8px;
  }
  .scroll-sp {
    background-color: #1da574;
    color: #FFF;
    text-align: center;
    padding: 10px 0;
  }
  .scroll-sp span {
    display: inline-block;
    font-size: 2.8rem;
    transform: scaleX(1.5);
    transform-origin: center;
  }
}



/* main */
main {
  width: 100%;
}

/* fv */
.fv-pc {
  margin-top: -240px;
  position: relative;
  width: 100%;
  padding-top: 68%;
  background-image: url("../img/fv.png");
  background-size: cover;
  background-position: center;
}
.fv__bg {
  width: 100%;
  height: auto;
}

.fv-pc .wrapper {
  position: absolute;
  top: 55%;
  right: 12%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 20px;
}

.fv__text-bg-white,
.fv__text {
  writing-mode: vertical-rl;
  text-orientation: upright;
}

.fv__text-bg-white {
  background-color: #FFFFFF;
  color: #5ed39c;
  padding: 12px 0;
  border-radius: 10px;
  letter-spacing: 0.15em;
  font-size: 4.2rem;
  font-weight: 700;
  display: inline-block;
  vertical-align: top;
}
.fv__comma {
  display: inline-block;
  height: fit-content;
  margin-bottom: -36px;
}
.fv__text {
  font-size: 2.4em;
  font-weight: 700;
  padding-top: 3.6rem;
  color: #fff;
}
.fv__clinic {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  z-index: 999;
}
.clinic-box a {
  border: 2px solid #FFFFFF;
  border-radius: 10px 0 0 10px;
}
.clinic-box a {
  color: #FFFFFF;
  writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 16px 8px;
}
.clinic-box a:hover {
  opacity: 0.7;
}
.clinic-box.hirano a {
  background-color: #5ed39c;
}
.clinic-box.nigata a {
  background-color: #64c0cb;
}
.clinic-box.minato a {
  background-color: #649ecb;
}

@media screen and (max-width: 1088px) {
  .fv-pc .wrapper {
    right: 4%;
  }
}
@media screen and (max-width: 960px) {
  .fv__text-bg-white {
    font-size: 3.8rem;
  }
  .fv__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .fv-pc .wrapper {
    right: 2%;
  }
  .fv__text-bg-white {
    font-size: 3.6rem;
  }
  .fv__text {
    font-size: 1.8rem;
  }
  .fv__clinic-sp {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 99;
    width: 100%;
    background-color: #FFFFFF;
    padding: 20px;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: stretch;
  }
  .clinic-box {
    width: calc((100% - 20px) / 3);
    flex: 1;
  }
  .clinic-box a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 5px;
    border: none;
    border-radius: 10px;
    writing-mode: inherit;
    text-orientation: inherit;
  }
  .clinic-box a:hover {
    opacity: 0.7;
  }
  .clinic-box.hirano a {
    background-color: #5ed39c;
  }
  .clinic-box.nigata a {
    background-color: #64c0cb;
  }
  .clinic-box.minato a {
    background-color: #649ecb;
  }
}

@media screen and (min-width: 651px) {
  .fv-pc {
    display: block;
  }
  .fv-sp {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .fv-pc {
    display: none;
  }
  .fv-sp {
    display: block;
    margin-top: 10px;
  }
  .fv-sp img {
    width: 100%;
  }
}
@media screen and (max-width: 440px) {
  .fv__clinic-sp {
    padding: 16px 10px;
    gap: 8px;
  }
}
@media screen and (max-width: 440px) {
  .clinic-box a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 380px) {
  .clinic-box a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 360px) {
  .clinic-box a {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 340px) {
  .clinic-box a {
    font-size: 1.1rem;
  }
}

/* worriesセクション */
.worries {
  width: 100%;
  background-image: url("../img/worries-bg.png");
  background-size: cover;
  background-position: center;
  padding: 48px 0;
}
.worries .wrapper {
  text-align: center;
}
.worries h2 {
  color: #FFFFFF;
  text-shadow: 0 0 30px #535353;
  line-height: 1.6;
}


@media screen and (max-width: 768px) {
  .worries {
    padding: 20px 0 0 0;
  }
  .worries .wrapper {
    text-align: center;
    padding: 0 10px;
  }
  .worries h2 {
    color: #FFFFFF;
    text-shadow: 0 0 30px #535353;
    line-height: 1.6;
  }
}

/* important */
.important {
  background-color: #fffeea;
  position: relative;
  z-index: -2;
  padding-bottom: 100px;
}
.important .wrapper:first-child {
  text-align: center;
}
.important h2 {
  color: #2a9a71;
  line-height: 1.6;
  margin-top: 32px;
  margin-bottom: 32px;
  position: relative;
}
.important h2::before {
  content: '';
  display: inline-block;
  background-image: url('../img/important-triangle-left.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 240px;
  height: auto;
  aspect-ratio: 298 / 428;
  position: absolute;
  top: -40px;
  left: 40px;
  z-index: -1;
}
.important h2::after {
  content: '';
  display: inline-block;
  background-image: url('../img/important-triangle-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 240px;
  height: auto;
  aspect-ratio: 298 / 428;
  position: absolute;
  top: -40px;
  right: 40px;
  z-index: -1;
}
.important .sub-title {
  font-size: 2.2rem;
}
.doctor-message-box {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.doctor__message {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 0;
}
.doctor-message-box img {
  aspect-ratio: 271 / 300;
}
@media screen and (max-width: 900px) {
  .important .white-box {
    padding: 32px;
  }
  .doctor-message-box img {
    width: 25%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .important {
    padding-bottom: 60px;
  }
  .important .wrapper:first-child {
    text-align: center;
  }
  .important h2 {
    margin-top: 32px;
    margin-bottom: 16px;
  }
  .important h2::before {
    content: '';
    display: inline-block;
    background-image: url('../img/important-triangle-sp.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: auto;
    aspect-ratio: 750 / 553;
    position: absolute;
    top: -40px;
    left: 0;
    z-index: -1;
  }
  .important h2::after {
    content: none;
  }
  .important .sub-title {
    font-size: 1.6rem;
  }
  .doctor-message-box {
    gap: 12px;
    flex-direction: column;
    display: flex;
    position: relative;
  }
  .doctor-message-box img {
    margin: 0 auto;
    width: 200px;
  }
  .doctor__message {
    padding: 0 8px;
  }
  .doctor__name {
    margin-top: 10px;
  }
}

@media screen and (min-width: 441px) and (max-width: 768px) {
 .doctor-message-box img {
    margin-top: 0;
  }
}
@media screen and (max-width: 440px) {
  .doctor-message-box {
    margin-top: 140px;
  }
 .doctor-message-box img {
    margin-top: -50%;
  }
}
@media screen and (max-width: 380px) {
  .doctor-message-box {
    margin-top: 120px;
  }
}
@media screen and (max-width: 340px) {
  .doctor-message-box {
    margin-top: 100px;
  }
}


/* maintenanceセクション */
.maintenance {
  background-color: #f4f3e3;
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
.maintenance::before {
  content: '';
  display: inline-block;
  background-image: url('../img/maintenance-bg-top.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 97;
  position: absolute;
  top: -20px;
  left: 0;
  z-index: -1;
}
.maintenance h2 {
  text-align: center;
  line-height: 1.2;
}
.maintenance span {
  font-size: 2.2rem;
}
.maintenance__message-box {
  display: flex;
  align-items: center;
  gap: 80px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.maintenance__message {
  width: 53%;
}
.maintenance__health-box {
  padding-top: 48px;
}
.maintenance__health-box h3 {
  font-size: 3rem;
  text-align: center;
  margin-top: 28px;
  margin-bottom: 32px;
}
.maintenance__health-reason {
  display: flex;
  align-items: center;
  gap: 80px;
}
.maintenance__health-reason .reason {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .maintenance {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .maintenance h2 {
    text-align: center;
    line-height: 1;
  }
  .maintenance span {
    font-size: 1.6rem;
  }
  .maintenance__message-box {
    flex-direction: column;
    gap: 32px;
    margin-top: 20px;
    margin-bottom: 32px;
  }
  .maintenance__message {
    width: 100%;
  }
  .maintenance__health-box {
    padding-top: 48px;
  }
  .maintenance__health-box h3 {
    font-size: 2.4rem;
    text-align: center;
    margin-top: 28px;
    margin-bottom: 32px;
  }
  .maintenance__health-reason {
    flex-direction: column-reverse;
    gap: 10px;
  }
  .maintenance__health-reason .reason {
    width: 100%;
  }
}

/* careセクション */
.care {
  position: relative;
  background-color: #fffeea;
  padding-top: 80px;
  padding-bottom: 60px;
}
.care::before {
  content: '';
  display: inline-block;
  background-image: url('../img/cta-bottom1.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 97;
  position: absolute;
  top: -20px;
  left: 0;
}
.care h3 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.care span {
  padding-right: 12px;
}
.care .sub-title {
  font-weight: 700;
  margin-bottom: 28px;
}
.care__list {
  margin-top: 40px;
}
.care__item:not(:last-child) {
  margin-bottom: 60px;
}

.care__item:nth-child(3) .two-column-item {
  width: 100%;
}
.care__item .two-column-item img {
  width: 100%;
}
.care .two-column-item h4 {
  text-align: center;
}

@media screen and (min-width: 769px) and (max-width: 1070px) {
  .care__item:nth-child(3) img {
    max-height: 250px;
    aspect-ratio: 521 / 289;
  }
}
@media screen and (max-width: 768px) {
  .care {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .care h3 {
    font-size: 2.2rem;
    margin-bottom: 12px;
  }
  .care span {
    padding-right: 12px;
  }
  .care .sub-title {
    margin-bottom: 28px;
  }
  .care__list {
    margin-top: 32px;
  }
  .care__item:not(:last-child) {
    margin-bottom: 48px;
  }
  .care__item:nth-child(3) .two-column-item {
    width: 100%;
  }
  .care__item:nth-child(3) .two-column img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
  .care__item .two-column-item img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
  .care .two-column-item h4 {
    font-size: 1.8rem;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* pointセクション */
.point {
  background-color: #f4f3e3;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  z-index: -3;
}
.point h2 span {
  font-size: 2.2rem;
}
.point h2 .number {
  font-size: 4rem;
}
.point__item h3 {
  padding-left: 16px;
  min-height: 5rem;
}
.point__list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px 40px;
  margin-top: 72px;
}
.point__item {
  width: calc((100% - 40px) / 2); 
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0px 24px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.point__number {
  color: #4fc89c;
  font-size: 7.8rem;
  font-weight: 700;
  position: absolute;
  top: -76px;
  left: 36px;
}
.point__item img {
  width: 100%;
}
.point__item p span {
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .point {
    padding-top: 60px;
    padding-bottom: 90px;
    /* slick矢印用 */
    position: relative;
    z-index: 1;
  }
  .point h2 {
    text-align: center;
    line-height: 1.3;
  }
  .point h2 span {
    font-size: 1.6rem;
  }
  .point h2 .number {
    font-size: 4rem;
  }
  .point__item h3 {
    padding-left: 0;
    min-height: inherit;
    line-height: 1.6;
  }
  .point__list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 32px;
    margin-right: 0;
  }
  .point__item {
    display: flex!important;
    flex-direction: column;
    width: 100%; 
    height: 100%;
    box-shadow: 0px 4px 12px -2px rgba(0, 0, 0, 0.1);
    padding: 28px 20px 20px 20px;
    gap: 16px;
  }
  .point__number {
    font-size: 4.4rem;
    top: -40px;
    left: 20px;
  }
  .point__item img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
  .point__item p span {
    font-weight: 700;
    line-height: 1.8;
  }
  .slick-list {
    padding-top: 20px;
  }
  .slick-slide {
    margin: 0 10px;
    height: auto !important;
    display: flex; 
  }
  .slick-slide div {
    height: 100%;
  }
  .slick-list {
    margin: 0 -10px;
  }
  .slick-track {
    display: flex;
    justify-content: center;
    align-items: stretch!important;
  }
  .slick-dots {
    width: 100%;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
  }
  .slick-dots li {
    border: none;
    background-color: #b9b9b9;
    width: 14px;
    height: 14px;
    margin: 0 12px;
  }
  .slick-dots li.slick-active {
    border: none;
    background-color: #2a9a71;
  }
  .slick-prev {
    display: none!important;
  }
  .slick-next {
    right: -18px;
    width: 36px;
    height: 36px;
    background: #4fc89c!important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }
  .slick-next::before {
    content: '＞';
    color: #fff;
    font-size: 22px;
    line-height: 1;
    opacity: 1;
  }
}



/* welcomeセクション */
.welcome {
  background-color: #4fc89c;
  position: relative;
  padding-top: 140px;
  padding-bottom: 80px;
}
.welcome::before {
  content: '';
  display: inline-block;
  background-image: url('../img/welcome-bg-top.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 97;
  position: absolute;
  top: -30px;
  left: 0;
}
.welcome h2 {
  color: #24a576;
  margin-top: 40px;
}
.welcome h2 span {
  font-size: 4rem;
}
.welcome .white-box {
  position: relative;
}
.welcome .white-box::before {
  content: '';
  display: inline-block;
  background-image: url('../img/welcome-char01.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 296px;
  height: auto;
  aspect-ratio: 354 / 144;
  position: absolute;
  top: -64px;
  left: 50%;
  transform: translateX(-50%);
}
.welcome h3 {
  position: relative;
  color: #FFF;
  text-align: center;
  background-image: url('../img/welcome-bg-title.png');
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: 296px 116px;
  padding-top: 74px;
  padding-bottom: 54px;
}
.welcome__menu {
  margin-top: 40px;
}
.welcome .welcome__menu:nth-of-type(1) {
  margin-top: 20px;
}
.welcome .two-column {
  justify-content: center;
}
.welcome .two-column-item {
  width: 41%;
}
.welcome .welcome__menu:nth-of-type(2) h3 {
  position: relative;
}
.welcome .welcome__menu:nth-of-type(2) h3::before {
  content: '';
  display: inline-block;
  background-image: url('../img/welcome-char02.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 114px;
  height: auto;
  aspect-ratio: 114 / 192;
  position: absolute;
  top: -60px;
  left: 220px;
}
.welcome .welcome__menu:nth-of-type(3) h3 {
  position: relative;
}
.welcome .welcome__menu:nth-of-type(3) h3::before {
  content: '';
  display: inline-block;
  background-image: url('../img/welcome-char03.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 216px;
  height: auto;
  aspect-ratio: 216 / 147;
  position: absolute;
  top: -20px;
  right: 70px;
}
.welcome .two-column-item img {
  display: block;
  margin: 0 auto;
}
.welcome h4 {
  line-height: 1.6;
}
.welcome__care-list {
  display: flex;
  gap: 28px;
  justify-content: center;
  padding-bottom: 30px;
}
.welcome__care-item {
  text-align: center;
}

@media screen and (max-width: 1060px) {
  .welcome .welcome__menu:nth-of-type(3) h3::before {
    width: 180px;
    top: 0;
    right: 10px;
  }
}
@media screen and (max-width: 910px) {
  .welcome .welcome__menu:nth-of-type(2) h3::before {
    width: 100px;
    top: -60px;
    left: 120px
  }
  .welcome .welcome__menu:nth-of-type(3) h3::before {
    width: 140px;
    top: 30px;
    right: 0;
  }
}

@media screen and (max-width: 768px) {
  .welcome {
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .welcome::before {
    top: -20px;
  }
  .welcome h2 {
    text-align: center;
    margin-top: 40px;
    line-height: 1.2;
  }
  .welcome h2 span {
    font-size: 3.2rem;
  }
  .welcome .white-box::before {
    width: 240px;
    height: auto;
  }
  .welcome .white-box::after {
    content: '';
    display: inline-block;
    background-image: url('../img/welcome-char03-sp.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 140px;
    height: auto;
    aspect-ratio: 263 / 223;
    position: absolute;
    bottom: -80px;
    right: -21px;
    overflow: hidden;
  }
  .welcome h3 {
    background-image: url('../img/welcome-bg-title.png');
    background-repeat: no-repeat;
    background-position: right 10px;
    /* background-size: 78% auto; */
    width: 300px;
    aspect-ratio: 296 / 116;
    margin: 0 auto;
    padding-top: 76px;
    padding-bottom: 50px;
  }
  .welcome__menu {
    margin-top: 20px;
  }
  .welcome .welcome__menu:nth-of-type(1) {
    margin-top: 0;
  }
  .welcome .two-column-item {
    width: 100%;
  }
  .welcome .welcome__menu:nth-of-type(2) h3 {
    position: relative;
  }
  .welcome .welcome__menu:nth-of-type(2) h3::before {
    width: 100px;
    height: auto;
    top: 0px;
    left: 0;
  }
  .welcome .welcome__menu:nth-of-type(3) h3::before {
    content: none;
  }
  .welcome h4 {
    line-height: 1.6;
    font-size: 1.4rem;
  }
  .welcome__care-list {
    display: flex;
    gap: 4px;
    justify-content: center;
    padding-bottom: 30px;
  }
  .welcome__care-item {
    text-align: center;
    width: calc((100% - 8px) / 3);
  }
  .welcome__care-item img {
    width: 90%;
  }
  .welcome .welcome__care-item:nth-of-type(3) h4 {
    margin-left: -10px;
  }
}
@media screen and (max-width: 365px) {
  .welcome h3 {
    width: 260px;
  }
}



/* flowセクション */
.flow {
  background-color: #f4f3e3;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
}
.flow::before {
  content: '';
  display: inline-block;
  background-image: url('../img/cta-bottom2.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 97;
  position: absolute;
  top: -16px;
  left: 0;
}
.flow .wrapper {
  width: 800px;
}
.flow h2 span {
  font-size: 2.2rem;
}
.flow h2 .number {
  font-size: 4rem;
}
.flow__list {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  margin-top: 72px;
  position: relative;
  background-image: url('../img/flow.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.flow__item {
  width: 100%; 
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 0px 24px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.flow__number {
  color: #4fc89c;
  font-size: 5.8rem;
  font-weight: 700;
  position: absolute;
  top: -56px;
  left: 36px;
}
.flow__item img {
  width: 40%;
}
.flow__item p span {
  font-weight: 700;
  line-height: 1.8;
}
.flow__content {
  display: flex;
  gap: 20px;
}
.flow__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.flow__text h3 {
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .flow {
    padding-top: 40px;
    padding-bottom: 90px;
  }
  .flow .wrapper {
    max-width: 100%;
  }
  .flow h2 span {
    font-size: 2.2rem;
  }
  .flow h2 .number {
    font-size: 3rem;
  }
  .flow__list {
    margin-top: 32px;
    gap: 40px;
    background: none;
  }
  .flow__item {
    display: flex!important;
    flex-direction: column;
    height: 100%;
    padding: 32px 24px 24px 24px;
    gap: 20px;
    box-shadow: 0px 4px 12px -2px rgba(0, 0, 0, 0.1);
  }
  .flow__number {
    font-size: 4.4rem;
    top: -40px;
    left: 20px;
  }
  .flow__item img {
    width: 100%;
  }
  .flow__item p span {
    font-weight: 700;
    line-height: 1.8;
  }
  .flow__content {
    display: flex;
    gap: 20px;
  }
  .flow__text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
  }
  .flow__text h3 {
    font-size: 2rem;
  }
  .flow__text img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: block;
  }
}

/* faqセクション */
.faq {
  background-color: #f4f3e3;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  margin-bottom: 32px;
}
.faq__question, .faq__answer {
  display: flex;
  gap: 20px;
}
.faq__question {
  align-items: center;
  font-size: 1.8rem;
}
.faq__question .qa, .faq__answer .qa {
  color: #4fc89c;
  font-size: 2.2rem;
  font-weight: 700;
}
.faq__answer .qa {
  line-height: 1.2;
}
.question {
  width: 100%;
  font-weight: 700;
  position: relative;
  padding-top: 2px;
}
.question::after {
  content: '＋';
  color: #4fc89c;
  font-size: 3rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.faq__item.active .question::after {
  content: '－';
}
.faq__answer-box {
  margin-top: 24px;
}
.faq__answer-box {
  display: none;
}
.faq__item.active .faq__answer-box {
  display: block;
}
.caution {
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-top: 16px;
    padding-bottom: 40px;
  }
  .faq__list {
    gap: 24px;
    margin-top: 24px;
    margin-bottom: 20px;
  }
  .faq__question, .faq__answer {
    gap: 20px;
  }
  .faq__question {
    align-items: flex-start;
    font-size: inherit;
  }
  .faq__question .qa, .faq__answer .qa {
    font-size: 2rem;
  }
  .question {
    width: 100%;
    font-weight: 700;
    position: relative;
    padding-top: 2px;
  }
  .question::after {
    font-size: 2rem;
  }
  .caution {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 440px) {
  .question {
    width: 75%;
  }
  .question::after {
    right: -15%;
  }
  .answer {
    width: 75%;
  }
}

/* accessセクション */
.access {
  background-color: #4fc89c;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
}
.access::before {
  content: '';
  display: inline-block;
  background-image: url('../img/cta-bottom3.png');
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 1280 / 97;
  position: absolute;
  top: -16px;
  left: 0;
}
.access__clinic-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.clinic__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}
.tel-btn a {
  color: #31ae81;
  background-color: #FFFFFF;
  font-weight: 700;
  border: 1px solid #31ae81;
  border-radius: 32px;
  padding: 8px 20px;
}
.clinic__two-column {
  display: flex;
  gap: 40px;
}
.clinic-left {
  width: calc(50% + 40px); 
}
.clinic-right {
  width: calc(50% - 40px); 
  padding-left: 60px;
}
.access__text-box {
  background-color: #f4f3e3;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.access__text p {
  line-height: 2;
}
.access__time {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.access__time table {
  border: 1px solid #4fc89c;
  width: 80%;
}
.access__time table tr, .access__time table th, .access__time table td {
  text-align: center;
  padding: 10px;
}
.access__time table thead {
  border-bottom: 1px solid #4fc89c;
}
.access__time table thead tr td {
  font-weight: 700;
}
.access__time table tbody tr td {
  color: #4fc89c;
}
.clinic-address {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.address-wrapper p:first-of-type {
  margin-bottom: 4px;
}
.clinic-address iframe {
  width: 100%;
  height: 100%;
}
.map-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 960px) {
  .clinic-right {
    padding-left: 0;
  }
}


@media screen and (max-width: 768px) {
  .access {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .access__clinic-list {
    margin-top: 24px;
    gap: 24px;
  }
  .access__clinic-list .white-box {
    padding: 20px 24px;
  }
  .clinic__header {
    display: flex;
    flex-direction: column;
    justify-content: inherit;
    align-items: center;
    margin-bottom: 24px;
    gap: 20px;
  }
  .tel-btn {
    margin-right: auto;
  }
  .tel-btn a {
    font-size: 1.8rem;
    border: none;
    padding: 0;
  }
  .clinic__two-column {
    flex-direction: column;
    gap: 24px;
  }
  .clinic-left {
    width: 100%; 
  }
  .clinic-right {
    width: 100%; 
    padding-left: 0;
  }
  .access__text-box {
    background-color: #FFFFFF;
    padding: 0;
    gap: 16px;
  }
  .access__text p {
    line-height: 1.6;
  }
  .access__time {
    gap: 6px;
    margin-top: 16px;
  }
  .access__time table {
    width: 100%;
  }
  .access__time table tr, .access__time table th, .access__time table td {
    text-align: center;
    padding: 4px;
  }
  .time__caution {
    font-size: 1.3rem;
  }
  .clinic-address {
    gap: 10px;
    margin-top: 16px;
  }
  .address-wrapper p:first-of-type {
    margin-bottom: 0;
  }
  .clinic-address iframe {
    width: 100%;
    height: 75%;
  }
  .map-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: inherit;
    overflow: hidden;
  }
}

@media screen and (max-width: 385px) {
  .access__time table tr, .access__time table th, .access__time table td {
    padding: 2px;
  }
}
@media screen and (max-width: 350px) {
  .access__time table tr, .access__time table th, .access__time table td {
    font-size: 1.3rem;
    padding: 2px;
  }
}


/* 共通 */
.white-box {
  background-color: #FFFFFF;
  box-shadow: 0px 24px 30px 0px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  padding: 40px 60px;
}
.green-title {
  color: #2a9a71;
  font-weight: 700; 
  position: relative;
  line-height: 1.6;
}
.green-title::before {
  content: '';
  display: inline-block;
  background-image: url('../img/green-title-leaf.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: auto;
  aspect-ratio: 33 / 43;
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}
.white-title {
  color: #FFFFFF;
  font-weight: 700; 
  position: relative;
  line-height: 1.6;
}
.white-title::before {
  content: '';
  display: inline-block;
  background-image: url('../img/white-title-leaf.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 3rem;
  height: auto;
  aspect-ratio: 33 / 43;
  position: absolute;
  top: -48px;
  left: 50%;
  transform: translateX(-50%);
}
h2 .number {
  font-size: 4.4rem;
}
.title-wrap {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: center;
}
.title-wrap img { 
  max-width: 100px;
  height: auto;
  display: block;  
  z-index: 1;
}
.two-column {
  display: flex;
  gap: 40px;
}
.two-column-item {
  width: calc((100% - 40px) / 2);
}
.two-column-item h4 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 24px;
}
.cta {
  background-color: #31ae81;
  padding: 32px 32px 64px 32px;
}
.cta h2 {
  color: #FFFFFF;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
}
.cta h2 span {
  font-size: 1.8rem;
}
.cta__clinic-list {
  display: flex;
  gap: 12px;
}
.cta__clinic-item {
  color: #503615;
  background-color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  padding: 16px 20px;
  width: calc((100% - 24px) / 3);
}
.cta__clinic-item h3 {
  font-size: 1.6rem;
}
.cta__tel {
  font-size: 2.2rem;
  margin-bottom: 6px;
}
.cta__web a {
  display: block;
  width: 100%;
  padding: 6px 0;
  border-radius: 5px;
  color: #4fc89c;
  background-color: rgba(79 200, 156, 0.1);
}
.cta__web a:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .white-box {
    padding: 20px;
  }
  .green-title {
    line-height: 1.6;
  }
  .green-title::before {
    width: 2.4rem;
    top: -36px;
    left: 50%;
  }
  .white-title {
    line-height: 1.6;
  }
  .white-title::before {
    width: 2.4rem;
    top: -36px;
    left: 50%;
  }
  h2 .number {
    font-size: 3.6rem;
  }
  .title-wrap {
    gap: 20px;
  }
  .title-wrap img {
    max-width: 40px;
    height: auto;
    display: block;
    z-index: 1;
  }
  .two-column {
    flex-direction: column;
    gap: 28px;
  }
  .two-column-item {
    width: 100%;
  }
  .two-column-item h4 {
    font-size: 2rem;
    margin-top: 16px;
    margin-bottom: 16px;
    text-align: center;
  }
  .cta {
    padding: 32px 0px 64px 0px;
  }
  .cta h2 {
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .cta h2 span {
    font-size: 1.4rem;
  }
  .cta__clinic-list {
    flex-direction: column;
    gap: 12px;
  }
  .cta__clinic-item {
    text-align: center;
    border-radius: 10px;
    padding: 16px 20px;
    width: 100%;
  }
  .cta__clinic-item h3 {
    font-size: 1.6rem;
  }
  .cta__tel {
    font-size: 2.2rem;
    margin-bottom: 6px;
  }
  .cta__web a {
    width: 100%;
    padding: 6px 0;
    font-size: 2.2rem;
  }
}

/* PCスマホ出し分け */
@media screen and (min-width: 769px) {
  .pc-hide {
    display: none!important;
  }
}
@media screen and (max-width: 768px) {
  .sp-hide {
    display: none!important;
  }
}


/* 改行調整 */

@media screen and (min-width: 531px) {
  .sp-only-530 {
    display: none;
  }
}
@media screen and (max-width: 530px) {
  .sp-only-530 {
    display: block;
  }
}
@media screen and (min-width: 441px) {
 .sp-only-440 {
    display: none;
  }
}
@media screen and (max-width: 440px) {
 .sp-only-440 {
    display: block;
  }
}
@media screen and (min-width: 411px) {
 .sp-only-410 {
    display: none;
  }
}
@media screen and (max-width: 410px) {
 .sp-only-410 {
    display: block;
  }
}
@media screen and (min-width: 401px) {
 .sp-only-400 {
    display: none;
  }
}
@media screen and (max-width: 400px) {
 .sp-only-400 {
    display: block;
  }
}
@media screen and (min-width: 391px) {
  .sp-only-390 {
    display: none;
  }
}
@media screen and (max-width: 390px) {
  .sp-only-390 {
    display: block;
  }
}
@media screen and (min-width: 376px) {
  .sp-only-375 {
    display: none;
  }
}
@media screen and (max-width: 375px) {
  .sp-only-375 {
    display: block;
  }
}