@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Zen+Maru+Gothic&display=swap");
:root {
  --quick: "Quicksand", sans-serif;
  --zen: "Zen Maru Gothic", sans-serif;
  --black: #2c3d3d;
  --green: #1d9fbf;
  --blue: #1D63B9;
  font-family: var(--zen);
  color: var(--black);
  line-height: 1.875;
  font-size: 10px;
  letter-spacing: 0.2em;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 130px;
}

body {
  background-color: #E4EDED;
}

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

ul, ol {
  list-style: none;
}

p {
  font-size: 1.6rem;
}

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

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

header {
  display: flex;
  justify-content: space-between;
  padding: 15px 25px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.3s ease-in-out;
}
header.non-head {
  background-color: #fff;
}

.logo {
  width: 395px;
  display: block;
}

.header__address {
  font-size: 1.4rem;
  margin-top: 5px;
  letter-spacing: 0.05em;
}

.header__right-nav-small {
  margin-left: auto;
  margin-right: 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.header__right-nav-small-list {
  display: flex;
  gap: 20px;
}
.header__right-nav-small-list li a {
  color: #404040;
  opacity: 0.6;
}

.header__right-nav-middle {
  margin: 10px 0 0 auto;
}

.header__right-nav-middle-list {
  display: flex;
  gap: 35px;
}
.header__right-nav-middle-list li a {
  font-size: 1.6rem;
}

#ham {
  display: none;
}

.float-nav {
  position: fixed;
  top: 50vh;
  transform: translateY(-50%);
  right: 0;
  z-index: 15;
}

.float-nav__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.float-nav__list li {
  width: 111px;
  aspect-ratio: 1/1;
}
.float-nav__list li a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 2px solid #fff;
  border-right: 0;
  border-radius: 10px 0 0 10px;
  letter-spacing: 0;
}
.float-nav__list li a .icon {
  display: block;
  width: 34px;
  height: 34px;
}
.float-nav__list li a .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.float-nav__list li a .txt {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.5;
}
.float-nav__list li:first-child a {
  background-color: var(--green);
}
.float-nav__list li:last-child a {
  background-color: var(--blue);
}

#sp-menu {
  display: none;
}

.m {
  display: none;
}

.header__hover-btn {
  position: relative;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.header__hover-btn:hover::after {
  content: "";
  position: absolute;
  top: auto;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 10px solid var(--green);
  transition: all 0.2s ease;
}

.header__hover-cont {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-85%);
  width: 976px;
  height: 0;
  padding-top: 20px;
  z-index: 10;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
}
.header__hover-cont .header__hover-list {
  padding: 30px;
  background-color: #fff;
  border-radius: 30px;
  border: 1px solid var(--green);
}
.header__hover-cont#header__hover-cont01 {
  width: 670px;
}
.header__hover-cont#header__hover-cont01 .header__hover-list {
  grid-template-columns: repeat(3, 1fr);
}

.header__hover-btn.active .header__hover-cont {
  height: auto;
  visibility: visible;
  opacity: 1;
}

.header__hover-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 20px;
}
.header__hover-list > li > a {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--green);
  display: block;
  position: relative;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}
.header__hover-list > li > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%) rotate(-45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  display: block !important;
}
.header__hover-list > li > a:hover::after {
  transform: translate(3px, -50%) rotate(-45deg);
}
.header__hover-list > li:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 1200px) {
  .header__right-bl {
    display: none;
  }
  #ham {
    display: block;
    width: 26px;
    height: 29px;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 50;
  }
  #ham .ham {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
  }
  #ham .ham .ham__line {
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: var(--black);
    display: block;
    top: 0;
    left: 0;
    transition: all 0.3s ease-in-out;
  }
  #ham .ham .ham__line:nth-child(1) {
    top: 0;
  }
  #ham .ham .ham__line:nth-child(2) {
    top: 6px;
  }
  #ham .ham .ham__line:nth-child(3) {
    top: 12px;
  }
  #ham .ham .ham__menu {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8px;
  }
  #ham.active .ham__line:nth-child(1) {
    transform: rotate(45deg);
    top: 3px;
  }
  #ham.active .ham__line:nth-child(2) {
    opacity: 0;
  }
  #ham.active .ham__line:nth-child(3) {
    transform: rotate(-45deg);
    top: 3px;
  }
  #sp-menu {
    display: block;
    width: 100%;
    height: 100vh;
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: #E4EDED;
    z-index: -1;
    overflow: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  #sp-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
  #sp-menu.active {
    visibility: visible;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    z-index: 20;
  }
  .sp-menu__wrapper {
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .sp-menu__wrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, and Opera */
  }
  .logo {
    width: 200px;
  }
  .m {
    display: inline-block;
  }
  .header__address {
    font-size: 1.1rem;
    line-height: 1.5;
  }
  header {
    padding: 0px 10px;
  }
  header.non-head {
    background-color: transparent;
  }
  .sp-menu__nav {
    padding: 130px 30px 100px;
  }
  .sp-menu__nav-list li a {
    padding: 20px 0;
    display: block;
    position: relative;
    font-size: 1.6rem;
    border-bottom: 1px solid #C7C7C7;
  }
  .sp-menu__nav-list li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    width: 7px;
    height: 11px;
    background-image: url(../img/arro-bk.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-in-out;
  }
  .sp-menu__nav-list li a:hover::after {
    transform: translate(3px, -50%);
  }
  .toggle-btn {
    width: 30px;
    height: 30px;
    position: absolute;
    display: inline-block;
    right: 3px;
    top: 19px;
  }
  .toggle-btn::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
  }
  .toggle-btn::after {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    content: "";
    position: absolute;
    width: 2px;
    height: 50%;
    background-color: var(--black);
    transition: all 0.3s ease;
    border-radius: 3px;
    display: block;
  }
  .toggle-btn.active::after {
    opacity: 0;
  }
  .header__hover-btn:hover::after {
    display: none;
  }
  .header__hover-btn {
    width: 100%;
  }
  #header__hover-btn02 > a::after {
    display: none;
  }
  .header__hover-cont {
    position: relative;
    top: 100%;
    left: 0;
    transform: translateX(0);
    width: 100%;
  }
  .header__hover-cont.active {
    height: auto;
    visibility: visible;
    opacity: 1;
  }
  .header__hover-cont .header__hover-list {
    background-color: transparent;
    border-radius: 0;
    border: none;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    padding: 0;
    display: none;
  }
  .header__hover-cont.active .header__hover-list {
    display: grid;
  }
  .header__hover-list {
    padding: 20px !important;
  }
  .header__hover-list > li > a {
    padding: 10px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #C7C7C7;
  }
  .header__hover-list > li > a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    border-right: none;
    border-bottom: none;
    transition: all 0.3s ease-in-out;
    display: block;
  }
  .header__hover-cont {
    padding-top: 0;
  }
  #header__hover-btn03 > a::after, #header__hover-btn04 > a::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .float-nav {
    top: auto;
    transform: translateY(0);
    z-index: 15;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .float-nav__list {
    flex-direction: row;
    gap: 0;
  }
  .float-nav__list li {
    width: 100%;
    aspect-ratio: initial;
    height: 60px;
  }
  .float-nav__list li a {
    flex-direction: row;
    gap: 10px;
    border: 2px solid #fff;
    border-left: 0;
    border-radius: 0;
    padding-right: 30px;
    position: relative;
  }
  .float-nav__list li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    width: 24px;
    height: 24px;
    background-image: url(../img/arrow.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .float-nav__list li a .txt {
    font-size: 1.5rem;
  }
  .float-nav__list li a .txt br {
    display: none;
  }
  .float-nav__list li a .icon {
    width: 25px;
    height: 25px;
  }
}
@media screen and (max-width: 450px) {
  .header__hover-cont .header__hover-list {
    grid-template-columns: 1fr;
  }
}
footer {
  background-color: #D3E8E8;
  border-radius: 120px 120px 0 0;
  padding: 120px 0 80px;
  background-image: url(../img/footer-bg.webp);
  background-size: cover;
  background-position: center;
}

