@charset "UTF-8";

.c-button,
.c-button-submit,
button,
input[type=button],
input[type=reset],
input[type=submit] {
  display: inline-block;
  vertical-align: middle;
  padding: 0.4em 1.3em;
  margin: 0;
  background-image: none;
  background-color: #61A7C0;
  border: 1px solid #61A7C0;
  color: #fff;
  text-decoration: none;
  border-radius: 5em;
  font-size: 1em;
  text-align: center;
  -webkit-appearance: none;
}

.c-button:hover,
.c-button-submit:hover,
button:hover,
input[type=button]:hover,
input[type=reset]:hover,
input[type=submit]:hover {
  background: #fff;
  color: #61A7C0;
}

input,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 1em 0.8em;
  border-radius: 0;
  background-image: none;
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  font-family: inherit;
  font-size: 0.95em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid #606060;
}

textarea {
  width: 100%;
  max-width: 100%;
  height: 100px;
  padding: 1em 0.8em;
  border-radius: 0;
  background-image: none;
  background-color: #F7F7F7;
  border: 1px solid #F7F7F7;
  font-family: inherit;
  font-size: 0.95em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

input[type=radio] {
  display: none;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 2.3em;
  margin: 0;
  cursor: pointer;
}

input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 23px;
  height: 23px;
  background: #fff;
  border: 1px solid #F7F7F7;
  background: #F7F7F7;
  border-radius: 50%;
}

input[type=radio] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #61A7C0;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

input[type=checkbox] {
  display: none;
}

input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.4em;
  margin: 0;
  cursor: pointer;
}

input[type=checkbox] + span::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #F7F7F7;
  border-radius: 2px;
  width: 1em;
  height: 1em;
  display: block;
}

input[type=checkbox] + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  width: 1em;
  height: 0.6em;
  margin-top: -0.2em;
  display: block;
  border-left: 3px solid #97CADD;
  border-bottom: 3px solid #97CADD;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.c-select {
  display: inline-block;
  border: 1px solid #F7F7F7;
  position: relative;
  max-width: 100%;
}

.c-select::after {
  content: "\f078";
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 0.3em;
  font-family: "Font Awesome 5 Free", sans-serif;
  font-weight: 900;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.c-select select {
  padding: 5px 35px 5px 10px;
}

.c-select:focus-within::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ------------------------------------
  基本スタイル
-------------------------------------- */

html {
  font-size: 62.5%;
}

html.is-fixed {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", yumincho, "MS P明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  color: #2A2A2A;
  min-height: 100vh;
  position: relative;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 1.6rem;
  font-weight: normal;
}

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

a {
  text-decoration: none;
  color: #2A2A2A;
}

ul,
ol {
  list-style: none;
}

li {
  list-style: none;
}

/* Container
-------------------------------------- */

.l-container {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}

.l-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding-left: clamp(12px, 0.08vw, 24px);
  padding-right: clamp(12px, 0.08vw, 24px);
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* レイアウト .l-nav
-------------------------------------- */

.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 540px;
  padding-top: 32px;
  background: #61A7C0;
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
  z-index: 20;
  border-bottom: 1px solid #fff;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.l-nav.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.l-nav__container {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 95%;
  max-width: 960px;
  height: auto;
  max-height: 70vh;
  overflow-y: auto;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.l-nav .p-nav {
  margin-bottom: 90px;
}

.l-nav__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 54px;
}

.l-nav__contents .p-nav-schedule {
  width: 62%;
  max-width: 520px;
}

.l-nav__contents .p-nav-tel {
  width: 38.65%;
  max-width: 398px;
}

/* レイアウト .l-header
-------------------------------------- */

.l-header {
  padding: 0 153px 0 25px;
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
}

.l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 1720px;
  margin: 0 auto;
  padding: 13px 0 12px;
}

.l-header .p-logo {
  margin-right: auto;
  width: 180px;
}

.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
}

/* レイアウト .l-footer
-------------------------------------- */

.l-footer {
  padding: 100px 0 100px clamp(20px, 4.44vw, 56px);
  background: #61A7C0;
  color: #fff;
}

.l-footer a {
  color: #fff;
}

.l-footer .p-footer-name {
  margin-bottom: -25px;
}

.l-footer .p-footer-link {
  margin-bottom: 35px;
}

.l-footer .p-footer-address {
  margin-top: 20px;
}

.l-footer .p-footer__tel {
  margin-bottom: 8px;
}

