@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Shippori+Mincho&family=Zen+Kaku+Gothic+New&display=swap");
:root {
  --cor:"Cormorant Garamond", serif;
  --shippori:"Shippori Mincho", serif;
  --yugo:"游ゴシック体",YuGothic,"游ゴシック","Yu Gothic",sans-serif;
  --zen:"Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  --black:#062643;
  --orange:#EE7300;
  color: var(--black);
  font-family: var(--shippori);
  line-height: 1.875;
  letter-spacing: 0.2em;
}

h2, h3, h4, h5, h6 {
  font-weight: 400;
}

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

a {
  color: var(--black);
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

@media screen and (max-width: 1000px) {
  main {
    overflow: hidden;
  }
}
body {
  position: relative;
  padding-top: 112px;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  background-color: #fff;
  z-index: 50;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: block;
}

.logo {
  width: 313px;
  position: fixed;
  top: 30px;
  left: 30px;
  line-height: 1;
  z-index: 100;
}
.logo a {
  display: block;
}

header {
  display: flex;
  gap: 30px;
  position: fixed;
  align-items: center;
  justify-content: space-between;
  top: 0;
  right: 0;
  left: auto;
  z-index: 1000;
  height: 112px;
  padding-right: 30px;
}

.header__nav-hover {
  position: fixed;
  top: 112px;
  left: auto;
  right: 30px;
  background-color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.header__nav-hover.active {
  visibility: visible;
  opacity: 1;
}

.header__nav-hover-flex {
  display: flex;
}

.header__nav-hover-ttl {
  width: 300px;
  padding: 100px 0 0;
}

.header__nav-hover-ttl-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.header__nav-hover-ttl-link::after {
  width: 40px;
  height: 1px;
  background-image: url(../img/under.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}
.header__nav-hover-ttl-link .en {
  font-size: 32px;
  font-family: var(--cor);
  text-align: center;
  display: block;
  line-height: 1.4;
}
.header__nav-hover-ttl-link .ja {
  font-size: 16px;
  text-align: center;
  display: block;
}

.header__tel-link {
  font-size: 32px;
  font-family: var(--cor);
  font-weight: 400;
  position: relative;
  padding-left: 25px;
  display: block;
  line-height: 0.8;
  margin-bottom: 10px;
}
.header__tel-link::before {
  width: 16px;
  aspect-ratio: 1/1;
  background-image: url(../img/phone-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-20%);
  display: block;
}

.header__tel-caution {
  font-size: 10px;
  text-align: center;
}

.header__nav-hover-list {
  width: 284px;
  padding: 40px 0 0;
}
.header__nav-hover-list li {
  height: 52px;
  position: relative;
  padding: 10px 50px 10px 20px;
  transition: all 0.3s;
}
.header__nav-hover-list li a {
  font-size: 12px;
}
.header__nav-hover-list li.active {
  background-color: #F8F4EC;
}
.header__nav-hover-list li::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  width: 8px;
  aspect-ratio: 8/7;
  display: block;
  background-image: url(../img/darrow.webp);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.header__nav-hover-list li:hover {
  background-color: #F8F4EC;
}
.header__nav-hover-list li:hover::after {
  right: 22px;
}

.header__nav-hover-detail-bl {
  width: 580px;
  padding: 40px;
  background-color: #F8F4EC;
}

.header__nav-hover-detail-cont {
  display: none;
}
.header__nav-hover-detail-cont.active {
  display: block;
}

.header__nav-detail-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.header__nav-detail-list li a {
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 5px;
  background-color: #fff;
  transition: all 0.3s;
  font-size: 12px;
  letter-spacing: 1px;
}
.header__nav-detail-list li a:hover {
  background-color: #FFFBF4;
}

.header__nav-detail-ttl {
  margin: 30px 0 10px;
}

.header__nav-list {
  display: flex;
  gap: 25px;
}
.header__nav-list li {
  height: 112px;
  display: flex;
  align-items: center;
}
.header__nav-list li a {
  font-size: 14px;
}

/* ベース：ナビのli > aに適用（li直下a想定） */
.header__nav-list li > a {
  position: relative;
  display: inline-block; /* 下線の幅＝テキスト幅 */
  text-decoration: none; /* 既存の下線は消す */
  padding-bottom: 4px; /* 下線との間に余白 */
}

/* 中央から伸びる下線 */
.header__nav-list li > a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px; /* 下線の太さ */
  background: #208FD0; /* 文字色と合わせる */
  transform: translateX(-50%) scaleX(0);
  transform-origin: center; /* 中央基点で伸びる */
  transition: transform 0.35s cubic-bezier(0.19, 1, 0.22, 1); /* みょーん感 */
}

/* ホバー or フォーカス時に下線がニュッと出る */
.header__nav-list li > a:hover::after,
.header__nav-list li > a:focus-visible::after {
  transform: translateX(-50%) scaleX(1);
}

/* 現在ページ用（任意） */
.header__nav-list li.is-active > a::after {
  transform: translateX(-50%) scaleX(1);
}

/* アニメーション苦手な環境への配慮（任意） */
@media (prefers-reduced-motion: reduce) {
  .header__nav-list li > a::after {
    transition: none;
  }
}
#ham {
  display: none;
}

.sp-menu {
  display: none;
}

#header__nav01 {
  border-left: 6px solid #FBCA4F;
}

#header__nav02 {
  border-left: 6px solid #EE7300;
}

#header__nav03 {
  border-left: 6px solid #EE8191;
}

#header__nav04 {
  border-left: 6px solid #208FD0;
}

#header__nav05 {
  border-left: 6px solid #7FCE5B;
}

.header-menu__btn-sns {
  width: 24px !important;
}
.header-menu__btn-sns::after {
  display: none;
}

