@charset "UTF-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* 基本スタイル
====================================== */

html {
  font-size: 62.5%;
}

html.is-fixed {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Zen Kaku Gothic Antique", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "游ゴシック体", "Yu Gothic", yugothic, "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.06em;
  color: #464038;
  min-height: 100vh;
  position: relative;
}

.fade-huwari {
	animation: fadein 3s forwards;
}

@keyframes fadein {
	0% {opacity: 0}
	100% {opacity: 1}
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 1.6rem;
  font-weight: normal;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.5s;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

li {
  list-style: none;
}

/* 基本 フォーム
====================================== */

/* input
-------------------------------------- */

input {
  width: auto;
  max-width: 100%;
  padding: 0.4em 0.8em;
  background-color: #fff;
  border: none;
  border-radius: 5em;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

input:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

/* テキストエリア
-------------------------------------- */

textarea {
  width: auto;
  max-width: 100%;
  height: 100px;
  padding: 0.4em 0.8em;
  background-color: #fff;
  border: none;
  border-radius: 40px;
  font-family: inherit;
  font-size: 1em;
  color: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
}

textarea:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
}

/* ラジオボタン
-------------------------------------- */

input[type=radio] {
  display: none;
}

input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding: 0 1em 0 1.4em;
  margin: 0;
  cursor: pointer;
}

input[type=radio] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #949494;
  background: #fff;
  border-radius: 50%;
}

input[type=radio] + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #3ba986;
  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 #949494;
  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 #3ba986;
  border-bottom: 3px solid #3ba986;
  -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: none;
  background: #fff;
  border-radius: 5em;
  position: relative;
  width: 100%;
  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 {
  width: 100%;
  padding: 5px 35px 5px 10px;
}

.c-select:focus-within::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/* レイアウト メインナビゲーション
====================================== */

.l-nav {
  display: none;
  max-width: 1106px;
  z-index: 20;
  position: relative;
}

.l-nav-sp {
  width: calc(100% - 20px);
  max-width: 500px;
  height: auto;
  max-height: 97vh;
  overflow-y: auto;
  margin-left: 24px;
  padding: 24px 20px 100px;
  background: #A0B51E;
  -webkit-filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  font-size: 18px;
  color: #FFF;
}

.l-nav-sp.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.l-nav-sp .p-nav-sp {
  padding-top: 60px;
}

/* レイアウト ヘッダー
====================================== */

.l-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 15;
  padding: 35px 35px 0 35px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
  background: linear-gradient(90deg, rgba(186, 209, 44, 0) 10%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 7) 100%);
}

/* レイアウト ドロワー
====================================== */

.l-drawer {
  display: block;
  position: fixed;
  top: 35px;
  right: 26px;
  z-index: 40;
}

/* レイアウト 各医院案内
====================================== */

.l-address {
  position: relative;
  z-index: 12;
}

/* レイアウト フッター
====================================== */

.l-footer {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-top: 100px;
}
.footer-contents {
  background: #3ba986;
}
.footer-nav {
  padding: 65px 100px;
  border-bottom: 1px solid #fff;
}
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  color: #fff;
  gap: 20px 40px;
}
.footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .footer-bottom {
  display: block;
  text-align: center;
}
}
@media screen and (max-width: 767px) {

  .footer-bottom {
    display: block;
    padding-top: 30px;
    padding-bottom: 30px;
}

.footer-nav {
  padding: 35px 40px;
}

}
@media screen and (max-width: 480px) {
  
  .l-footer {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin-top: 30px;
}
.footer-nav {
  padding: 35px 15px;
}

}

/* トップへ戻るボタン 位置
-------------------------------------- */

.l-button-top {
  display: none;
}



/* コンポーネント ボタン
====================================== */

/* ボタン
-------------------------------------- */

.c-button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  padding: 0.4em 1.3em;
  margin: 0;
  background-color: #3ba986;
  border: 1px solid #3ba986;
  color: #fff;
  text-decoration: none;
  border-radius: 5em;
  font-size: max(1em, 1.6rem);
  text-align: center;
  -webkit-appearance: none;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button:hover {
  opacity: 0.7;
}

.c-button2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  padding: 0.4em 1.3em;
  margin: 0;
  background-color: #3ba986;
  border: 1px solid #3ba986;
  color: #fff;
  text-decoration: none;
  border-radius: 1.4em;
  font-size: max(1em, 2.2rem);
  text-align: center;
  -webkit-appearance: none;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button2:hover {
  opacity: 0.7;
}