.footer__flex {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 3%;
  position: relative;
}

.footer__flex-left {
  position: relative;
}

.footer__logo {
  width: 395px;
  margin: 0 auto;
}

.footer__address {
  font-size: 1.4rem;
  margin-bottom: 40px;
  letter-spacing: 0;
  margin-top: 4px;
  text-align: center;
}

.footer__time {
  border-radius: 10px;
  padding: 30px 5%;
  background-color: #fff;
}

.footer__cta-bl {
  border-radius: 40px;
  background-color: #fff;
  padding: 70px 5%;
}

.footer__cta-txt {
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}
.footer__cta-txt .small {
  font-size: 1.8rem;
  display: block;
  text-align: center;
}
.footer__cta-txt .green-txt {
  font-size: 2.6rem;
  display: block;
  text-align: center;
}

.footer__cta-btn-bl {
  width: 480px;
  max-width: 100%;
  gap: 6%;
  display: flex;
  margin: 0 auto;
  justify-content: center;
}
.footer__cta-btn-bl a {
  width: 47% !important;
}

.footer__map {
  width: 100%;
  height: 254px;
  border-radius: 40px;
  overflow: hidden;
  margin-top: 30px;
}

.footer__bnr-list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2%;
}

.footer__menu-nav {
  margin-top: 60px;
  border-top: 1px solid rgba(44, 61, 61, 0.3);
  padding-top: 60px;
}

.footer__menu-list {
  display: flex;
  justify-content: center;
}
.footer__menu-list li a {
  display: block;
  padding: 0 30px;
  font-size: 1.8rem;
  border-right: 1px solid #C7C7C7;
}
.footer__menu-list li:last-child a {
  border-right: none;
}

.footer__bottom-cta-bl {
  width: 480px;
  max-width: 100%;
  gap: 6%;
  display: flex;
  margin: 0 auto;
  padding: 60px 0;
  justify-content: center;
}
.footer__bottom-cta-bl a {
  width: 47% !important;
  text-align: center !important;
  padding-right: 30px;
}

.footer__copy {
  text-align: center;
  color: rgba(44, 61, 61, 0.3);
  font-size: 1.4rem;
}

.footer__access-bl {
  position: absolute;
  left: 0;
  bottom: 0;
}

.footer__access-bl {
  display: flex;
  align-items: center;
  gap: 12px;
}

.access-ttl {
  background-color: var(--green);
  color: #fff;
  font-size: 1.4rem;
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
}

.access-txt {
  font-size: 1.8rem;
  font-weight: 500;
}