.l-footer .p-footer__time {
  margin-bottom: 16px;
}

.l-sidebar {
  padding: 30px 0 50px;
}

/* レイアウト KV
-------------------------------------- */

.l-kv {
  position: relative;
}

.l-kv .p-kv-contents {
  position: absolute;
  right: 0;
  bottom: 0;
  padding-bottom: 85px;
}

/* レイアウト トップページ
-------------------------------------- */

.l-main {
  padding-top: 100px;
}

.l-catch {
  margin: 87px auto 153px;
}

.l-physical__contents {
  background: #FAFAFA;
  padding-bottom: 170px;
}

.l-physical .p-physical-img {
  position: relative;
  z-index: 5;
  margin-bottom: 80px;
}

.l-physical .p-physical-check {
  margin-bottom: 30px;
}

.l-physical .p-physical-text {
  margin-bottom: 30px;
}

.l-physical .p-physical-btn {
  margin: 0 auto;
}

.l-treatment {
  padding-top: 170px;
  padding-bottom: 120px;
}

.l-treatment .p-sec-catch {
  margin-top: -1.7em;
  margin-bottom: 1em;
  text-align: center;
}

.l-treatment .p-sec-catch2 {
  margin-top: 190px;
  margin-bottom: 1.2em;
}

.l-treatment .p-sec-catch--en {
  margin-bottom: 30px;
  text-align: center;
}

.l-treatment .p-sec-catch2--en {
  margin-bottom: 70px;
}

.l-treatment .p-treatment-box {
  margin-bottom: 50px;
}

.l-treatment .p-treatment-btn {
  margin: 0 auto;
}

.l-case {
  padding-top: 70px;
  padding-bottom: 100px;
}

.l-case .p-case-catch {
  margin-bottom: 63px;
}

.l-case .p-physical-img {
  margin-bottom: 160px;
}

.l-case .p-case__inner {
  padding-bottom: 75px;
}

.l-case .p-case__comment {
  margin-top: 50px;
}

.l-case .p-case-btn {
  margin: 53px auto 0;
}

.l-flow {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative;
}

.l-flow .p-sec-catch {
  margin: -1.7em 0 30px 65px;
}

.l-flow .p-sec-catch--en {
  margin-bottom: 90px;
  margin-left: 65px;
}

.l-flow .p-flow-img {
  position: absolute;
  top: 70px;
  right: clamp(30px, 6.77vw, 130px);
}

.l-doctor {
  padding-top: 70px;
}

.l-doctor .p-doctor-title {
  text-align: right;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: rgba(54, 54, 54, 0.14);
}

.l-doctor .p-sec-catch {
  padding-left: 50px;
  margin-bottom: 2em;
}

.l-doctor .p-doctor-message {
  margin: 0 auto 40px;
  max-width: 900px;
}

.l-doctor .p-doctor-box {
  margin-bottom: 95px;
}

.l-doctor .p-doctor-btn {
  margin: 0 auto;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}

.l-price {
  background: #E2EBEF;
  padding-top: 195px;
  padding-bottom: 107px;
}

.l-price h2 {
  margin-bottom: 15px;
}

.l-price .p-sec-catch {
  margin-bottom: 70px;
}

.l-price .p-price {
  margin-bottom: 90px;
}

.l-access {
  padding-top: 240px;
  padding-bottom: 100px;
}

.l-access .c-gmap {
  padding-top: 57%;
}

.l-access .p-access__schedule {
  margin-left: -90px;
  margin-right: 50px;
  position: relative;
  z-index: 5;
}

.l-access .p-access__schedule tr {
  border-bottom: none;
}

.l-access .p-access__schedule > p {
  margin-top: 1em;
}

.l-faq {
  padding-top: 70px;
  padding-bottom: 100px;
}

.l-faq .p-faq-title {
  margin-bottom: 57px;
}

.l-contact {
  position: relative;
  padding-top: 100px;
  padding-bottom: 158px;
}

.l-contact .l-container {
  z-index: 5;
}

.l-contact .p-sec-catch {
  margin: -1.7em 0 30px 65px;
}

.l-contact .p-sec-catch--en {
  margin-bottom: 90px;
  margin-left: 65px;
}

.l-contact .p-contact-img {
  position: absolute;
  top: 80px;
  right: 0;
}

/* レイアウト 固定ページ
-------------------------------------- */

.l-page-contents {
  padding: 50px 0 80px;
}

