@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --nsans:"Noto Sans", sans-serif;
  --nserif:"Noto Serif", serif;
  --black:#5F5A59;
  --green:#00BBAD;
  --l-green: #5ECAC2;
  color: var(--black);
  font-family: var(--nsans);
  font-size: 10px;
  line-height: 1.8;
}

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

a {
  text-decoration: none;
  color: var(--black);
  transition: all 0.3s ease-in-out;
}
a:hover {
  opacity: 0.7;
}

html {
  scroll-behavior: smooth;
}

ul, ol {
  list-style: none;
}

p {
  font-size: 1.6rem;
}

header {
  display: flex;
  height: 147px;
  justify-content: center;
  width: 100%;
}

.header__left {
  width: 70%;
  background-color: var(--l-green);
}

.header__left-inner {
  width: 1010px;
  max-width: 100%;
  margin: 0 0 0 auto;
  display: flex;
  padding: 17px 5%;
  flex-wrap: wrap;
  justify-content: space-between;
}
.header__left-inner .logo {
  width: 312px;
}

.header__right {
  width: 30%;
  background-color: #FFFDED;
}

.header__right-inner {
  width: 430px;
  max-width: 100%;
  margin: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  gap: 5px;
}

.header__access-link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  width: 224px;
  height: 40px;
  border: 1px solid #fff;
}

.header__nav {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.header__nav-list {
  display: flex;
  font-size: 1.6rem;
  gap: 30px;
}
.header__nav-list li a {
  color: #fff;
}

.header__reserv-tel-bl {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__reserv-tel-ttl {
  border: 1px solid var(--l-green);
  font-size: 1.8rem;
  padding: 2px 5px;
  color: var(--l-green);
}

.header__reserv-tel-link {
  font-size: 3.6rem;
  font-weight: bold;
  color: var(--l-green);
}

.header__reserv-web {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 50px;
  border-radius: 80px;
  color: #fff;
  font-size: 2rem;
  position: relative;
  background-color: var(--green);
  line-height: 1;
}
.header__reserv-web::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 80px;
  background-image: url(../img/common/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#ham {
  display: none;
}

#sp-menu {
  display: none;
}

#header__hover-nav {
  position: absolute;
  z-index: 100;
  top: 161px;
  left: calc(68% - 539px);
  background: var(--l-green);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
#header__hover-nav.active {
  opacity: 1;
  visibility: visible;
}

#header__hover-nav-list {
  display: flex;
  gap: 7px 20px;
  flex-wrap: wrap;
  width: 420px;
}
#header__hover-nav-list li {
  width: calc(50% - 10px);
}
#header__hover-nav-list li a {
  font-size: 1.4rem;
  color: #fff;
  position: relative;
  padding-left: 1em;
}
#header__hover-nav-list li a::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5em;
  height: 1px;
  background-color: #fff;
}

@media screen and (max-width: 1399px) {
  #header__hover-nav {
    left: calc(70% - 539px);
  }
}
@media screen and (max-width: 1249px) {
  .header__access-link {
    display: none;
  }
  .header__nav {
    display: none;
  }
  header {
    height: 110px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
  }
  .header__left-inner .logo {
    width: 280px;
  }
  .header__right {
    display: none;
  }
  .header__left {
    width: 100%;
  }
  .header__left-inner {
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 0 20px;
  }
  #ham {
    display: block;
    width: 40px;
    height: 33px;
    position: absolute;
    top: 39px;
    right: 20px;
  }
  #ham .ham {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
  }
  #ham .ham .line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
  }
  #ham .ham .line:nth-child(1) {
    top: 0;
  }
  #ham .ham .line:nth-child(2) {
    top: 15px;
  }
  #ham .ham .line:nth-child(3) {
    top: 30px;
  }
  #ham.active .ham .line:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  #ham.active .ham .line:nth-child(2) {
    opacity: 0;
  }
  #ham.active .ham .line:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
  #sp-menu {
    background-color: #fff;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -1000px;
    left: 0;
    z-index: 9999;
    display: block;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none; /* IE and Edge */
    transition: all 0.3s ease-in-out;
  }
  #sp-menu.active {
    top: 0;
    transition: all 0.3s ease-in-out;
  }
  #sp-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .sp-menu__header-flex {
    display: flex;
    height: 110px;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }
  .sp-menu__header-logo {
    width: 280px;
  }
  #sp-menu__header-ham {
    width: 40px;
    height: 33px;
    position: relative;
    display: block;
  }
  #sp-menu__header-ham .line {
    width: 100%;
    height: 3px;
    background-color: var(--l-green);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }
  #sp-menu__header-ham .line:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  #sp-menu__header-ham .line:nth-child(2) {
    top: 50%;
    transform: rotate(-45deg);
  }
  .sp-menu__nav {
    margin-top: 30px;
  }
  .sp-menu__nav-list li {
    margin-bottom: 15px;
  }
  .sp-menu__nav-list li a {
    color: var(--l-green);
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-weight: 500;
    font-size: 1.6rem;
  }
  .sp-menu__access-link {
    background-color: var(--green);
    width: 224px;
    height: 39px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: bold;
    font-size: 1.6rem;
    margin: 0 auto 20px;
  }
  .sp-menu__reserv-bl {
    width: 350px;
    border-top: 1px solid var(--l-green);
    padding: 10px 0;
    margin: 0 auto;
    max-width: 90%;
  }
  .sp-menu__reserv-tel-bl {
    justify-content: center;
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .sp-menu__reserv-tel-ttl {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--l-green);
    font-size: 1.8rem;
    border: 1px solid var(--l-green);
    padding: 2px 5px;
  }
  .sp-menu__reserv-tel-link {
    font-size: 3.6rem;
    font-weight: bold;
    color: var(--l-green);
  }
  .sp-menu__wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 120px;
  }
  .sp-menu__reserv-bl .base__btn {
    margin-left: auto;
    margin-right: auto;
  }
  #header__hover-nav {
    display: none;
  }
}
@media screen and (max-width: 399px) {
  .sp-menu__header-logo {
    width: 250px;
  }
  .header__left-inner .logo {
    width: 250px;
  }
}
footer {
  background-color: #D9EDEE;
  padding: 120px 0 40px;
}

