@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Zen+Kaku+Gothic+New&family=Zen+Old+Mincho&display=swap");
:root {
  --mi:"Zen Old Mincho", serif;
  --go:"Zen Kaku Gothic New", sans-serif;
  --co:"Cormorant Garamond", serif;
  --orange:#EE7800;
  --black:#332E28;
  --green:#4CC764;
  font-size: 10px;
  font-family: var(--mi);
  color: var(--black);
  line-height: 1.875;
  letter-spacing: 0.1em;
}

html {
  scroll-behavior: smooth;
}

ol, ul {
  list-style: none;
}

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

p {
  font-size: 1.8rem;
}

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

@media screen and (max-width: 767px) {
  p {
    font-size: 1.6rem;
  }
}
header {
  width: 100%;
  height: 100px;
  position: relative;
  z-index: 100;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  gap: 20px;
}

.logo {
  width: 258px;
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 25px;
  align-items: center;
  justify-content: flex-end;
}
.header__nav-list li a {
  font-size: 1.5rem;
  font-weight: 500;
}

.header__contact-nav-list {
  display: flex;
  width: 566px;
  gap: 25px;
  transform: translateY(-8px);
}
.header__contact-nav-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.header__contact-nav-list li a .icon {
  display: block;
  width: 40px;
  height: 40px;
}
.header__contact-nav-list li a .txt {
  font-size: 2.2rem;
}
.header__contact-nav-list li a .float-txt {
  position: absolute;
  left: 50%;
  transform: translateX(-40%);
  font-size: 1.4rem;
  bottom: -1.5em;
  white-space: nowrap;
  top: auto;
}
.header__contact-nav-list li:last-child .float-txt {
  transform: translateX(-22%);
}

.side-fixed-bl {
  position: fixed;
  top: 50vh;
  transform: translateY(-50%);
  right: 0;
  left: auto;
  z-index: 99;
}

.side-fixed-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.side-fixed-list li a {
  background-color: var(--orange);
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  width: 44px;
  height: 203px;
  padding: 20px 15px;
  word-break: break-all;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  gap: 5px;
}
.side-fixed-list li a .icon {
  display: flex;
  width: 24px;
  height: 24px;
  line-height: 1;
  justify-content: center;
  align-items: center;
}
.side-fixed-list li a .txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.side-fixed-list li:last-child a {
  background-color: var(--green);
}

#sp-nav {
  display: none;
}

#ham {
  display: none;
}

@media screen and (max-height: 900px) {
  .side-fixed-list li a {
    font-size: 1.4rem;
    width: 40px;
    height: 170px;
  }
  .side-fixed-bl {
    top: 100px;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1249px) {
  .header__nav {
    display: none;
  }
  .header__contact-nav {
    display: none;
  }
  header {
    height: 60px;
  }
  .logo {
    width: 190px;
  }
  #ham {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 9px;
    right: 20px;
    z-index: 1000;
  }
  #ham .ham {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
  }
  #ham .ham .line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg);
    width: 36px;
    height: 1px;
    background-color: var(--orange);
    display: block;
  }
  #ham .ham .line:first-child {
    top: 20%;
  }
  #ham .ham .line:last-child {
    top: 80%;
  }
  #sp-nav {
    display: block;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: -101vh;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    overflow-y: scroll;
    transition: all 0.3s ease-in-out;
  }
  #sp-nav.active {
    top: 0;
  }
  #sp-nav::-webkit-scrollbar {
    display: none;
  }
  #sp-nav::-webkit-scrollbar-thumb {
    display: none;
  }
  #sp-nav::-webkit-scrollbar-track {
    display: none;
  }
  #sp-nav::-webkit-scrollbar-corner {
    display: none;
  }
  #close-btn {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
    display: block;
  }
  .close-btn__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
  }
  .close-btn__wrapper .line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 36px;
    height: 1px;
    background-color: var(--orange);
    display: block;
  }
  .close-btn__wrapper .line:last-child {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  .sp-nav__wrapper {
    padding: 100px 30px 120px;
    position: relative;
  }
  .sp-nav__list {
    margin-bottom: 20px;
  }
  .sp-nav__list > li {
    border-bottom: 1px solid #E9E9E9;
  }
  .sp-nav__list > li:last-child {
    border-bottom: none;
  }
  .sp-nav__list > li > a {
    font-size: 1.6rem;
    display: block;
    padding: 12px 0;
    position: relative;
    font-weight: 500;
  }
  .sp-nav__list > li > a::after {
    width: 26px;
    height: 10px;
    background-image: url(../img/common/arrow.svg);
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.3s ease-in-out;
  }
  .sp-nav__list > li > a:hover::after {
    right: 17px;
  }
  .sp-nav__treat-small-list {
    padding-bottom: 12px;
  }
  .sp-nav__treat-small-list li a {
    position: relative;
    color: rgba(51, 46, 40, 0.5803921569);
    font-size: 1.6rem;
    padding: 5px 0 5px 23px;
  }
  .sp-nav__treat-small-list li a::before {
    width: 7px;
    height: 7px;
    border-right: 1px solid rgba(51, 46, 40, 0.5803921569);
    border-bottom: 1px solid rgba(51, 46, 40, 0.5803921569);
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    display: block;
  }
  .side-fixed-list li a {
    font-size: 1.4rem;
    width: 40px;
    height: 170px;
    padding: 20px 15px;
  }
  .side-fixed-list li a .txt {
    display: none;
  }
  .side-fixed-list li a {
    width: 44px;
    height: 44px;
    padding: 0;
  }
  .side-fixed-list {
    gap: 7px;
  }
  .side-fixed-bl {
    top: 60px;
    transform: translateY(0);
  }
}
footer {
  background-color: var(--orange);
  padding: 30px 0 30px;
}