.c-button-double {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  padding: 1em 1.3em;
  margin: 0;
  border: 2px solid #3ba986;
  color: #fff;
  text-decoration: none;
  border-radius: 5em;
  font-size: max(1em, 1.8rem);
  text-align: center;
  -webkit-appearance: none;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-double::before {
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  position: absolute;
  top: 5px;
  left: 5px;
  background: #3BA986;
  border-radius: 5em;
  z-index: -1;
}

.c-button-double:hover {
  opacity: 0.7;
}

.c-button--wh {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  padding: 0.4em 1.3em;
  margin: 0;
  background-color: #fff;
  border: 1px solid #3ba986;
  color: #3ba986;
  text-decoration: none;
  border-radius: 1.4em;
  font-size: max(1em, 1.6rem);
  text-align: center;
  -webkit-appearance: none;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button--wh:hover {
  opacity: 0.7;
}

.c-button-rounded {
  background: #3ba986;
  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;
  -ms-flex-item-align: center;
  align-self: center;
  padding: 11px;
  border-radius: 10px;
  color: #fff;
  font-size: max(1em, 1.8rem);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-rounded:hover {
  opacity: 0.7;
}

.c-button-rounded--wh {
  background: #fff;
  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;
  -ms-flex-item-align: center;
  align-self: center;
  gap: 15px;
  padding: 18px;
  border-radius: 10px;
  border: 1px solid #3ba986;
  color: #3ba986;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-rounded--wh:hover {
  opacity: 0.7;
}

.c-button-link {
  background: #F2F8F3;
  border-radius: 10px;
  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;
  color: #3ba986;
  padding: 8px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-link:hover {
  background: #85C790;
  color: #fff;
}

/* ボタン(グリーン)
-------------------------------------- */
.btn-green {
  background: #3ba986;
  color: #FFF;
  padding: 10px 65px;
  text-align: center;
  transition: 0.5s;
}
.btn-green:hover {
  background: #C7DB4B;
  transition: 0.5s;
}


/* メインナビ内ボタン
-------------------------------------- */

.c-nav-btn,
.c-nav-btn--external,
.c-nav-sp-btn,
.c-nav-sp-btn--external {
  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;
  width: 100%;
  padding: 10px 22px;
  background: rgba(191, 207, 84, 0.11);
  border-radius: 12px;
}

.c-nav-btn::after,
.c-nav-btn--external::after,
.c-nav-sp-btn::after,
.c-nav-sp-btn--external::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 10px;
  background-color: #707070;
  -webkit-clip-path: polygon(8px 50%, 0% 0%, 0% 10px);
  clip-path: polygon(8px 50%, 0% 0%, 0% 10px);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-nav-btn.is-open::after,
.c-nav-btn--external.is-open::after,
.c-nav-sp-btn.is-open::after,
.c-nav-sp-btn--external.is-open::after {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c-nav-btn {
  background: rgba(255, 255, 255, 0.16);
  padding: 4px 12px;
  color: #fff;
  width: 340px;
}

.c-nav-btn::after {
  background-color: #fff;
}

.c-nav-btn--external {
  background: #fff;
  color: #3ba986;
  font-size: 2rem;
  padding: 15px 25px 15px 40px;
}

.c-nav-btn--external::after {
  background-color: #3ba986;
}

.c-nav-sp-btn {
  margin-bottom: 10px;
}

.c-nav-sp-btn--external {
  background: #3ba986;
  color: #fff;
}

.c-nav-sp-btn--external::after {
  background-color: #fff;
}

/* 閉じるボタン
-------------------------------------- */

.c-button-close {
  width: 38px;
  height: 38px;
  cursor: pointer;
}

.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);
}

.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;
}

/* js ボタン用
-------------------------------------- */

.js-modal-open {
  cursor: pointer;
}

.js-top-button {
  cursor: pointer;
}

/* コンポーネント ドロワー
====================================== */

.c-drawer {
  position: relative;
  cursor: pointer;
  width: 30px;
  height: 25px;
}

.c-drawer__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #3ba986;
  border-radius: 2px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-drawer__bar:not(:last-child) {
  margin-bottom: 2px;
}

.c-drawer .c-drawer__bar {
  position: absolute;
  width: 30px;
  margin-bottom: 0;
}
.c-drawer .c-drawer__bar:nth-child(1) {
  top: 3px;
  left: 0;
}

.c-drawer .c-drawer__bar:nth-child(2) {
  top: 12px;
  left: 0;
}

.c-drawer .c-drawer__bar:nth-child(3) {
  top: 21px;
  left: 0;
}

.c-drawer.is-active .c-drawer__bar {
  position: absolute;
  width: 30px;
  margin-bottom: 0;
}

.c-drawer.is-active .c-drawer__bar:nth-child(1) {
  top: 12px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  opacity: 0;
}

.c-drawer.is-active .c-drawer__bar:nth-child(2) {
  top: 12px;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.c-drawer.is-active .c-drawer__bar:nth-child(3) {
  top: 12px;
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* コンポーネント YouTube, Google Map
====================================== */

.c-map {
  position: relative;
  height: 0;
  padding-bottom: 48%;
  overflow: hidden;
}

.c-map iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* コンポーネント アイコン
====================================== */

/* ヘッダー
====================================== */

.p-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  gap: 20px;
}

.is-fixed .p-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-header__logo {
  width: clamp(160px, 48.006vw, 200px);
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.is-fixed .p-header__logo {
  width: clamp(160px, 48.006vw, 200px);
}

.p-header__list {
  background: #fff;
  border-radius: 5em;
  padding: 5px 20px;
  font-size: 1.4rem;
}

.p-header__list p {
  text-align: center;
}

.p-header__list p::before {
  content: "●";
}

.p-header__list .swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.p-header__list .swiper-slide {
  white-space: nowrap;
}

/* ドロワー 枠
-------------------------------------- */

.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: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  -webkit-filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.16));
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.16));
}

/* 各医院
====================================== */

.p-address-box {
  padding: 80px 15px 50px;
  border: 3px solid #3ba986;
}

.p-contact-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}

.p-contact-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 460px;
  position: relative;
}

.p-contact-item__name {
  width: 85%;
  font-size: clamp(2rem, 1.5652vw, 2.6rem);
  font-weight: bold;
  margin: 0 auto;
  padding: 10px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  border: 2px solid #3BA986;
  border-bottom: none;
}

[data-clinic=kashiwa] .p-contact-item__name {
  color: #3BA986;
  border-color: #3BA986;
}

[data-clinic=ageo] .p-contact-item__name {
  color: #E75C43;
  border-color: #E75C43;
}

[data-clinic=fujimino] .p-contact-item__name {
  color: #4955A0;
  border-color: #4955A0;
}

.p-contact-item__img {
  position: relative;
  margin-bottom: 1em;
}

.p-contact-item__img > img {
  border-radius: 15px;
}

.p-contact-item__map {
  position: absolute;
  bottom: -15px;
  right: 8px;
  width: 50px;
  height: 50px;
  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;
  border-radius: 50%;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.p-contact-item__map img {
  height: 60%;
}

.p-contact-item__map:hover {
  opacity: 0.7;
}

[data-clinic=kashiwa] .p-contact-item__map {
  background: #3BA986;
}

[data-clinic=ageo] .p-contact-item__map {
  background: #E75C43;
}

[data-clinic=fujimino] .p-contact-item__map {
  background: #4955A0;
}

.p-contact-item__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.p-contact-item__zip {
  white-space: nowrap;
}

.p-contact-item__addr {
  white-space: nowrap;
}

.p-contact-item__tel {
  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;
  gap: 0.5em;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(1.8rem, 3.1248vw, 3rem);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

[data-clinic=kashiwa] .p-contact-item__tel {
  color: #3BA986;
}

[data-clinic=ageo] .p-contact-item__tel {
  color: #E75C43;
}

[data-clinic=fujimino] .p-contact-item__tel {
  color: #4955A0;
}

.p-contact-item__btn .c-button-double {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 280px;
  margin: 0 auto clamp(30px, 3.612vw, 60px);
  z-index: 3;
}

.p-contact-item__btn .c-button-double::before {
  z-index: -1;
}

[data-clinic=kashiwa] .p-contact-item__btn .c-button-double {
  border-color: #3BA986;
}

[data-clinic=ageo] .p-contact-item__btn .c-button-double {
  border-color: #E75C43;
}

[data-clinic=fujimino] .p-contact-item__btn .c-button-double {
  border-color: #4955A0;
}

[data-clinic=kashiwa] .p-contact-item__btn .c-button-double::before {
  background: #3BA986;
}

[data-clinic=ageo] .p-contact-item__btn .c-button-double::before {
  background: #E75C43;
}

[data-clinic=fujimino] .p-contact-item__btn .c-button-double::before {
  background: #4955A0;
}

.p-contact-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 90%;
  margin: 0 auto;
  border-left: 2px dotted #9F9F9F;
  border-right: 2px dotted #9F9F9F;
  text-align: center;
  padding-left: 10px;
  padding-right: calc(33px + clamp(10px, 1.9866vw, 33px));
  position: relative;
}

.p-contact-item__link:hover {
  text-decoration: underline;
}

.p-contact-item__link img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(10px, 1.9866vw, 33px);
  margin: auto;
}