@media screen and (max-width: 1450px) {
  .logo {
    width: 230px;
    top: 37px;
    left: 25px;
  }
  .header__nav-list li a {
    font-size: 12px;
  }
  .header__nav-list {
    gap: 20px;
  }
  header {
    gap: 20px;
    padding-right: 25px;
  }
  .header__tel-link {
    font-size: 30px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 1200px) {
  header {
    display: none;
  }
  .header__nav-list {
    gap: 0;
    flex-direction: column;
  }
  .header__nav-list li {
    height: auto;
  }
  .logo {
    width: 157px;
    top: 15px;
    left: 15px;
  }
  body::before {
    height: 64px;
  }
  body {
    padding-top: 64px;
  }
  #ham {
    display: block;
    background-color: #208FD0;
    position: fixed;
    top: 0;
    right: 0;
    width: 64px;
    aspect-ratio: 1/1;
    z-index: 1000;
  }
  #ham .ham {
    position: relative;
    width: 100%;
    height: 100%;
    display: block;
  }
  #ham .ham .ham__line {
    position: absolute;
    left: 50%;
    width: 24px;
    height: 2px;
    background-color: #fff;
    display: block;
    transition: all 0.3s;
    transform: translateX(-50%);
  }
  #ham .ham .ham__line--top {
    top: 24px;
  }
  #ham .ham .ham__line--mid {
    top: 50%;
    transform: translate(-50%, -50%);
  }
  #ham .ham .ham__line--bottom {
    bottom: 24px;
  }
  #ham.active .ham .ham__line--top {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #ham.active .ham .ham__line--mid {
    opacity: 0;
  }
  #ham.active .ham .ham__line--bottom {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
  }
  .sp-menu {
    display: block;
    width: 100%;
    height: calc(100vh - 64px);
    position: fixed;
    top: 64px;
    right: -455px;
    padding: 40px 5%;
    background-color: #F8F4EC;
    overflow-y: auto;
    z-index: 900;
    width: 450px;
    max-width: 100%;
    transition: all 0.7s;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .sp-menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera*/
  }
  .sp-menu.active {
    right: 0;
  }
  .sp-menu__nav-list > li > a {
    display: block;
    position: relative;
    padding: 15px 25px 15px 0;
  }
  .sp-menu__nav-list > li > a::after {
    content: "";
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 40px;
    aspect-ratio: 40/2;
    background-image: url(../img/colorful-line.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    display: block;
  }
  .sp-menu__nav-list > li > a .en {
    font-family: var(--cor);
    display: block;
    font-size: 14px;
    line-height: 1;
  }
  .sp-menu__nav-list > li > a .ja {
    font-size: 12px;
    display: block;
  }
  .sp-menu__nav-list > li > a .arrow {
    width: 10px;
    height: 10px;
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    position: absolute;
    top: 32px;
    right: 10px;
    transform: rotate(-45deg);
    transition: all 0.3s;
  }
  .sp-menu__nav-list > li > a:hover .arrow {
    right: 7px;
  }
  .sp-menu__nav-list > li#sp-menu__click-btn-bl {
    position: relative;
  }
  .sp-menu__nav-list > li#sp-menu__click-btn-bl a {
    display: block;
    width: calc(100% - 50px);
    padding-right: 25px;
  }
  .sp-menu__nav-list > li#sp-menu__click-btn-bl #sp-menu__click-btn {
    display: block;
    width: 40px;
    aspect-ratio: 40/50;
    border-left: 1.5px solid var(--black);
    position: absolute;
    top: 13px;
    right: 0;
  }
  .sp-menu__nav-list > li#sp-menu__click-btn-bl #sp-menu__click-btn .plus {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .sp-menu__nav-list > li#sp-menu__click-btn-bl #sp-menu__click-btn .plus::before {
    width: 15px;
    height: 1.5px;
    background-color: var(--black);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
  }
  .sp-menu__nav-list > li#sp-menu__click-btn-bl #sp-menu__click-btn .plus::after {
    width: 15px;
    height: 1.5px;
    background-color: var(--black);
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    display: block;
    transition: all 0.3s;
  }
  .sp-menu__nav-list > li#sp-menu__click-btn-bl #sp-menu__click-btn.active .plus::after {
    opacity: 0;
  }
  .sp-menu__list-small01 {
    padding-left: 50px;
  }
  .sp-menu__list-small01 > li a {
    display: block;
    padding: 10px 0;
    position: relative;
    font-size: 14px;
    width: 100% !important;
    padding-right: 25px;
  }
  .sp-menu__list-small01 > li a::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    right: 10px;
    width: 10px;
    aspect-ratio: 1/1;
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    transform: rotate(-45deg);
    display: block;
    transition: all 0.3s;
  }
  .sp-menu__list-small01 > li a:hover::after {
    right: 7px;
  }
  .sp-menu__list-small02 {
    padding-left: 40px;
  }
  .sp-menu__btn {
    display: flex !important;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 10px;
    width: 295px;
    max-width: 100%;
    margin: 0 auto 10px;
  }
  .sp-menu__btn .icon {
    width: 16px;
    line-height: 1;
    display: block;
    padding-top: 5px;
  }
  .sp-menu__btn .icon img {
    width: 100%;
    height: 100%;
    display: block;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: center;
       object-position: center;
  }
  .sp-menu__btn .tel-txt {
    font-size: 32px;
    font-family: var(--cor);
    line-height: 1;
  }
  .sp-menu__btn .tel-note {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 10px;
  }
  .sp-menu__btn.sp-menu__btn-sns {
    line-height: 1;
    display: inline-block;
    text-align: center;
  }
  .sp-menu__btn.sp-menu__btn-sns small {
    font-size: 60%;
  }
  .mmt40 {
    margin-top: 40px !important;
  }
  .sp-menu__click-cont {
    display: none;
  }
  .sp-menu__click-cont.active {
    display: block;
  }
}
.footer__map {
  width: 100%;
  height: 360px;
}
.footer__map iframe {
  width: 100%;
  height: 100%;
}

.footer__bl {
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}

footer .under-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: var(--zen);
}

.footer__add {
  width: 45%;
}

.footer__time {
  width: 50%;
}

footer .inner {
  padding: 120px 0 80px;
}

.footer__logo {
  width: 418px;
  max-width: 100%;
  display: block;
}