.c-button-submit {
  width: 320px;
  height: 60px;
}

.c-button-rounded {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #97CADD;
  color: #fff;
  border-radius: 5em;
}

.c-button-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 540px;
  height: 100px;
  background: #61A7C0;
  background-image: url("../images/icon-btn-arrow.svg");
  background-repeat: no-repeat;
  background-position: right 33px center;
  font-size: 2.4rem;
  color: #fff;
  border-radius: 20px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-contact:hover {
  background-position: right 28px center;
  opacity: 0.7;
}

.c-button-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  font-size: 1.8rem;
  margin-left: auto;
  letter-spacing: 0.1em;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-link:hover {
  opacity: 0.7;
}

.c-button-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1em;
  font-size: 1.4rem;
  padding: 0 1em;
  letter-spacing: 0.1em;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-sns:hover {
  opacity: 0.7;
}

.c-modal-open {
  cursor: pointer;
}

.c-button-close {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #61A7C0;
}

.c-button-close span {
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.c-button-close span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.c-button-close span:nth-child(2) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-button-top {
  width: 52px;
  height: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(153, 153, 153, 0.7);
  cursor: pointer;
}

.c-button-top::before,
.c-button-top::after {
  content: "";
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}

.c-button-top::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-right: -4px;
}

.c-button-top::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-left: -4px;
}

/* ------------------------------------
  ドロワー
-------------------------------------- */

.c-drawer {
  position: relative;
  cursor: pointer;
  width: 32px;
  height: 16px;
}

.c-drawer__bar {
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px solid #fff;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-drawer__bar:not(:last-child) {
  margin-bottom: 5.5px;
}

.c-drawer.is-change-color .c-drawer__bar {
  border-color: #2A2A2A;
}

.c-drawer.is-active .c-drawer__bar {
  position: absolute;
  width: 32px;
  border-color: #fff;
  margin-bottom: 0;
}

.c-drawer.is-active .c-drawer__bar:nth-child(1) {
  top: 9px;
  left: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}