@media screen and (max-width: 1200px) {
  .footer__menu-list li a {
    padding: 0 25px;
    font-size: 1.6rem;
  }
  .footer__logo {
    width: 330px;
    margin: 0;
  }
  .footer__address {
    text-align: left;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__flex {
    grid-template-columns: 1fr;
  }
  .footer__access-bl {
    bottom: auto;
    top: 150px;
  }
  .footer__address {
    margin-bottom: 80px;
  }
  .footer__menu-list {
    flex-wrap: wrap;
    gap: 0 4%;
    justify-content: flex-start;
  }
  .footer__menu-list li {
    width: 48%;
  }
  .footer__menu-list li a {
    width: 100%;
    display: block;
    text-align: center;
    border: none;
    border-bottom: 1px solid #C7C7C7;
    padding: 10px;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  footer {
    border-radius: 60px 60px 0 0;
    padding: 60px 0 100px;
  }
  .footer__logo {
    width: 240px;
    margin: 0 auto;
  }
  .footer__address {
    text-align: center;
  }
  .footer__flex {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .time-table-caution {
    font-size: 1rem;
  }
  .footer__cta-bl {
    border-radius: 10px;
    padding: 30px 5%;
    margin-top: 20px;
  }
  .footer__cta-txt .small {
    font-size: 1.5rem;
    letter-spacing: 0;
  }
  .footer__cta-txt .green-txt {
    font-size: 2.2rem;
  }
  .footer__cta-txt {
    margin-bottom: 15px;
  }
  .footer__cta-btn-bl {
    flex-direction: column;
    gap: 10px;
  }
  .footer__cta-btn-bl .base__btn {
    width: 280px !important;
    padding: 8px 8px 8px 17px;
  }
  .footer__map {
    border-radius: 10px;
    margin-top: 20px;
  }
  .footer__access-bl {
    bottom: -57px;
    top: auto;
  }
  .footer__address {
    margin-bottom: 30px;
  }
  .footer__bnr-list {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__menu-nav {
    margin-top: 80px;
    padding-top: 40px;
  }
  .footer__menu-list li {
    width: 100%;
  }
  .footer__menu-list {
    gap: 0;
  }
  .footer__menu-list li a {
    padding: 20px 10px;
    position: relative;
    font-size: 1.8rem;
    text-align: left;
  }
  .footer__menu-list li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translate(0, -50%);
    width: 7px;
    height: 11px;
    background-image: url(../img/arro-bk.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-in-out;
  }
  .footer__menu-list li a:hover::after {
    transform: translate(3px, -50%);
  }
  .footer__bottom-cta-bl {
    display: none;
  }
  .footer__menu-nav {
    margin-bottom: 40px;
  }
  footer {
    background-image: url(../img/footer-bg-sp.webp);
    background-size: 100%;
    background-position: top 0 right;
  }
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 230px;
  aspect-ratio: 460/622;
  background-image: url(../img/mv-bg01.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
  display: block;
}

main {
  overflow: hidden;
}

#top-mv {
  width: 1340px;
  margin: 130px auto 0;
  display: flex;
  gap: 50px;
  align-items: center;
  position: relative;
}
#top-mv::after {
  content: "";
  position: absolute;
  bottom: -230px;
  left: 50%;
  transform: translateX(-55%);
  width: 684px;
  aspect-ratio: 1368/1216;
  background-image: url(../img/mv-bg02.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
  display: block;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.top-mv__img {
  width: 750px;
  opacity: 0;
  animation: fadeIn 1s 0.5s ease-in-out forwards;
}

.top-mv__cont-bl {
  width: calc(100% - 800px);
  opacity: 0;
  animation: fadeIn 1s 0.5s ease-in-out forwards;
}

.top-mv__ttl {
  font-size: 3.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.top-mv__list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}
.top-mv__list li {
  background-image: url(../img/mv-point-circle.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.83rem;
  flex-direction: column;
  text-align: center;
  line-height: 1.6;
}
.top-mv__list li .blue-txt {
  color: #83F3FF;
  font-size: 2.3rem;
}

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

#top-intr {
  padding: 100px 0;
  position: relative;
}
#top-intr::before {
  content: "";
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  width: 1284px;
  aspect-ratio: 1294/539;
  background-image: url(../img/intr-bg.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.w960 {
  width: 960px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

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

.top-intr__item {
  background-color: #fff;
  border-radius: 10px;
  padding: 5px;
}
.top-intr__item:first-of-type {
  position: relative;
}
.top-intr__item:first-of-type::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(50%, 50%);
  width: 95px;
  aspect-ratio: 95/124;
  background-image: url(../img/deco01.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.top-intr__item-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  border: 1px dashed var(--green);
  padding: 30px 5%;
}

.top-intr__ttl {
  text-align: center;
  color: var(--green);
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.time-table {
  width: 100%;
  border-collapse: collapse;
}
.time-table th {
  width: calc((100% - 110px) / 7);
  font-size: 1.4rem;
  padding: 8px 0;
}
.time-table .left-cell {
  width: 110px !important;
  text-align: left;
  font-size: 1.4rem;
}
.time-table tbody th, .time-table tbody td {
  border-top: 1px solid var(--green);
  padding: 15px 0;
  text-align: center;
  font-size: 1.4rem;
}
.time-table tbody .left-cell {
  font-family: var(--quick);
}
.time-table tbody .circle-border, .time-table tbody .circle {
  color: var(--green);
}

.time-table-caution {
  font-size: 1.2rem;
  color: #1e1e1e;
}

.top-news__list {
  border-top: 1px solid #9DB6B6;
}
.top-news__list li a {
  display: flex;
  border-bottom: 1px solid #9DB6B6;
  width: 100%;
  padding: 8px;
  position: relative;
  align-items: center;
}
.top-news__list li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: block;
}
.top-news__list li a:hover::after {
  transform: translate(3px, -50%);
}
.top-news__list li a .time-bl {
  width: 50px;
  display: block;
  font-size: 1.4rem;
  color: var(--green);
}
.top-news__list li a .time-bl .year, .top-news__list li a .time-bl .month-date {
  display: block;
}
.top-news__list li a .txt {
  width: calc(100% - 50px);
  font-size: 1.4rem;
  display: block;
  padding-right: 20px;
}

#top-about {
  padding: 100px 0 30vw;
  position: relative;
}
#top-about::before {
  content: "";
  position: absolute;
  top: 200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1233px;
  aspect-ratio: 1233/684;
  background-image: url(../img/about-bg.webp);
  background-size: contain;
  background-position: center;
  z-index: -1;
  max-width: 93%;
}

.top-base__ttl-bl {
  margin-bottom: 60px;
}

.top-base__ttl-en {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: bold;
}

.top-base__ttl-ja {
  font-size: 3.2rem;
  font-weight: bold;
}

.top-about__cont {
  width: 440px;
  max-width: 90%;
  margin: 0 auto;
  transform: translateX(100px);
}
.top-about__cont .base__btn {
  border: 2px solid #fff;
}

.top-about__ttl-middle {
  font-weight: bold;
  color: var(--green);
  font-size: 2.5rem;
  margin-bottom: 25px;
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white, -2px 0px 0 white, 2px 0px 0 white, 0px -2px 0 white, 0px 2px 0 white;
}

.top-about__txt {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white, -2px 0px 0 white, 2px 0px 0 white, 0px -2px 0 white, 0px 2px 0 white;
}

.base__btn {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 65px 8px 25px;
  position: relative;
  font-size: 1.6rem;
  color: #fff;
  background-color: var(--green);
  border-radius: 50px;
  display: block;
}
.base__btn::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: block;
}
.base__btn.base__btn-blue {
  background-color: var(--blue);
}
.base__btn.base__btn-blue::after {
  background-image: url(../img/arrow-blue.webp);
}

.top-about__btn-flex {
  display: flex;
  justify-content: space-between;
}

.top-about__img01 {
  width: calc(50vw - 220px);
  left: 0;
  position: absolute;
  top: 250px;
}
.top-about__img01::after {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 170px;
  aspect-ratio: 340/346;
  background-image: url(../img/deco02.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.top-about__img02 {
  width: calc(50vw - 430px);
  right: 2%;
  position: absolute;
  top: 30px;
}

.top-about__img03 {
  width: 420px;
  left: 50%;
  position: absolute;
  bottom: 0;
  transform: translateX(-150px);
}

#top-feature {
  width: calc(50% + 640px);
  border-radius: 120px 120px 120px 0;
  background-color: var(--green);
  padding: 220px 70px 400px 0;
  margin-top: -120px;
  background-image: url(../img/feature-bg.webp);
  background-size: 100%;
  background-position: top 10px left 0;
  background-repeat: no-repeat;
  max-width: 97%;
}

.top-feature__inner {
  width: 1120px;
  max-width: 90%;
  margin: 0 0 0 auto;
}

.top-feature__ttl-bl {
  margin-bottom: 80px;
}
.top-feature__ttl-bl .small {
  font-size: 2rem;
  display: block;
  text-align: center;
}

.white-txt {
  color: #fff !important;
}

.top-base__ttl-en-center, .top-base__ttl-ja-center {
  text-align: center !important;
}

.top-feature__list {
  display: grid;
  gap: 3%;
  grid-template-columns: repeat(3, 1fr);
}
.top-feature__list li {
  background-color: #fff;
  border-radius: 24px;
  padding: 30px;
  position: relative;
}
.top-feature__list li .point-en {
  color: #fff;
  font-family: var(--quick);
  font-size: 3.2rem;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 50%;
  line-height: 1;
  transform: translate(-50%, -88%);
  white-space: nowrap;
}

#top-treatment {
  padding: 120px 0 120px 80px;
  border-radius: 120px 0 0 120px;
  background-color: #55C0D5;
  margin: -300px 0 0 auto;
  width: calc(50% + 640px);
  position: relative;
  background-size: 95%;
  background-position: top 10px right 0;
  background-image: url(../img/treatment-bg.webp);
  max-width: 97%;
}

.top-treatment__inner {
  width: 1120px;
  max-width: 90%;
  margin: 0 auto 0 0;
}

.top-treatment__main-bl {
  display: flex;
}
.top-treatment__main-bl .ttl-bl {
  width: 30%;
}
.top-treatment__main-bl .cont-bl {
  width: 70%;
}
.top-treatment__main-bl:first-of-type {
  padding-bottom: 60px;
  border-bottom: 1px solid #fff;
}
.top-treatment__main-bl:last-of-type {
  padding-top: 60px;
  border-bottom: none;
}

.top-treatment__ttl-middle {
  color: #fff;
  font-weight: bold;
  font-size: 2.5rem;
}

.top-treatment__list-big {
  display: grid;
  gap: 3%;
  grid-template-columns: repeat(3, 1fr);
}
.top-treatment__list-big li {
  aspect-ratio: 240/216;
  padding-left: 0 !important;
}
.top-treatment__list-big li::before {
  display: none;
}
.top-treatment__list-big li a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 20px;
  background-image: url(../img/treatment-big01.webp);
  background-size: contain;
  background-position: center;
  border-radius: 29px;
  font-weight: bold;
  color: #fff;
  font-size: 2.4rem;
  position: relative;
  border: 3px solid #fff;
}
.top-treatment__list-big li a::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 5px;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: block;
}
.top-treatment__list-big li:nth-of-type(2) a {
  background-image: url(../img/treatment-big02.webp);
}
.top-treatment__list-big li:nth-of-type(3) a {
  background-image: url(../img/treatment-big03.webp);
}

.top-treatment__list {
  display: grid;
  gap: 20px 3%;
  grid-template-columns: repeat(3, 1fr);
}
.top-treatment__list li {
  padding-left: 0 !important;
}
.top-treatment__list li::before {
  display: none;
}
.top-treatment__list li a {
  display: flex;
  padding: 12px 20px;
  width: 100%;
  background-color: #fff;
  position: relative;
  border-radius: 24px;
  align-items: center;
  line-height: 1.5;
  font-size: 1.6rem;
  color: var(--green);
  font-weight: bold;
}
.top-treatment__list li a::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: block;
}
.top-treatment__list li a:hover::after {
  transform: translate(3px, -50%);
}
.top-treatment__list li a .img {
  width: 41px;
  height: 49px;
}
.top-treatment__list li a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.top-treatment__list li a .txt {
  padding-left: 10px;
}

.top-feature__deco-en {
  color: rgba(255, 255, 255, 0.2);
  font-size: 12rem;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  right: 1%;
  line-height: 0.77;
  font-family: var(--quick);
}

#top-doctor {
  padding: 120px 0 500px;
  position: relative;
}
#top-doctor::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 650px;
  background-image: url(../img/doctor-bg.webp);
  background-size: cover;
  background-position: center;
  z-index: -1;
  border-radius: 120px;
}