.footer__contact {
  display: flex;
  justify-content: center;
  gap: 3%;
  align-items: center;
  border-bottom: 1px solid var(--black);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.footer__contact-ttl {
  font-size: 16px;
  padding-top: 20px;
}

.footer__contact-tel {
  display: flex;
  align-items: center;
  font-family: var(--cor);
  line-height: 1;
  gap: 10px;
  margin-top: 20px;
}
.footer__contact-tel .tel {
  font-size: 24px;
  display: inline-block;
  padding-top: 10px;
}
.footer__contact-tel .num {
  font-size: 42px;
  display: inline-block;
}

.footer__add-txt {
  padding: 20px 0 0;
  font-size: 14px;
}

.footer__time-caution {
  font-size: 14px;
  font-family: var(--yugo);
}
.footer__time-caution:first-of-type {
  margin-top: 20px;
}

.footer__copy {
  padding-bottom: 60px;
  text-align: center;
  font-size: 14px;
}

.fixed__bl {
  display: flex;
  gap: 12px;
  position: fixed;
  bottom: -120px;
  right: 30px;
  z-index: 50;
  transition: all 0.5s;
}
.fixed__bl.active {
  bottom: 30px;
}
.fixed__bl .fixed__link {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  padding: 13px 20px 13px 43px;
  background-color: #fff;
  position: relative;
  border-radius: 40px;
  border: 1px solid #EE7300;
  font-size: 14px;
  letter-spacing: 1px;
}
.fixed__bl .fixed__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-image: url(../img/access-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.fixed__bl .fixed__link.fixed__link-line {
  border: 1px solid #008BA2;
}
.fixed__bl .fixed__link.fixed__link-line::before {
  background-image: url(../img/line-icon.webp);
}
.fixed__bl .fixed__link.fixed__link-web {
  border: 1px solid #EE8191;
}
.fixed__bl .fixed__link.fixed__link-web::before {
  background-image: url(../img/web-icon.webp);
}

.footer__tel-bl {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  margin-top: 30px;
  margin-bottom: 20px;
}
.footer__tel-bl .ttl {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
  font-size: 16px;
}
.footer__tel-bl .nums {
  display: flex;
  gap: 5px;
  align-items: center;
  font-family: var(--cor);
}
.footer__tel-bl .nums .txt {
  font-size: 24px;
}
.footer__tel-bl .nums .num {
  font-size: 42px;
  transform: translateY(-5px);
}

.footer__cta {
  display: flex;
  gap: 3%;
  justify-content: center;
}

.footer__cta-link {
  width: 48.5%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  height: 48px;
  font-size: 14px;
  transition: all 0.3s;
}
.footer__cta-link:hover {
  opacity: 0.8;
}

.footer__cta-link-line::before {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background-image: url(../img/line-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.footer__cta-link-web::before {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url(../img/web-icon.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.footer__add-txt {
  margin: 25px 0 0;
  border-top: 1px solid var(--black);
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
}

@media screen and (max-width: 1000px) {
  .footer__map {
    height: 235px;
  }
  footer .inner {
    padding: 50px 0 40px;
  }
  .footer__bl {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    flex-direction: column;
    width: 350px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .footer__add {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .footer__time {
    width: 100%;
  }
  .footer__logo {
    width: 260px;
    margin-left: auto;
    margin-right: auto;
    order: 1;
  }
  .footer__add-txt {
    padding: 20px 0;
    font-size: 12px;
    order: 2;
    text-align: center;
  }
  .footer__contact {
    order: 3;
  }
  .footer__contact {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--black);
    border-bottom: none;
    padding-top: 20px;
    margin-bottom: 0;
  }
  .footer__contact-ttl {
    font-size: 14px;
    padding-top: 0;
  }
  .footer__contact-tel {
    margin-top: 0;
  }
  .footer__contact-tel .num {
    font-size: 32px;
  }
  .footer__contact-tel .tel {
    font-size: 20px;
  }
  .footer__time-caution {
    font-size: 12px;
  }
  .footer__copy {
    padding-bottom: 35px;
    font-size: 12px;
  }
  .fixed__bl {
    bottom: -70px;
    right: 0;
    gap: 0;
    width: 100%;
    transition: all 0.5s;
  }
  .fixed__bl.active {
    bottom: 0;
  }
  .fixed__bl .fixed__link {
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    width: 50%;
    border: none !important;
    border-radius: 0;
    height: 64px;
    gap: 7px;
    line-height: 1;
  }
  .fixed__bl .fixed__link:first-of-type {
    border-right: 1px solid #ccc !important;
  }
  .fixed__bl .fixed__link:last-of-type {
    border-left: 1px solid #ccc !important;
  }
  .fixed__bl .fixed__link::before {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0, 0);
  }
  footer {
    padding-bottom: 90px;
  }
  .footer__tel-bl {
    flex-direction: column;
  }
  .footer__tel-bl .ttl {
    margin-right: 0;
    font-size: 14px;
    margin-bottom: 10px;
  }
  .footer__tel-bl .nums .txt {
    font-size: 20px;
  }
  .footer__tel-bl .nums .num {
    font-size: 32px;
    transform: translateY(-5px);
  }
  .footer__add-txt {
    margin: 0 0 25px;
    border-bottom: 1px solid var(--black);
    border-top: 0;
  }
  .footer__tel-bl {
    order: 3;
    margin-top: 0;
  }
  .footer__cta {
    order: 4;
  }
}
#mv {
  width: 100%;
  height: calc(100vh - 112px);
  position: relative;
  min-height: 800px;
  display: flex;
  align-items: center;
}

.mv__cont {
  width: 50%;
}

.mv__img-bl {
  width: 50%;
  height: 100%;
  position: relative;
}

.mv__img-main {
  width: 100%;
  height: 100%;
}
.mv__img-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.mv__img-main .simpleParallax {
  height: 100% !important;
}

.scroll_down {
  position: absolute;
  left: auto;
  bottom: 0;
  width: 30px;
  height: 146px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  right: calc(50% + 370px);
  transform: translateX(-50%);
}

.scroll_down:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80%;
}

.scroll_down .scroll_down-in {
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 120px;
  left: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 0 62px;
  color: #000;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.2em;
  text-decoration: none;
  writing-mode: horizontal-tb;
  transition: 0.2s;
  margin: auto;
}

.scroll_down .scroll_down-in:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 26px;
  width: 1px;
  height: 48px;
  background: #ddd;
}

.scroll_down .scroll_down-in:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 26px;
  width: 1px;
  height: 48px;
  background: #000;
}

.scroll_down .scroll_down-in:hover {
  opacity: 0.5;
}

#type01 .scroll_down-in:after {
  animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.mv__img-sub {
  position: relative;
  width: 50%;
  margin: -100px 15% 0 auto;
}
.mv__img-sub .simpleParallax {
  overflow: visible !important;
}

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

.mv__ttl {
  font-size: 42px;
  position: relative;
  z-index: 2;
  margin-bottom: 80px;
}
.mv__ttl::before {
  aspect-ratio: 322/325;
  background-image: url(../img/logo-bg.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: -70px;
  left: 47%;
  transform: translateX(-50%);
  width: 322px;
  max-width: 70%;
  display: block;
  z-index: 0;
}
.mv__ttl::after {
  width: 80px;
  height: 2px;
  background-image: url(../img/under.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  display: block;
}

.mv__date {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  font-family: var(--cor);
  line-height: 1;
  align-items: flex-end;
  letter-spacing: 0.3em;
}
.mv__date .day {
  font-size: 62px;
}
.mv__date .week {
  font-size: 22px;
  padding-bottom: 0.3em;
}
.mv__date .open {
  font-size: 38px;
}

.naiken-day {
  margin-top: 80px;
  font-size: 22px;
  font-family: var(--cor);
  letter-spacing: 0.1em;
}

.mv__txt {
  font-size: 14px;
}

.mv__tag {
  margin-top: 80px;
  position: relative;
  width: 120px;
  height: 120px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
.mv__tag::after {
  width: 164px;
  height: 164px;
  background-image: url(../img/circle-txt.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  animation: circle 10s linear infinite;
}

@keyframes circle {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.mv__circle-cont {
  width: 100%;
  height: 100%;
  background-color: #ff98a7;
  border-radius: 50%;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  display: block;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 40px 0;
}
.mv__circle-cont .small {
  font-size: 10px;
}
.mv__circle-cont::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
}
.mv__circle-cont::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 8px;
  height: 8px;
  background-image: url(../img/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}

#rec {
  padding: 5vw 0 30vw;
  position: relative;
}

.rec__img-bl {
  width: 60%;
  position: relative;
}

.rec__img-sub {
  position: absolute;
  left: 45%;
  bottom: -7vw;
  transform: translate(-50%, 0);
  width: 40%;
}
.rec__img-sub .simpleParallax {
  overflow: visible !important;
}

.rec__cont {
  width: 690px;
  max-width: 90%;
  position: absolute;
  top: 27vw;
  left: 48%;
  background-color: #fff;
  padding: 100px 4%;
  transition: all 1.3s ease;
  filter: blur(10px);
}
.rec__cont.active {
  filter: blur(0px);
}

.js-blur {
  filter: blur(10px);
  transition: all 1.3s ease;
}
.js-blur.active {
  filter: blur(0px);
}

.base__ttl-bl {
  position: relative;
  margin-bottom: 120px;
}
.base__ttl-bl::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-image: url(../img/colorful-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  background-position: center;
}

.base__ttl-en {
  text-align: center;
  font-size: 48px;
  text-align: center;
  font-family: var(--cor);
  line-height: 1.5;
}

.base__ttl-ja {
  text-align: center;
  font-size: 16px;
}

.rec__ttl-big {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.rec__txt {
  font-size: 14px;
  margin-bottom: 100px;
  font-family: var(--zen);
}

.base__btn {
  margin-left: auto;
  margin-right: auto;
  width: 320px;
}
.base__btn a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 72px;
  font-family: var(--cor);
  line-height: 1;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  background-color: transparent;
  color: var(--black);
  transition: all 0.3s;
  background-color: #fff;
  gap: 15px;
}
.base__btn a .icon {
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.base__btn a::before, .base__btn a::after {
  content: "";
  position: absolute;
  background: var(--black);
  transition: all 0.3s;
}
.base__btn a::before {
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #008ba2;
}
.base__btn a::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 0%;
  background-color: #ee8191;
}
.base__btn a .wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 100%;
  height: 100%;
}
.base__btn a .wrapper::before, .base__btn a .wrapper::after {
  content: "";
  position: absolute;
  background: var(--black);
  transition: all 0.3s ease;
}
.base__btn a .wrapper::before {
  bottom: 0;
  right: 0;
  width: 0%;
  height: 1px;
  background-color: #ee7300;
}
.base__btn a .wrapper::after {
  bottom: 0;
  left: 0;
  width: 1px;
  height: 0%;
  background-color: #fbca4f;
}
.base__btn a:hover::before {
  width: 100%;
}
.base__btn a:hover::after {
  height: 100%;
}
.base__btn a:hover .wrapper::before {
  width: 100%;
}
.base__btn a:hover .wrapper::after {
  height: 100%;
}

#concept {
  padding: 130px 0 0;
}

.concept__link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 10px 0 0 auto;
  text-decoration: underline;
  transition: all 0.3s ease;
  font-size: 14px;
  font-family: var(--zen);
  letter-spacing: 1px;
}
.concept__link:hover {
  opacity: 0.7;
}

.concept__bl {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 5%;
}

.concept__img-bl {
  position: sticky;
  left: 0;
  top: 100px;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}

.concept__img {
  position: relative;
  aspect-ratio: 464/524;
  margin-bottom: 20px;
}
.concept__img img {
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease;
}
.concept__img img.p1 {
  z-index: 5;
}
.concept__img img.p2 {
  z-index: 4;
}
.concept__img img.p3 {
  z-index: 3;
}
.concept__img img.p4 {
  z-index: 2;
}

.concept__bar-bl {
  display: flex;
  gap: 17px;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.concept__now-num,
.concept__total-num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--cor);
  font-size: 18px;
  text-align: center;
  width: 20px;
  aspect-ratio: 2/3;
}

.concept__bar {
  position: relative;
  width: 96px;
  height: 1px;
  background-color: #d9d9d9;
  overflow: hidden;
}

.concept__bar-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 1px;
  background-color: #008ba2;
  transition: all 0.3s ease;
}
.concept__bar-inner.w25 {
  width: 25%;
}
.concept__bar-inner.w50 {
  width: 50%;
}
.concept__bar-inner.w75 {
  width: 75%;
}
.concept__bar-inner.w100 {
  width: 100%;
}