#access {
  scroll-margin-top: 120px;
}

.footer__flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4%;
}

.footer__logo {
  width: 312px;
  max-width: 100%;
  margin-bottom: 20px;
}
.footer__logo a {
  display: block;
}
.footer__logo a img {
  width: 100%;
}

.footer__left-txt {
  padding: 20px 0;
  border-top: 1px solid #B1B1B1;
  border-bottom: 1px solid #B1B1B1;
}

.footer__left-txt {
  font-size: 1.6rem;
  line-height: 1.3;
}

.footer__left-tel-link {
  padding: 20px 0;
}
.footer__left-tel-link a {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 3.4rem;
  font-weight: bold;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--green);
}
.footer__left-tel-link a::before {
  width: 50px;
  height: 50px;
  background-color: var(--green);
  border-radius: 50%;
  content: "";
  display: block;
  background-image: url(../img/common/phone-icon.svg);
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__left-tel-link a::after {
  content: "イーハイーハ";
  position: absolute;
  top: -7px;
  right: 0;
  font-weight: bold;
  font-size: 1.5rem;
}

.footer__table {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0 4%;
}
.footer__table dt {
  border-bottom: #B1B1B1 1px solid;
  padding: 20px 0;
  font-size: 1.6rem;
}
.footer__table dt:first-child {
  border-top: #B1B1B1 1px solid;
}
.footer__table dd {
  padding: 20px 0;
  font-size: 1.4rem;
  line-height: 1.7;
  border-bottom: #B1B1B1 1px solid;
}
.footer__table dd:first-of-type {
  border-top: #B1B1B1 1px solid;
}

.footer__table-list li {
  display: flex;
  margin-bottom: 3px;
}
.footer__table-list li p {
  width: calc(100% - 80px);
}

.footer__table-list-ttl {
  width: 80px;
  font-weight: bold;
  text-align: left;
}

.green-txt {
  color: var(--green);
}

.footer__link-list-bl {
  display: flex;
  margin-top: 80px;
}

.footer__link-list-bl-left {
  width: 40%;
  padding-right: 7%;
}

.footer__link-list-bl-right {
  width: 60%;
}

.footer__link-list li {
  margin-bottom: 10px;
}
.footer__link-list li a {
  font-weight: bold;
  color: var(--l-green);
  font-size: 1.6rem;
}

.footer__link-list-small {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__link-list-small li a {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding-left: 1em;
  font-size: 1.4rem;
}
.footer__link-list-small li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 1px;
  display: block;
  background-color: var(--black);
}

.footer__copy {
  text-align: center;
  margin: 60px auto 0;
  font-size: 1.2rem;
}

#fixed-sp-bl {
  display: none;
}

@media screen and (max-width: 1199px) {
  footer {
    padding: 80px 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer__link-list-bl {
    flex-direction: column;
    margin-top: 40px;
  }
  .footer__link-list-bl-left {
    width: 100%;
    padding-right: 0;
  }
  .footer__link-list-bl-right {
    width: 100%;
    margin-top: 20px;
  }
  .footer__copy {
    padding: 0 5%;
  }
  .footer__table {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer__table dt {
    padding: 12px 0;
  }
  .footer__table dd {
    padding: 12px 0;
  }
  .footer__table dd:first-of-type {
    border-top: none;
  }
  .footer__right {
    height: 465px;
  }
  footer {
    padding: 60px 0 90px;
  }
  #fixed-sp-bl {
    width: 100%;
    height: 60px;
    position: fixed;
    bottom: -62px;
    left: 0;
    z-index: 50;
    display: block;
    transition: all 0.5s ease-in-out;
  }
  #fixed-sp-bl.active {
    bottom: 0;
  }
  .fixed-sp-list {
    display: flex;
    height: 100%;
  }
  .fixed-sp-list li {
    width: 50%;
    height: auto;
  }
  .fixed-sp-list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 12px;
  }
  .fixed-sp-list li a .icon {
    width: 40px;
    height: 40px;
    display: block;
    line-height: 1;
  }
  .fixed-sp-list li a .icon img {
    line-height: 1;
  }
  .fixed-sp-list li a .txt {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
  }
  .fixed-sp-list li a.mail-link {
    background-color: #5ECAC2;
    border-radius: 20px 20px 0 0;
  }
  .fixed-sp-list li a.tel-link {
    background-color: #7EB9FF;
    border-radius: 20px 20px 0 0;
  }
}
.top-mv__swiper {
  position: relative;
}
.top-mv__swiper .swiper-horizontal > .swiper-pagination-bullets, .top-mv__swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .top-mv__swiper .swiper-pagination-custom, .top-mv__swiper .swiper-pagination-fraction {
  background: #D9EDEE;
  padding: 10px;
  border-radius: 8px 8px 0 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.top-mv__swiper .swiper-pagination-clickable .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}