.w1120 {
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
}

.top-doctor__bl {
  border-radius: 120px;
  background-color: #fff;
  padding: 8px;
  position: relative;
}
.top-doctor__bl::after {
  content: "";
  position: absolute;
  top: 120px;
  left: -60px;
  width: 119px;
  aspect-ratio: 119/156;
  background-image: url(../img/deco03.webp);
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}
.top-doctor__bl::before {
  content: "";
  position: absolute;
  bottom: 70px;
  right: -100px;
  width: 220px;
  aspect-ratio: 220/190;
  background-image: url(../img/deco04.webp);
  background-size: contain;
  background-position: center;
  z-index: 1;
  display: block;
}

.top-doctor__bl-inner {
  width: 100%;
  height: 100%;
  border-radius: 120px;
  border: 1px dashed var(--green);
  padding: 80px 8%;
}

.top-doctor__flex {
  display: flex;
}
.top-doctor__flex .img {
  width: 50%;
  padding-right: 4%;
  position: relative;
  position: relative;
}
.top-doctor__flex .cont {
  width: 50%;
}
.top-doctor__flex .cont p {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.top-doctor__img-txt {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #fff;
  padding: 15px 10px;
  width: 320px;
  border-radius: 0 12px 0 0;
}

.top-doctor__img-txt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.top-doctor__img-txt .add {
  display: block;
  width: 100%;
  font-size: 1.5rem;
}
.top-doctor__img-txt .name {
  font-size: 2.2rem;
  display: inline-block;
  padding-right: 8px;
}
.top-doctor__img-txt .furigana {
  font-size: 1.4rem;
  color: var(--green);
}

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

#top-column {
  padding: 120px 0;
}
#top-column .w1120 {
  position: relative;
}
#top-column .w1120 .base__btn {
  position: absolute;
  top: 0;
  right: 0;
}