.c-drawer.is-active .c-drawer__bar:nth-child(2) {
  top: 9px;
  left: 1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-drawer.is-active .c-drawer__bar:nth-child(3) {
  top: 9px;
  left: 1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* Title
-------------------------------------- */

.c-sec-title {
  color: #F4F4F4;
  line-height: 1;
  font-size: clamp(5rem, 10.31vw, 16.5rem);
  font-weight: normal;
}

.c-price-title {
  color: #fff;
  line-height: 1;
  font-size: clamp(4rem, 8.33vw, 10.5rem);
  font-weight: normal;
}

.c-sec-title2 {
  position: relative;
  font-family: "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "游明朝体", "Yu Mincho", yumincho, "MS P明朝", "MS PMincho", serif;
  font-size: clamp(4rem, 5vw, 8.5rem);
  font-weight: normal;
  line-height: 1;
  color: #fff;
  bottom: -0.1em;
}

.c-sec-title2::before {
  content: "";
  display: block;
  width: 100%;
  height: 0.7058em;
  background: #61A7C0;
  border-radius: 0 5em 5em 0;
  position: absolute;
  left: 0;
  top: -0.4em;
}

.c-sec-title2 p {
  position: relative;
  z-index: 3;
}

.c-toggle-title {
  max-width: 1090px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5em;
  border: 1px dotted #C7C7C7;
  padding-left: 37px;
  position: relative;
}

.c-toggle-title::after {
  content: "+";
  width: 25px;
  height: 25px;
  background: #C6C6C6;
  color: #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  right: 17px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.c-toggle-title.is-open::after {
  content: "－";
}

/* YouTube GoogleMap
-------------------------------------- */

.c-gmap {
  position: relative;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
}

.c-gmap iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* ヘッダー
-------------------------------------- */

.p-logo a {
  display: block;
}

.p-logo a img {
  vertical-align: top;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.is-changed .p-logo a img {
  width: 70%;
}

.p-drawer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background: #97CADD;
  border-bottom-left-radius: 28px;
}

.p-header-btn {
  width: clamp(200px, 19.17vw, 230px);
  height: 50px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  position: relative;
}
.c-botton-access {
  margin-right: 15px;
}

/* .p-header-btn::before {
  content: "";
  display: block;
  width: 29px;
  height: 36px;
  background: url("../images/icon-reserve.png");
  position: absolute;
  left: -36px;
  top: 0;
  bottom: 0;
  margin: auto;
}*/

.is-changed .p-header-btn {
  height: 40px;
}

.is-changed .p-header-btn a img {
  width: 70%;
}

/* フッター
-------------------------------------- */

.p-footer-name {
  font-size: clamp(3rem, 6.75vw, 8.5rem);
}

.p-footer-catch {
  font-size: 1.8rem;
  margin-bottom: 1em;
}

.p-footer-link {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.p-footer-sns {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-footer-sns .c-button-sns:nth-child(1),
.p-footer-sns .c-button-sns:nth-child(2) {
  border-right: 1px solid #fff;
}

.p-footer-address br {
  display: none;
}

.p-button-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 15;
}

.p-footer__tel {
  font-size: 1.8rem;
}

.p-footer__tel a {
  font-size: 2.6rem;
}

.p-footer__tel a:hover {
  opacity: 0.7;
}

.p-footer__time {
  font-size: 1.2rem;
}

.p-copyright {
  margin-top: 100px;
  font-size: 1.2rem;
}

/* ナビゲーション
-------------------------------------- */

.p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-nav__item {
  padding: 8px 4.76%;
  color: #fff;
  border-right: 1px dotted #fff;
}

.p-nav__item:first-of-type {
  padding-left: 0;
}

.p-nav__item:last-of-type {
  padding-right: 0;
  border-right: none;
}

.p-nav-schedule .p-schedule {
  margin-bottom: 25px;
}

.p-nav-schedule .p-schedule tr {
  border-bottom: 1px solid #fff;
}

.p-nav-schedule .p-schedule th {
  color: #fff;
}

.p-nav-schedule > p {
  text-align: center;
  color: #fff;
}

.p-schedule {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
}

.p-schedule th,
.p-schedule td {
  padding: 1em;
}

.p-nav-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}

.p-nav-tel__text {
  width: 100%;
  background: #fff;
  color: #61A7C0;
  padding: 5px;
  text-align: center;
  font-size: 1.5rem;
}

.p-nav-tel__tel {
  font-size: 3.8rem;
}

.p-nav-tel__tel span {
  font-size: 2rem;
}

.p-nav-tel__tel a {
  color: #fff;
}

.p-nav-tel .p-nav-tel__tel {
  margin-bottom: 12px;
}

.p-nav-tel .p-sns {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 50px;
}

.p-sns .c-button-sns {
  color: #fff;
}
.p-sns .c-button-sns:nth-child(1),
.p-sns .c-button-sns:nth-child(2) {
  border-right: 1px solid #fff;
}
@media screen and (max-width: 991px) {
  .p-sns .c-button-sns span.sp {
    display: none;
  }
  .p-nav-tel .p-sns {
    margin: 20px auto 0;
  }
}
/* キービジュアル
-------------------------------------- */

.p-kv-slider {
  overflow: hidden;
}

.p-kv-slider__slide img {
  width: 100%;
  vertical-align: top;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    /* 拡大率 */
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    /* 拡大率 */
  }
}

.add-animation {
  -webkit-animation: zoomUp 12s linear 0s normal both;
  animation: zoomUp 12s linear 0s normal both;
}

.p-kv-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  color: #61A7C0;
}

.p-kv-contents__en {
  background: #61A7C0;
  color: #fff;
  font-size: 1.4rem;
  text-align: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding: 8px 107px 8px 23px;
  border-radius: 5em 0 0 5em;
}

.p-kv-contents .p-kv-contents__en {
  margin-bottom: 25px;
}

.p-kv-contents .p-kv-contents__en br {
  display: none;
}

.p-kv-contents .p-kv-contents__catch {
  font-size: clamp(3rem, 3.81vw, 6.1rem);
  font-weight: 400;
  text-align: right;
  padding-right: 65px;
  -webkit-transition-delay: 2.3s;
  transition-delay: 2.3s;
}

.p-kv-contents .p-kv-contents__text {
  font-size: 3.2rem;
  padding-right: 80px;
  text-align: right;
  -webkit-transition-delay: 3.6s;
  transition-delay: 3.6s;
}

/* モーダル
-------------------------------------- */

.c-modal-close {
  position: relative;
  width: 32px;
  height: 16px;
}

.c-modal-close span {
  display: block;
  width: 32px;
  height: 0;
  border-top: 1px solid #fff;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  position: absolute;
}