.top-mv__swiper .swiper-pagination-bullet-active {
  background-color: var(--green) !important;
}
.top-mv__swiper picture {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1600/864;
  width: 100%;
  display: block;
}
.top-mv__swiper picture img {
  width: 150%;
  max-width: 150%;
  transform: translate(-45%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
}

.top-mv__swiper .swiper-slide-active picture img, .top-mv__swiper .swiper-slide-prev picture img {
  animation: slideImg 7s linear forwards;
}

@keyframes slideImg {
  0% {
    transform: translate(-45%, -50%);
  }
  100% {
    transform: translate(-50%, -50%);
  }
}
#top-mv {
  position: relative;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-mv__catch {
  white-space: nowrap;
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  writing-mode: vertical-lr;
  font-family: var(--nserif);
  font-weight: 600;
  font-size: 2.7rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column-reverse;
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}
.top-mv__catch .txt {
  display: block;
}

.top-mv__list {
  display: flex;
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease 1.5s forwards;
}
.top-mv__list li {
  width: 160px;
  aspect-ratio: 1/1;
  background-image: url(../img/top/mv-catch-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  font-family: var(--nserif);
  text-align: center;
}

.top-mv__catch-en {
  width: 60%;
  position: absolute;
  left: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0;
  animation: fadeIn 1s ease 0.5s forwards;
}

.base__time-float {
  position: absolute;
  right: 0;
  background-color: var(--l-green);
  color: #fff;
  bottom: -80px;
  z-index: 3;
  padding: 30px;
  width: 332px;
}

.base__time-float-ttl {
  position: relative;
  padding-left: 30px;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  margin-bottom: 7px;
  padding-bottom: 5px;
}
.base__time-float-ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-68%);
  left: 0;
  width: 22px;
  height: 15px;
  background-image: url(../img/common/icon-white.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.base__time-float-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
.base__time-float-list dt {
  width: 70px;
}
.base__time-float-list dd {
  width: calc(100% - 70px);
}

.dp-sec {
  padding: 120px 0;
}

.inner-s {
  width: 965px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.top-news__flex {
  display: flex;
}

.top-news__ttl-bl {
  width: 30%;
}

.top-news__cont {
  width: 70%;
}

#top-news {
  background-color: #F2F8FA;
}

.top-news__ttl-bl {
  width: 30%;
}
.top-news__ttl-bl .top-base__ttl {
  margin-bottom: 200px;
}

.top-news__cont {
  width: 70%;
}

.top-base__ttl {
  position: relative;
  padding-left: 40px;
  font-size: 2.4rem;
  font-weight: bold;
}
.top-base__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 29px;
  height: 20px;
  background-image: url(../img/common/icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

.base__link {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 60px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--l-green);
}
.base__link::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 40px;
  height: 40px;
  background-image: url(../img/common/arrow.webp);
  background-size: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--l-green);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.base__link-center {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.news__list li a {
  display: flex;
  width: 100%;
  font-size: 1.6rem;
  padding: 20px 0;
  color: #B1B1B1;
  border-bottom: 1px solid #B1B1B1;
}
.news__list li a time {
  width: 150px;
}
.news__list li a p {
  width: calc(100% - 150px);
}

.inner {
  width: 1100px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.top-first__flex {
  display: flex;
}
.top-first__flex .img {
  width: 50%;
}
.top-first__flex .img img {
  border-radius: 20px;
}
.top-first__flex .cont {
  width: 50%;
  padding-left: 5%;
}

.top-first__ttl {
  color: var(--l-green);
  font-weight: bold;
  font-size: 3rem;
  margin-bottom: 25px;
}

.top-first__list {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}
.top-first__list li {
  width: 140px;
  aspect-ratio: 1/1;
  background-image: url(../img/top/top-first-txt-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
}

.base__link-right {
  margin-left: auto !important;
  margin-right: 0 !important;
  display: block;
}

#top-feature {
  padding: 170px 0 120px;
  background-image: url(../img/top/top-feature-bg.webp);
  background-size: cover;
  background-position: center;
}

.top-feature__flex {
  display: flex;
  flex-wrap: wrap;
}

.top-feature__ttl-bl {
  width: 45%;
}

.top-feature__cont01 {
  width: 55%;
}

.top-feature__cont02 {
  width: 100%;
}

.top-feature__list li {
  margin-bottom: 40px;
}
.top-feature__list li .img {
  margin-bottom: 15px;
}
.top-feature__list li .img img {
  border-radius: 20px;
}
.top-feature__list li.flex-cont {
  display: grid;
  grid-template-columns: 55% 1fr;
  gap: 20px;
}

.top-feature__list-ttl {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 20px;
}

.top-feature__list-flex {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(2, 1fr);
}

.top-feature__ver-txt {
  color: var(--l-green);
  font-weight: bold;
  writing-mode: vertical-rl;
  font-size: 3rem;
}

.cta {
  background-image: url(../img/common/cta-bg.webp);
  background-size: cover;
  background-position: center;
}

.cta__list {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.cta__list li {
  width: calc(50% - 20px);
  aspect-ratio: 530/396;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.cta__list li a {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  background-image: url(../img/common/cta01.webp);
}
.cta__list li:last-child a {
  background-image: url(../img/common/cta02.webp);
}
.cta__list li:last-child a .icon img {
  width: 24px;
}

.cta__list-cont {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 134px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.cta__list-cont .icon {
  background-color: var(--green);
  width: 70px;
  height: 70px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: 50%;
  bottom: 120px;
  transform: translateX(-50%);
}
.cta__list-cont .icon img {
  width: 28px;
}

.cta__list-ttl-small {
  color: var(--green);
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
}

.cta__list-txt-big {
  text-align: center;
  font-size: 2.8rem;
  line-height: 1.4;
  padding-bottom: 7px;
  font-weight: bold;
}

.top-doctor__flex {
  display: flex;
  margin-top: 40px;
}
.top-doctor__flex .img {
  width: 50%;
}
.top-doctor__flex .img img {
  border-radius: 20px;
}
.top-doctor__flex .cont {
  width: 50%;
  padding-left: 5%;
}

.top-doctor__ttl-green {
  font-size: 3rem;
  font-weight: bold;
  color: var(--l-green);
  margin-bottom: 20px;
}

.top-doctor__swiper {
  margin-top: 80px;
  overflow: hidden;
}

.top-doctor__swiper .swiper-wrapper {
  transition-timing-function: linear;
}
.top-doctor__swiper .swiper-wrapper img {
  width: 100%;
}

.top-menu__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.top-menu__list li a {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  display: block;
}

.top-menu__list-name {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 182px;
  height: 45px;
  background-color: var(--l-green);
  align-items: center;
  padding: 0 5px 0 20px;
  display: flex;
  color: #fff;
  font-size: 1.6rem;
  border-radius: 20px 0 0 0;
  line-height: 1.2;
}

#top-menu {
  background-color: #F5FBFB;
}

#top-price {
  background-color: #FFFDED;
}

.top-base__ttl.top-base__ttl-center {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  padding-left: 0;
}
.top-base__ttl.top-base__ttl-center::before {
  top: auto;
  transform: translateX(-50%);
  left: 50%;
  bottom: -25px;
}

.top-price__txt {
  font-size: 3rem;
  font-weight: bold;
  color: var(--l-green);
  text-align: center;
}

.base__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  max-width: 100%;
  height: 50px;
  border-radius: 80px;
  color: #fff;
  font-size: 2rem;
  position: relative;
  background-color: var(--green);
  line-height: 1;
}
.base__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 80px;
  background-image: url(../img/common/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

#top-price .base__btn {
  margin: 40px auto 0;
}

.column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.column__list li a .img {
  margin-bottom: 15px;
  width: 100%;
  aspect-ratio: 346/220;
}
.column__list li a .img img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.column__list li a p {
  font-size: 1.4rem;
  font-weight: 500;
}

.date-cat-bl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.date-cat-bl time {
  font-size: 1.4rem;
  font-weight: 500;
  color: #B1B1B1;
}
.date-cat-bl .cat-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.date-cat-bl .cat-list li {
  font-size: 1rem;
  font-weight: bold;
  color: var(--l-green);
  border: 1px solid var(--l-green);
  padding: 2px 15px;
  border-radius: 30px;
}

#top-price .base__btn {
  background-color: var(--l-green);
}

@media screen and (max-width: 1249px) {
  #top-mv {
    margin-top: 110px;
  }
}
@media screen and (max-width: 1199px) {
  .top-mv__swiper picture {
    aspect-ratio: 3/2;
  }
  .top-mv__swiper picture img {
    width: 170%;
    max-width: 170%;
  }
  .top-mv__list li {
    width: 125px;
    font-size: 1.3rem;
  }
  .top-mv__list {
    left: 20px;
  }
  .top-mv__catch {
    top: 39%;
  }
  .dp-sec {
    padding: 80px 0;
  }
  .top-first__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .top-first__list li {
    width: 120px;
    font-size: 1.6rem;
  }
  .top-first__list {
    margin-bottom: 20px;
  }
  .top-feature__ver-txt {
    font-size: 2rem;
  }
  .top-feature__cont01 {
    width: 60%;
  }
  .top-feature__ttl-bl {
    width: 40%;
  }
  .top-feature__list-ttl {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  #top-feature {
    padding: 100px 0 80px;
  }
  .cta__list-cont {
    height: 90px;
  }
  .cta__list-ttl-small {
    font-size: 1.5rem;
  }
  .cta__list-txt-big {
    font-size: 2rem;
  }
  .top-doctor__ttl-green {
    font-size: 2rem;
  }
  .cta__list-cont .icon {
    width: 60px;
    height: 60px !important;
    bottom: 78px;
  }
  .top-menu__list-name {
    width: 155px;
    padding: 0 5px 0 15px;
    font-size: 1.4rem;
  }
  .top-price__txt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__swiper picture {
    aspect-ratio: 691/1146;
  }
  .top-mv__swiper picture img {
    width: 110%;
    max-width: 110%;
  }
  .top-mv__catch {
    top: 45px;
    transform: translate(0, 0);
    left: 25px;
    font-size: 2rem;
  }
  .top-mv__catch-en {
    width: 89%;
    left: 3%;
    top: 187px;
    transform: translateY(0);
  }
  .base__time-float {
    bottom: -177px;
    width: 100%;
  }
  .top-mv__list {
    bottom: 30px;
    flex-direction: column;
    left: auto;
    right: 20px;
  }
  #top-news {
    padding-top: 240px;
  }
  .top-news__flex {
    flex-direction: column;
  }
  .top-news__ttl-bl {
    width: 100%;
  }
  .top-news__ttl-bl .top-base__ttl {
    margin-bottom: 10px;
  }
  .top-news__ttl-bl .base__link {
    display: none;
  }
  .top-news__cont {
    width: 100%;
  }
  .news__list li a {
    flex-direction: column;
  }
  .news__list li a p {
    width: 100%;
  }
  .news__list li a time {
    display: block;
    margin-bottom: 3px;
  }
  .dp-sec {
    padding: 60px 0;
  }
  .top-first__flex {
    display: block;
    position: relative;
  }
  .top-first__flex .img {
    width: 100%;
    position: absolute;
    top: 80px;
  }
  .top-first__flex .cont {
    width: 100%;
    padding-left: 0;
    position: relative;
  }
  .top-first__ttl {
    line-height: 1.6;
    margin-bottom: 57vw;
  }
  .top-first__list {
    justify-content: center;
  }
  .top-feature__ttl-bl {
    width: 100%;
  }
  .top-feature__cont01 {
    width: 100%;
  }
  .top-feature__ver-txt {
    writing-mode: horizontal-tb;
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  .top-feature__list li.flex-cont {
    display: flex;
    flex-direction: column-reverse;
  }
  .top-feature__list li.flex-cont .img-bl {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .top-feature__list-ttl {
    font-size: 2rem;
  }
  .top-feature__list-flex {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .cta__list {
    gap: 30px;
    flex-wrap: wrap;
  }
  .cta__list li {
    width: 100%;
    border-radius: 12px;
  }
  .cta__list li a {
    border-radius: 12px;
  }
  .top-feature__list li .img img {
    border-radius: 12px;
  }
  .top-first__flex .img img {
    border-radius: 12px;
  }
  .top-doctor__flex {
    margin-top: 30px;
    flex-direction: column;
    gap: 40px;
  }
  .top-doctor__flex .img {
    width: 400px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-doctor__flex .cont {
    width: 100%;
    padding-left: 0;
  }
  .top-doctor__ttl-green {
    font-size: 2.4rem;
  }
  .top-menu__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .top-menu__list li a {
    border-radius: 12px;
    aspect-ratio: 1/0.9;
  }
  .top-menu__list li a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .top-base__ttl.top-base__ttl-center::before {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    bottom: auto;
  }
  .top-base__ttl.top-base__ttl-center {
    margin: 0 auto 30px 0;
    padding-left: 40px;
  }
  .top-price__txt {
    font-size: 2.4rem;
    text-align: left;
  }
  #top-price .base__btn {
    width: 340px;
    max-width: 100%;
    height: 80px;
  }
  .column__list {
    grid-template-columns: 1fr;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb150 {
  margin-bottom: 150px !important;
}

.delay200 {
  transition-delay: 0.2s;
}

.delay400 {
  transition-delay: 0.4s;
}

.delay600 {
  transition-delay: 0.6s;
}

.delay800 {
  transition-delay: 0.8s;
}

.delay1000 {
  transition-delay: 1s;
}

.sp-only {
  display: none;
}

.sp {
  display: none;
}

.js-fadeUp {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}
.js-fadeUp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 767px) {
  .smb0 {
    margin-bottom: 0 !important;
  }
  .smb5 {
    margin-bottom: 5px !important;
  }
  .smb10 {
    margin-bottom: 10px !important;
  }
  .smb15 {
    margin-bottom: 15px !important;
  }
  .smb20 {
    margin-bottom: 20px !important;
  }
  .smb30 {
    margin-bottom: 30px !important;
  }
  .smb40 {
    margin-bottom: 40px !important;
  }
  .smb50 {
    margin-bottom: 50px !important;
  }
  .smb60 {
    margin-bottom: 60px !important;
  }
  .smb70 {
    margin-bottom: 70px !important;
  }
  .smb80 {
    margin-bottom: 80px !important;
  }
  .smb90 {
    margin-bottom: 90px !important;
  }
  .smb100 {
    margin-bottom: 100px !important;
  }
  .delay200, .delay400, .delay600, .delay800, .delay1000 {
    transition-delay: 0s;
  }
  .spb0 {
    padding-bottom: 0 !important;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline;
  }
}
.base__img-center {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
  width: 800px;
}

.base__under-ttl {
  margin: 30px 0;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--l-green);
}

.base__under-ttl-middle {
  margin: 30px 0 20px;
  font-size: 2.1rem;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid var(--l-green);
}

#under-intr {
  padding: 100px 0 120px;
}

.under-mv__bl {
  position: relative;
  width: 100%;
  height: 460px;
}
.under-mv__bl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.under-mv__ttl {
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.2rem;
  font-weight: bold;
}

.breadcrumb {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
}
.breadcrumb li {
  font-size: 1.3rem;
  position: relative;
}
.breadcrumb li::after {
  content: "/";
  position: absolute;
  right: -12px;
  top: 0;
}
.breadcrumb li a {
  font-size: 1.3rem;
}
.breadcrumb li:last-child::after {
  content: "";
}

.base__list li {
  padding-left: 1em;
  font-size: 1.6rem;
  margin-bottom: 3px;
  position: relative;
}
.base__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
  background-color: var(--l-green);
  border-radius: 50%;
}

.base__under-ttl-small {
  font-weight: 500;
  font-size: 1.7rem;
  margin: 25px 0 15px;
  color: var(--l-green);
}

.base__3flex {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3%;
}

.base__2flex {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 3%;
}

.base__small-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 30px 0 8px;
  color: #5ECAC2;
}