[data-clinic=kashiwa] .p-contact-item__link {
  color: #3BA986;
}

[data-clinic=ageo] .p-contact-item__link {
  color: #E75C43;
}

[data-clinic=fujimino] .p-contact-item__link {
  color: #4955A0;
}

.p-contact-item__illust {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 66%;
}

/* フッター
====================================== */

.p-copyright {
  font-weight: 900;
  color: #fff;
}

/* パンくず
====================================== */

.aioseo-breadcrumbs,
.p-breadcrumbs {
  padding: 45px 0 50px;
  text-align: right;
}

.aioseo-breadcrumbs > li,
.aioseo-breadcrumbs > a,
.aioseo-breadcrumbs > span,
.p-breadcrumbs > li,
.p-breadcrumbs > a,
.p-breadcrumbs > span {
  display: inline-block;
}

.aioseo-breadcrumbs > li:not(:last-child)::after,
.p-breadcrumbs > li:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin: 0 1.25em;
  color: #fff;
}

.aioseo-breadcrumbs > li a,
.aioseo-breadcrumbs > a,
.p-breadcrumbs > li a,
.p-breadcrumbs > a {
  color: #fff;
  border-bottom: 1px dotted #fff;
}

.aioseo-breadcrumbs > li > span,
.aioseo-breadcrumbs > span,
.p-breadcrumbs > li > span,
.p-breadcrumbs > span {
  color: #fff;
}

.aioseo-breadcrumbs span.aioseo-breadcrumb-separator,
.p-breadcrumbs span.aioseo-breadcrumb-separator {
  color: #fff;
}

/* メインナビゲーション PC版
====================================== */

.p-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  gap: 15px;
}

.p-nav__item {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  position: relative;
  padding: 0 0 10px;
}

.p-nav__item a,
.p-nav__item p {
  font-size: 1.6rem;
  font-weight: 500;
}

.p-nav__item > a,
.p-nav__item > p {
  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;
  gap: 9px;
  color: #333;
  cursor: pointer;
}

.p-nav__item > a span,
.p-nav__item > p span {
  display: block;
}

/* メインナビ PC版 子要素
-------------------------------------- */

.p-nav-child {
  padding: 22px 25px;
  background: #FFF;
  /* border-radius: 20px; */
}

.p-nav-child a:hover {
  opacity: 0.7;
}

.p-nav-child .c-nav-btn--external {
  margin-bottom: 22px;
}

.p-nav-child .p-nav-child-list a,
.p-nav-child .p-nav-child-list--1column a {
  color: #000;
}

/* メインナビ PC版/SP版 子要素内リスト
-------------------------------------- */

.p-nav-child-list,
.p-nav-child-list--1column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  position: relative;
}

.p-nav-child-list li:last-of-type,
.p-nav-child-list--1column li:last-of-type {
  border-bottom: none;
}

.p-nav-child-list > li > a,
.p-nav-child-list > li > p,
.p-nav-child-list--1column > li > a,
.p-nav-child-list--1column > li > p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 10px 5px 12px;
}

.p-nav-child-list--1column {
  grid-template-columns: 1fr;
}

.p-nav-child-list li {
  position: relative;
}

.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  color: #FFF;
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 0;
  width: 12px;
  height: 12px;
  transform: translateX(-25%) rotate(45deg);
}

.dli-chevron-round-right::before, .dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}

/* メインナビ PC版 子要素動作
-------------------------------------- */

.js-nav-parent {
  position: relative;
}

.js-nav-parent > a span::after,
.js-nav-parent > p span::after {
  content: "▼";
  font-size: 1.2rem;
  margin-left: 0.5em;
}

.js-nav-child {
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  min-width: 300px;
  z-index: 1;
}

.js-nav-parent:hover > .js-nav-child {
  opacity: 1;
  -webkit-transition: opacity 0.3s, visibility 0.3s;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: visible;
}

/* メインナビゲーション SP版
====================================== */

.p-nav-sns {
  color: #648061;
  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;
  gap: 15px;
}

.p-sns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.p-nav-sp__item {
  border-bottom: 1px dotted #FFF;
}

.p-nav-sp__item:nth-last-child(-n+2) {
  border-bottom: none;
}

.p-nav-sp-item > a,
.p-nav-sp-item > p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  cursor: pointer;
}