.concept__list li {
  padding: 120px 0;
}

.concept__list-tag {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 25px;
  border-radius: 50px;
  background-color: #fbca4f;
  color: #fff;
  font-size: 14px;
  font-family: var(--cor);
  margin-bottom: 10px;
  line-height: 1.3;
}
.concept__list-tag.p2 {
  background-color: #ee7300;
}
.concept__list-tag.p3 {
  background-color: #ee8191;
}
.concept__list-tag.p4 {
  background-color: #208fd0;
}
.concept__list-tag .num {
  font-size: 20px;
}

.concept__list-ttl {
  font-size: 24px;
  margin-bottom: 50px;
}

.concept__list-txt {
  font-size: 14px;
  font-family: var(--zen);
  letter-spacing: 1px;
}

.inner {
  width: 1160px;
  max-width: 90%;
  margin: 0 auto;
}

.doctor__bl {
  display: grid;
  grid-template-columns: 44% 1fr;
  gap: 5%;
  padding-bottom: 50px;
}

.doctor__img {
  position: sticky;
  height: -moz-fit-content;
  height: fit-content;
  width: 100%;
  aspect-ratio: 520/640;
  top: 100px;
}
.doctor__img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
  animation: doctorImgBefore 1s ease-in-out forwards;
}
.doctor__img img.p1 {
  z-index: 5;
  width: 100%;
}
.doctor__img img.p2 {
  z-index: 4;
}
.doctor__img img.p3 {
  z-index: 3;
}
.doctor__img img.none {
  animation: doctorImg 1s ease-in-out forwards;
}

@keyframes doctorImgBefore {
  0% {
    transform: translate(-70%, -50%);
    opacity: 0;
    visibility: hidden;
  }
  10% {
    transform: translate(-70%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes doctorImg {
  0% {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  90% {
    transform: translate(-70%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(-70%, -50%);
    opacity: 0;
    visibility: hidden;
  }
}
#doctor-profile {
  padding: 120px 0;
}

.doctor__profile-ttl {
  margin-bottom: 30px;
}
.doctor__profile-ttl .add {
  font-size: 16px;
  margin-bottom: 20px;
  display: block;
}
.doctor__profile-ttl .name {
  display: block;
  font-size: 28px;
}

.doctor-profile__add {
  font-size: 18px;
  margin-bottom: 50px;
}

.doctor-profile__history-ttl {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 600;
}

.doctor-profile__history-ttl-middle {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.doctor-profile__history-list li {
  display: flex;
  font-family: var(--zen);
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 7px;
}
.doctor-profile__history-list li:last-child {
  margin-bottom: 0;
}
.doctor-profile__history-list li .txt {
  width: calc(100% - 120px);
}

.doctor-profile__history-ttl-small {
  width: 120px;
  font-size: 14px;
}

#doctor-greeting {
  padding: 120px 0;
}

.doctor__greeting-ttl {
  font-size: 28px;
  margin-bottom: 50px;
}

.doctor__greeting-txt {
  font-size: 14px;
  margin-bottom: 30px;
}
.doctor__greeting-txt:last-of-type {
  margin-bottom: 0;
}

#doctor-phirosophy {
  padding: 120px 0;
}

.doctor__philosophy-ttl {
  font-size: 28px;
  margin-bottom: 50px;
}

.doctor-phirosophy__list li {
  margin-bottom: 30px;
}
.doctor-phirosophy__list li:last-child {
  margin-bottom: 0;
}

.doctor-phirosophy__list-ttl {
  font-size: 16px;
  margin-bottom: 7px;
}

.doctor-phirosophy__list-txt {
  font-size: 14px;
  padding-left: 1em;
}

#doctor {
  padding: 200px 0;
}

.clinic__bl {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, 1fr);
  background-color: #fff;
}

.clinic__cont {
  padding: 150px 0;
  background-color: #fff;
}

.clinic__sec-logo {
  width: 134px;
  margin: 0 auto 10px;
}

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

.base__ttl-ja {
  text-align: center;
  font-size: 18px;
}

.clinic__ttl-big {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

.clinic__txt {
  font-size: 14px;
  margin-bottom: 30px;
}
.clinic__txt:last-of-type {
  margin-bottom: 0;
}

.clinic__img-bl {
  height: 100%;
}
.clinic__img-bl img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.clinic__img {
  height: 100%;
}
.clinic__img .simpleParallax {
  height: 100%;
}

.clinic__cont-inner {
  width: 620px;
  max-width: 90%;
  margin-left: auto;
  margin-right: 0;
  padding-right: 5%;
}

#treatment {
  margin-top: 12vw;
  margin-bottom: 14vw;
  padding: 150px 0;
  position: relative;
  background-color: #faf7ed;
}
#treatment::before {
  content: "";
  position: absolute;
  top: 0;
  transform: translateY(-98%);
  left: 0;
  width: 100%;
  aspect-ratio: 1440/64;
  background-image: url(../img/nami-top.svg);
  background-size: contain;
  background-position: center;
  display: block;
}
#treatment::after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateY(98%);
  left: 0;
  width: 100%;
  aspect-ratio: 1440/64;
  background-image: url(../img/nami-bottom.svg);
  background-size: contain;
  background-position: center;
  display: block;
}

.kai {
  position: absolute;
  aspect-ratio: 458/381;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  background-image: url(../img/kai.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left 0 center;
  display: block;
  width: 30%;
}

.treatment__bl {
  display: grid;
  grid-template-columns: 215px 1fr;
}
.treatment__bl .treatment__list li a {
  pointer-events: none;
}

.treatment__nav-sub {
  height: -moz-fit-content;
  height: fit-content;
  position: sticky;
  top: 120px;
}

.treatment__nav-list li {
  height: 80px;
}
.treatment__nav-list li a {
  display: flex;
  align-items: center;
  padding: 0 20px;
  height: 100%;
  font-size: 16px;
  border-left: 2px solid #e8e8e8;
  transition-duration: 0.3s;
}
.treatment__nav-list li a.current {
  border-left: 2px solid #fbca4f;
  transition-duration: 0.3s;
}
.treatment__nav-list li a.current.p2 {
  border-left: 2px solid #ee7300;
}
.treatment__nav-list li a.current.p3 {
  border-left: 2px solid #ee8191;
}
.treatment__nav-list li a.current.p4 {
  border-left: 2px solid #208fd0;
}
.treatment__nav-list li a.current.p5 {
  border-left: 2px solid #7FCE5B;
}

.treatment__ttl {
  font-size: 24px;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--black);
}
.treatment__ttl::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background-color: #fbca4f;
  display: block;
  z-index: 2;
}
.treatment__ttl.p2::after {
  background-color: #ee7300;
}
.treatment__ttl.p3::after {
  background-color: #ee8191;
}
.treatment__ttl.p4::after {
  background-color: #208fd0;
}
.treatment__ttl.p5::after {
  background-color: #7FCE5B;
}