@media screen and (max-width: 1249px) {
  #under-mv {
    margin-top: 110px;
  }
}
@media screen and (max-width: 767px) {
  .under-mv__ttl {
    font-size: 2.4rem;
  }
  .under-mv__bl {
    height: 296px;
  }
  #under-intr {
    padding: 50px 0 60px;
  }
  .base__under-ttl {
    font-size: 2.4rem;
    margin: 25px 0 20px;
  }
  .base__under-ttl-middle {
    font-size: 1.8rem;
    margin: 20px 0 15px;
  }
  .base__2flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .base__3flex {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.contact__step {
  display: flex;
  position: relative;
  width: 240px;
  justify-content: space-between;
  margin: 0 auto 60px;
}
.contact__step::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  z-index: -1;
}
.contact__step li .num {
  width: 70px;
  height: 70px;
  background-color: #dddddd;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-family: Helvetica, Verdana, sans-serif;
  margin-bottom: 15px;
}
.contact__step li .txt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #969696;
  display: block;
}
.contact__step li.active .num {
  background-color: #acd6dd;
  color: #000000;
}
.contact__step li.active .txt {
  color: #000;
}

.contact__main-txt {
  font-weight: bold;
  font-size: 24px;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.5;
}

.contact__caution-list {
  width: 840px;
  max-width: 100%;
  margin: 0 auto;
}
.contact__caution-list li {
  position: relative;
  padding-left: 1em;
  font-size: 15px;
  line-height: 1.5;
}
.contact__caution-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.contact__cont-line {
  width: 100%;
  margin: 80px 0 50px;
  height: 1px;
  background-color: #000000;
}