.p-nav-sp-item > a.js-toggle-open::after,
.p-nav-sp-item > p.js-toggle-open::after {
  content: "";
  margin-left: 20px;
  width: 8px;
  height: 10px;
  background-color: #FFF;
  -webkit-clip-path: polygon(8px 50%, 0% 0%, 0% 10px);
  clip-path: polygon(8px 50%, 0% 0%, 0% 10px);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.p-nav-sp-item > a.js-toggle-open.is-open::after,
.p-nav-sp-item > p.js-toggle-open.is-open::after {
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.p-nav-sp-item .p-nav-treatment {
  margin-bottom: 1px;
}

/* メインナビ SP版 子要素
-------------------------------------- */

.p-nav-sp-child {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 34px;
}

.p-nav-sp-child .c-nav-sp-btn--external {
  margin-bottom: 10px;
}

/* フッターナビ
====================================== */

/* タブ
====================================== */

/* タブボタン
-------------------------------------- */

.js-tab {
  cursor: pointer;
}

/* タブ中身
-------------------------------------- */

.js-tab-contents {
  display: none;
}

.js-tab-contents.is-show {
  display: block;
  height: 100%;
}

/* モーダル
====================================== */

.p-overlay {
  display: none;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background: #3ba986;
  z-index: 100;
}

.p-modal {
  display: none;
  background: #fff;
  padding: 40px 15px;
  left: 50%;
  top: 50%;
  position: fixed;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 85%;
  max-width: 1280px;
  border-radius: 20px;
  z-index: 100;
}

.p-modal__inner {
  height: auto;
  max-height: 70vh;
  overflow-y: auto;
}

.p-modal__close {
  position: absolute;
  top: 30px;
  right: 40px;
}

/* フェードイン
====================================== */

.js-fadeIn,
.js-intro {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 1s;
  transition: 1s;
  will-change: filter;
}

.js-fadeIn--fade,
.js-intro--fade {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.js-fadeIn.in,
.js-intro.in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  will-change: filter;
}

.js-fadeIn .js-fadeIn__child,
.js-intro .js-fadeIn__child {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: 1s;
  transition: 1s;
  will-change: filter;
}

.js-fadeIn .js-fadeIn__child.in,
.js-intro .js-fadeIn__child.in {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  will-change: filter;
}

/* リスト
====================================== */

/* ol カウント
-------------------------------------- */

.p-list-num {
  counter-reset: number;
  padding-left: 0;
  margin: 0;
}

.p-list-num li {
  list-style-type: none;
}

.p-list-num li::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  margin-right: 0.5em;
  color: #B3CC55;
  font-weight: 900;
}

/* list-style ドット
-------------------------------------- */

.p-list-dots li {
  margin-top: 10px;
  text-indent: -1em;
  padding-left: 1em;
}

.p-list-dots li::before {
  content: "・";
  color: inherit;
}

/* list-style ハイフン
-------------------------------------- */

.p-list-hyphen li {
  margin-top: 10px;
  padding-left: 1em;
}

.p-list-hyphen li::before {
  content: "-";
  color: inherit;
}

/* list-style ▶
-------------------------------------- */

.p-list-arrow {
  list-style: none;
  padding-left: 1em;
}

.p-list-arrow li {
  text-indent: -1em;
  padding-left: 1em;
  line-height: 2;
}

.p-list-arrow li::before {
  content: "▶";
  color: #3ba986;
  font-size: 0.9em;
  display: inline-block;
  margin-right: 0.5em;
}

/* li ボーダー付
-------------------------------------- */

.p-border-list li {
  border-bottom: 2px dashed #707070;
  padding: 1.2em 0.5em;
}

/* list-style チェック
-------------------------------------- */

.p-list-check li {
  margin-bottom: 15px;
  padding-left: 60px;
  position: relative;
}

.p-list-check li::before {
  content: "";
  display: block;
  width: 32px;
  height: 30px;
  background: url("../images/common/icon-check.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

.p-list-check--flex li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.p-list-check--flex li::before {
  content: "";
  display: block;
  width: 22px;
  height: 20px;
  background: url("../images/common/icon-check.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}

/* li flex
-------------------------------------- */

.p-li-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* タイムライン年表
-------------------------------------- */

.p-timeline dd {
  margin-bottom: 1em;
}

/* ボックス
====================================== */

/* SP時 display: contents
-------------------------------------- */

.p-sp-contents {
  display: contents;
}

/* 白背景ボックス
-------------------------------------- */

.p-box {
  background: #fff;
  border-radius: 10px;
}

/* 右側コンテンツをブラウザ右端まで
-------------------------------------- */

.p-outside-right {
  margin-right: calc(50% - 50vw);
}

/* バナー
-------------------------------------- */

.p-banner {
  text-align: center;
  padding: 20px 0;
}

/* ボタン配置用
-------------------------------------- */

.p-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 30px 0 50px;
}

/* 診療日テーブル
-------------------------------------- */

.p-schedule-box {
  background: #6E7927;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px 30px;
}

.p-schedule-box__inner {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
}

.p-schedule-box__text {
  display: inline-block;
  margin-right: 30px;
  line-height: 2.25;
}

.p-schedule-box__btn {
  width: 240px;
}

.p-schedule {
  width: 100%;
  margin-bottom: 40px;
}

.p-schedule th,
.p-schedule td {
  text-align: center;
}

.p-schedule td {
  font-size: 1.2rem;
  padding: 3px;
}

.p-schedule tr:nth-of-type(1) th {
  padding-bottom: 1em;
  border-bottom: 2px dotted #788427;
}

.p-schedule tr:nth-of-type(1) th:nth-child(1) {
  color: #3ba986;
}

.p-schedule tr:nth-of-type(2) th,
.p-schedule tr:nth-of-type(2) td {
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  border-bottom: 2px dotted #788427;
}

.p-schedule tr:nth-of-type(3) th,
.p-schedule tr:nth-of-type(3) td {
  padding-top: 0.6em;
  padding-bottom: 0.6em;
  border-bottom: 2px dotted #788427;
}

.p-schedule__col1 {
  width: 15%;
}

.p-schedule__col2 {
  width: 10.625%;
}

.p-schedule-box__ttl {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 30px;
}

/* 診療日テーブル トップ
-------------------------------------- */

.p-access-schedule {
  width: 100%;
  margin: 20px auto;
  border-collapse: collapse;
  overflow: hidden;
}
.p-access-schedule__col1 {
  width: 24%;
}
.p-access-schedule__col2 {
  width: 9.4%;
}
.p-access-schedule tr:not(:nth-child(1)) th {
  text-align: center;
  padding: 7px;
}
.p-access-schedule td {
  text-align: center;
  padding: 7px;
}
.p-access-schedule tr:nth-child(1) th:nth-child(1) {
  padding: 7px;
}
.p-access-schedule thead th {
  border-bottom: 1px solid #BAD12C;
}
/* 導入部コンテンツボックス
-------------------------------------- */

.p-lead-box {
  display: contents;
}

.p-lead__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.p-lead-box__top img {
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.p-lead-box__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  gap: 30px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.p-lead-box__contents p {
  line-height: 2.25;
  letter-spacing: 0.06em;
}

.p-lead-box__bottom img {
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.p-lead-btn {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 22px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  position: relative;
}

.p-lead-btn__inner {
  position: absolute;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 10px;
  width: 95%;
}

.p-lead-btn .p-lead-btn__btn {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  max-width: 280px;
}

/* 背景画像付きボックス
-------------------------------------- */

.p-img-bg {
  border-radius: 20px;
  background: url("../images/common/img-visual-sample01.jpg") no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px 15px;
  margin-bottom: 50px;
}

.p-img-bg__bg {
  display: none;
}

.p-img-bg__inner {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
}

.p-img-bg__text {
  margin-top: 10px;
  max-width: 600px;
  line-height: 2.25;
  letter-spacing: 0.06em;
}

/* カード
-------------------------------------- */

.p-card__img {
  display: block;
  border-radius: 10px;
  margin: 0 auto 15px;
}

.p-card__img img {
  display: block;
  border-radius: 10px;
  margin: 0 auto 15px;
}

.p-card__ttl {
  color: #3ba986;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.p-card__subttl {
  color: #A7A07A;
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 18px;
}

.p-card__contents {
  padding: 0 1em 40px;
}

.p-card__text {
  line-height: 2.25;
}

.p-card__btn {
  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;
  vertical-align: middle;
  padding: 0.4em 1em;
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
  background-color: #3ba986;
  border: 1px solid #3ba986;
  color: #fff;
  text-decoration: none;
  border-radius: 5em;
  font-size: 1em;
  text-align: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-filter: drop-shadow(0 0 4px #D8D8D8);
  filter: drop-shadow(0 0 4px #D8D8D8);
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.p-card__btn:hover {
  opacity: 0.7;
}

/* ボタン付きカード
-------------------------------------- */

.p-card--subgrid {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  position: relative;
}

.p-card--subgrid .p-card__btn {
  margin-top: 20px;
}

/* グリッドコンテナ
-------------------------------------- */

.p-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 50px 20px;
  max-width: 1510px;
  margin: 0 auto;
  position: relative;
  padding: 0 0 70px;
}

.p-grid-container .p-card {
  margin: 0 auto;
  position: relative;
}

/* 交互ブロック
-------------------------------------- */

.p-alt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(50px, 3.31vw, 100px);
  margin-bottom: 50px;
}

.p-alt--small {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(50px, 3.31vw, 100px);
  margin-bottom: 50px;
}

.p-alt-block,
.p-alt-block--reverse {
  margin-bottom: 30px;
}

.p-alt-block .p-alt-block__btn,
.p-alt-block--reverse .p-alt-block__btn {
  margin: 25px auto;
}

.p-alt-block--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.p-alt-block__img {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-preferred-size: 45.7%;
  flex-basis: 45.7%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.p-alt-block__img img {
  border-radius: 20px;
}

.p-alt-block__img .p-alt-block__name {
  position: absolute;
  left: 0;
  bottom: 25px;
}

.p-alt-block__img--small {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.p-alt-block__img--small img {
  border-radius: 20px;
}

.p-alt-block__img--large {
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-preferred-size: 55.7%;
  flex-basis: 55.7%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}

.p-alt-block__img--large img {
  border-radius: 20px;
}

.p-alt-block__img--point {
  margin: 0 auto;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -ms-flex-preferred-size: 32%;
  flex-basis: 32%;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  max-width: 480px;
}

.p-alt-block__img--point img {
  border-radius: 20px;
}

.p-alt-block_sub_ttl {
  margin: 15px 0 20px;
  color: #8B8B8B;
  font-size: 1.8rem;
}

.p-alt-block__contents {
  padding-top: 35px;
}

.p-alt-block__contents--center {
  padding-top: 35px;
}

.p-alt-block__inner {
  padding-left: 1em;
}

.p-alt-block__btn {
  max-width: 280px;
  padding: 0.7em 1.3em;
}

.p-alt-block__text {
  line-height: 2.25;
}

.p-alt-block__text + .p-alt-block__text {
  margin-top: 1em;
}

.p-alt-block__name {
  min-width: 220px;
  width: 80%;
  height: 50px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.88);
  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;
  font-size: 2rem;
  color: #455248;
  border-radius: 0 17px 17px 0;
}

.p-alt-block__name span {
  font-size: 1.4rem;
  color: #99B1A0;
  margin-right: 0.7em;
}

/* アイコン付カード
-------------------------------------- */

.p-treatment-card {
  background: #fff;
  border-radius: 20px;
  display: grid;
  justify-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 0;
  padding: 30px 10px 25px;
}

.p-treatment-card__img {
  text-align: center;
}

.p-treatment-card__point {
  width: 100%;
  color: #3ba986;
  text-align: center;
  margin: 30px 0 10px;
  padding: 6px;
  font-size: 1.2rem;
  border: 1px solid #3ba986;
  border-radius: 5em;
  position: relative;
}

.p-treatment-card__point span {
  position: absolute;
  top: -2em;
  display: block;
  width: 100%;
  text-align: center;
}

.p-treatment-card__title {
  color: #3ba986;
  text-align: center;
  font-size: clamp(1.5rem, 4.1055vw, 1.7rem);
}

/* アイコン付カード リスト
-------------------------------------- */

.p-treatment-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 15px 10px;
}

.p-treatment-btn-box {
  margin: 70px auto 0;
}

/* 診療一覧カード
-------------------------------------- */

.p-treatment-card2 {
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px 45px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.p-treatment-card2__top {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}

.p-treatment-card2__top > div {
  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;
  width: 100%;
}

.p-treatment-card2__point {
  width: 100%;
  max-width: 230px;
  color: #3ba986;
  text-align: center;
  margin: 20px 0 0;
  padding: 6px;
  font-size: 1.4rem;
  border: 1px solid #3ba986;
  border-radius: 5em;
}

.p-treatment-card2__main p {
  line-height: 2.25;
}

.p-treatment-card2__bottom .c-button-rounded {
  width: 70%;
  max-width: 282px;
  margin: 0 auto;
}

/* 診療一覧リスト
-------------------------------------- */

.p-treatment-list2 {
  display: grid;
  gap: 40px;
}

/* PC版 2カラムボックス
-------------------------------------- */

.p-2column--pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}

.p-2column--pc .p-type-card:last-child {
  border-bottom: none;
}

/* PC版 3カラムボックス
-------------------------------------- */

.p-3column--pc {
  margin-bottom: 60px;
}

/* PC版 画像+テキスト 縦並びカード
-------------------------------------- */

.p-1column-card {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(20px, 2.317vw, 35px);
}

.p-1column-card__img img {
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.p-1column-card__contents {
  padding: 0 1em;
}

.p-1column-card__contents .p-card-ttl {
  text-align: center;
}

.p-1column-card__text {
  line-height: 2;
}

/* PC版 画像+テキスト 横並びカード
-------------------------------------- */

.p-2column-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1em;
  max-width: 450px;
  margin: 0 auto 40px;
}

.p-2column-card__img img {
  border-radius: 20px;
  display: block;
  margin: 0 auto;
}

.p-2column-card__text {
  line-height: 2;
}

/* 経歴/スクロールするボックス
-------------------------------------- */

.p-2scrollbox {
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}

.p-2scrollbox .p-scrollbox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-scrollbox {
  background: #EAF6EC;
  border-radius: 20px;
  padding: 30px 15px 20px;
}

.p-scrollbox__ttl {
  font-size: clamp(1.7rem, 1.5888vw, 2.4rem);
  color: #3ba986;
  text-align: center;
  padding: 0 0 10px;
  margin-bottom: 25px;
  line-height: 1.25;
}

.p-scroll__inner {
  background: #fff;
  border-radius: 20px;
  padding: 20px 10px 30px 20px;
  height: 390px;
}

.p-scroll__inner > div {
  overflow-y: auto;
  height: 100%;
  padding: 10px 10px 20px 10px;
}

/* 設備機器紹介
-------------------------------------- */

.p-2introbox {
  padding: 35px 0;
}

.p-2introbox .p-introbox {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-2introbox .p-introbox:nth-child(1) {
  position: relative;
}

.p-2introbox .p-introbox:nth-child(1)::after {
  content: "";
  display: block;
  width: 0;
  height: 100%;
  border-right: 1px dashed #D7E5D6;
  position: absolute;
  top: 0;
  right: -35px;
}

.p-introbox {
  padding: 20px 0;
}

.p-introbox__img {
  position: relative;
  margin-bottom: 77px;
}

.p-introbox__img img {
  display: block;
  margin: 0 auto;
  border-radius: 20px;
}

.p-introbox__img .p-introbox__ttl {
  position: absolute;
  left: 0;
  bottom: -40px;
}

.p-introbox__ttl {
  min-width: 280px;
  width: 90%;
  max-width: 400px;
  height: 60px;
  background: #3ba986;
  border-radius: 0 10em 10em 0;
  color: #fff;
  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;
  font-size: clamp(1.7rem, 1.5888vw, 2.4rem);
}

.p-introbox__contents {
  padding: 0 1em;
}

/* フロー・STEP
====================================== */

.p-flow {
  background: #6E7927;
  border-radius: 20px;
  padding: 60px 15px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 60px;
}

.p-flow .p-flow-item__num {
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-35%);
  transform: translateY(-35%);
}

.p-flow--timeline {
  background: #6E7927;
  border-radius: 20px;
  padding: 30px 15px;
  margin-bottom: 60px;
}

.p-flow--timeline .p-flow-item__num {
  position: relative;
  top: 0;
  -webkit-transform: none;
  transform: none;
}

.p-flow--timeline .p-flow-item__ttl {
  text-align: left;
}

.p-flow__inner {
  background: #fff;
  border-radius: 20px;
  padding: 20px clamp(15px, 2.317vw, 35px) 40px;
}

.p-flow-item {
  background: #fff;
  border-radius: 20px;
  padding: 15px 15px 30px;
  position: relative;
}

.p-flow-item__num {
  position: relative;
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #3ba986;
  color: #fff;
  font-size: 3rem;
  border-radius: 50%;
  margin-bottom: 17px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.p-flow-item__num::after {
  content: "STEP";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 25px;
  font-size: 1.2rem;
  color: #3ba986;
  border: 1px solid #3ba986;
  background: #fff;
  border-radius: 5em;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.p-flow-item__ttl {
  color: #3ba986;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 10px;
}

.p-flow-item__img {
  text-align: center;
}

/* カレンダー
-------------------------------------- */

.p-calendar-box .xo-event-calendar table.xo-month {
  border-color: #E6E6E6;
  border-right-width: 0;
}

.p-calendar-box .xo-event-calendar table.xo-month td,
.p-calendar-box .xo-event-calendar table.xo-month th {
  border-color: #E6E6E6;
  height: 3em;
}

.p-calendar-box .xo-event-calendar table.xo-month > thead th {
  padding: 5px 0 !important;
  background: #C9C9C9;
  color: #fff;
  font-weight: bold;
  border-right: 1px solid #fff;
  vertical-align: middle;
}

.p-calendar-box .xo-event-calendar table.xo-month > thead th:last-child {
  border-right: none;
}

.p-calendar-box .xo-event-calendar table.xo-month .month-dayname td div {
  font-size: 1.3rem;
}

.p-calendar-box .xo-event-calendar table.xo-month caption {
  padding-bottom: 10px;
}

.p-calendar-box .holiday-titles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1em;
}



/* margin / padding
====================================== */

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

/* テキストユーティリティ
====================================== */

/* インデント揃え
-------------------------------------- */

.u-indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* text-align
-------------------------------------- */

.u-text-left {
  text-align: left !important;
}

.u-text-center {
  text-align: center !important;
}

.u-text-right {
  text-align: right !important;
}

.u-text-justify {
  text-align: justify !important;
  text-justify: inter-ideograph !important;
}

/* スクロールバー
====================================== */

.u-scrollbar::-webkit-scrollbar {
  width: 7px;
}

.u-scrollbar::-webkit-scrollbar-track {
  background: #F5F5F5;
  border-radius: 7px;
}

.u-scrollbar::-webkit-scrollbar-thumb {
  background: #F5F5F5;
  border: 7px solid #3ba986;
  background-clip: padding-box;
  border-radius: 7px;
}

/* 指定幅
====================================== */

.u-w150 {
  width: 150px;
}

.u-w280 {
  width: 280px;
}

.u-mw360 {
  width: 90%;
  max-width: 360px;
}

.u-full {
  width: 100%;
}

/* 背景色指定
====================================== */

.u-bg-white {
  background: #fff;
}

/* Flexbox
====================================== */

/* flex-srink
-------------------------------------- */

.u-shrink--0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 400px) {
  .p-treatment-card {
    padding: 30px 15px 25px;
  }

  .p-treatment-list {
    gap: 20px 15px;
  }
}

@media screen and (min-width: 576px) {
  .p-access-schedule tr:not(:nth-child(1)) th {
    padding: 10px;
  }

  .p-access-schedule td {
    padding: 10px;
  }

  .p-access-schedule tr:nth-child(1) th:nth-child(1) {
    padding: 10px;
  }
}

@media screen and (min-width: 991px) {
  .l-rounded-bg {
    padding-top: 93px;
    padding-bottom: 64px;
    padding-bottom: 100px;
    margin-bottom: 100px;
  }

  .l-rounded-container {
    padding-top: 93px;
    padding-left: clamp(20px, 4.303vw, 65px);
    padding-right: clamp(20px, 4.303vw, 65px);
    padding-bottom: 64px;
    margin-bottom: 100px;
  }

  .l-rounded-container__inner {
    padding: 60px clamp(20px, 4.965vw, 75px);
  }

  .l-news-2column {
    -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: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 60px;
  }

  .l-news-2column .p-news-item {
    padding: 18px;
  }

  .l-news-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: clamp(20px, 3.972vw, 60px);
  }

  .l-news-container .l-news-container__main {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

  .l-nav {
    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: 22px;
    margin-right: clamp(25px, 2.605vw, 86px);
  }

  .is-fixed .l-nav {
    margin-right: 25px;
  }

  .l-nav-sp {
    display: none;
  }

  .l-nav-sp.is-show {
    display: block;
  }


  .l-header.is-hidden {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    /* 上にスライドして非表示 */
    opacity: 0;
  }

  .l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 15px;
    opacity: 1;
    padding: 17px 35px;
    background: linear-gradient(90deg, rgba(59,169,134,1) 10%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 7) 100%);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /* スライドイン（通常位置） */
  }

  .l-drawer {
    display: none;
  }

  .l-button-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 25px;
    bottom: 25px;
  }

  .l-lead .p-sec-ttl {
    margin-bottom: clamp(40px, 3.612vw, 60px);
  }

  .l-clinic-info {
    margin-bottom: 140px;
  }

  .l-clinic-info .p-sec-ttl {
    margin-bottom: 25px;
  }
  .c-button-link {
    border-radius: 20px;
    padding: 22px;
  }

  .p-header__logo {
    width: clamp(200px, 19.6268vw, 353px);
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .is-fixed .p-header__logo {
    width: clamp(200px, 13.9vw, 250px);
  }

  .p-header__main {
    margin-left: auto;
  }

  .p-address-box {
    border-radius: 40px;
    padding: 135px clamp(25px, 3.01vw, 50px);
  }

  .p-contact-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 15px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-contact-item__img {
    margin-bottom: 25px;
  }

  .p-contact-item__img > img {
    border-radius: 27px;
  }

  .p-contact-item__map {
    width: 80px;
    height: 80px;
    bottom: -30px;
    right: 12px;
  }

  .p-contact-item__map img {
    height: auto;
  }

  .p-contact-item__link {
    width: auto;
  }

  .p-contact-item__link span {
    display: inline-block;
  }



  .p-modal {
    padding: 40px 25px;
  }

  .p-list-check--flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .p-list-check--flex li {
    padding-left: 60px;
    width: 45%;
  }

  .p-list-check--flex li::before {
    width: 32px;
    height: 30px;
  }

  .p-sp-contents {
    display: block;
  }

  .p-banner {
    padding: 50px 0;
  }

  .p-btn-box {
    margin-bottom: 30px;
  }

  .p-schedule-box {
    margin-bottom: 80px;
    padding: 70px 45px 45px;
  }

  .p-schedule-box__inner {
    padding: clamp(30px, 3.641vw, 55px) clamp(20px, 6.62vw, 100px);
  }

  .p-schedule-box__btn {
    width: 280px;
  }

  .p-schedule td {
    font-size: 2rem;
    padding: 5px;
  }

  .p-schedule-box__ttl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 50px;
    padding-left: clamp(20px, 6.62vw, 100px);
    padding-right: clamp(20px, 6.62vw, 100px);
  }

  .p-lead-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 52px;
    margin-bottom: 35px;
  }

  .p-lead__img {
    display: contents;
  }

  .p-lead-box__top {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 27.15%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -webkit-transform: translateY(22.4%);
    transform: translateY(22.4%);
  }

  .p-lead-box__main {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .p-lead-box__contents p {
    padding-left: 1.5em;
  }

  .p-lead-box__bottom {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 27.15%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .p-lead-btn {
    padding-left: 25%;
    -webkit-box-ordinal-group: unset;
    -ms-flex-order: unset;
    order: unset;
    -webkit-transform: none;
    transform: none;
  }

  .p-lead-btn__inner {
    display: contents;
  }

  .p-lead-btn .c-button-rounded {
    width: 280px;
  }

  .p-img-bg {
    position: relative;
    padding: 0;
    margin-bottom: 70px;
    border-radius: 0;
  }

  .p-img-bg__bg {
    display: block;
    border-radius: 20px;
  }

  .p-img-bg__contents {
    position: absolute;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    padding: 20px;
  }

  .p-img-bg__text {
    margin-top: 40px;
    padding-left: 20px;
  }

  .p-card__img {
    border-radius: 20px;
    margin: 0 auto 30px;
  }

  .p-card__img img {
    border-radius: 20px;
    margin: 0 auto 30px;
  }

  .p-card__ttl {
    font-size: 2.4rem;
  }

  .p-card__subttl {
    margin-bottom: 24px;
  }

  .p-card__contents {
    padding: 0 1em;
  }

  .p-card__btn {
    padding: 0.7em 1.3em;
  }

  .p-card--subgrid .p-card__btn {
    margin-top: 40px;
  }

  .p-grid-container {
    grid-template-columns: 1fr 1fr;
    gap: 70px 38px;
    padding: 0 0 100px;
  }

  .p-grid-container .p-card {
    border-bottom: none;
    padding: 20px 0;
  }

  .p-grid-container .p-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: -19px;
    /* gap の半分 */
    height: 100%;
    width: 0;
    border-right: 2px dotted #D7E5D6;
  }

  .p-alt {
    margin-bottom: 100px;
  }

  .p-alt--small {
    margin: 0 auto 100px;
    max-width: 1294px;
  }

  .p-alt-block,
  .p-alt-block--reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: clamp(30px, 5.627vw, 85px);
  }

  .p-alt-block .p-alt-block__btn,
  .p-alt-block--reverse .p-alt-block__btn {
    margin-top: 25px;
    margin-right: clamp(10px, 4.303vw, 65px);
    margin-left: auto;
  }

  .p-alt-block__img--point {
    margin: 0;
  }

  .p-alt-block_sub_ttl {
    font-size: clamp(1.8rem, 1.5888vw, 2.4rem);
  }

  .p-alt-block__contents > div {
    margin-left: 20px;
  }

  .p-alt-block__contents--center > div {
    padding-top: 0;
    -ms-flex-item-align: center;
    align-self: center;
  }

  .p-treatment-card {
    padding: 50px 30px 35px;
  }

  .p-treatment-card__point {
    font-size: 1.4rem;
  }

  .p-treatment-card__point span {
    position: static;
    display: inline;
  }

  .p-treatment-card__title {
    font-size: 2.4rem;
  }

  .p-treatment-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 33px 27px;
  }

  .p-treatment-card2 {
    padding: 35px 25px 50px;
  }

  .p-treatment-card2__top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .p-treatment-card2__top > div {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    -ms-flex-item-align: end;
    align-self: flex-end;
  }

  .p-2column--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: clamp(20px, 3.972vw, 60px) clamp(20px, 2.78vw, 50px);
    margin-bottom: 80px;
  }

  .p-2column--pc .p-1column-card {
    width: 46.3%;
  }

  .p-2column--pc .p-2column-card {
    width: 46.3%;
  }

  .p-2column--pc .p-type-card:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .p-3column--pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: clamp(20px, 3.972vw, 60px);
    margin-bottom: 80px;
  }

  .p-3column--pc .p-3column-card {
    width: 30.4%;
  }

  .p-2column-card {
    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;
    gap: clamp(20px, 2.317vw, 35px);
    max-width: none;
    margin-bottom: 0;
  }

  .p-2column-card .p-2column-card__img {
    width: 42.8%;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }

  .p-2scrollbox {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 30px;
  }

  .p-scroll__inner > div {
    padding: 0 15px 30px;
  }

  .p-2introbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }

  .p-introbox__ttl {
    height: 80px;
  }

  .p-flow {
    margin-bottom: 80px;
    padding: 50px 45px;
    gap: 20px;
  }

  .p-flow--timeline {
    margin-bottom: 80px;
    padding: 50px 45px;
  }

  .p-flow--timeline .p-flow-item {
    position: relative;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .p-flow--timeline .p-flow-item::before {
    content: "";
    display: block;
    width: 0;
    height: calc(100% - 150px);
    border-right: 2px dotted #3ba986;
    position: absolute;
    bottom: 0;
    left: 95px;
  }

  .p-flow--timeline .p-flow-item__content {
    padding-top: 40px;
  }

  .p-flow--timeline .p-flow-item__ttl {
    margin-bottom: 1em;
  }

  .p-flow__inner {
    padding: 100px clamp(15px, 2.317vw, 35px) 40px;
  }

  .p-flow-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: clamp(15px, 3.1776vw, 48px);
    padding: 15px 45px;
  }

  .p-flow-item .p-flow-item__num {
    position: relative;
    top: 0;
    -webkit-transform: none;
    transform: none;
  }

  .p-flow-item__num {
    width: 100px;
    height: 100px;
    font-size: 4rem;
  }

  .p-flow-item__num::after {
    width: 74px;
    height: 34px;
    font-size: 1.4rem;
  }

  .p-flow-item__ttl {
    font-size: clamp(2.2rem, 2.648vw, 2.4rem);
    text-align: left;
  }

  .p-flow-item__text {
    padding-left: 1em;
  }

  .p-sec-ttl__flex--border {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }

  .p-sidebar-ttl {
    font-size: 2.2rem;
  }
}