.treatment__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.treatment__list li {
  border-radius: 50px;
  height: 80px;
  font-size: 14px;
  text-align: center;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.treatment__list li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  transition: all 1s ease;
  text-align: center;
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}
.treatment__list li a .txt {
  position: relative;
  z-index: 1;
}
.treatment__list li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #d9f7f9 0%, #fff9e5 30%, #ffeaea 70%, #d9f1ff 100%);
  transition: all 0.3s ease;
  z-index: 0;
  opacity: 0;
}
.treatment__list li a:hover::before {
  opacity: 1;
}

.sp {
  display: none;
}

.treatment__cont {
  margin-bottom: 120px;
}

.treatment__ttl-small {
  margin-top: 60px;
  font-size: 18px;
  margin-bottom: 30px;
}

.treatment__caution-right {
  font-size: 12px;
  margin-top: 30px;
  text-align: right;
}

#container canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: block;
  pointer-events: none; /* 背景でクリック無効化したい場合に */
}

#loading-screen {
  position: fixed;
  inset: 0;
  background: #fff;
  /* 背景色は白などお好みで */
  z-index: 9999;
  pointer-events: none;
}

#loading-screen.loaded {
  animation: lordingAnim 1s forwards;
}

@keyframes lordingAnim {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    z-index: -1;
    opacity: 0;
    visibility: hidden;
  }
}
.webgl-canvas__body {
  width: 100%;
  height: 100%;
}

.webgl-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.webgl-canvas__body {
  width: 100%;
  height: 100%;
}

.rec__img-main {
  position: relative;
}

.wave-img {
  width: 100%;
  display: block;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.sp-img {
  display: none;
}

#under-sec {
  padding: 200px 0 120px;
}

.bp-cont {
  margin-bottom: 60px;
}
.bp-cont:first-of-type {
  margin-top: 12px;
}
.bp-cont p {
  font-size: 15px;
}

.base__ttl-middle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 5px;
  border-bottom: 1px solid #c6c6c6;
}

.under-body {
  background-color: #fffcf6;
}

#news {
  padding: 220px 0 0;
}

.news__ttl-flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  align-items: center;
}

.news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
}
.news__list li a {
  display: block;
  transition: all 0.3s ease;
}
.news__list li a:hover {
  opacity: 0.7;
}
.news__list li .img {
  width: 100%;
  aspect-ratio: 360/208;
  margin-bottom: 18px;
}
.news__list li .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news__list li:nth-of-type(4) {
  display: none;
}

.news__list-options {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.news__list-options time {
  font-family: var(--cor);
  font-size: 16px;
}

.news__list-cat {
  font-family: var(--cor);
  line-height: 1;
  padding: 3px 15px;
  border: 1px solid var(--black);
  border-radius: 30px;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
}

.news__ttl {
  position: relative;
  font-size: 40px;
  font-family: var(--cor);
}
.news__ttl::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 40px;
  height: 2px;
  background-image: url(../img/colorful-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  background-position: center;
}

.view-more__link {
  font-size: 20px;
  padding-right: 65px;
  position: relative;
  font-family: var(--cor);
}
.view-more__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  width: 48px;
  height: 1px;
  background-color: var(--black);
  display: block;
  transition: all 0.3s ease;
}
.view-more__link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--black);
  border-right: 0;
  transition: all 0.3s ease;
}
.view-more__link:hover::after {
  width: 58px;
  right: -8px;
}
.view-more__link:hover::before {
  right: -10px;
}

#hours {
  padding: 130px 0 0;
}

.hours__bl {
  padding: 70px 5%;
  background-color: #fcf9f3;
}
.hours__bl .img {
  width: 870px;
  max-width: 90%;
  margin: 0 auto 7px;
}

.hours__time-txt {
  width: 870px;
  margin: 0 auto;
  max-width: 90%;
  font-size: 14px;
  font-family: var(--zen);
  letter-spacing: 1px;
}

.hours__ttl-small {
  margin-top: 50px;
  font-size: 29px;
  text-align: center;
  margin-bottom: 30px;
}

.hours__list {
  width: 776px;
  max-width: 100%;
  margin: 0 auto 20px;
  display: flex;
  gap: 8%;
}
.hours__list li {
  width: 46%;
}