.contact__table {
  display: flex;
  flex-wrap: wrap;
}
.contact__table dt {
  width: 300px;
  padding: 25px 0;
  position: relative;
  min-height: 91px;
}
.contact__table dt > P {
  font-size: 15px;
  padding-top: 11px;
  font-weight: bold;
}
.contact__table dt .require-txt {
  top: 37px;
  right: 20px;
  position: absolute;
  font-size: 12px;
  color: #fff;
  background: #ff4951;
  /* border: 1px solid #eb7f84; */
  display: inline-block;
  padding: 2px 12px;
  border-radius: 5px;
}
.contact__table dt .non-require-txt {
  position: absolute;
  font-size: 12px;
  color: #969696;
  border: 1px solid #969696;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 50px;
  top: 29px;
  right: 20px;
}
.contact__table dd {
  min-height: 91px;
  width: calc(100% - 300px);
  padding: 25px 0;
}
.contact__table dd input[type=text],
.contact__table dd input[type=email],
.contact__table dd input[type=tel],
.contact__table dd textarea {
  width: 100%;
  padding: 12px 10px;
  font-size: 16px;
  border: none;
  background: #f5f5f5;
  line-height: 1.6;
}
.contact__table dd textarea {
  height: 300px;
  resize: none;
}

.address-flex {
  margin-bottom: 28px;
}
.address-flex p {
  display: flex;
  gap: 15px;
  align-items: center;
}