@media screen and (min-width: 992px) {
  .l-carrer__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: clamp(25px, 3.01vw, 50px);
  }

  .p-contact-list {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 40px;
  }

  .p-contact-item__name {
    width: 75%;
    padding: 15px;
  }

  .p-contact-item__tel {
    font-size: clamp(3rem, 2.408vw, 4rem);
  }

  .p-timeline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .p-timeline dt {
    width: 6em;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 10px;
  }

  .p-timeline dd {
    width: calc(100% - 6em);
    margin-top: 10px;
    margin-bottom: 0;
  }

  .p-grid-container {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .p-treatment-list2 {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}

@media screen and (min-width: 1200px) {

  .p-li-flex--xl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .p-alt-block__img .p-alt-block__name {
    bottom: 45px;
  }

  .p-alt-block__name {
    height: 70px;
    font-size: 2.6rem;
  }

  .p-alt-block__name span {
    font-size: 1.8rem;
  }

  .p-treatment-card2 {
    padding: 45px 75px 65px;
  }

  .p-treatment-list2 {
    grid-template-columns: 1fr 1fr;
    gap: 40px 70px;
  }

  .p-scroll__inner > div {
    padding: 15px 15px 30px 30px;
  }

  .p-2introbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 70px;
  }
}

@media screen and (min-width: 1300px) {
  .l-nav {
    margin-right: clamp(25px, 4.4806vw, 86px);
  }

  .is-fixed .l-nav {
    margin-right: 75px;
  }


  .l-header.is-fixed {
    padding: 17px 35px;
  }

  .p-address-box {
    padding: 135px clamp(25px, 6.02vw, 100px);
  }

  .p-nav {
    gap: clamp(15px, 1.563vw, 30px);
  }

  .p-nav__item a,
  .p-nav__item p {
    font-size: 1.6rem;
  }

  .p-grid-container {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .p-grid-container .p-card:nth-child(4n)::after {
    display: none;
  }
}

@media screen and (min-width: 1601px) {
  .p-header__list .swiper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(15px, 1.8235vw, 35px);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .p-header__list .swiper-wrapper,
  .p-header__list .swiper-slide {
    display: contents;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 1.4rem;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-size: 1.4rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .p-grid-container .p-card:nth-child(2n)::after {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1299px) {
  .p-grid-container .p-card:nth-child(3n)::after {
    display: none;
  }
}

@media (hover: hover) {
  a.p-treatment-card:hover {
    -webkit-filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
    filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.5));
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
  }
}

/*# sourceMappingURL=common.css.map */