.column__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 3%;
}
.column__list li a .img {
  margin-bottom: 15px;
  aspect-ratio: 3/2;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.column__list li a .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.column__list li a .txt {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.6;
}
.column__list li a p {
  margin-bottom: 0;
}

.column__list-options {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.column__list-options time {
  color: rgba(29, 159, 185, 0.4);
  font-size: 1.4rem;
  font-family: var(--quick);
}
.column__list-options .link-en {
  display: inline-block;
  padding-right: 35px;
  position: relative;
  font-size: 1.4rem;
  color: var(--green);
  font-weight: bold;
}
.column__list-options .link-en::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
  height: 24px;
  background-image: url(../img/arrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
  display: block;
}

.top-feature__list-ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: var(--green);
  margin: 15px 0 10px;
}

.em5 {
  display: inline-block;
  width: 3.2em;
  text-align: end;
}

.sp {
  display: none;
}

.top-info__bl {
  padding: 100px 0 0;
}

.top-info__txt-bl {
  padding: 5px;
  border-radius: 10px;
  background-color: #fff;
}

.red-txt {
  color: #ff3d3d;
}

.top-info__bnr {
  margin-top: 30px;
  display: block;
  width: 640px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.top-info__bnr img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1400px) {
  #top-mv {
    max-width: 90%;
    gap: 4%;
  }
  .top-mv__img {
    width: 55%;
  }
  .top-mv__cont-bl {
    width: 41%;
  }
  .top-mv__list li .blue-txt {
    font-size: 1.8rem;
  }
  .top-mv__list li {
    font-size: 1.6rem;
  }
  #top-intr::before {
    max-width: 90%;
  }
  .top-about__img01::after {
    top: -76px;
    width: 130px;
  }
  .top-doctor__cont-ttl {
    font-size: 1.9rem;
  }
  .top-doctor__bl::before {
    bottom: 46px;
    right: -58px;
    width: 171px;
  }
  .top-doctor__bl::after {
    left: -34px;
    width: 101px;
    top: 85px;
  }
}
@media screen and (max-width: 1200px) {
  .top-mv__ttl {
    font-size: 3.3vw;
  }
  .top-mv__list li .blue-txt {
    font-size: 1.5vw;
  }
  .top-mv__list li {
    font-size: 1.2vw;
  }
  .top-about__img01::after {
    top: -56px;
  }
  .top-about__cont {
    width: 420px;
    transform: translateX(45px);
  }
  .top-about__img02 {
    width: calc(50vw - 319px);
  }
  .top-about__img03 {
    transform: translateX(-204px);
  }
  .top-feature__list-ttl {
    font-size: 1.6vw;
  }
  .top-feature__list li {
    padding: 30px 8%;
  }
  .top-treatment__main-bl {
    flex-direction: column;
  }
  .top-treatment__main-bl .ttl-bl {
    width: 100%;
    padding-bottom: 25px;
  }
  .top-treatment__main-bl .cont-bl {
    width: 100%;
  }
  .top-doctor__cont-ttl {
    font-size: 1.6vw;
  }
  .column__list li a .txt {
    font-size: 1.6vw;
  }
  body::before {
    width: 150px;
  }
  #top-mv::after {
    bottom: -181px;
    width: 483px;
  }
  #top-intr {
    padding: 70px 0;
  }
  .top-doctor__bl::before {
    right: -20px;
    width: 145px;
  }
}
@media screen and (max-width: 1024px) {
  .top-intr__flex {
    gap: 20px;
    grid-template-columns: 1fr;
    width: 600px;
    max-width: 90%;
  }
  .top-about__img02 {
    width: calc(50vw - 289px);
  }
  #top-about {
    padding: 70px 0 330px;
  }
  .top-about__img01::after {
    width: 93px;
  }
  #top-doctor {
    padding: 120px 0 350px;
  }
  #top-doctor::before {
    height: 400px;
  }
  .top-feature__deco-en {
    font-size: 11vw;
  }
  .top-treatment__list li a .txt {
    font-size: 1.7vw;
  }
  .column__list-options time {
    font-size: 1.2rem;
  }
  .column__list-options .link-en {
    padding-right: 31px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__cont-bl {
    width: -moz-fit-content;
    width: fit-content;
  }
  #top-mv {
    gap: 30px;
    flex-direction: column;
  }
  .top-mv__ttl {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .top-mv__list {
    width: 340px;
    max-width: 90%;
    margin: 0 auto;
    gap: 5px;
  }
  .top-mv__list li .blue-txt {
    font-size: 1.5rem;
  }
  .top-mv__list li {
    font-size: 1.2rem;
  }
  .top-mv__img {
    width: 100%;
  }
  .time-table .left-cell {
    width: 90px !important;
    font-size: 1.3rem;
    letter-spacing: 0;
  }
  .time-table th {
    width: calc((100% - 90px) / 7);
    font-size: 1.3rem;
  }
  .time-table tbody th, .time-table tbody td {
    font-size: 1.3rem;
  }
  .top-intr__item-wrapper {
    padding: 15px 5%;
  }
  .top-intr__ttl {
    font-size: 2rem;
    margin-bottom: 5px;
  }
  .top-news__list li a .time-bl {
    font-size: 1.2rem;
  }
  .top-news__list li a .txt {
    font-size: 1.2rem;
    padding-right: 10px;
  }
  .top-intr__item:first-of-type::after {
    right: 16px;
    width: 51px;
  }
  #top-intr {
    padding: 50px 0 0;
  }
  .top-base__ttl-en {
    font-size: 1.2rem;
    text-align: center;
  }
  .top-base__ttl-ja {
    font-size: 2.6rem;
    line-height: 1.6;
    text-align: center;
  }
  .top-about__cont {
    width: 100%;
    transform: translateX(0);
    margin-top: 71vw;
  }
  #top-about::before {
    display: none;
  }
  .top-about__img01::after {
    display: none;
  }
  .top-about__img01 {
    width: 57%;
    top: 171px;
  }
  .top-about__img02 {
    width: 50%;
    right: 0;
    top: 238px;
  }
  .top-about__ttl-middle {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .top-about__txt {
    font-size: 1.5rem;
  }
  .base__btn {
    font-size: 1.4rem;
  }
  .top-about__btn-flex {
    width: -moz-fit-content;
    width: fit-content;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    flex-direction: column;
  }
  .top-about__img03 {
    transform: translateX(-50%);
    width: 340px;
    left: 50%;
  }
  #top-about {
    padding: 70px 0 270px;
  }
  #top-feature {
    padding: 180px 5% 120px;
    max-width: 100%;
    border-radius: 0;
  }
  .top-feature__inner {
    max-width: 100%;
    margin: 0;
  }
  .top-feature__list {
    gap: 55px;
    grid-template-columns: 1fr;
  }
  .top-feature__list li .point-en {
    font-size: 2.4rem;
  }
  .top-feature__list-ttl {
    font-size: 1.8rem;
  }
  .top-feature__list li .cont p {
    font-size: 1.4rem;
  }
  .top-feature__ttl-bl {
    margin-bottom: 60px;
  }
  .top-feature__list li {
    padding: 30px 7%;
  }
  #top-treatment {
    padding: 80px 0 90px 0;
    border-radius: 60px 0 0 60px;
    margin: -60px 0 0 auto;
    max-width: 100%;
  }
  .top-treatment__inner {
    max-width: 90%;
    margin: 0 auto;
  }
  .top-treatment__list-big {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .top-treatment__list-big li a {
    border: none;
    border-radius: 24px;
    background-image: url(../img/treatment-big01-sp.webp);
  }
  .top-treatment__list-big li:nth-of-type(2) a {
    background-image: url(../img/treatment-big02-sp.webp);
  }
  .top-treatment__list-big li:nth-of-type(3) a {
    background-image: url(../img/treatment-big03-sp.webp);
  }
  .top-treatment__list-big li {
    aspect-ratio: 480/344;
  }
  .top-treatment__list-big li {
    width: 70%;
  }
  .top-treatment__list-big li:nth-of-type(2) {
    margin: 0 0 0 auto;
  }
  .top-treatment__main-bl .top-base__ttl-en {
    text-align: left;
  }
  .top-treatment__main-bl .top-base__ttl-ja {
    text-align: left;
  }
  .top-treatment__main-bl:first-of-type {
    padding-bottom: 40px;
  }
  .top-treatment__main-bl:last-of-type {
    padding-top: 40px;
  }
  .top-treatment__ttl-middle {
    font-size: 2.2rem;
  }
  .top-treatment__list {
    gap: 5px;
    grid-template-columns: repeat(2, 1fr);
  }
  .top-treatment__list li a .img {
    width: 32px;
    height: 40px;
  }
  .top-treatment__list li a {
    padding: 8px 24px 8px 8px;
    border-radius: 12px;
  }
  .top-treatment__list li a .txt {
    font-size: 1.3rem;
    padding-left: 7px;
  }
  .top-treatment__list li a::after {
    right: 4px;
  }
  .top-feature__deco-en {
    font-size: 6rem;
    text-align: right;
    line-height: 0.9;
  }
  .top-doctor__bl::after {
    left: -10px;
    width: 96px;
    top: -43px;
  }
  #top-doctor {
    padding: 60px 0 270px;
  }
  .top-doctor__bl {
    border-radius: 60px;
  }
  .top-doctor__bl-inner {
    border-radius: 60px;
    padding: 45px 8%;
  }
  .top-doctor__bl-inner .top-base__ttl-bl {
    margin-bottom: 35px;
  }
  .top-doctor__flex {
    flex-direction: column;
  }
  .top-doctor__flex .img {
    width: 100%;
    padding-right: 0;
  }
  .top-doctor__img-txt {
    width: 250px;
  }
  .top-doctor__img-txt .add {
    font-size: 1.2rem;
  }
  .top-doctor__img-txt .name {
    font-size: 1.6rem;
  }
  .top-doctor__img-txt .furigana {
    font-size: 1.1rem;
  }
  .top-doctor__flex .cont {
    width: 100%;
    padding-top: 30px;
  }
  .top-doctor__cont-ttl {
    font-size: 1.7rem;
  }
  .top-doctor__cont-ttl br {
    display: none;
  }
  .top-doctor__flex .cont p {
    font-size: 1.4rem;
  }
  #top-doctor {
    overflow: hidden;
  }
  .top-doctor__bl::before {
    right: -45px;
    width: 151px;
    bottom: -45px;
  }
  .base__btn {
    padding: 8px 45px 8px 17px;
    font-size: 1.4rem;
    width: 200px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
  #top-doctor::before {
    height: 320px;
    border-radius: 0;
  }
  #top-column {
    padding: 60px 0 160px;
  }
  #top-column .top-base__ttl-en {
    text-align: left;
  }
  #top-column .top-base__ttl-ja {
    text-align: left;
  }
  #top-column .top-base__ttl-bl {
    margin-bottom: 30px;
  }
  .column__list {
    grid-template-columns: 1fr;
  }
  .column__list li a .txt {
    font-size: 2rem;
  }
  .column__list-options time {
    font-size: 1.4rem;
  }
  .column__list-options .link-en {
    font-size: 1.4rem;
  }
  #top-column .w1120 .base__btn {
    top: auto;
    right: auto;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 225px;
  }
  #top-mv::after {
    bottom: auto;
    width: 100%;
    top: 156px;
    left: 35%;
    transform: translateX(0);
  }
  #top-feature {
    background-image: url(../img/feature-bg-sp.webp);
  }
  #top-treatment {
    background-size: 75%;
    background-position: top 0 left 0;
    background-image: url(../img/treatment-bg-sp01.webp);
  }
  .top-treatment__main-bl:first-of-type {
    position: relative;
    z-index: 2;
  }
  .top-treatment__main-bl:last-of-type {
    position: relative;
    z-index: 1;
  }
  .top-treatment__main-bl:last-of-type::before {
    content: "";
    position: absolute;
    top: -50px;
    left: auto;
    right: -20px;
    width: 60%;
    background-image: url(../img/treatment-bg-sp02.webp);
    background-size: cover;
    background-position: center;
    z-index: 0;
    aspect-ratio: 546/772;
    display: block;
  }
  #top-treatment {
    overflow: hidden;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  .top-info__bl {
    padding: 50px 0 0;
  }
}
@media screen and (max-width: 599px) {
  .top-about__cont {
    margin-top: 77vw;
  }
}
@media screen and (max-width: 499px) {
  .top-about__cont {
    margin-top: 81vw;
  }
}
@media screen and (max-width: 399px) {
  .top-about__cont {
    margin-top: 83vw;
  }
}
#under-mv {
  padding-top: 130px;
  padding-bottom: 100px;
}