.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}
.footer__nav-list > li > a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  font-family: var(--go);
}

.w25p {
  width: 25%;
}

.w50p {
  width: 50%;
}

.w100p {
  width: 100%;
}

.footer__nav-list-small {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-top: 20px;
}
.footer__nav-list-small > li {
  padding-left: 15px;
  position: relative;
}
.footer__nav-list-small > li::before {
  width: 7px;
  height: 1px;
  background-color: #fff;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.footer__nav-list-small > li > a {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: var(--go);
  color: #fff;
}

.footer__copy {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  font-family: var(--go);
}

#footer-map {
  width: 100%;
  height: 400px;
}

#footer-access {
  padding: 120px 0 0;
}

.footer-access__flex {
  display: flex;
  gap: 3%;
}
.footer-access__flex .cont {
  width: 46%;
}
.footer-access__flex .map {
  width: 51%;
}
.footer-access__flex .map .map-bl {
  height: 250px;
  margin-bottom: 5px;
}

.footer-access__logo {
  width: 284px;
  margin-bottom: 30px;
}

.footer-access__access {
  font-size: 1.8rem;
  letter-spacing: -0.01em;
}

.top-access__map-link {
  position: relative;
  padding-left: 20px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
.top-access__map-link::before {
  width: 14px;
  height: 14px;
  background-image: url(../img/common/newtab.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}
.top-access__map-link .txt {
  font-size: 1.6rem;
  display: inline-block;
  border-bottom: 1px solid var(--black);
}

@media screen and (max-width: 767px) {
  #footer-access {
    padding: 60px 0 0;
  }
  .footer-access__flex.inner {
    width: 100%;
    max-width: 100%;
  }
  .footer-access__flex .cont {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
  }
  .footer-access__flex .map {
    width: 100%;
  }
  .footer-access__flex .map .map-bl {
    height: 160px;
  }
  .footer-access__access {
    font-size: 1.6rem;
  }
  .top-access__map-link {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
#top-mv {
  position: relative;
  height: 100vh;
}

.top-mv__img {
  width: 90%;
  margin: 0 auto;
  height: calc(100vh - 100px);
  background-image: url(../img/top/mv.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.top-mv__img::before {
  aspect-ratio: 1182/1457;
  display: block;
  content: "";
  height: calc(100% - 100px);
  background-image: url(../img/top/mv-bg01.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.top-mv__catch-bl {
  position: absolute;
  top: auto;
  bottom: 125px;
  left: 5%;
  width: 90%;
}

.top-mv__catch-big {
  font-size: 3.2rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 35px;
  padding-left: 5%;
}
.top-mv__catch-big .yellow-under {
  color: #E5FF00;
  display: inline-block;
  border-bottom: 1px solid #E5FF00;
  line-height: 1.2;
}

.top-mv__catch-middle {
  font-size: 2.4rem;
  color: #fff;
  position: absolute;
  font-size: 1.6vw;
  white-space: nowrap;
  text-align: center;
  color: var(--black);
  bottom: -170px;
  width: 100%;
}

.top-mv__list {
  display: flex;
  position: absolute;
  top: 150px;
  right: 8%;
  gap: 12px;
}
.top-mv__list li {
  background-color: var(--orange);
  border-radius: 50%;
  width: 168px;
  aspect-ratio: 1/1;
  font-size: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

.top-mv__time-table-bl {
  position: absolute;
  left: 8%;
  top: 150px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 440px;
}

.time-table {
  width: 100%;
  border-collapse: collapse;
}
.time-table thead th {
  font-weight: 500;
  font-size: 1.4rem;
  text-align: center;
  padding: 12px;
  border-bottom: 1px solid #E6E6E6;
  width: calc((100% - 150px) / 7);
}
.time-table thead th.left-cell {
  width: 150px;
  color: var(--black);
}
.time-table tbody td {
  font-size: 1rem;
  color: var(--orange);
  text-align: center;
  padding: 12px;
  width: calc((100% - 150px) / 7);
}
.time-table tbody td.left-cell {
  width: 150px;
  color: var(--black);
  font-size: 1.35rem;
}
.time-table tbody tr:first-of-type td {
  border-bottom: 1px solid #E6E6E6;
}
.time-table tbody tr:last-of-type td {
  border-bottom: 1px solid #E6E6E6;
}

.time-table-caution {
  font-size: 1.2rem;
  margin-top: 13px;
}

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

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

.top-news__flex {
  display: flex;
  align-items: center;
}

.top-news__left-bl {
  width: 35%;
  border-right: 1px solid rgba(51, 46, 40, 0.5725490196);
  padding: 50px 30px 50px 0;
}

.top-news__right-bl {
  width: 65%;
  padding: 50px 0 50px 50px;
}

.news__list li a {
  display: flex;
  align-items: center;
  padding: 8px 0;
}
.news__list li a time {
  color: var(--orange);
  width: 100px;
  font-size: 1.6rem;
}
.news__list li a p {
  width: calc(100% - 100px);
  font-size: 1.8rem;
}

.base__ttl-en {
  font-size: 2rem;
  color: var(--orange);
  line-height: 1.3;
  font-family: var(--co);
  font-weight: 500;
}

.base__ttl-ja {
  font-size: 3.6rem;
  font-weight: 400;
}

.base__btn {
  border: 1px solid rgba(51, 46, 40, 0.5176470588);
  width: 240px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  position: relative;
}
.base__btn::after {
  width: 16px;
  height: 5px;
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.3s;
  background-image: url(../img/common/arrow.svg);
  display: block;
}
.base__btn:hover::after {
  transform: translate(3px, -50%);
}

.top-about__bl {
  width: calc(50% + 540px);
  background-image: url(../img/top/top-about-bg.webp);
  background-size: cover;
  background-position: left 0 top 50%;
  max-width: 95%;
}

.top-about__cont-bl {
  padding: 120px 40px 120px 50px;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.txt-center {
  text-align: center;
}

.top-about__ttl-bl {
  margin-bottom: 40px;
}

.top-about__num-list li {
  display: flex;
  margin-bottom: 1.3em;
}
.top-about__num-list li .num {
  color: var(--orange);
  font-size: 3.6rem;
  display: block;
  width: 50px;
  line-height: 1.3;
}
.top-about__num-list li .txt {
  font-size: 2.4rem;
  display: block;
  width: calc(100% - 50px);
}

.cta-sec {
  padding: 120px 0;
  background: #EE7800;
  background: linear-gradient(70deg, rgba(238, 120, 0, 0.5) 0%, rgba(238, 120, 0, 0.79) 99%);
}

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

.cta__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cta__list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 103px;
  gap: 10px;
  background-color: #fff;
}
.cta__list li a .icon {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 1;
}
.cta__list li a .txt-bl {
  font-size: 2.2rem;
  font-weight: 500;
}
.cta__list li a .small-txt {
  font-size: 1.4rem;
}

#top-problem {
  padding: 120px 0 0;
}

.top-problem__ttl {
  text-align: center;
  font-weight: 400;
  font-size: 3.6rem;
  margin-bottom: 50px;
}

.top-problem__list-flex {
  display: flex;
  justify-content: space-between;
  background-image: url(../img/top/woman.webp);
  background-size: 830px;
  background-position: left 30% top 50%;
  padding: 18vw 0 21vw;
  margin-top: -9vw;
}

.base__check-list li {
  position: relative;
  padding-left: 40px;
  font-size: 2.4rem;
  padding-bottom: 13px;
}
.base__check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 35px;
  height: 35px;
  background-image: url(../img/common/icon-check.svg);
  background-size: contain;
  background-position: center;
  display: block;
}

.top-problem__solution-bl {
  background-image: url(../img/top/problem-bg.webp);
  background-size: cover;
  background-position: left 50% top 0;
  padding-top: 20vw;
  margin-top: -28vw;
  padding-bottom: 80px;
}

.top-problem__solution-txt {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 60px;
}

.top-problem__img-bl {
  width: 910px;
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
}

#top-reason {
  padding: 120px 0;
}

.top-reason__left-bl {
  width: calc(50% + 540px);
  max-width: 95%;
  display: flex;
  align-items: center;
  margin-top: 120px;
}
.top-reason__left-bl .img {
  width: calc(100% - 540px);
}
.top-reason__left-bl .cont {
  width: 540px;
  padding-left: 5%;
}

.top-reason__right-bl {
  flex-direction: row-reverse;
  max-width: 95%;
  width: calc(50% + 540px);
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 0;
  margin-top: 120px;
}
.top-reason__right-bl .img {
  width: calc(100% - 540px);
}
.top-reason__right-bl .cont {
  width: 540px;
  padding-right: 5%;
}

.top-reason__num {
  color: var(--orange);
  position: relative;
  padding-bottom: 30px;
  line-height: 1;
  vertical-align: bottom;
  margin-bottom: 30px;
  font-family: var(--co);
  font-weight: 500;
}
.top-reason__num::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 33px;
  height: 3px;
  background-image: url(../img/top/reason-dot.webp);
  background-size: contain;
  background-position: center;
  display: block;
  background-repeat: no-repeat;
  aspect-ratio: 33/3;
}
.top-reason__num .en {
  font-size: 1.6rem;
}
.top-reason__num .num {
  font-size: 3.6rem;
}

.top-reason__ttl {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.top-reason__txt {
  font-size: 1.8rem;
}

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

.top-doctor__flex {
  display: flex;
  gap: 4%;
  align-items: center;
}

.top-doctor__img {
  width: 48%;
}

.top-doctor__cont {
  padding-left: 5%;
  width: 48%;
}

.top-doctor__ttl-bl {
  margin-bottom: 30px;
}

.top-doctor__ttl {
  margin-bottom: 30px;
  font-size: 2.4rem;
}

.top-doctor__list {
  margin-bottom: 40px;
}
.top-doctor__list li {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

#top-menu {
  background-color: #FFFCF5;
  padding: 120px 0;
}

.top-menu__ttl-bl {
  margin-bottom: 100px;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 4%;
}
.menu-list li a {
  display: block;
}
.menu-list li a .img {
  margin-bottom: 10px;
}
.menu-list li a .ttl {
  font-size: 2rem;
  position: relative;
}
.menu-list li a .ttl::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  width: 32px;
  height: 12px;
  transition: all 0.3s ease-in-out;
  display: block;
  background-image: url(../img/common/arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.menu-list li a:hover .ttl::after {
  transform: translate(3px, -50%);
}

#top-check {
  padding: 120px 0 0;
}

.top-check__bl {
  width: calc(50% + 540px);
  background-image: url(../img/top/access-bg.webp);
  background-size: cover;
  background-position: right 0 top 50%;
  padding: 80px 0 80px 40px;
  margin-left: auto;
  max-width: 95%;
}

.top-check__cont {
  width: 600px;
}

.top-check__ttl-bl {
  margin-bottom: 30px;
}

.top-check__txt {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

#top-price {
  padding: 120px 0 0;
}

.top-price__bl {
  background-image: url(../img/top/price-bg.webp);
  background-size: cover;
  background-position: center center;
  padding: 60px 0;
}

.top-price__ttl-bl {
  margin-bottom: 30px;
}

.txt-white {
  color: #fff;
}

.top-price__txt {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
}

.base__btn-white {
  border: 1px solid #fff;
  color: #fff;
}
.base__btn-white::after {
  background-image: url(../img/common/arrow-w.svg);
}

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

.footer-access__flex {
  display: flex;
}

.footer-access__cont {
  width: 48%;
  padding-right: 3%;
}

.footer-access__map {
  width: 52%;
}

.footer-access__logo {
  width: 284px;
  margin-bottom: 30px;
}
.footer-access__logo img {
  width: 100%;
}

.footer-access__add {
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.map-bl {
  height: 250px;
  margin-bottom: 10px;
}

.footer-access__map-link {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  padding-left: 22px;
  position: relative;
}
.footer-access__map-link::before {
  width: 14px;
  height: 14px;
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  background-image: url(../img/common/newtab.svg);
  background-size: contain;
  background-position: center;
  display: block;
  background-repeat: no-repeat;
}
.footer-access__map-link a {
  font-size: 1.6rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #332e28;
  line-height: 1.5;
}

#footer-contact {
  padding: 60px 0;
}

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

.footer-contact__item, .header-contact__item {
  padding: 30px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.footer-contact__item-txt, .header-contact__item-txt {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.footer-contact__tel-link, .header-contact__tel-link {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.footer-contact__tel-link .icon, .header-contact__tel-link .icon {
  width: 32px;
  height: 32px;
  background-image: url(../img/common/icon-phone.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin-right: 10px;
}
.footer-contact__tel-link .txt, .header-contact__tel-link .txt {
  font-size: 3rem;
}

.footer-contact__reserv-ttl, .header-contact__reserv-ttl {
  text-align: center;
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}

.footer-contact__btn-list, .header-contact__btn-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.footer-contact__btn-list li, .header-contact__btn-list li {
  width: 182px;
  height: 56px;
}
.footer-contact__btn-list li a, .header-contact__btn-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background-color: var(--orange);
  color: #fff;
  font-size: 1.8rem;
  width: 100%;
}
.footer-contact__btn-list li a .icon, .header-contact__btn-list li a .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  padding: 7px;
  justify-content: center;
  align-items: center;
  margin-right: 7px;
}
.footer-contact__btn-list li:last-of-type a, .header-contact__btn-list li:last-of-type a {
  background-color: var(--green);
}

.top-mv__news {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 6%;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.8);
  bottom: 115px;
  padding: 10px 15px;
  border-radius: 5px;
}

@media screen and (max-height: 900px) {
  .top-mv__list li {
    width: 130px;
    font-size: 1.4rem;
  }
  .top-mv__list {
    top: 130px;
  }
  .top-mv__catch-big {
    font-size: 3vh;
    margin-bottom: 15px;
  }
  .top-mv__catch-middle {
    font-size: 1.8rem;
  }
  .time-table thead th {
    padding: 8px;
  }
  .time-table tbody td {
    padding: 9px;
  }
  .top-mv__time-table-bl {
    left: 6%;
    top: 120px;
  }
  .time-table tbody td {
    padding: 8px;
  }
  .time-table thead th {
    padding: 8px;
  }
  .top-mv__img {
    height: 100vh;
  }
  .top-mv__catch-bl {
    bottom: 25px;
  }
  #top-news {
    padding-top: 220px;
  }
}
@media screen and (max-width: 1600px) {
  .top-mv__catch-big {
    font-size: 2vw;
  }
  .top-mv__catch-middle {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 1249px) {
  .top-mv__list li {
    width: 130px;
    font-size: 1.4rem;
  }
  .top-mv__list {
    top: 90px;
  }
  .top-mv__catch-big {
    font-size: 2.6vw;
    margin-bottom: 15px;
  }
  .top-mv__catch-middle {
    font-size: 1.8vw;
  }
  .time-table thead th {
    padding: 8px;
  }
  .time-table tbody td {
    padding: 9px;
  }
  .base__btn {
    width: 200px;
    height: 60px;
  }
  .news__list li a {
    align-items: flex-start;
    flex-direction: column;
  }
  .news__list li a p {
    width: 100%;
    font-size: 1.6rem;
  }
  .top-news__right-bl {
    padding: 50px 0 50px 5%;
  }
  .top-about__bl {
    background-position: left 30% top 50%;
  }
  .top-about__num-list li .txt {
    font-size: 1.8rem;
    width: calc(100% - 30px);
  }
  .top-about__num-list li .num {
    font-size: 2.6rem;
    width: 30px;
  }
  .base__ttl-ja {
    font-size: 3rem;
  }
  .top-problem__ttl {
    font-size: 3rem;
  }
  .base__check-list li {
    font-size: 2rem;
  }
  .top-problem__list-flex {
    max-width: 85%;
    background-size: 65vw;
    background-position: left 0% top 50%;
  }
  .top-problem__solution-txt {
    font-size: 2.1rem;
  }
  .top-reason__left-bl {
    margin-top: 70px;
    max-width: 92%;
  }
  .top-reason__right-bl {
    margin-top: 70px;
  }
  .top-reason__left-bl .img, .top-reason__right-bl .img {
    width: 50%;
  }
  .top-reason__left-bl .cont, .top-reason__right-bl .cont {
    width: 50%;
  }
  .menu-list li a .ttl {
    font-size: 1.6rem;
  }
  .menu-list {
    gap: 40px 3%;
  }
  .menu-list li a .ttl::after {
    width: 23px;
    height: 7px;
  }
  .top-check__txt {
    font-size: 1.6rem;
  }
  .top-price__txt {
    font-size: 1.6rem;
  }
  .footer-access__logo {
    width: 240px;
    margin-bottom: 20px;
  }
  .footer-contact__flex {
    flex-direction: column-reverse;
    gap: 20px 4%;
    display: flex;
  }
  .top-mv__img::before {
    height: calc(100% - 60px);
  }
  .top-mv__time-table-bl {
    left: 8%;
    top: 80px;
  }
  .top-mv__list {
    right: 6%;
  }
  .top-mv__news {
    bottom: 12px;
  }
}
@media screen and (max-width: 999px) {
  .top-problem__list-flex {
    background-size: 87%;
    background-position: left -36% top 50%;
    padding: 15vw 0 18vw;
  }
  .top-problem__solution-bl {
    padding-top: 24vw;
  }
}
@media screen and (max-width: 767px) {
  #top-mv {
    height: auto;
  }
  .top-mv__img {
    width: 100%;
    height: calc(100vw + 60px);
  }
  .top-mv__img::before {
    background-image: url(../img/top/mv-bg01-sp.webp);
    aspect-ratio: 544/698;
  }
  .top-mv__catch-bl {
    top: 0;
    position: relative;
    left: 5%;
  }
  .top-mv__catch-big {
    font-size: 0;
    margin-bottom: 0;
    position: absolute;
    top: -235px;
    left: 50%;
    transform: translate(-50%, 0);
    white-space: nowrap;
    text-align: center;
    line-height: 1.6;
  }
  .top-mv__catch-big .yellow-under {
    border: none;
  }
  .top-mv__catch-middle {
    color: var(--black);
  }
  .top-mv__list {
    top: 0;
    position: relative;
    right: auto;
    padding-top: 0;
  }
  .top-mv__time-table-bl {
    position: relative;
    left: auto;
    bottom: 0;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 440px;
    max-width: 100%;
    margin: 20px auto;
  }
  .top-mv__catch-middle {
    font-size: 1.8rem;
    width: 100%;
    margin: 20px auto;
    text-align: center;
    bottom: -185px;
  }
  .top-mv__list {
    top: 190px;
    position: relative;
    right: auto;
    justify-content: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-mv__list li {
    line-height: 1.5;
  }
  .top-mv__time-table-bl {
    padding: 15px;
    top: 200px;
  }
  #top-news {
    padding-top: 240px;
  }
  .time-table tbody td.left-cell {
    letter-spacing: 0.02em;
  }
  .time-table tbody td {
    font-size: 0.9rem;
  }
  .dp-sec {
    padding: 60px 0;
  }
  .top-news__flex {
    flex-direction: column;
    position: relative;
  }
  .top-news__flex .base__btn {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  .base__btn {
    height: 55px;
    font-size: 1.4rem;
  }
  .top-news__left-bl {
    width: 100%;
    border-right: none;
    padding: 0;
  }
  .top-news__left-bl .base__ttl-en {
    text-align: center;
  }
  .top-news__left-bl .base__ttl-ja {
    text-align: center;
  }
  .top-news__right-bl {
    padding: 0;
    width: 100%;
  }
  .top-about__bl {
    background-image: url(../img/top/about-sp.webp);
    background-size: 100%;
    background-position: top 0 left 50%;
    max-width: 100%;
  }
  .top-about__cont-bl {
    padding: 20vw 5% 60px;
    width: 100%;
  }
  .top-about__ttl-bl {
    margin-bottom: 30px;
  }
  .cta__list {
    grid-template-columns: 1fr;
    gap: 15px;
    width: 300px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .cta-sec {
    padding: 40px 0;
    background: #EE7800;
    background: linear-gradient(70deg, rgba(238, 120, 0, 0.29) 0%, rgba(238, 120, 0, 0.79) 99%);
  }
  .top-problem__ttl {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
  #top-problem {
    padding: 60px 0 0;
  }
  .top-problem__ttl::after {
    width: 90%;
    display: block;
    aspect-ratio: 335/176;
    content: "";
    background-image: url(../img/top/woman-sp.webp);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin-top: 30px;
  }
  .top-problem__list-flex {
    padding: 30px 0 15vw;
    background-image: initial;
    flex-direction: column;
  }
  .base__check-list li::before {
    width: 29px;
    height: 29px;
  }
  .base__check-list li {
    padding-bottom: 7px;
  }
  .top-problem__solution-bl {
    background-image: url(../img/top/wa-sp.webp);
    padding-top: 33vw;
    margin-top: -20vw;
    padding-bottom: 60px;
  }
  .top-problem__solution-txt {
    margin-bottom: 40px;
  }
  #top-reason {
    padding: 60px 0;
  }
  .top-reason__left-bl {
    margin-top: 30px;
    max-width: 90%;
    flex-direction: column;
    margin-left: 5%;
  }
  .top-reason__left-bl .img, .top-reason__right-bl .img {
    width: 100%;
  }
  .top-reason__left-bl .cont, .top-reason__right-bl .cont {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    padding-top: 20px;
  }
  .top-reason__num {
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
  .top-reason__num::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .top-reason__ttl {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
  }
  .top-reason__txt {
    font-size: 1.6rem;
  }
  #top-reason .base__btn {
    margin-left: auto;
    margin-right: auto;
  }
  .top-reason__right-bl {
    margin-top: 60px;
    flex-direction: column;
    max-width: 90%;
    margin-right: 5%;
  }
  .top-doctor__flex {
    flex-direction: column;
    position: relative;
    padding-top: 100px;
  }
  .top-doctor__ttl-bl {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .top-doctor__img {
    width: 227px;
    margin-bottom: 20px;
  }
  .top-doctor__cont {
    padding-left: 0;
    width: 100%;
  }
  .top-doctor__cont .base__btn {
    margin-left: auto;
    margin-right: auto;
  }
  .top-doctor__ttl {
    margin-bottom: 20px;
    font-size: 2rem;
    text-align: center;
  }
  .top-doctor__list li {
    font-size: 1.6rem;
    margin-bottom: 3px;
  }
  .top-doctor__list {
    margin-bottom: 30px;
  }
  #top-doctor {
    padding: 60px 0;
  }
  #top-menu {
    padding: 60px 0;
  }
  .menu-list {
    gap: 30px 3%;
    grid-template-columns: repeat(2, 1fr);
  }
  .top-menu__ttl-bl {
    margin-bottom: 30px;
  }
  .top-check__bl {
    max-width: 100%;
    background-image: url(../img/top/check-sp.webp);
    background-size: 100%;
    background-position: top 0 left 50%;
    padding: 0 5% 60px;
  }
  .top-check__bl .base__btn {
    margin-left: auto;
    margin-right: auto;
  }
  #top-check {
    padding: 60px 0 0;
  }
  .top-check__cont {
    max-width: 100%;
  }
  #top-price {
    padding: 0;
  }
  #top-price .inner {
    width: 100%;
    max-width: 100%;
  }
  .footer-access__flex {
    flex-direction: column;
  }
  .footer-access__flex .base__btn {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-access__cont {
    width: 90%;
    padding-right: 0;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .footer-access__logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-access__map {
    width: 100%;
  }
  .footer-access__map-link {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-access__map-link a {
    font-size: 1.4rem;
  }
  #footer-contact {
    padding: 50px 0;
  }
  .footer-contact__flex {
    max-width: 100% !important;
  }
  .footer-contact__item, .header-contact__item {
    padding: 15px;
  }
  .footer-contact__item-txt, .header-contact__item-txt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .footer-contact__tel-link .txt, .header-contact__tel-link .txt {
    font-size: 2.5rem;
  }
  .footer-contact__tel-link .icon, .header-contact__tel-link .icon {
    width: 27px;
    height: 27px;
    margin-right: 8px;
  }
  .footer-contact__reserv-ttl, .header-contact__reserv-ttl {
    font-size: 2rem;
  }
  .footer-contact__btn-list li a, .header-contact__btn-list li a {
    font-size: 1.5rem;
  }
  .footer-contact__btn-list, .header-contact__btn-list {
    gap: 10px;
  }
  .footer-contact__tel-link, .header-contact__tel-link {
    margin: 0 auto 12px;
  }
  .w50p {
    width: 100%;
  }
  .w25p {
    width: 50%;
  }
  .sp-w25p {
    width: 25%;
  }
  .top-doctor__ttl-bl .base__ttl-en {
    text-align: center;
  }
  .top-doctor__ttl-bl .base__ttl-ja {
    text-align: center;
  }
  .top-problem__list-flex {
    margin-top: 0;
  }
  .top-mv__news {
    right: 3%;
    font-size: 1.2rem;
    border-radius: 3px;
    top: 238px;
    height: -moz-fit-content;
    height: fit-content;
    display: none;
  }
}
@media screen and (max-width: 390px) {
  .top-mv__list li {
    width: 130px;
    font-size: 3vw;
  }
  .top-mv__catch-middle {
    font-size: 4.6vw;
  }
}
.under-mv__bl {
  height: 375px;
  width: 100%;
  position: relative;
}
.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;
  top: calc(50% + 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  font-size: 4.8rem;
  font-weight: 500;
  line-height: 1.2;
  padding: 0 20px;
  z-index: 10;
  white-space: nowrap;
}

.breadcrumb {
  padding: 20px 0 0;
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  gap: 5px 26px;
  flex-wrap: wrap;
}
.breadcrumb li {
  position: relative;
  font-size: 1.4rem;
}
.breadcrumb li:not(:last-child)::after {
  content: ">";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.breadcrumb li a {
  font-size: 1.4rem;
}

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

.base__under-ttl {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}
.base__under-ttl::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 33px;
  height: 3px;
  background-image: url(../img/top/reason-dot.webp);
  bottom: -25px;
  background-size: contain;
}

.base__under-center-img {
  width: 500px;
  max-width: 90%;
  margin: 0 auto 40px;
}

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

.base__under-ttl-middle {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 500;
}

.orange-border-bl {
  display: grid;
  gap: 10px 1%;
  padding: 30px 20px;
  border: 1px solid var(--orange);
  grid-template-columns: repeat(2, 1fr);
}
.orange-border-bl.base__check-list li {
  font-size: 1.8rem;
  padding-left: 30px;
  padding-bottom: 0;
}
.orange-border-bl.base__check-list li::before {
  width: 26px;
  height: 26px;
}

.base__under-mb {
  margin-bottom: 100px;
}

.merit-list {
  background-color: #FFFCF5;
  padding: 30px 40px;
}
.merit-list li {
  padding-left: 26px;
  position: relative;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.merit-list li::before {
  width: 26px;
  height: 26px;
  content: "■";
  color: var(--orange);
  display: inline-block;
  position: absolute;
  font-size: 12px;
  left: 0;
  top: 5px;
}
.merit-list li.before-none {
  padding-left: 0;
}
.merit-list li.before-none::before {
  display: none;
}

.demerit-list {
  background-color: #F9F9F9;
  padding: 30px 40px;
}
.demerit-list li {
  padding-left: 26px;
  position: relative;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.demerit-list li::before {
  width: 26px;
  height: 26px;
  content: "■";
  color: #656565;
  display: inline-block;
  position: absolute;
  font-size: 12px;
  left: 0;
  top: 5px;
}
.demerit-list li.before-none {
  padding-left: 0;
}
.demerit-list li.before-none::before {
  display: none;
}

.flow__list {
  display: grid;
  gap: 60px;
}

.flow__ttl {
  display: block;
  position: relative;
  margin-bottom: 40px;
}
.flow__ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: 1px;
  background-color: var(--orange);
  display: block;
}
.flow__ttl .txt {
  color: var(--orange);
  white-space: nowrap;
  position: absolute;
  background-color: #fff;
  padding: 0 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  z-index: 10;
  font-weight: 500;
}

.merit-list li .bold, .demerit-list li .bold {
  transform: translateY(-2px);
}

.base__under-ttl-small {
  color: var(--orange);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.base__list li {
  margin-bottom: 20px;
}
.base__list li .bold {
  font-size: 1.8rem;
  font-weight: bold;
}

.bold {
  font-weight: bold;
}

.base__circle-list li {
  position: relative;
  padding-left: 1.3em;
  font-size: 1.8rem;
}
.base__circle-list li::before {
  content: "";
  top: 13px;
  left: 0;
  background-color: rgba(238, 120, 0, 0.5803921569);
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.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;
  border: 1px solid #e9e9e9;
  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: 1.2rem;
  font-family: var(--mar);
  line-height: 1.5;
}

.post-list__ttl {
  font-size: 1.6rem;
}

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

.nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px auto 0px;
  align-items: center;
}
.nav-links .page-numbers {
  font-size: 1.4rem;
  font-family: var(--mar);
}
.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;
}

.info__ttl {
  font-size: 3.6rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.info__cont {
  margin-top: 30px;
}
.info__cont img {
  margin-bottom: 20px;
}
.info__cont h2 {
  font-size: 2.8rem;
  border-bottom: 1px solid var(--orange);
  padding-bottom: 3px;
  margin-bottom: 20px;
}
.info__cont h3 {
  font-size: 2.2rem;
  color: var(--orange);
  margin-bottom: 8px;
}
.info__cont p {
  margin-bottom: 30px;
}
.info__cont .base__btn {
  margin: 60px auto 0;
}

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

@media screen and (max-width: 1249px) {
  .under-mv__ttl {
    top: calc(50% + 30px);
  }
  #under-intr {
    padding: 80px 0 0;
  }
  .base__under-mb {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 767px) {
  .under-mv__bl {
    height: 204px;
  }
  .under-mv__ttl {
    font-size: 3rem;
  }
  .breadcrumb {
    padding: 10px 0 0;
  }
  #under-intr {
    padding: 60px 0 0;
  }
  .base__under-ttl {
    font-size: 2.4rem;
    margin-bottom: 50px;
  }
  .base__under-ttl-middle {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .base__under-ttl::after {
    bottom: -20px;
  }
  .orange-border-bl {
    gap: 0;
    grid-template-columns: 1fr;
  }
  .orange-border-bl.base__check-list li {
    font-size: 1.6rem;
  }
  .base__under-mb {
    margin-bottom: 60px;
  }
  .merit-list {
    padding: 30px 5%;
    width: 110%;
    margin-left: -5%;
  }
  .merit-list li {
    padding-left: 21px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .demerit-list {
    padding: 30px 5%;
    width: 110%;
    margin-left: -5%;
  }
  .demerit-list li {
    padding-left: 21px;
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .flow__ttl .txt {
    font-size: 1.8rem;
  }
  .flow__ttl {
    margin-bottom: 30px;
  }
  .base__under-ttl-small {
    font-size: 1.7rem;
    margin-bottom: 10px;
  }
  .base__list li .bold {
    font-size: 1.6rem;
  }
  .base__circle-list li {
    font-size: 1.6rem;
    padding-left: 1.15em;
  }
  .base__circle-list li::before {
    width: 6px;
    height: 6px;
  }
  .info__flex {
    display: flex;
    flex-direction: column;
    gap: 60px;
  }
  .info__main-bl {
    width: 100%;
  }
  .info__sidebar {
    width: 100%;
  }
  .post-list__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }
  .info__ttl {
    font-size: 2.6rem;
  }
  .info__cont {
    margin-top: 20px;
  }
  .single__info-btn {
    margin: 40px auto 0;
  }
  .info__cont h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  .info__cont h3 {
    font-size: 1.9rem;
    margin-bottom: 5px;
  }
  .info__cont .base__btn {
    margin: 40px auto 0;
  }
}
.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;
  }
  .sp-w90p {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}/*# sourceMappingURL=style.css.map */