.zip1 {
  width: 120px !important;
}

.zip2 {
  width: 160px !important;
}

.address-txt {
  font-size: 15px;
}
.address-txt.p2 {
  width: 10px;
  height: 1px;
  background: #000;
  display: block;
}

#zip-button {
  font-size: 15px;
  font-weight: bold;
  border: 2px solid #000;
  background: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  cursor: pointer;
}

input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}

span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  border-radius: 50%;
  background-color: #f5f5f5;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 4px solid #3eb1eb;
  left: 0px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}

span[data-name=radio-orf],
span[data-name=radio-subject] {
  display: inline-block;
  transform: translateY(-6px);
}

.privacy-slide-bl {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  border: 1px solid #eeeeee;
  padding: 50px;
  height: 400px;
  overflow-y: scroll;
  margin-top: 60px;
  scrollbar-width: 16px;
  scrollbar-color: #eeeeee;
}
.privacy-slide-bl p {
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.8;
}
.privacy-slide-bl p.privacy-name-txt {
  margin-bottom: 15px;
}
.privacy-slide-bl::-webkit-scrollbar-thumb {
  background-color: #eeeeee;
  border-radius: 8px;
  border: 5px solid #fff;
}
.privacy-slide-bl::-webkit-scrollbar-track {
  background-color: #fff;
}
.privacy-slide-bl::-webkit-scrollbar {
  width: 16px;
}