.w1200 {
  width: 1200px;
  margin: 0 auto;
  max-width: 90%;
}

.under-mv__bl {
  position: relative;
  width: 100%;
  aspect-ratio: 1200/440;
  border-radius: 24px;
  border: 9px solid #fff;
  overflow: hidden;
}
.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;
  white-space: nowrap;
  font-size: 3.8rem;
  font-weight: bold;
  left: 8%;
  top: 50%;
  transform: translateY(-50%);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 0;
}
.breadcrumb li {
  position: relative;
  font-size: 1.2rem;
}
.breadcrumb li::after {
  content: "";
  position: absolute;
  right: -11px;
  color: #C7C7C7;
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  transform: translate(0, 10px) rotate(-45deg);
}
.breadcrumb li:last-child::after {
  display: none;
}

#under-cont {
  padding-bottom: 120px;
}
#under-cont p {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
#under-cont p:last-child {
  margin-bottom: 0;
}
#under-cont ul {
  margin-bottom: 30px;
}
#under-cont ul li {
  position: relative;
  padding-left: 1.2em;
  font-size: 1.8rem;
}
#under-cont ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
}
#under-cont ul.top-news__list li {
  padding-left: 0;
}
#under-cont ul.top-news__list li::before {
  display: none;
}
#under-cont ul.top-news__list li a {
  padding: 20px 0;
  font-size: 1.6rem;
  align-items: center;
}
#under-cont ul.column__list {
  grid-template-columns: repeat(2, 1fr);
}
#under-cont ul.column__list li {
  padding-left: 0;
}
#under-cont ul.column__list li::before {
  display: none;
}

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