.hours__list-bnr {
  position: relative;
  height: 92px;
  width: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hours__list-bnr img {
  height: 48px;
  width: auto;
  display: block;
}
.hours__list-bnr::before {
  width: 2px;
  height: 108px;
  background-image: url(../img/dash-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.hours__list-bnr::after {
  width: 2px;
  height: 108px;
  background-image: url(../img/dash-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.hours__list-time {
  text-align: center;
  margin-bottom: 10px;
  font-family: var(--cor);
  font-size: 14px;
}

.hours__list-note {
  width: 776px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 14px;
  font-family: var(--zen);
  letter-spacing: 1px;
}

.base__link {
  width: 320px;
  height: 72px;
  margin: 80px auto 0;
  border-radius: 100px;
  border: 1px solid var(--black);
  position: relative;
  overflow: hidden;
  transition: all 1s ease;
  background: #fff;
  display: block;
}
.base__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, #d9f7f9 0%, #fff9e5 30%, #ffeaea 70%, #d9f1ff 100%);
  transition: all 0.3s ease;
  z-index: 0;
  opacity: 0;
}
.base__link .txt {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
  width: 100%;
  height: 100%;
}
.base__link .txt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  width: 22px;
  height: 1px;
  background-color: var(--black);
  display: block;
  transition: all 0.3s ease;
}
.base__link .txt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--black);
  border-right: 0;
  transition: all 0.3s ease;
}
.base__link:hover::before {
  opacity: 1;
}
.base__link:hover .txt::after {
  width: 27px;
  right: 17px;
}
.base__link:hover .txt::before {
  right: 15px;
}

.txt-newtab {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.txt-newtab .icon {
  width: 15px;
  height: 15px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  display: block;
  line-height: 1;
}

.interview__link {
  width: 800px;
  max-width: 90%;
  margin: 50px auto 0;
  display: block;
}

@media screen and (max-height: 900px) {
  .mv__ttl {
    font-size: 38px;
    margin-bottom: 42px;
    line-height: 1.5;
  }
  .mv__ttl::after {
    bottom: -26px;
  }
  .naiken-day {
    margin-top: 40px;
  }
  .mv__tag {
    margin-top: 55px;
  }
}
@media screen and (max-width: 1600px) {
  #rec {
    padding: 5vw 0 40vw;
  }
}
@media screen and (max-width: 1350px) {
  .treatment__bl {
    grid-template-columns: 170px 1fr;
  }
  .treatment__list {
    gap: 15px;
  }
  .treatment__list li {
    font-size: 13px;
  }
  .mv__ttl {
    font-size: 3vw;
    margin-bottom: 5vw;
  }
  .mv__ttl::after {
    width: 6vw;
    bottom: -2.5vw;
  }
  .mv__date .day {
    font-size: 5vw;
  }
  .mv__date .week {
    font-size: 1.7vw;
  }
  .mv__date .open {
    font-size: 3vw;
  }
  .naiken-day {
    margin-top: 3vw;
    font-size: 1.6vw;
  }
  .mv__txt {
    font-size: 1vw;
  }
  .rec__img-sub {
    left: 34%;
  }
  .rec__cont {
    max-width: 54%;
    top: 27vw;
    left: 44%;
    padding: 70px 4%;
  }
  .rec__ttl-big {
    font-size: 2.4vw;
    margin-bottom: 1.5em;
  }
  .rec__txt {
    margin-bottom: 3vw;
  }
  #rec {
    padding: 10vw 0 40vw;
  }
  .scroll_down {
    left: 23%;
    transform: translateX(-50%);
    right: auto;
  }
  .base__link {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1100px) {
  #rec {
    padding: 10vw 0 48vw;
  }
}
@media screen and (max-width: 1000px) {
  .treatment__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .treatment__list li {
    border-radius: 8px;
    font-size: 14px;
    padding: 15px 10px;
    height: auto;
  }
  .concept__img-bl {
    display: none;
  }
  .concept__bl {
    grid-template-columns: 1fr;
  }
  .doctor__img {
    display: none;
  }
  .doctor__bl {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }
  .sp-img {
    display: block;
    margin-bottom: 20px;
  }
  .mv__cont {
    width: 100%;
    position: relative;
    padding-bottom: 200px;
  }
  #mv {
    height: auto;
    flex-direction: column-reverse;
    min-height: auto;
  }
  .mv__img-bl {
    width: 100%;
    height: auto;
  }
  .mv__img-main {
    height: auto;
    aspect-ratio: 375/312;
  }
  .mv__cont-inner {
    width: 100%;
    margin-left: 5%;
    margin-right: 0;
  }
  .mv__img-sub {
    width: 38%;
    margin: -10vw 10% 0 auto;
  }
  .mv__tag {
    margin-top: 0;
    position: absolute;
    width: 24%;
    aspect-ratio: 1/1;
    height: auto;
    top: -30vw;
    left: 10%;
    z-index: 10;
  }
  .mv__tag::after {
    width: 135%;
    height: 135%;
  }
  .mv__circle-cont {
    font-size: 2.8vw;
    padding: 7vw 0;
  }
  .mv__circle-cont .small {
    font-size: 2vw;
  }
  .scroll_down {
    bottom: auto;
    top: calc(105vw + 300px);
  }
  .scroll_down .scroll_down-in {
    padding: 10px 0 50px;
    font-size: 12px;
    width: 9px;
  }
  .scroll_down .scroll_down-in::before {
    height: 40px;
    left: 22px;
  }
  .scroll_down .scroll_down-in::after {
    height: 40px;
    left: 22px;
  }
  .scroll_down {
    width: 30px;
    height: 110px;
    left: 50%;
    transform: translateX(-115%);
  }
  #news {
    padding: 0;
  }
  .news__ttl {
    font-size: 24px;
  }
  .mv__circle-cont::before {
    top: 3vw;
    width: 1vw;
    height: 1vw;
  }
  .mv__circle-cont::after {
    bottom: 3vw;
    width: 2vw;
    height: 2vw;
  }
  .mv__ttl {
    font-size: 28px;
    margin-bottom: 50px;
    line-height: 1.8;
  }
  .mv__ttl::after {
    width: 80px;
    bottom: -20px;
  }
  .mv__date .day {
    font-size: 48px;
  }
  .mv__date .week {
    font-size: 16px;
  }
  .mv__date .open {
    font-size: 24px;
  }
  .pc {
    display: none;
  }
  .sp {
    display: inline-block;
  }
  .naiken-day {
    font-size: 18px;
    line-height: 1.4;
  }
  .mv__txt {
    font-size: 12px;
    margin-top: 15px;
  }
  .rec__img-bl {
    width: 95%;
  }
  .rec__cont {
    max-width: 90%;
    top: 27vw;
    left: 5%;
    padding: 70px 4%;
    position: relative;
    width: 90%;
  }
  .rec__img-sub {
    position: absolute;
    left: 39%;
    bottom: -11vw;
    width: 51%;
  }
  #rec {
    padding: 0 0 42vw;
  }
  .base__ttl-en {
    font-size: 32px;
  }
  .base__ttl-ja {
    font-size: 14px;
  }
  .rec__ttl-big {
    font-size: 24px;
  }
  .rec__txt {
    margin-bottom: 35px;
  }
  .base__btn a {
    font-size: 16px;
  }
  .concept__list li {
    padding: 0;
    margin-bottom: 60px;
  }
  .concept__list li:last-of-type {
    margin-bottom: 0;
  }
  .concept__list-ttl {
    font-size: 20px;
    margin-bottom: 25px;
  }
  .concept__list-txt {
    font-size: 12px;
  }
  .concept__link {
    font-size: 12px;
    margin-top: 20px;
  }
  #doctor {
    padding: 80px 0 20px;
  }
  #doctor-profile {
    padding: 0;
    margin-bottom: 60px;
  }
  #doctor-greeting {
    padding: 0;
    margin-bottom: 60px;
  }
  #doctor-phirosophy {
    padding: 0;
    margin-bottom: 60px;
  }
  .doctor__profile-ttl {
    margin-bottom: 13px;
  }
  .doctor__profile-ttl .add {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .doctor__profile-ttl .name {
    font-size: 24px;
  }
  .doctor-profile__add {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .clinic__bl {
    display: flex;
    flex-direction: column-reverse;
  }
  .doctor-profile__history-ttl {
    font-size: 18px;
    padding-bottom: 15px;
  }
  .doctor-profile__history-list li {
    font-size: 12px;
  }
  .doctor-profile__history-ttl-small {
    width: 105px;
    font-size: 12px;
  }
  .doctor-profile__history-list li .txt {
    width: calc(100% - 105px);
  }
  .doctor__greeting-ttl {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .doctor__greeting-txt {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .doctor__philosophy-ttl {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .doctor-phirosophy__list-txt {
    font-size: 12px;
    padding-left: 1em;
  }
  .doctor-phirosophy__list-ttl {
    font-size: 14px;
  }
  .clinic__cont {
    padding: 50px 0;
  }
  .clinic__cont-inner {
    width: 100%;
    max-width: 90%;
    margin-left: 5%;
    margin-right: 0;
    padding-right: 0;
  }
  .clinic__ttl-big {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .clinic__sec-logo {
    width: 106px;
  }
  .clinic__txt {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .clinic__cont .base__ttl-bl::before {
    display: none;
  }
  .clinic__cont .base__ttl-bl {
    margin-bottom: 25px;
  }
  .kai {
    transform: translateY(-63%);
    width: 53%;
  }
  #treatment {
    margin-top: 25vw;
    padding: 70px 0 30px;
  }
  #under-sec {
    padding: 100px 0 20px;
  }
  .base__ttl-middle {
    font-size: 15px;
  }
  .bp-cont p {
    font-size: 13px;
  }
  .bp-cont {
    margin-bottom: 40px;
  }
  .clinic__img-bl {
    height: auto;
    width: 100%;
  }
  .treatment__list li {
    padding: 0;
  }
  .treatment__list li a {
    padding: 15px 10px;
    border-radius: 8px;
  }
  .treatment__list li a::before {
    border-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .sp-img {
    display: block;
    margin-bottom: 20px;
  }
  .treatment__bl {
    grid-template-columns: 80px 1fr;
  }
  .treatment__nav-list li {
    height: 60px;
  }
  .treatment__nav-list li a {
    padding: 0 15px;
    font-size: 11px;
    line-height: 1.5;
  }
  .treatment__ttl {
    font-size: 20px;
    margin-bottom: 30px;
    padding-bottom: 8px;
  }
  .treatment__ttl::after {
    width: 40px;
  }
  .treatment__list li {
    border-radius: 8px;
    font-size: 11px;
    padding: 0;
    letter-spacing: 1px;
    line-height: 1.5;
  }
  .treatment__list li a::before {
    border-radius: 8px;
  }
  .treatment__list li a {
    padding: 15px 5px;
    border-radius: 8px;
  }
  .treatment__caution-right {
    margin-top: 15px;
    text-align: left;
  }
  .treatment__ttl-small {
    margin-top: 30px;
    font-size: 16px;
    margin-bottom: 15px;
  }
  .treatment__cont {
    margin-bottom: 50px;
  }
  .mv__date {
    letter-spacing: 3px;
  }
  .news__ttl::before {
    bottom: -4px;
  }
  .view-more__link {
    font-size: 16px;
  }
  .view-more__link::before {
    top: 53%;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-left: 6px solid var(--black);
  }
  .view-more__link::after {
    width: 32px;
  }
  .view-more__link:hover::after {
    width: 36px;
    right: -4px;
  }
  .view-more__link:hover::before {
    right: -5px;
  }
  .view-more__link {
    padding-right: 43px;
  }
  .news__list li:nth-of-type(4) {
    display: block;
  }
  .news__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 4%;
  }
  .news__list-cat {
    padding: 3px 12px;
    letter-spacing: 1px;
  }
  .news__list-options time {
    font-size: 14px;
    letter-spacing: 2px;
  }
  .news__list li a .txt {
    font-size: 14px;
  }
  .news__list {
    gap: 25px 4%;
  }
  .news__ttl-flex {
    margin-bottom: 40px;
  }
  #hours {
    padding: 60px 0 0;
  }
  .base__ttl-bl::before {
    bottom: -17px;
  }
  .hours__bl {
    padding: 40px 5%;
  }
  .hours__time-txt {
    font-size: 12px;
  }
  .hours__ttl-small {
    margin-top: 30px;
    font-size: 20px;
    margin-bottom: 15px;
  }
  .hours__list-bnr img {
    height: 37px;
  }
  .hours__list-bnr {
    height: 64px;
  }
  .hours__list-bnr::before,
  .hours__list-bnr::after {
    height: 80px;
  }
  .hours__list-time {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .hours__list-note {
    font-size: 12px;
  }
  #concept {
    padding: 60px 0 0;
  }
  .base__link {
    height: 64px;
    margin: 0 auto;
    max-width: 100%;
  }
  .mv__cont {
    padding-bottom: 150px;
  }
}
.mb10 {
  margin-bottom: 10px !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;
}

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

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

.under-ttl {
  border-radius: 8px;
  background-color: #fff;
  min-width: 404px;
  padding: 40px 20px 55px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  line-height: 1.6;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.06);
  font-weight: 400;
}
.under-ttl .big {
  font-size: 31px;
  display: block;
  text-align: center;
}
.under-ttl .small {
  font-size: 20px;
  text-align: center;
  display: block;
}
.under-ttl span:last-of-type {
  position: relative;
}
.under-ttl span:last-of-type::before {
  content: "";
  width: 40px;
  height: 2px;
  background-image: url(../img/colorful-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -17px;
  transform: translateX(-50%);
}

.breadcrumb {
  display: flex;
  gap: 5px 25px;
  padding-top: 20px;
  margin-bottom: 120px;
  flex-wrap: wrap;
}
.breadcrumb li {
  position: relative;
  font-size: 14px;
  font-family: var(--zen);
}
.breadcrumb li::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  display: block;
  position: absolute;
  right: -13px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.breadcrumb li:last-of-type::after {
  display: none;
}

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

.under-main {
  padding-bottom: 120px;
}
.under-main p {
  margin-bottom: 20px;
  font-family: var(--zen);
  font-size: 14px;
}
.under-main p.news__list-cat {
  margin-bottom: 0;
}

.u-ttl {
  font-size: 28px;
  text-align: center;
  position: relative;
  margin-bottom: 90px;
}
.u-ttl .small {
  display: block;
  text-align: center;
  font-size: 70%;
}
.u-ttl::after {
  content: "";
  width: 40px;
  height: 2px;
  background-image: url(../img/colorful-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

.column3-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  background-color: #f8f4ec;
  margin-bottom: 30px;
}
.column3-list li {
  background-color: #fff;
  padding: 25px;
  font-family: var(--zen);
}
.column3-list li .column-list-ttl {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 0.7em;
}
.column3-list li p:last-of-type {
  margin-bottom: 0;
}

.u-ttl-middle {
  position: relative;
  padding-bottom: 0.7em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #d9d9d9;
}
.u-ttl-middle .small {
  font-size: 70%;
}
.u-ttl-middle::before {
  content: "";
  width: 120px;
  height: 2px;
  background-color: #ee7300;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.mt20 {
  margin-top: 20px !important;
}

.f90 {
  font-size: 90% !important;
}

.view-more__link.right {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  display: block;
}
.view-more__link.ja {
  font-family: var(--shippori);
  font-size: 16px;
}

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

.u-table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ccc;
  border-bottom: none;
  font-size: 14px;
}
.u-table th {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px;
  background-color: #f8f4ec;
}
.u-table th:last-of-type {
  border-right: none;
}
.u-table td {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 15px;
  background-color: #fff;
  font-family: var(--zen);
}
.u-table td:last-of-type {
  border-right: none;
}
.u-table td .u-list {
  margin-bottom: 5px;
}
.u-table thead th {
  background-color: #f8f4ec;
  text-align: center;
}
.u-table.table5 th,
.u-table.table5 td {
  width: 20%;
  padding: 10px;
  font-size: 12px;
}
.u-table.table4 th,
.u-table.table4 td {
  width: 25%;
  padding: 10px;
  font-size: 12px;
}
.u-table.table3 th,
.u-table.table3 td {
  width: 33.333%;
  padding: 10px;
  font-size: 12px;
}
.u-table.table2 th,
.u-table.table2 td {
  width: 50%;
  padding: 10px;
  font-size: 12px;
}
.u-table .border-right {
  border-right: 1px solid #ccc !important;
}

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

.slide-bl600 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}
.slide-bl600 > * {
  min-width: 600px;
}

.slide-bl500 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}
.slide-bl500 > * {
  min-width: 500px;
}

.slide-bl400 {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
}
.slide-bl400 > * {
  min-width: 400px;
}

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

.fsm {
  font-size: 24px !important;
  font-family: var(--shippori) !important;
}

.u-list li {
  position: relative;
  padding-left: 1.2em;
  font-size: 14px;
  font-family: var(--zen);
  margin-bottom: 10px;
}
.u-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 14px;
  line-height: 1;
}
.u-list li ul {
  padding-left: 1em;
  margin-top: 10px;
}