.privacy-ttl {
  font-weight: bold;
  background-color: #d8e4e7;
  padding: 8px 20px 5px;
  font-size: 24px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.privacy-ttl-middle {
  font-size: 20px;
  font-weight: bold;
  border-left: 2px solid #3eb1eb;
  padding-left: 12px;
  line-height: 1.6;
  margin-bottom: 15px;
}

input[type=submit] {
  width: 300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  height: 65px;
  background-color: var(--green);
  margin: 40px auto 0;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
  display: block;
  padding: 15px 0 10px;
}

/* 縦並び */
.cf7__list dd .wpcf7-list-item {
  display: block;
  margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n+2) {
  margin-top: 18px;
}

.cf7__list dd .wpcf7-list-item label {
  cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border: 1px solid #bcbcbc;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked {
  border: 1px solid #3eb1eb;
  background: #3eb1eb;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}

#privacy-policy-checkbox span.wpcf7-list-item-label::before {
  display: none;
}

.privacy-label {
  display: flex;
}

span[data-name=privacy-check] {
  margin: 30px auto 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
span[data-name=privacy-check] .wpcf7-list-item-label::before {
  display: none;
}
span[data-name=privacy-check] .wpcf7-list-item label {
  display: flex;
  justify-content: center;
}

.reserve-block {
  display: flex;
  align-items: baseline;
  flex-direction: column;
  gap: 0rem 3rem;
  width: calc(100% - 250px);
  max-width: 500px;
}
@media (max-width: 834px) {
  .reserve-block {
    gap: 1rem;
    margin-bottom: 1rem;
  }
}
.reserve-block select {
  border: 1px solid #ccc;
  padding: 0 15px;
}
@media (max-width: 834px) {
  .reserve-block dd {
    border-bottom: none !important;
  }
}
.reserve-block dd:not(:first-child) {
  padding: 0;
  min-height: auto;
  margin-bottom: 1.5rem;
}
.reserve-block p:has([data-name*=date-hope1-select]),
.reserve-block p:has([data-name*=date-hope2-select]),
.reserve-block p:has([data-name*=date-hope3-select]) {
  display: flex;
  gap: 1rem;
  white-space: nowrap;
}
.reserve-block [type=date] {
  background: #f5f5f5;
  padding: 10px;
}
.reserve-block .wpcf7-form-control-wrap {
  display: inline-block;
}

.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-not-valid-tip {
  font-size: 14px !important;
  position: absolute;
  bottom: -25px;
}

/* 送信完了ページ */
.thanks__txt {
  text-align: center;
  font-weight: 500;
  font-size: 15px;
  margin-top: 30px;
  margin-bottom: 70px;
  line-height: 1.6;
}

.thanks__btn {
  width: 300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  height: 80px;
  background-color: var(--green);
  margin: 40px auto 0;
}
.thanks__btn .icon-arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0, -50%);
  font-size: 5px;
  transition-duration: 0.3s;
}
.thanks__btn:hover .icon-arrow {
  right: 27px;
  transition-duration: 0.3s;
}

.wpcf7 form .wpcf7-response-output {
  padding: 0.8em 1em 0.6em;
  font-size: 15px;
}

.wpcf7-form-control.wpcf7-radio {
  padding-top: 8px;
  display: block;
}

input[type=radio] {
  position: absolute;
  width: 0;
  height: 0;
}

.sent-cf-bl {
  display: none;
}

.sent .sent-cf-bl {
  display: block;
}

.sent .input-cf-bl {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

.sent-cf-bl-txt {
  text-align: center;
}

.sent-cf-bl-link {
  width: 300px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  height: 65px;
  background-color: var(--green);
  margin: 40px auto 0;
}

@media (max-width: 1200px) {
  .contact__table dd {
    width: calc(100% - 250px);
  }
  .contact__table dt {
    width: 250px;
  }
}
@media (max-width: 834px) {
  .contact__table dt {
    width: 100%;
    padding: 20px 0 11px;
    position: relative;
    min-height: auto;
  }
  .contact__table dd {
    min-height: initial;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid #ccc;
  }
  .contact__table dt > P {
    padding-top: 0;
  }
  .contact__table dt .require-txt {
    top: 23px;
    right: auto;
    font-size: 12px;
    padding: 1px 9px;
    margin-left: 11px;
  }
  .contact__table dt .non-require-txt {
    top: 17px;
    right: auto;
    font-size: 12px;
    padding: 4px 9px;
    margin-left: 11px;
  }
  .address-flex p {
    gap: 7px;
  }
  .zip1 {
    width: 70px !important;
  }
  .zip2 {
    width: 90px !important;
  }
  #zip-button {
    font-size: 13px;
    padding: 8px 12px;
  }
  .privacy-slide-bl {
    padding: 25px 10px 25px 20px;
    margin-top: 30px;
  }
  .privacy-ttl {
    padding: 8px 10px 5px;
    font-size: 19px;
    margin-bottom: 15px;
  }
  .privacy-slide-bl p {
    margin-bottom: 25px;
  }
  .privacy-ttl-middle {
    font-size: 17px;
  }
  input[type=submit] {
    margin: 35px auto 0;
  }
  .contact__table dd input[type=text],
  .contact__table dd input[type=email],
  .contact__table dd input[type=tel],
  .contact__table dd textarea {
    margin-top: 3px;
  }
  input[type=radio] + .wpcf7-list-item-label {
    font-size: 13px;
  }
  .wpcf7 form .wpcf7-response-output {
    font-size: 13px;
  }
  .wpcf7-not-valid-tip {
    font-size: 11px !important;
    white-space: nowrap;
    bottom: -21px;
  }
  input[type=submit] {
    width: 200px;
  }
  .contact__step {
    width: 150px;
    margin: 0 auto 30px;
  }
  .contact__step::after {
    top: 25px;
  }
  .contact__step li .txt {
    font-size: 14px;
  }
  .contact__step li .num {
    width: 50px;
    height: 50px;
    font-size: 2px;
    margin-bottom: 10px;
  }
  .contact__main-txt {
    font-size: 19px;
  }
  .contact__cont-line {
    margin: 30px 0 20px;
  }
  .reserve-block dd:not(:first-child) {
    margin-bottom: 0;
  }
  .wpcf7-form-control.wpcf7-radio {
    padding-bottom: 20px;
  }
  .sent-cf-bl-link {
    margin: 35px auto 0;
    width: 200px;
  }
}
.info__flex {
  display: flex;
  gap: 50px;
  word-break: break-all;
}