.c-modal-close span:nth-child(1) {
  top: 9px;
  left: -1px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-modal-close span:nth-child(2) {
  top: 9px;
  left: -1px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.p-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #61A7C0;
  z-index: 100;
}

.p-modal-close {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 105;
}

.p-modal {
  display: none;
  background: #fff;
  left: 50%;
  top: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 1260px;
  z-index: 100;
}

.p-modal__inner {
  height: auto;
  max-height: 560px;
  overflow-y: auto;
}

.u-indent {
  padding-left: 1em;
  text-indent: -1em;
}

.u-text-left {
  text-align: left;
}

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

.u-text-right {
  text-align: right;
}

.u-text-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.u-lh-2 {
  line-height: 2;
}

.u-color-white {
  color: #fff;
}

.u-color-link {
  color: #73B5C9;
}

.mt50 {
  margin-top: 50px;
}

/* スクロールバー
-------------------------------------- */

.u-scrollbar::-webkit-scrollbar {
  width: 10px;
}

.u-scrollbar::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 7px;
}

.u-scrollbar::-webkit-scrollbar-thumb {
  background: #61A7C0;
  border: 3px solid transparent;
  background-clip: padding-box;
  border-radius: 7px;
}

@media screen and (min-width: 768px) {
  .l-sidebar {
    padding: 0 0 50px;
    position: sticky;
    top: 200px;
  }

  .c-drawer {
    width: 38px;
    height: 16px;
  }

  .c-drawer__bar {
    border-top: 1px solid #fff;
  }

  .c-drawer__bar:not(:last-child) {
    margin-bottom: 5.5px;
  }

  .c-drawer.is-active .c-drawer__bar {
    width: 38px;
    border-color: #fff;
  }

  .c-drawer.is-active .c-drawer__bar:nth-child(1) {
    top: 7px;
    left: -1px;
  }

  .c-drawer.is-active .c-drawer__bar:nth-child(2) {
    top: 7px;
    left: -1px;
  }

  .c-drawer.is-active .c-drawer__bar:nth-child(3) {
    top: 7px;
    left: -1px;
  }

  .c-modal-close {
    width: 38px;
    height: 16px;
  }

  .c-modal-close span {
    width: 38px;
    border-top: 1px solid #fff;
  }

  .c-modal-close span:nth-child(1) {
    top: 7px;
    left: -1px;
  }

  .c-modal-close span:nth-child(2) {
    top: 7px;
    left: -1px;
  }
}