.base__btn-center {
  margin-left: auto !important;
  margin-right: auto !important;
}

.base__under-bl {
  margin-bottom: 100px;
}
.base__under-bl:last-child {
  margin-bottom: 0;
}

.base__under-ttl {
  position: relative;
  background-color: #fff;
  border-radius: 30px;
  margin-bottom: 30px;
  padding-bottom: 3px;
}
.base__under-ttl::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #CCE1E6;
  display: block;
  border: 4px solid #fff;
}
.base__under-ttl .txt {
  font-size: 3.2rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  padding-left: 25px;
  color: var(--green);
  line-height: 1.7;
  display: block;
  padding-right: 20px;
}

.base__under-flex {
  display: flex;
  gap: 4%;
  margin-bottom: 50px;
}
.base__under-flex .left-bl {
  width: 61%;
}
.base__under-flex .right-bl {
  width: 35%;
}
.base__under-flex .right-bl img {
  border-radius: 24px;
}

.base__under-ttl-middle {
  position: relative;
  margin-bottom: 10px;
}
.base__under-ttl-middle::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 10px;
  background-color: var(--green);
  display: block;
}
.base__under-ttl-middle .txt {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 17px;
  color: var(--green);
  font-size: 2.6rem;
  font-weight: bold;
  margin: 0 auto;
  display: block;
  background-color: #E4EDED;
  position: relative;
  z-index: 2;
  max-width: 90%;
}

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