.u-flow-list li {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  position: relative;
}
.u-flow-list li::after {
  content: "";
  width: 15px;
  height: 15px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  display: block;
  position: absolute;
  bottom: -23px;
  left: 55%;
  transform: translateX(-50%) rotate(45deg);
}
.u-flow-list li:last-of-type {
  margin-bottom: 0;
}
.u-flow-list li:last-of-type::after {
  display: none;
}
.u-flow-list li .tag {
  width: 160px;
  height: 160px;
  display: flex;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: var(--cor) !important;
  font-weight: bold;
  border-radius: 50%;
  border: 1px solid var(--black);
}
.u-flow-list li .tag > .txt {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
  font-family: var(--cor) !important;
}
.u-flow-list li .tag > .num {
  font-size: 36px;
  line-height: 1;
  color: #ee7300;
  display: block;
  text-align: center;
  margin-bottom: 0;
  font-family: var(--cor) !important;
}
.u-flow-list li .cont {
  width: calc(100% - 180px);
}
.u-flow-list li .cont p {
  font-size: 14px;
  font-family: var(--zen);
}

.u-flow-list-ttl {
  font-size: 20px;
  margin-bottom: 10px;
}

.u-ttl-small {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: bold;
}

.w3-7 th {
  width: 30%;
}
.w3-7 td {
  width: 70%;
}