.info__sidebar {
  width: 200px;
}

.info__main-bl {
  width: calc(100% - 250px);
}

.info__side-ttl {
  border-bottom: solid 1px #ccc;
  font-size: 18px;
  padding-bottom: 10px;
  padding-left: 16px;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.6;
}
.info__side-ttl::before {
  background: #ccc;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 8px;
  height: 8px;
}

.post-list__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
}

.post-list__img {
  width: 100%;
  aspect-ratio: 3/2;
  margin-bottom: 15px;
}
.post-list__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.post-list__date {
  font-size: 12px;
  font-family: var(--nsans);
  line-height: 1.5;
}

.post-list__ttl {
  font-size: 16px;
}

/* お知らせ・ブログ（詳細） */
.info__ttl {
  font-size: 36px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.info__cont {
  margin-top: 30px;
}

.info__cont h2 {
  font-size: 40px;
  color: var(--l-green);
  position: relative;
  padding-left: 25px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.info__cont h2::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--l-green);
}

.info__cont h3 {
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  padding-bottom: 15px;
  font-size: 30px;
  margin-bottom: 35px;
}

.info__cont h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--l-green);
}

.info__cont h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--l-green);
}

.base__txt,
.info__cont p {
  font-size: 15px;
  margin-bottom: 30px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.single__info-btn {
  width: 200px;
  display: block;
  margin: 50px auto 0;
}

.news__all-link {
  width: 153px;
  border-bottom: 1px solid #E0E0E0;
  position: relative;
  padding-bottom: 7px;
}

.news__all-link:hover .icon-arrow {
  right: -3px;
  transition-duration: 0.3s;
}

.news__all-link .icon-arrow {
  font-size: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -75%);
  color: var(--l-green);
  transition-duration: 0.3s;
}

.icon-arrow:before {
  content: "\e900";
  color: var(--l-green);
}

/* ページネーション */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px auto 0px;
  align-items: center;
}
.nav-links .page-numbers {
  font-size: 14px;
  font-family: var(--nsans);
}
.nav-links .page-numbers.current {
  background-color: #ebebeb;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cyan-txt {
  color: var(----l-green);
}

.mb20 {
  margin-bottom: 20px;
}

.mb0 {
  margin-bottom: 0 !important;
}

.bold {
  font-weight: bold;
}

.under-mv__ttl-en {
  text-align: center;
}

#under-intr .top-menu__list-img {
  border-radius: 50%;
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.1);
}

.img600 {
  margin-inline: auto;
  width: min(100%, 600px);
}

.mt30 {
  margin-top: 30px !important;
}

.snav-lst {
  font-size: 1.4rem;
}

.info__cont img {
  margin-bottom: 30px;
}

@media screen and (max-width: 834px) {
  .post-list__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .info__flex {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .info__main-bl {
    width: 100%;
  }
  .info__sidebar {
    width: 100%;
  }
}
.implant-sec .u-inner p + p {
  padding-top: 1em;
}
.implant-sec .text__note {
  font-size: 0.875em;
}
.implant-sec .text-center {
  text-align: center;
}
.implant-sec .base__detail-list {
  border: 1px solid #E6E6E6;
  gap: 0;
}
.implant-sec .base__detail-list__col {
  flex: 1;
  border-right: 1px solid #E6E6E6;
}
.implant-sec .base__detail-list__th,
.implant-sec .base__detail-list__td {
  padding: 1em;
}
.implant-sec .base__detail-list__th {
  font-weight: bold;
  background: #F7F7F5;
  text-align: center;
}
.implant-sec .base__detail-list__td {
  padding: 1em;
}
.implant-sec .img375 {
  width: min(375px, 100%);
}

@media print, screen and (min-width: 768px) {
  .implant-sec .base__detail-list {
    border: 1px solid #E6E6E6;
  }
  .implant-sec .base__detail-list__col:last-child {
    border-right: 0;
  }
  .implant-sec .base__detail-list__td:nth-child(4) {
    min-height: 46em;
  }
}
@media print, screen and (max-width: 767px) {
  .implant-sec .base__detail-list {
    gap: 2em;
  }
  .implant-sec .base__detail-list__col {
    border: 1px solid #E6E6E6;
  }
  .blog .column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .blog .column__list li a .img img {
    border-radius: 8px;
  }
  .archive .column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 15px;
  }
  .archive .column__list li a .img img {
    border-radius: 8px;
  }
  .info__ttl {
    font-size: 21px;
  }
  .info__cont h2 {
    font-size: 20px;
    padding-left: 16px;
    margin-bottom: 15px;
  }
  .info__cont h2::before {
    top: 13px;
    width: 7px;
    height: 7px;
  }
  .info__cont h3 {
    padding-bottom: 8px;
    font-size: 18px;
    margin-bottom: 20px;
  }
  .info__cont h4 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=style.css.map */