@media screen and (max-width: 1299px) {
  .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 1199px) {
  .l-contact .p-sec-catch {
    margin: -1em 0 20px 0;
  }

  .l-contact .p-sec-catch--en {
    margin-bottom: 60px;
    margin-left: 0;
  }

  .l-contact .p-form {
    margin: 0 auto;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 1.4rem;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 900px) {
  html {
    font-size: 1.1111111111vw;
  }
}

@media screen and (max-width: 767px) {
  input,
  textarea {
    padding: 0.5em;
  }

  textarea {
    padding: 0.5em;
  }

  html {
    font-size: 62.5%;
  }

  .l-nav {
    max-height: 100vh;
  }

  .l-nav__container {
    width: 100%;
    max-height: 80vh;
    padding: 0 20px;
  }

  .l-nav .p-nav {
    margin-bottom: 30px;
  }

  .l-nav__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 30px;
  }

  .l-nav__contents .p-nav-schedule {
    width: 100%;
    max-width: 520px;
  }

  .l-nav__contents .p-nav-tel {
    width: 100%;
    max-width: 298px;
  }

  .l-header {
    padding: 0 0 0 20px;
  }

  .l-header__container {
    padding: 8px 0 10px;
  }

  .l-header .p-header-btn {
    display: none;
  }

  .l-footer {
    padding: 60px 0;
  }

  .l-footer .p-footer-name {
    margin-bottom: 0.3em;
    padding-left: 20px;
  }

  .l-main {
    padding-top: 70px;
  }

  .l-catch {
    margin: 50px auto 70px;
  }

  .l-physical .p-physical-img {
    margin-bottom: 40px;
  }

  .l-physical__contents {
    background: #FAFAFA;
    padding-bottom: 70px;
  }

  .l-treatment {
    padding-top: 70px;
    padding-bottom: 0;
  }

  .l-treatment .p-sec-catch {
    margin-top: -1em;
    text-align: left;
  }

  .l-treatment .p-sec-catch span {
    display: inline-block;
  }

  .l-treatment .p-sec-catch2 {
    margin-top: 70px;
    margin-bottom: 1.2em;
  }

  .l-treatment .p-sec-catch--en {
    text-align: left;
  }

  .l-treatment .p-sec-catch--en span {
    display: inline-block;
  }

  .l-case {
    padding-bottom: 50px;
  }

  .l-case .p-physical-img {
    margin-bottom: 40px;
  }

  .l-case .p-case-catch {
    margin-bottom: 30px;
  }

  .l-case .p-case__inner {
    padding-bottom: 50px;
  }

  .l-flow {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .l-flow .p-flow-title {
    margin-left: 20px;
    position: relative;
    z-index: 5;
  }

  .l-flow .p-sec-catch {
    margin: -0.8em 0 20px 20px;
    position: relative;
    z-index: 7;
  }

  .l-flow .p-sec-catch--en {
    margin-bottom: 60px;
    margin-left: 20px;
  }

  .l-flow .p-flow-img {
    display: block;
    top: 0;
    right: 20px;
    width: 160px;
    opacity: 0.6 !important;
  }

  .l-doctor .p-sec-catch {
    padding-left: 0;
    margin-bottom: 1.5em;
  }

  .l-doctor .p-sec-catch span {
    display: inline-block;
  }

  .l-doctor .p-doctor-box {
    margin-bottom: 30px;
  }

  .l-price {
    padding-top: 70px;
    padding-bottom: 40px;
  }

  .l-price .p-sec-catch {
    margin-bottom: 40px;
  }

  .l-price .p-price {
    margin-bottom: 50px;
  }

  .l-access {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .l-access .p-access__schedule {
    margin-left: 0;
    margin-right: 0;
  }

  .l-access .p-access__schedule th,
  .l-access .p-access__schedule td {
    font-weight: normal;
  }

  .l-faq {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .l-contact {
    padding-top: 40px;
    padding-bottom: 70px;
  }

  .l-contact .p-contact-img {
    top: 0;
    opacity: 0.6 !important;
  }

  .l-contact .p-contact-title {
    position: relative;
    z-index: 5;
    padding-left: 20px;
  }

  .l-contact .p-sec-catch {
    position: relative;
    z-index: 7;
  }

  .l-page-contents {
    padding-bottom: 80px;
  }

  .c-button-contact {
    width: 80%;
    max-width: 540px;
    height: 70px;
    border-radius: 13px;
    font-size: clamp(1.4rem, 4.27vw, 2.2rem);
    background-size: auto 40px;
    background-position: right 15px center;
  }

  .c-sec-title2 {
    font-size: clamp(1.8rem, 5.87vw, 3rem);
    bottom: 0.04em;
  }

  .c-sec-title2::before {
    height: 1em;
  }

  .c-toggle-title {
    height: 50px;
    padding: 0 57px 0 15px;
  }

  .p-drawer {
    width: 80px;
    height: 80px;
  }

  .p-footer-catch {
    font-size: 1.6rem;
    margin-bottom: 2em;
  }

  .p-footer-address br {
    display: block;
  }

  .p-copyright {
    margin-top: 40px;
    margin-left: 20px;
  }

  .p-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-nav__item {
    width: 40%;
    padding: 0.5em 0;
    border-right: none;
  }

  .p-schedule {
    font-size: 1.4rem;
  }

  .p-schedule th,
  .p-schedule td {
    padding: 0.5em;
  }

  .p-nav-tel__tel {
    font-size: 3.2rem;
  }

  .p-nav-tel__tel span {
    font-size: 1.7rem;
  }

  .p-nav-tel .p-nav-tel__tel {
    margin-bottom: 0;
  }

  .p-kv-slider__slide img {
    height: calc(100vh - 70px);
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-kv-contents__en {
    font-size: 1.3rem;
    padding: 8px 15px 8px 25px;
    text-align: right;
  }

  .p-kv-contents .p-kv-contents__en {
    max-width: 90%;
  }

  .p-kv-contents .p-kv-contents__en br {
    display: block;
  }

  .p-kv-contents .p-kv-contents__catch {
    font-size: clamp(2rem, 5.87vw, 3rem);
    padding-right: 5px;
  }

  .p-kv-contents .p-kv-contents__text {
    font-size: clamp(1.4rem, 4.8vw, 2rem);
    padding-right: 10px;
  }
}
/*# sourceMappingURL=common.css.map */