.faq-q {
  display: flex;
  gap: 20px;
  padding: 20px 40px 20px 0;
  border-bottom: 1px solid #ccc;
  position: relative;
  cursor: pointer;
}

.faq-q::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: var(--black);
  display: block;
  position: absolute;
  top: 33px;
  right: 7px;
}

.faq-q::after {
  content: "";
  width: 1px;
  height: 15px;
  background-color: var(--black);
  display: block;
  position: absolute;
  top: 26px;
  right: 14px;
  transition: all 0.3s ease;
}

.faq-q.is-open::after {
  opacity: 0;
}

.faq-q-txt {
  font-size: 16px;
  width: calc(100% - 60px);
  position: relative;
}

.q {
  font-family: var(--cor) !important;
  color: #fff;
  background-color: #208fd0;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  padding-left: 2px;
}

.a {
  font-family: var(--cor) !important;
  color: #fff;
  background-color: #ee7300;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  padding-left: 2px;
}

.faq-a {
  opacity: 0;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
}

.faq-a.is-open {
  opacity: 1;
  visibility: visible;
  /* height は JS で scrollHeight にアニメ → 終了後に auto にします */
}

.faq-a-inner {
  padding: 20px 0 20px 20px;
  display: flex;
  gap: 20px;
}

.faq-a-txt {
  font-size: 15px;
  font-family: var(--zen);
  width: calc(100% - 60px);
}

.sp {
  display: none;
}

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

.u-img-small {
  width: 600px;
  max-width: 100%;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.u-img-s {
  width: 250px;
  margin-left: auto;
  margin-right: auto;
}

.u-img-ss {
  width: 340px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.app-bl {
  display: flex;
  align-items: center;
  gap: 3%;
}
.app-bl .app-big {
  display: block;
  width: 47%;
}
.app-bl .app-bnr01,
.app-bl .app-bnr02 {
  display: block;
  width: 23.5%;
}

.first-bg {
  background-color: #F5F5F5;
  padding: 120px 0;
  margin-bottom: -120px;
}

@media screen and (max-width: 1000px) {
  .pc {
    display: none !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;
  }
  .breadcrumb {
    margin-bottom: 50px;
  }
  .u-ttl {
    font-size: 24px;
    margin-bottom: 60px;
  }
  .u-ttl::after {
    bottom: -13px;
  }
  .column3-list {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 15px;
  }
  .column3-list li {
    padding: 20px;
  }
  .under-ttl .big {
    font-size: 27px;
  }
  .under-ttl {
    white-space: initial;
  }
  .under-ttl .small {
    font-size: 16px;
  }
  .under-ttl {
    min-width: 300px;
    max-width: 90%;
    width: 600px;
    padding: 25px 20px 50px;
  }
  .under-mv {
    height: 240px;
  }
  .u-table {
    font-size: 13px;
  }
  .u-list li {
    font-size: 13px;
  }
  .u-table th,
  .u-table td {
    padding: 10px;
    text-align: left;
  }
  .u-table.table5 th,
  .u-table.table5 td,
  .u-table.table4 th,
  .u-table.table4 td,
  .u-table.table3 th,
  .u-table.table3 td {
    padding: 5px;
    font-size: 11px;
  }
  .fsm {
    font-size: 21px !important;
  }
  .u-flow-list li .cont {
    width: calc(100% - 120px);
  }
  .u-flow-list li .tag {
    width: 100px;
    height: 100px;
  }
  .u-flow-list li .tag .txt {
    font-size: 14px;
  }
  .u-flow-list li .tag .num {
    font-size: 28px;
  }
  .u-flow-list-ttl {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .sp {
    display: inline !important;
  }
  .pc {
    display: none !important;
  }
  .under-main {
    padding-bottom: 60px;
  }
  .u-img {
    margin-bottom: 20px;
  }
  .u-img-s {
    width: 180px;
    margin-left: auto;
    margin-right: auto;
  }
  .first-bg {
    padding: 60px 0;
    margin-bottom: -60px;
  }
  .app-bl {
    flex-wrap: wrap;
    gap: 5px 4%;
  }
  .app-bl .app-big {
    width: 100% !important;
    display: block !important;
  }
  .app-bl .app-bnr01,
  .app-bl .app-bnr02 {
    width: 48% !important;
    display: block !important;
    display: block;
  }
}
.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;
  line-height: 1.5;
}

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

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

.info__cont {
  margin-top: 30px;
}

.info__cont h2 {
  font-size: 28px;
  text-align: center;
  position: relative;
  margin-bottom: 50px;
}
.info__cont h2 .small {
  display: block;
  text-align: center;
  font-size: 70%;
}
.info__cont h2::after {
  content: "";
  width: 40px;
  height: 2px;
  background-image: url(../img/colorful-line.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

.info__cont h3 {
  position: relative;
  padding-bottom: 0.7em;
  margin-bottom: 1.5em;
  border-bottom: 1px solid #d9d9d9;
  font-size: 24px;
}
.info__cont h3 .small {
  font-size: 70%;
}
.info__cont h3::before {
  content: "";
  width: 120px;
  height: 2px;
  background-color: #ee7300;
  display: block;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.info__cont h4 {
  font-size: 20px;
  margin-bottom: 1em;
}

.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;
}

.post-page .u-inner {
  width: 1160px;
}

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

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

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

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

/* ページネーション */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 50px auto 0px;
  align-items: center;
}
.nav-links .page-numbers {
  background-color: #fff;
  border: 1px solid #062643;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #062643;
  font-family: var(--cor);
  padding: 0 0 3px 3px;
  font-size: 23px;
}
.nav-links .page-numbers.current {
  background-color: #062643;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--cor);
  padding: 0 0 3px 3px;
}
.nav-links .page-numbers.next, .nav-links .page-numbers.prev {
  background-color: #062643;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--cor);
  font-size: 16px;
  padding: 0 0 0 1px;
}

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

.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;
}

.mt50 {
  margin-top: 50px !important;
}

.snav-lst {
  font-size: 14px;
}

.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%;
  }
  .nav-links .page-numbers.next, .nav-links .page-numbers.prev {
    width: 30px;
    height: 30px;
    font-size: 14px;
    padding: 2px 0 0 2px;
  }
  .nav-links .page-numbers {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
  .nav-links .page-numbers.current {
    width: 30px;
    height: 30px;
  }
  .nav-links {
    gap: 7px;
  }
}
.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: 45px;
  }
  .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;
  }
}
.contact__step {
  display: flex;
  position: relative;
  width: 240px;
  justify-content: space-between;
  margin: 0 auto 60px;
}
.contact__step::after {
  content: "";
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #dddddd;
  z-index: -1;
}
.contact__step li .num {
  width: 70px;
  height: 70px;
  background-color: #dddddd;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-family: Helvetica, Verdana, sans-serif;
  margin-bottom: 15px;
}
.contact__step li .txt {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #969696;
  display: block;
}
.contact__step li.active .num {
  background-color: #acd6dd;
  color: #000000;
}
.contact__step li.active .txt {
  color: #000;
}

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

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

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

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

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

.zip1 {
  width: 120px !important;
}

.zip2 {
  width: 160px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.privacy-label {
  display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.under-link {
  text-decoration: underline;
}

.mt40 {
  margin-top: 40px !important;
}

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

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