.base__dl {
  display: grid;
  grid-template-columns: 90px 1fr;
  font-size: 1.6rem;
  margin-bottom: 50px;
}
.base__dl dt {
  padding: 15px 0;
  border-bottom: 1px solid #C7C7C7;
  color: var(--green);
}
.base__dl dd {
  padding: 15px 0;
  border-bottom: 1px solid #C7C7C7;
}

.base__img-center {
  width: 500px;
  max-width: 90%;
  margin: 0 auto 30px;
}
.base__img-center img {
  width: 100%;
  border-radius: 24px;
}

.price__table {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  font-size: 1.6rem;
  margin-bottom: 50px;
}
.price__table dt {
  width: 50%;
  padding: 15px;
  border-bottom: 1px solid var(--green);
  background-color: #CCE1E6;
}
.price__table dt:last-of-type {
  border-bottom: none;
}
.price__table dd {
  width: 50%;
  padding: 15px;
  border-bottom: 1px solid var(--green);
}
.price__table dd:last-of-type {
  border-bottom: none;
}

.base__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.6rem;
  margin-bottom: 50px;
}
.base__table th, .base__table td {
  padding: 15px;
  border: 1px solid #C7C7C7;
  width: 50%;
}
.base__table th {
  background-color: #CCE1E6;
  color: var(--green);
  text-align: center;
}

.google-map-bl {
  width: 100%;
  aspect-ratio: 3/2;
}
.google-map-bl iframe {
  width: 100%;
  height: 100%;
  border: none;
}

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

.caution-txt {
  margin-bottom: 0 !important;
  font-size: 1.4rem !important;
}

.w500 {
  width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.w800 {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.mw100p {
  max-width: 100%;
}

.price-page-sec td {
  text-align: right;
}

.br30 {
  border-radius: 30px;
}

#under-cont ul.top-news__list li a .txt {
  padding-right: 30px;
}

.column3__table {
  border-collapse: collapse;
  border: 1px solid #C7C7C7;
  border-bottom: none;
  font-size: 1.5rem;
  width: 100%;
  line-height: 1.6;
}
.column3__table th {
  padding: 10px;
  text-align: center;
  background-color: #CCE1E6;
  color: var(--green);
  width: 33.333%;
  border-right: 1px solid #C7C7C7;
  border-bottom: 1px solid #C7C7C7;
}
.column3__table td {
  padding: 10px;
  border-right: 1px solid #C7C7C7;
  text-align: center;
  border-bottom: 1px solid #C7C7C7;
  width: 33.333%;
}
.column3__table tr *:last-child {
  border-right: none;
}

@media screen and (max-width: 1200px) {
  #under-mv {
    padding-top: 115px;
    padding-bottom: 70px;
  }
  #under-cont p {
    font-size: 1.6rem;
  }
  .base__under-bl {
    margin-bottom: 70px;
  }
  .base__under-ttl .txt {
    font-size: 2.8rem;
  }
  .base__under-ttl::before {
    width: 65px;
    height: 65px;
  }
  .under-mv__ttl {
    font-size: 3rem;
  }
  #under-cont ul li {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .under-mv__ttl {
    font-size: 2.8rem;
  }
  .under-mv__bl {
    aspect-ratio: 3/2;
    border: 5px solid #fff;
  }
  #under-mv {
    padding-bottom: 40px;
  }
  .base__under-bl {
    margin-bottom: 50px;
  }
  .base__under-ttl .txt {
    font-size: 2.5rem;
  }
  .base__under-ttl::before {
    width: 61px;
    height: 61px;
  }
  .base__under-flex .right-bl {
    width: 250px;
    max-width: 90%;
    margin: 0 auto;
  }
  .base__under-flex .left-bl {
    width: 100%;
  }
  .base__under-flex {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .base__under-ttl-middle .txt {
    padding: 5px 12px;
    font-size: 2.2rem;
  }
  .base__under-ttl-middle::before {
    height: 2px;
  }
  #under-cont {
    padding-bottom: 60px;
  }
  .base__table th, .base__table td {
    padding: 10px;
    width: 100%;
    display: block;
  }
  .base__table {
    font-size: 1.4rem;
  }
  #under-cont ul.column__list {
    grid-template-columns: 1fr;
  }
  #under-cont .top-news__list li a .time-bl {
    font-size: 1.2rem;
  }
  #under-cont ul.top-news__list li a .txt {
    font-size: 1.4rem;
    display: flex;
    align-items: center;
  }
  #under-cont ul.top-news__list li a {
    padding: 10px 0;
  }
  .column3__table {
    font-size: 1.4rem;
  }
  .column3__table th {
    padding: 7px 5px;
  }
  .column3__table td {
    padding: 7px 5px;
  }
}
.w1040 {
  max-width: 1040px;
  margin: 0 auto;
  max-width: 90%;
}

.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(--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(--green);
}

.info__cont h3 {
  border-bottom: 1px solid #ccc;
  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(--green);
}

.info__cont h4 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  color: var(--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 var(--green);
  position: relative;
  padding-bottom: 7px;
  font-size: 1.6rem;
  text-align: center;
  color: var(--green);
  font-weight: bold;
}

/* ページネーション */
.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: var(--green);
  color: #fff;
  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 */