@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: "Noto Sans JP", "游ゴシック体", "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;
}

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

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

a {
  color: inherit;
  text-decoration: none;
}

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: #BFCF54;
  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 #BFCF54;
  border-bottom: 3px solid #BFCF54;
  -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);
}

/* spacer
====================================== */

.l-spacer-3em {
  height: 3em;
}

.l-spacer-5em {
  height: 5em;
}

/* container
====================================== */

.l-outer {
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

.l-wide {
  max-width: 1868px;
  padding-left: clamp(15px, 1.9992vw, 24px);
  padding-right: clamp(15px, 1.9992vw, 24px);
  margin: 0 auto;
  position: relative;
}

.l-container {
  max-width: 1708px;
  padding-left: clamp(15px, 1.9992vw, 24px);
  padding-right: clamp(15px, 1.9992vw, 24px);
  margin: 0 auto;
  position: relative;
}

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

.l-inner {
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}

/* 背景色付の角丸
====================================== */

.l-rounded-bg {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #EAF6EC;
  border-radius: 20px;
  margin-bottom: 50px;
}

.l-rounded-container {
  padding: 50px 20px;
  background: #EAF6EC;
  border-radius: 20px;
  margin-bottom: 50px;
}

.l-rounded-container__inner {
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
}

/* 導入部コンテンツボックスコンテナ
====================================== */

.l-lead {
  position: relative;
  background: -webkit-linear-gradient(top, #AAB948 0%, #AAB948 244px, transparent 244px, transparent 100%);
  background: linear-gradient(180deg, #AAB948 0%, #AAB948 244px, transparent 244px, transparent 100%);
  z-index: 5;
  margin-top: -80px;
}

/* お知らせ一覧用コンテナ
====================================== */

.l-news {
  background: -webkit-linear-gradient(top, #AAB948 0%, #AAB948 244px, transparent 244px, transparent 100%);
  background: linear-gradient(180deg, #AAB948 0%, #AAB948 244px, transparent 244px, transparent 100%);
  padding-bottom: clamp(170px, 16.254vw, 270px);
}

.l-news .p-box {
  padding-top: clamp(50px, 6.622vw, 110px);
  padding-bottom: clamp(50px, 6.622vw, 110px);
  padding-left: clamp(15px, 1.9992vw, 24px);
  padding-right: clamp(15px, 1.9992vw, 24px);
}

.l-news-2column {
  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: 50px;
}

.l-news-2column .p-news-item {
  padding: 12px 32px 12px 10px;
}

.l-news-2column .p-news-item::after {
  top: 0;
  bottom: 0;
  margin: auto;
}

.l-news-2column__box {
  width: 100%;
  max-width: 700px;
}

.l-news-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
}

/* レイアウト メインナビゲーション
====================================== */

.l-nav {
  display: none;
  max-width: 1110px;
  z-index: 20;
  position: relative;
}

.l-nav-sp {
  width: 100%;
  max-width: 500px;
  height: 100%;
  margin: 0;
  padding: 100px 20px 235px;
  background: #fff;
  -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%);
  background-color: #AAB948;
  background-image: url("../images/common/bg-sp-nav.png");
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

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

/* レイアウト ヘッダー
====================================== */

.l-header {
  position: relative;
  width: 100%;
  height: 120px;
  z-index: 15;
  padding: 20px 25px 0;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

/* レイアウト ドロワー
====================================== */

.l-drawer {
  display: block;
  position: fixed;
  top: 29px;
  right: 18px;
  z-index: 40;
}

/* レイアウト 各医院案内
====================================== */

.l-address {
  position: relative;
  z-index: 12;
}

/* レイアウト フッター
====================================== */

.l-footer {
  padding: clamp(50px, 5.418vw, 90px) 0 100px;
  background: #AEBE43;
  position: relative;
  z-index: 10;
}

.l-footer::before {
  content: "";
  position: absolute;
  bottom: 99%;
  left: 0;
  width: 100%;
  padding-bottom: 16.875%;
  background: url("../images/common/footer-top.svg") no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
}

.l-nav-sp-bottom {
  position: fixed;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: 13;
}

/* トップへ戻るボタン 位置
-------------------------------------- */

.l-button-top {
  display: none;
}

/* レイアウト サイドバー
====================================== */

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

/* トップページKV
====================================== */

.l-top-kv {
  position: relative;
  min-height: 650px;
  height: calc(100vh - 120px);
  padding-bottom: 200px;
}

.l-top-kv::before {
  content: "";
  width: 100%;
  height: 215px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("../images/top/kv-front_sp.svg") no-repeat;
  background-position: bottom center;
  background-size: auto 215px;
  z-index: 2;
  pointer-events: none;
}

/* 下層ページKV
====================================== */

.l-breadcrumbs {
  pointer-events: none;
  position: relative;
  z-index: 5;
}

.l-kv {
  position: relative;
  min-height: 500px;
  height: calc(100vh - 100px);
  padding-left: 20px;
  padding-bottom: 65px;
}

.l-kv .p-kv-container {
  position: absolute;
  bottom: 180px;
  left: 25px;
  margin: auto;
  z-index: 5;
}

.l-kv .p-kv-img {
  width: 100%;
  height: calc(100% - 100px);
  margin-left: auto;
}

.l-kv .p-kv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: top center;
  object-position: top center;
}

.error404 .l-kv .p-kv-container {
  top: 80px;
}

.l-kv[data-clinic=kashiwa],
.l-kv[data-clinic=ageo],
.l-kv[data-clinic=fujimino] {
  position: relative;
}

.l-kv[data-clinic=kashiwa]::before,
.l-kv[data-clinic=ageo]::before,
.l-kv[data-clinic=fujimino]::before {
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  max-height: 500px;
  background: url(../images/common/bg-kv02_front3_tb.svg) no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.l-kv[data-kv=kv-bg01],
.l-kv[data-kv=kv-bg02] {
  position: relative;
}

.l-kv[data-kv=kv-bg01]::before,
.l-kv[data-kv=kv-bg02]::before {
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  max-height: 500px;
  height: 450px;
  background: url(../images/common/bg-kv02_front3_tb.svg) no-repeat;
  background-size: cover;
  background-position: bottom center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.l-kv[data-kv=kv-bg01] .p-kv-title {
  margin-bottom: 50px;
}

.information .l-kv[data-kv=kv-bg01] .p-kv-title {
  margin-bottom: 90px;
}

.l-kv[data-kv=news] {
  position: relative;
  background: url(../images/common/bg-news_sp.svg) no-repeat;
  background-size: auto 296px;
  background-position: bottom center;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
  height: auto;
  padding-bottom: 0;
}

.l-kv[data-kv=news] .p-kv-img {
  width: 100%;
  height: auto;
  margin: 0 0 0 -10px;
}

.l-kv[data-kv=news] .p-kv-img img {
  position: relative;
  top: 24px;
}

.l-kv[data-kv=news]::before {
  content: "";
  width: 100%;
  height: 98px;
  background: url(../images/common/bg-news_front_sp.svg) no-repeat;
  background-size: 100% 98px;
  background-position: bottom center;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
}

.l-kv[data-kv=news] .p-kv-container.l-container {
  position: static;
  width: 100%;
}

/* レイアウト body
====================================== */

body {
  background: #FAFDED;
  background-image: url("../images/common/bg-body.png");
}

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

.l-top-news {
  margin-top: -3px;
  padding-bottom: 120px;
  background: url("../images/top/bg-news.svg") no-repeat bottom center/100% auto, -webkit-linear-gradient(top, #BFCF54 0%, #BFCF54 calc(100% - 170px), transparent 100%);
  background: url("../images/top/bg-news.svg") no-repeat bottom center/100% auto, linear-gradient(to bottom, #BFCF54 0%, #BFCF54 calc(100% - 170px), transparent 100%);
  position: relative;
}

.l-top-news::after {
  content: "";
  width: clamp(120px, 19.4922vw, 234px);
  aspect-ratio: 1/0.778;
  background: url("../images/common/img-chara.svg") no-repeat center bottom/contain;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -3vw;
}

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

.l-trouble-check {
  margin-bottom: 100px;
}

.l-trouble-check .p-trouble-check-ttl__ja {
  margin-bottom: 120px;
}

.l-top-treatment .p-sec-ttl2--w {
  margin-bottom: 50px;
}

/* レイアウト main
====================================== */

.l-lead {
  margin-bottom: clamp(70px, 8.428vw, 140px);
}

.l-lead .p-sec-ttl {
  margin-bottom: 30px;
}

.l-lead2 .p-sec-ttl {
  margin-bottom: 30px;
}

.l-clinic-info {
  margin-bottom: 70px;
}

.l-clinic-info .p-sec-ttl {
  margin-bottom: 20px;
}

/* レイアウト サイドバー
====================================== */

/* レイアウト 下層
====================================== */

.l-faq {
  padding-bottom: 120px;
}

.l-clinic-info {
  padding-top: clamp(70px, 9.03vw, 150px);
}

.l-point8 {
  padding-bottom: clamp(70px, 12.04vw, 200px);
}

.l-dr-image {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(34vw, transparent), color-stop(34vw, #BFCF54), color-stop(#BFCF54), color-stop(transparent), to(transparent)), url("../images/recruit/bg-dr-image_top.svg"), url("../images/recruit/bg-dr-image_bottom.svg");
  background-image: -webkit-linear-gradient(top, transparent 0, transparent 34vw, #BFCF54 34vw, #BFCF54 calc(100% - 33vw), transparent calc(100% - 33vw), transparent 100%), url("../images/recruit/bg-dr-image_top.svg"), url("../images/recruit/bg-dr-image_bottom.svg");
  background-image: linear-gradient(to bottom, transparent 0, transparent 34vw, #BFCF54 34vw, #BFCF54 calc(100% - 33vw), transparent calc(100% - 33vw), transparent 100%), url("../images/recruit/bg-dr-image_top.svg"), url("../images/recruit/bg-dr-image_bottom.svg");
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 100% 100%, 100% 35.625vw, 100% 34.16vw;
  background-position: center, top center, bottom center;
  padding: clamp(130px, 14.0149vw, 269px) 0 clamp(100px, 11.3057vw, 217px);
}

.l-carrer {
  padding-top: clamp(50px, 4.816vw, 80px);
  padding-bottom: clamp(70px, 6.02vw, 100px);
}

.l-carrer .p-sec-ttl {
  margin-bottom: 105px;
}

.l-staff {
  padding-top: clamp(70px, 6.02vw, 100px);
  padding-bottom: clamp(70px, 9.03vw, 150px);
}

.l-carrer__wrapper {
  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;
}

.l-joboffer {
  background: url("../images/recruit/bg-joboffer.svg") no-repeat;
  background-position: bottom left;
  background-size: 100%;
}

.l-joboffer .p-sec-ttl {
  margin-bottom: clamp(50px, 4.816vw, 80px);
}

.l-joboffer__container {
  padding-top: clamp(70px, 9.03vw, 150px);
  padding-bottom: clamp(60px, 7.224vw, 120px);
  padding-left: clamp(15px, 1.9992vw, 24px);
  padding-right: clamp(15px, 1.9992vw, 24px);
}

.l-entry {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #BFCF54), color-stop(#BFCF54), color-stop(transparent), to(transparent)), url("../images/recruit/bg-form-bottom.svg");
  background-image: -webkit-linear-gradient(top, #BFCF54 0, #BFCF54 calc(100% - 21vw), transparent calc(100% - 21vw), transparent 100%), url("../images/recruit/bg-form-bottom.svg");
  background-image: linear-gradient(to bottom, #BFCF54 0, #BFCF54 calc(100% - 21vw), transparent calc(100% - 21vw), transparent 100%), url("../images/recruit/bg-form-bottom.svg");
  background-repeat: no-repeat, no-repeat;
  background-size: 100% 100%, 100% 22.4vw;
  background-position: center, bottom center;
  padding-top: clamp(120px, 15.05vw, 250px);
  padding-bottom: clamp(150px, 12.04vw, 200px);
}

.l-entry .p-sec-ttl2--w {
  margin-bottom: 37px;
}

.l-section-insta {
  padding-top: clamp(120px, 15.05vw, 250px);
  padding-bottom: clamp(150px, 15.05vw, 250px);
}

.l-worry .p-box {
  padding-top: clamp(30px, 6.51vw, 50px);
  padding-bottom: clamp(50px, 6.622vw, 110px);
  padding-left: clamp(15px, 1.9992vw, 24px);
  padding-right: clamp(15px, 1.9992vw, 24px);
}

.l-visit-treatment {
  padding-top: clamp(70px, 9.126vw, 135px);
  padding-bottom: clamp(60px, 7.436vw, 110px);
}

.l-visit-treatment .p-sec-ttl {
  margin-bottom: 50px;
}

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

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

.l-price .p-price:not(:last-child) {
  margin-bottom: 50px;
}

.l-price-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.l-price-wrapper__left,
.l-price-wrapper__right {
  display: contents;
}

.l-expenses {
  padding-bottom: clamp(80px, 11.492vw, 170px);
}

.l-concept {
  padding-bottom: clamp(80px, 11.492vw, 170px);
}

.l-flow {
  padding-top: clamp(70px, 9.126vw, 135px);
  padding-bottom: clamp(70px, 14.872vw, 220px);
  overflow: hidden;
}

.l-flow__inner {
  max-width: 1330px;
  margin: 0 auto;
}

.l-flow .p-flow-text {
  margin-bottom: clamp(50px, 8.428vw, 140px);
}

.l-whitening-worry {
  margin-bottom: clamp(80px, 11.438vw, 190px);
}

.l-oral-about {
  margin-bottom: clamp(100px, 15.05vw, 250px);
}

.l-wisdom-theeth {
  padding-bottom: 740px;
}

.l-check6 {
  margin-top: -700px;
  margin-bottom: 40px;
}

.l-type-check .p-sec-ttl2--w {
  margin-bottom: 80px;
}

.l-type-check .p-type-check {
  margin-top: 60px;
  margin-bottom: 40px;
}

.l-grinding-point {
  padding-top: 200px;
}

.l-decay-check .p-message__text {
  margin-bottom: 40px;
}

.l-treatment-point {
  padding: 50px 0;
}

.l-treatment-point .p-sec-ttl {
  margin-bottom: 40px;
}

.l-periodontal-check {
  margin-top: 100px;
}

.l-relationship {
  padding-top: 60px;
  padding-bottom: 60px;
}

.l-relationship .l-relationship-container {
  margin-top: -30px;
  background: #fff;
  margin-bottom: 50px;
  padding: 80px 24px 50px;
}

.l-keepinmind {
  padding-bottom: 100px;
}

.l-prevention {
  padding-bottom: clamp(100px, 14.875vw, 250px);
}

.l-prevention .p-point-note01 {
  margin-top: clamp(50px, 6.76vw, 100px);
}

.l-domino .p-domino {
  margin-top: clamp(40px, 4.816vw, 80px);
}

.l-treatment-flow {
  padding: clamp(80px, 11.137vw, 185px) 0 clamp(50px, 7.826vw, 130px);
}

.l-hypostomia {
  padding-bottom: clamp(120px, 13.09vw, 220px);
}

.l-hypostomia .p-sec-ttl {
  margin-bottom: clamp(40px, 4.165vw, 70px);
}

.l-hypostomia .p-hypostomia-note {
  margin-top: clamp(70px, 10.816vw, 160px);
}

.l-gallery {
  padding-bottom: 130px;
}

/* コンポーネント ボタン
====================================== */

/* ボタン
-------------------------------------- */

.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: #BFCF54;
  border: 1px solid #BFCF54;
  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: #BFCF54;
  border: 1px solid #BFCF54;
  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 #BFCF54;
  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;
  z-index: 1;
}

.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 #BFCF54;
  color: #BFCF54;
  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: #BFCF54;
  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 #BFCF54;
  color: #BFCF54;
  -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: #BFCF54;
  padding: 8px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-link:hover {
  background: #85C790;
  color: #fff;
}

.c-button-arrow {
  background: #BFCF54;
  color: #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;
  border-radius: 5em;
  padding: 20px 50px;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.c-button-arrow::after {
  content: "▶";
}

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

.c-button-lens {
  background: #F8FF50;
  border: 5px solid #74811B;
  border-radius: 5em;
  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;
  padding: 1em 1.5em;
}

/* メインナビ内ボタン
-------------------------------------- */

.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: #BFCF54;
  font-size: 2rem;
  padding: 15px 25px 15px 40px;
}

.c-nav-btn--external::after {
  background-color: #BFCF54;
}

.c-nav-sp-btn {
  margin-bottom: 10px;
}

.c-nav-sp-btn--external {
  background: #BFCF54;
  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: 19px;
  height: 10px;
}

.c-drawer__bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  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.is-active .c-drawer__bar {
  position: absolute;
  width: 19px;
  margin-bottom: 0;
}

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

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

.c-drawer.is-active .c-drawer__bar:nth-child(3) {
  top: 5px;
  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: end;
  -ms-flex-align: end;
  align-items: flex-end;
  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__main .p-header__list {
  display: none;
}

.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-header-recruit {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 5;
}

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

.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: 60px;
  height: 60px;
  border-radius: 50%;
  background: #BFCF54;
}

/* 電話モーダル
-------------------------------------- */

#telbox {
  max-width: 1090px;
  margin: 0 auto;
}

.p-telbox__clinic {
  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: 15px;
  color: #6A6A6A;
}

.p-telbox__clinic .p-telbox__name {
  margin: 0 0 10px;
}

.p-telbox__clinic .p-telbox__name + a {
  display: block;
  margin-left: 12px;
}

.p-telbox__clinic .p-telbox__address {
  margin: 8px 0 0 12px;
}

.p-telbox__clinic img {
  width: 52px;
}

.p-telbox__name {
  width: 170px;
  height: 45px;
  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;
  border-radius: 5em;
  color: #fff;
}

[data-clinic=kashiwa] .p-telbox__name {
  background: #3AAA85;
}

[data-clinic=ageo] .p-telbox__name {
  background: #E65D43;
}

[data-clinic=fujimino] .p-telbox__name {
  background: #4955A0;
}

.p-telbox__name + a {
  font-size: 2.2rem;
  font-family: "Roboto", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
}

.p-telbox__contents {
  margin-top: 30px;
}

.p-telbox__contents .p-telbox__clinic:not(:last-of-type) {
  margin-top: 0;
  margin-bottom: 28px;
}

/* 各医院
====================================== */

.p-top-footer {
  padding-top: 80px;
  margin-bottom: 120px;
}

.p-top-footer .p-sec-ttl__text {
  width: 80%;
  max-width: 880px;
  margin-bottom: 30px;
}

.p-top-footer .p-message__text br {
  display: none;
}

.p-address-box {
  padding: 80px 15px 50px;
  border: 3px solid #BFCF54;
}

.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 15px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  border: 2px solid #3BA986;
  border-bottom: none;
  background: #fff;
  position: relative;
  z-index: 3;
}

[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__name2 {
  text-align: center;
  padding: 15px;
}

[data-clinic=kashiwa] .p-contact-item__name2 {
  color: #3BA986;
}

[data-clinic=ageo] .p-contact-item__name2 {
  color: #E75C43;
}

[data-clinic=fujimino] .p-contact-item__name2 {
  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;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 280px;
  margin: 0 auto clamp(30px, 3.612vw, 60px);
  z-index: 3;
}

.p-contact-item__btn .c-button-double span {
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  text-align: center;
}

.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__link2 {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1em;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.p-contact-item__link2::before {
  content: "▶";
  color: #AFAFAF;
}

.p-contact-item__link2:hover {
  opacity: 0.7;
}

.p-contact-item__link2 span {
  display: inline-block;
  border-bottom: 1px dotted #707070;
}

.p-contact-item__illust {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
}

/* フッター
====================================== */

.p-copyright {
  font-weight: 900;
  color: #fff;
}

/* SP版 下部固定メニュー
-------------------------------------- */

.p-nav-sp-bottom {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.p-nav-sp-bottom.is-hidden {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  /* 下にスライドして非表示 */
  opacity: 0;
}

.p-nav-sp-bottom .p-nav-reserve {
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.p-nav-sp-bottom .p-nav-reserve__btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 65px;
  border-radius: 25px 25px 0 0;
}

/* パンくず
====================================== */

.aioseo-breadcrumbs,
.p-breadcrumbs {
  padding: 16px 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;
  pointer-events: auto;
  font-size: 1.6rem;
}

.news .aioseo-breadcrumbs,
.blog .aioseo-breadcrumbs,
.news .p-breadcrumbs,
.blog .p-breadcrumbs {
  padding: 30px 0;
}

.guide-kashiwa .aioseo-breadcrumbs,
.guide-ageo .aioseo-breadcrumbs,
.guide-fujimino .aioseo-breadcrumbs,
.guide-kashiwa .p-breadcrumbs,
.guide-ageo .p-breadcrumbs,
.guide-fujimino .p-breadcrumbs {
  max-width: 200px;
  margin-left: auto;
}

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

.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: #788427;
  cursor: pointer;
}

.p-nav__item > a span,
.p-nav__item > p span {
  display: block;
}

/* メインナビ PC版 子要素
-------------------------------------- */

.p-nav-child {
  padding: 22px 25px;
  background: #BFCF54;
  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: #fff;
}

/* メインナビ 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,
.p-nav-child-list--1column li {
  border-bottom: 1px dotted #fff;
  text-align: center;
}

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

/* メインナビ PC版 予約ボタン
-------------------------------------- */

.p-nav-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(12px, 1.1462vw, 22px);
}

.p-nav-reserve__btn {
  width: 155px;
  height: 50px;
  gap: 10px;
  border: none;
}

.p-nav-reserve__btn.tel {
  background: #3BA986;
}

.p-nav-reserve__btn.web {
  background: #E75C43;
}

/* メインナビ PC版 子要素動作
-------------------------------------- */

.js-nav-parent {
  position: relative;
}

.js-nav-parent > a span::after,
.js-nav-parent > p span::after {
  content: "▽";
  font-size: 1.5rem;
  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;
  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;
}

/* メインナビ SP版
-------------------------------------- */

.p-nav-sp {
  height: 100%;
  overflow-y: auto;
}

.p-nav-sp__item {
  border-bottom: 1px dotted #fff;
}

.p-nav-sp__item:last-of-type {
  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: 15px 10px;
  cursor: pointer;
  color: #fff;
}

.p-nav-sp-item > a.js-toggle-open::after,
.p-nav-sp-item > p.js-toggle-open::after {
  content: "";
  margin-left: auto;
  width: 5px;
  height: 10px;
  background: url("../images/common/arrow-open.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  -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 > a::after {
  content: "";
  margin-left: auto;
  width: 5px;
  height: 10px;
  background: url("../images/common/arrow-open.svg") no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.p-nav-sp-item .p-nav-treatment {
  margin-bottom: 1px;
}

/* メインナビ SP版 子要素
-------------------------------------- */

.p-nav-sp-child {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px;
}

.p-nav-sp-child .c-nav-sp-btn--external {
  margin-bottom: 10px;
}

.p-nav-sp-child-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
  position: relative;
}

.p-nav-sp-child-list > li > a,
.p-nav-sp-child-list > li > p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 8px 5px 10px 0;
  color: #fff;
}

.p-nav-sp-child-list > li > a::before,
.p-nav-sp-child-list > li > p::before {
  content: "・";
}

/* メインナビ SP版 下部メニュー
-------------------------------------- */

.p-nav-bottom {
  background: rgba(255, 255, 255, 0.79);
  width: 100%;
  height: 200px;
  padding: 0 15px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-nav-bottom .c-button-double {
  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;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  z-index: 3;
  border-radius: 30px;
  height: 80px;
  padding: 10px;
  font-size: 1.5rem;
  letter-spacing: 0;
}

.p-nav-bottom .c-button-double::before {
  z-index: -1;
  border-radius: 25px;
}

.p-nav-bottom .c-button-double[data-clinic=kashiwa] {
  border-color: #3BA986;
}

.p-nav-bottom .c-button-double[data-clinic=ageo] {
  border-color: #E75C43;
}

.p-nav-bottom .c-button-double[data-clinic=fujimino] {
  border-color: #4955A0;
}

.p-nav-bottom .c-button-double[data-clinic=kashiwa]::before {
  background: #3BA986;
}

.p-nav-bottom .c-button-double[data-clinic=ageo]::before {
  background: #E75C43;
}

.p-nav-bottom .c-button-double[data-clinic=fujimino]::before {
  background: #4955A0;
}

.p-nav-bottom__box1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 10px;
  -webkit-transform: translateY(-46%);
  transform: translateY(-46%);
}

.p-nav-bottom__box2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: 15px;
}

/* フッターナビ
====================================== */

.p-nav-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  padding: 20px 24px;
}

.p-nav-footer li {
  margin-bottom: 10px;
}

.p-nav-footer li a,
.p-nav-footer li > p {
  color: #fff;
}

.p-nav-footer span {
  display: block;
  width: 0;
  height: auto;
  border-left: 2px dotted #fff;
}

/* フッターナビ PC版/SP版 子要素内リスト
-------------------------------------- */

.p-nav-footer .p-nav-child {
  padding: 0.5em;
  background: none;
  border-radius: 0;
}

.p-nav-footer .p-nav-child a:hover {
  opacity: 0.7;
}

.p-nav-footer .p-nav-child .p-nav-child-list a,
.p-nav-footer .p-nav-child .p-nav-child-list--1column a {
  color: #AEBE43;
}

.p-nav-footer .p-nav-child-list,
.p-nav-footer .p-nav-child-list--1column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 1.2em 1em;
}

.p-nav-footer .p-nav-child-list li,
.p-nav-footer .p-nav-child-list--1column li {
  border-bottom: none;
}

.p-nav-footer .p-nav-child-list > li > a,
.p-nav-footer .p-nav-child-list > li > p,
.p-nav-footer .p-nav-child-list--1column > li > a,
.p-nav-footer .p-nav-child-list--1column > li > p {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0;
}

.p-nav-footer .p-nav-child-list--1column {
  grid-template-columns: 1fr;
}

/* タブ
====================================== */

/* タブボタン
-------------------------------------- */

.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: rgba(191, 207, 84, 0.9);
  z-index: 100;
}

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

.p-modal__inner {
  height: auto;
  max-height: 70vh;
  overflow-y: auto;
}

.p-modal__close {
  position: fixed;
  top: 30px;
  right: 40px;
  z-index: 110;
  display: none;
}

.p-btn-modal {
  -webkit-transition: ease-in-out 0.3s;
  transition: ease-in-out 0.3s;
}

.p-btn-modal:hover {
  opacity: 0.7;
}

/* フェードイン
====================================== */

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

.p-list-num2 {
  counter-reset: number2;
  padding-left: 0;
  margin: 0;
}

.p-list-num2 li {
  list-style-type: none;
  padding-left: 47px;
  position: relative;
  margin-bottom: 20px;
}

.p-list-num2 li::before {
  counter-increment: number2;
  content: counter(number2);
  margin-right: 0.5em;
  color: #fff;
  background: #92B74C;
  border-radius: 50%;
  font-weight: 900;
  width: 32px;
  height: 32px;
  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;
  position: absolute;
  top: 0;
  left: 0;
}

.p-6check-list {
  counter-reset: number;
}

.p-6check-list li {
  list-style-type: none;
  padding: 20px 5px;
}

.p-6check-list li:not(:last-of-type) {
  background-image: -webkit-repeating-linear-gradient(left, #707070 0px, #707070 2px, transparent 2px, transparent 12px);
  background-image: repeating-linear-gradient(to right, #707070 0px, #707070 2px, transparent 2px, transparent 12px);
  background-position: bottom left;
  background-repeat: repeat-x;
  background-size: 12px 2px;
}

.p-6check-list li h3 {
  color: #AAB948;
  font-weight: 500;
  font-size: 1.8rem;
}

.p-6check-list li h3::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  margin-right: 0.5em;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
}

.p-6check-list li p {
  margin: 1.5em 0 0 2em;
  line-height: 2;
  font-weight: 500;
}

.p-6check-list__icon {
  margin: 30px auto 0;
  text-align: center;
}

/* 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: #BFCF54;
  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: 32px;
  position: relative;
}

.p-list-check li::before {
  content: "";
  display: block;
  width: 23px;
  height: 18px;
  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-box--g {
  background: #9EAC45;
  border-radius: 10px;
  color: #fff;
}

/* 右側コンテンツをブラウザ右端まで
-------------------------------------- */

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

/* 左ラインボックス
-------------------------------------- */

.p-ll-box {
  border-left: 5px solid #859A00;
  padding: 22px clamp(15px, 1.9264vw, 32px);
}

.p-ll-box .p-ll-box__ttl {
  color: #859A00;
}

.p-ll-box--g {
  border-left: 5px solid #BABABA;
  padding: 22px clamp(15px, 1.9264vw, 32px);
}

.p-ll-box--g .p-ll-box__ttl {
  color: #72726D;
}

/* 診療日テーブル
-------------------------------------- */

.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: #BFCF54;
}

.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;
  background: #fff;
  overflow: hidden;
}

.p-access-schedule__col1 {
  width: 34%;
}

.p-access-schedule__col2 {
  width: 9.4%;
}

.p-access-schedule tr:not(:nth-child(1)) th {
  text-align: center;
  padding: 7px;
  background: #D8BEA7;
  border-top: 1px solid #fff;
}

.p-access-schedule td {
  text-align: center;
  padding: 7px;
}

.p-access-schedule tr:nth-child(1) th:nth-child(1) {
  background: #B7997E;
  color: white;
  padding: 7px;
}

/* 導入部コンテンツボックス
-------------------------------------- */

.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 {
  gap: 35px;
}

.p-card__img {
  display: block;
  text-align: center;
  border-radius: 10px;
  margin: 0 auto;
}

.p-card__img img {
  display: block;
  border-radius: 10px;
  margin: 0 auto;
}

.p-card__ttl {
  width: 72%;
  max-width: 250px;
  background: #BFCF54;
  color: #fff;
  text-align: center;
  margin: 0 auto;
  padding: 9px 20px;
  border-radius: 10px 10px 0 0;
  font-weight: 500;
}

.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;
  text-align: left;
}

.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: #BFCF54;
  border: 1px solid #BFCF54;
  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-card--row2 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}

.p-card--row3 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

/* グリッドコンテナ
-------------------------------------- */

.p-grid-container {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px 20px;
  max-width: 1510px;
  margin: 0 auto;
  position: relative;
}

.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, 2.975vw, 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;
  width: 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: #AAB948;
  font-size: 1.8rem;
  font-weight: 500;
}

.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 a {
  width: 100%;
  height: 100%;
  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: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  gap: 0;
  background: #EDE8E4;
  border-radius: 10px;
}

.p-treatment-card__img {
  text-align: center;
  position: relative;
  margin-bottom: 72px;
}

.p-treatment-card__img::after {
  content: "";
  display: block;
  width: 0;
  height: 20px;
  border-right: 1px solid #BF7D41;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -46px;
}

/* アイコン付カード リスト
-------------------------------------- */

.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: #BFCF54;
  text-align: center;
  margin: 20px 0 0;
  padding: 6px;
  font-size: 1.4rem;
  border: 1px solid #BFCF54;
  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 .p-card-ttl {
  text-align: center;
}

.p-1column-card__contents {
  padding: 0 1em;
}

.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: #BFCF54;
  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: #BFCF54;
  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 {
  margin: 0 -20px;
}

.p-flow-item {
  padding: 0 20px;
}

.p-flow-item .p-nav-reserve__btn {
  width: auto;
  max-width: 190px;
  margin-top: 40px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.p-flow-item .p-nav-reserve__btn.tel {
  background: #6E7927;
}

.p-flow-item .p-nav-reserve__btn.web {
  background: #E75C43;
}

.p-flow-item__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  text-align: left;
  gap: 15px;
  -webkit-transform: translateY(-17px);
  transform: translateY(-17px);
}

.p-flow-item__ttl h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #BFCF54;
  position: relative;
  top: 20px;
}

.p-flow-item__ttl .p-flow-item__ttl--s {
  font-size: 1.4rem;
}

.p-flow-item__num {
  position: relative;
  width: 54px;
  height: 54px;
  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: #fff;
  color: #6E7927;
  font-size: 2.6rem;
  border-radius: 50%;
  border: 2px solid #ABBE32;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-family: "din-2014", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.p-flow-item__text {
  line-height: 1.77;
}

.p-flow-item__img {
  text-align: center;
}

.p-flow-item__img img {
  border-radius: 10px;
}

.p-flow-item__pay {
  height: 60px;
  margin-top: 30px;
}

.p-flow02__item {
  padding: 20px;
}

.p-flow02__item:not(:last-child) {
  background-image: -webkit-repeating-linear-gradient(left, #707070, #707070 2px, transparent 2px, transparent 100%);
  background-image: repeating-linear-gradient(to right, #707070, #707070 2px, transparent 2px, transparent 100%);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 10px 2px;
}

.p-flow02__item .p-flow02__num {
  margin: 0 auto 15px;
}

.p-flow02__num {
  background: #9AA83C;
  border-radius: 50%;
  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;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.1;
}

.p-flow02__num::before {
  content: "STEP";
  font-size: 1.2rem;
}

/* カレンダー
-------------------------------------- */

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

/* 見出し
====================================== */

.p-sec-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-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-sec-ttl--left {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.p-sec-ttl__top {
  font-size: 1.4rem;
  letter-spacing: 0.4em;
  line-height: 1.2;
  color: #AAB948;
}

.p-sec-ttl__text {
  padding: 12px clamp(20px, 4vw, 70px) 15px;
  color: #BF7D41;
  text-align: center;
  font-size: clamp(1.8rem, 1.4448vw, 2.6rem);
  background-image: -webkit-repeating-linear-gradient(left, #707070 0, #707070 3px, transparent 3px, transparent 10px), -webkit-repeating-linear-gradient(left, #707070 0, #707070 3px, transparent 3px, transparent 10px);
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 3px, transparent 3px, transparent 10px), repeating-linear-gradient(to right, #707070 0, #707070 3px, transparent 3px, transparent 10px);
  background-position: top, bottom;
  background-repeat: repeat-x;
  background-size: 10px 2px;
}

.p-sec-ttl__text span {
  display: inline-block;
}

.p-sec-ttl__text--border {
  color: #BF7D41;
  font-size: clamp(2rem, 1.4448vw, 2.4rem);
  background-image: -webkit-repeating-linear-gradient(left, #707070 0, #707070 3px, transparent 3px, transparent 10px);
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 3px, transparent 3px, transparent 10px);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 10px 2px;
  margin-bottom: 15px;
  padding: 12px clamp(15px, 2vw, 20px) 15px;
}

.p-sec-ttl__flex--border {
  color: #BF7D41;
  font-size: clamp(1.4rem, 1661.1288vw, 2.4rem);
  background-image: -webkit-repeating-linear-gradient(left, #707070 0, #707070 3px, transparent 3px, transparent 10px);
  background-image: repeating-linear-gradient(to right, #707070 0, #707070 3px, transparent 3px, transparent 10px);
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 10px 2px;
  margin-bottom: 15px;
}

.p-sec-ttl__main {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: clamp(4rem, 4.816vw, 8rem);
  color: #AAB948;
  padding: 0 0 20px;
  line-height: 1.25;
}

.p-sec-ttl__main--m {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-weight: 900;
  font-size: clamp(3.6rem, 3.612vw, 6rem);
  padding: 0 0 15px;
  line-height: 1.25;
}

.p-sec-ttl__main--m span {
  font-size: clamp(1.3rem, 1.0592vw, 1.6rem);
  margin-right: 0.5em;
}

.p-sec-ttl__main--large {
  font-size: clamp(2.4rem, 3.01vw, 6rem);
  color: #AAB948;
  margin-bottom: 20px;
  padding: 0 0 10px;
  line-height: 1.25;
}

.p-sec-ttl__main--largeborder {
  font-size: clamp(2.4rem, 3.01vw, 6rem);
  color: #AAB948;
  margin-bottom: 20px;
  padding: 0 0 10px;
  border-bottom: 2px dotted #788427;
  line-height: 1.25;
}

.p-sidebar-ttl {
  color: #AAB948;
  text-align: center;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

/* メインカラー見出し
-------------------------------------- */

.p-card-ttl {
  font-size: clamp(1.8rem, 1.5652vw, 2.6rem);
  font-weight: 500;
  color: #AAB948;
  margin-bottom: 12px;
}

/* 屋根付き見出し
====================================== */

.p-sec-ttl2 {
  color: #AAB948;
  padding: 28px 0 0 32px;
  background-image: url("../images/common/bg-sec2.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 73px 94px;
}

.p-sec-ttl2--side {
  color: #464038;
  padding: 26px 0 0 30px;
  background-image: url("../images/common/bg-sec2.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 73px 94px;
}

.p-sec-ttl2--w {
  color: #fff;
  padding: 24px 0 0 32px;
  background-image: url("../images/common/bg-sec2-w.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 73px 94px;
}

.p-sec-ttl2--w .p-sec-ttl2__main {
  color: currentColor;
}

.p-sec-ttl2--g {
  color: #464038;
  padding: 24px 0 0 32px;
  background-image: url("../images/common/bg-sec2-g.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 73px 94px;
}

.p-sec-ttl2--g .p-sec-ttl2__main {
  color: currentColor;
}

.p-sec-ttl2--g .p-sec-ttl2__main--side {
  color: currentColor;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 4rem;
  font-weight: 900;
}

.p-sec-ttl2--g .p-sec-ttl2__main--large {
  color: currentColor;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  white-space: nowrap;
}

.p-sec-ttl2__note {
  line-height: 1.2;
  color: currentColor;
}

.p-sec-ttl2__note::before {
  content: "★";
  margin-right: 0.5em;
}

.p-sec-ttl2__main {
  color: #6E7927;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: clamp(4rem, 4.816vw, 80px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.p-sec-ttl2__main--s {
  color: #464038;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.p-sec-ttl2__main--m {
  color: #464038;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

.p-sec-ttl3 {
  padding: 28px 0 0 32px;
  background-image: url("../images/common/bg-sec4.svg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 73px 94px;
}

.p-sec-ttl3__note {
  line-height: 1.2;
  color: currentColor;
}

.p-sec-ttl3__main {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", "Yu Gothic", yugothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: clamp(4rem, 4.816vw, 80px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
}

/* タイトル下テキスト
-------------------------------------- */

.p-sec-text {
  margin-top: 35px;
  background: #6E7927;
  border-radius: 10px;
  color: #fff;
  padding: 7px 24px 7px clamp(24px, 3.612vw, 70px);
  font-size: clamp(1.8rem, 1.806vw, 3rem);
}

/* 丸タイトル
-------------------------------------- */

.p-ttl-circle {
  width: 110px;
  height: 110px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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%;
  background: #AAB948;
  color: #fff;
  line-height: 1.25;
  text-align: center;
}

.p-ttl-circle--lg {
  width: 110px;
  height: 110px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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%;
  background: #19A442;
  color: #fff;
  line-height: 1.25;
  text-align: center;
}

/* 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 #BFCF54;
  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-color-primary {
  color: #BFCF54;
}

.u-color-text-green {
  color: #AAB948;
}

.u-color-text-orange {
  color: #BF7D41;
}

/* 背景色指定
====================================== */

.u-bg-white {
  background: #fff;
}

/* アンダーライン
====================================== */

.u-bottom-dotted {
  border-bottom: 2px dotted #464038;
}

/* Flexbox
====================================== */

/* flex-srink
-------------------------------------- */

.u-shrink--0 {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 376px) {
  .p-nav-sp-item > a,
  .p-nav-sp-item > p {
    padding: 20px;
  }

  .p-nav-sp-child {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (min-width: 400px) {
  .p-treatment-list {
    gap: 20px 15px;
  }
}

@media screen and (min-width: 576px) {
  .l-lead {
    margin-top: -84px;
  }

  .l-top-kv::before {
    background-size: 100% auto;
    background-position: top center;
  }

  .l-kv {
    padding-bottom: 90px;
  }

  .l-kv .p-kv-container {
    bottom: 220px;
  }

  .l-kv .p-kv-img img {
    -o-object-position: center;
    object-position: center;
  }

  .l-kv[data-clinic=kashiwa]::before,
  .l-kv[data-clinic=ageo]::before,
  .l-kv[data-clinic=fujimino]::before {
    content: "";
    display: block;
    width: 100%;
    height: 54%;
    max-height: 533px;
    background: url(../images/common/bg-kv02_front3_tb.svg) no-repeat;
    background-size: 100% 100%;
    background-position: bottom center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
  }

  .l-kv[data-kv=kv-bg01]::before,
  .l-kv[data-kv=kv-bg02]::before {
    content: "";
    display: block;
    width: 100%;
    height: 57%;
    max-height: 533px;
    background: url(../images/common/bg-kv02_front3_tb.svg) no-repeat;
    background-size: 100% 100%;
    background-position: bottom center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
  }

  .l-kv[data-kv=kv-bg01] .p-kv-title {
    margin-bottom: 40px;
  }

  .l-kv[data-kv=news] {
    background: url(../images/common/bg-news_tab.svg) no-repeat;
    background-size: 997px;
    background-position: bottom center;
  }

  .l-kv[data-kv=news]::before {
    height: 267px;
    background: url(../images/common/bg-news_front_tb.svg) no-repeat;
    background-size: 997px;
    background-position: bottom center;
  }

  .p-nav-sp-bottom .p-nav-reserve__btn {
    height: 90px;
  }

  .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: 768px) {
  .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-button-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    right: 25px;
    bottom: 25px;
  }

  .l-sidebar {
    padding: 0 0 50px;
    position: sticky;
    top: 200px;
  }

  .l-top-kv {
    min-height: auto;
    height: auto;
    padding: 60px 0 95px;
  }

  .l-top-kv::before {
    width: 100%;
    aspect-ratio: 192/24;
    background: url("../images/top/kv-front.svg") no-repeat;
    background-position: bottom center;
    background-size: 100% auto;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 3;
  }

  .l-top-news {
    padding-bottom: min(14.27vw, 274px);
  }

  .l-top-news::after {
    bottom: -3vw;
  }

  .l-top-slide {
    padding: clamp(100px, 8.857vw, 170px) 0 clamp(120px, 13.025vw, 250px);
  }

  .l-trouble-check {
    margin-bottom: clamp(120px, 12.504vw, 240px);
  }

  .l-trouble-check .p-trouble-check-ttl__ja {
    margin-bottom: 80px;
  }

  .l-top-treatment {
    margin-bottom: 42px;
  }

  .l-lead .p-sec-ttl {
    margin-bottom: clamp(40px, 3.612vw, 60px);
  }

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

  .l-sidebar {
    width: 290px;
    padding-top: 40px;
  }

  .l-faq {
    padding-bottom: 230px;
  }

  .l-worry .p-box {
    padding-top: clamp(50px, 6.622vw, 110px);
  }

  .l-visit-treatment .p-sec-ttl {
    margin-bottom: 100px;
  }

  .l-price {
    padding-bottom: 100px;
  }

  .l-price .p-price:not(:last-child) {
    margin-bottom: 90px;
  }

  .l-check6 {
    margin-top: -640px;
    margin-bottom: 180px;
  }

  .l-type-check .p-sec-ttl__text {
    width: 80%;
    max-width: 880px;
  }

  .l-type-check .p-type-check {
    margin-top: 80px;
    margin-bottom: 50px;
  }

  .l-decay-check .p-message__text {
    margin-bottom: 70px;
  }

  .l-treatment-point {
    padding: clamp(70px, 10.234vw, 170px) 0;
  }

  .l-treatment-point .p-sec-ttl {
    margin-bottom: 70px;
  }

  .l-periodontal-check {
    margin-top: 150px;
  }

  .l-relationship {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .l-relationship .l-relationship-container {
    margin-top: -50px;
    background: #fff;
    margin-bottom: 100px;
    padding: 140px 24px 90px;
  }

  .l-keepinmind {
    padding-bottom: 250px;
  }

  .l-gallery {
    padding-bottom: 230px;
  }

  .c-button-link {
    border-radius: 20px;
    padding: 22px;
  }

  .p-header__main {
    margin-left: auto;
  }

  .p-telbox {
    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;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
  }

  .p-telbox__clinic {
    gap: 40px;
  }

  .p-telbox__clinic .p-telbox__name {
    margin: 0 30px 0 0;
  }

  .p-telbox__clinic .p-telbox__name + a {
    display: inline-block;
    margin-left: 0;
  }

  .p-telbox__clinic .p-telbox__address {
    margin: 12px 0 0 12px;
  }

  .p-telbox__clinic img {
    width: auto;
  }

  .p-telbox__name {
    font-size: 2rem;
  }

  .p-telbox__name + a {
    font-size: 3.2rem;
  }

  .p-top-footer {
    padding-top: 120px;
  }

  .p-top-footer .p-sec-ttl__text {
    margin-bottom: 45px;
  }

  .p-top-footer .p-message__text br {
    display: block;
  }

  .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__name2 {
    font-size: 2.7rem;
    margin-bottom: 0.5em;
    padding: 0;
  }

  .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-contact-item__illust {
    width: 66%;
  }

  .p-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 30px;
  }

  .p-copyright {
    font-size: 2rem;
  }

  .p-nav-sp-bottom .p-nav-reserve {
    width: 90%;
    max-width: 1260px;
  }

  .p-nav-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 24px;
    gap: clamp(30px, 3.311vw, 55px);
  }

  .p-nav-footer span {
    display: block;
    width: 0;
    height: 100%;
    border-left: 2px dotted #fff;
  }

  .p-nav-footer__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(30px, 2.408vw, 60px);
  }

  .p-modal {
    padding: 40px 25px;
  }

  .p-list-num2 li {
    margin-bottom: 40px;
    font-size: 2rem;
    line-height: 2;
  }

  .p-6check-list li {
    padding: 30px 40px 30px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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: clamp(20px, 4.4625vw, 75px);
  }

  .p-6check-list li h3 {
    font-size: clamp(2rem, 1.547vw, 2.6rem);
  }

  .p-6check-list li h3::before {
    font-size: clamp(1.6rem, 1.3685vw, 2.3rem);
  }

  .p-6check-list__icon {
    margin: 0;
    width: 120px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    text-align: left;
  }

  .p-list-check li {
    padding-left: 60px;
  }

  .p-list-check li::before {
    width: 30px;
    height: 26px;
  }

  .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__btn {
    -webkit-transition: ease-in-out 0.3s;
    transition: ease-in-out 0.3s;
  }

  .p-btn-box__btn:hover {
    opacity: 0.7;
  }

  .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-lead-btn2 {
    font-size: 2.2rem;
    padding: 0.7em 2.3em;
  }

  .p-lead__text {
    text-align: center;
    font-size: 2rem;
    line-height: 2.3;
  }

  .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__ttl {
    font-size: clamp(1.8rem, 1.3846vw, 2.3rem);
  }

  .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: repeat(2, 1fr);
    gap: 70px 38px;
  }

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

  .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, 3.8675vw, 65px);
    margin-left: auto;
  }

  .p-alt-block__img {
    width: 30%;
  }

  .p-alt-block__img--point {
    margin: 0;
  }

  .p-alt-block_sub_ttl {
    font-size: clamp(2rem, 2.142vw, 3.6rem);
  }

  .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-alt-block__text {
    margin-left: clamp(20px, 1.785vw, 30px);
  }

  .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-item__ttl {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 25px;
  }

  .p-flow-item__ttl h3 {
    font-size: clamp(2.2rem, 1.806vw, 3rem);
    position: relative;
    top: 30px;
  }

  .p-flow-item__ttl .p-flow-item__ttl--s {
    font-size: 2.2rem;
  }

  .p-flow-item__num {
    width: 90px;
    height: 90px;
    font-size: 4rem;
  }

  .p-flow-item__text {
    font-size: 1.8rem;
  }

  .p-flow-item__pay {
    height: 85px;
    margin-top: 40px;
  }

  .p-flow02__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: clamp(20px, 4.214vw, 70px);
    padding: 35px clamp(20px, 5.418vw, 90px);
  }

  .p-flow02__item .p-flow02__num {
    margin: 0;
  }

  .p-flow02__num {
    width: 100px;
    height: 100px;
    font-size: 3rem;
  }

  .p-flow02__num::before {
    font-size: 1.4rem;
  }

  .p-sec-ttl__text {
    padding: 12px clamp(20px, 7vw, 70px) 15px;
    width: 80%;
    max-width: 880px;
  }

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

  .p-sec-ttl2--g .p-sec-ttl2__main--large {
    font-size: clamp(5rem, 5.712vw, 8rem);
    line-height: 1.1;
  }

  .p-sec-ttl2__main--s {
    font-size: clamp(2.6rem, 4.689vw, 4.5rem);
  }

  .p-sec-ttl2__main--m {
    font-size: clamp(2.2rem, 2.2208vw, 3.2rem);
  }
}

@media screen and (min-width: 992px) {
  .l-lead {
    margin-top: 0;
    background: -webkit-linear-gradient(top, #BFCF54 0%, #BFCF54 244px, transparent 244px, transparent 100%);
    background: linear-gradient(180deg, #BFCF54 0%, #BFCF54 244px, transparent 244px, transparent 100%);
  }

  .l-news {
    background: -webkit-linear-gradient(top, #D3E364 0%, #D3E364 244px, transparent 244px, transparent 100%);
    background: linear-gradient(180deg, #D3E364 0%, #D3E364 244px, transparent 244px, transparent 100%);
  }

  .l-news-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(20px, 5.205vw, 75px);
  }

  .l-news-box .l-news-box__main {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    padding: 40px 0;
  }

  .l-news-box .l-news-box__side {
    width: 320px;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    padding-left: 25px;
    background-image: -webkit-repeating-linear-gradient(top, #B9B9B9, #B9B9B9 2px, transparent 2px, transparent 100%);
    background-image: repeating-linear-gradient(to bottom, #B9B9B9, #B9B9B9 2px, transparent 2px, transparent 100%);
    background-position: top left;
    background-repeat: repeat-y;
    background-size: 2px 10px;
  }

  .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: 190px;
  }

  .l-nav .p-nav-reserve {
    display: none;
  }

  .l-nav-sp {
    display: none;
  }

  .l-nav-sp.is-show {
    display: block;
  }

  .l-header {
    height: auto;
    padding: 30px 0 0 clamp(25px, 2.084vw, 67px);
  }

  .l-header.is-hidden {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    /* 上にスライドして非表示 */
    opacity: 0;
  }

  .l-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    opacity: 1;
    padding: 17px 85px 14px 20px;
    background: #fff;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    /* スライドイン（通常位置） */
  }

  .l-drawer {
    display: none;
  }

  .l-breadcrumbs {
    height: 150px;
  }

  .l-kv {
    padding-top: 45px;
    padding-left: 0;
    padding-bottom: 0;
    height: auto;
  }

  .l-kv .p-kv-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    margin: auto;
  }

  .l-kv .p-kv-img {
    width: 81.25vw;
    height: auto;
    margin-left: auto;
  }

  .l-kv .p-kv-title {
    margin-top: 12vw;
  }

  .error404 .l-kv .p-kv-container {
    top: 0;
    bottom: auto;
    margin: auto;
  }

  .error404 .l-kv .p-kv-title {
    margin-top: 9vw;
  }

  .l-kv[data-clinic=kashiwa]::before,
  .l-kv[data-clinic=ageo]::before,
  .l-kv[data-clinic=fujimino]::before {
    display: none;
  }

  .l-kv[data-clinic=kashiwa],
  .l-kv[data-clinic=ageo],
  .l-kv[data-clinic=fujimino] {
    background: url(../images/guide-kashiwa/bg-kv.svg) no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
  }

  .l-kv[data-kv=kv-bg01] {
    background: url(../images/common/bg-kv01.svg) no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
  }

  .l-kv[data-kv=kv-bg01]::before {
    display: none;
  }

  .l-kv[data-kv=kv-bg01] .p-kv-title {
    margin-bottom: 0;
  }

  .l-kv[data-kv=kv-bg02] {
    background: url(../images/common/bg-kv02.svg) no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
  }

  .l-kv[data-kv=kv-bg02]::before {
    aspect-ratio: 1/0.24;
    background: url(../images/common/bg-kv02_front3.svg) no-repeat;
    background-size: 100% auto;
    background-position: bottom right;
    bottom: 0;
  }

  .l-kv[data-kv=kv-bg02]::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 1/0.0463;
    background: url(../images/common/bg-kv02_front4.svg) no-repeat;
    background-size: auto 100%;
    background-position: bottom left;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 7;
  }

  .l-kv[data-kv=news] {
    min-height: 430px;
    background: url(../images/common/bg-news.svg) no-repeat;
    background-size: 100% auto;
    background-position: bottom center;
    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;
  }

  .l-kv[data-kv=news] .p-kv-img {
    width: 46%;
    max-width: 817px;
    margin: 0 260px 0 auto;
  }

  .l-kv[data-kv=news] .p-kv-img img {
    top: 0;
  }

  .l-kv[data-kv=news] .p-kv-title {
    margin-top: 7.5vw;
    margin-bottom: 25px;
  }

  .l-kv[data-kv=news] .p-kv-container.l-container {
    position: absolute;
    width: 100%;
  }

  .l-kv[data-kv=news] .l-breadcrumbs {
    height: auto;
    position: absolute;
    width: 100%;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
  }

  .l-kv[data-kv=news]::before {
    display: none;
  }

  .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-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 .p-header__list {
    display: block;
    width: 460px;
    max-width: 460px;
    margin: 0 0 49px auto;
    -webkit-transform: translateX(-282px);
    transform: translateX(-282px);
  }

  .is-fixed .p-header__main .p-header__list {
    display: none;
  }

  .p-header__main .p-header__list {
    width: 650px;
    max-width: 650px;
  }

  .p-header-recruit {
    width: auto;
    display: block;
  }

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

  .news .aioseo-breadcrumbs,
  .blog .aioseo-breadcrumbs,
  .news .p-breadcrumbs,
  .blog .p-breadcrumbs {
    padding: 45px 0 30px;
  }

  .guide-kashiwa .aioseo-breadcrumbs,
  .guide-ageo .aioseo-breadcrumbs,
  .guide-fujimino .aioseo-breadcrumbs,
  .guide-kashiwa .p-breadcrumbs,
  .guide-ageo .p-breadcrumbs,
  .guide-fujimino .p-breadcrumbs {
    max-width: none;
    margin-left: auto;
  }

  .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-treatment-list2 {
    grid-template-columns: 1fr 1fr;
    gap: 30px 30px;
  }
}

@media screen and (min-width: 1200px) {
  .is-fixed .l-nav {
    margin-right: 190px;
  }

  .is-fixed .l-nav .p-nav-reserve {
    display: none;
  }

  .l-nav .p-nav-reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-nav-sp-bottom.is-fixed {
    display: block;
  }

  .l-nav-sp-bottom {
    display: none;
  }

  .l-price-wrapper__left,
  .l-price-wrapper__right {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .l-price-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: clamp(30px, 3.47vw, 98px);
  }

  .l-price-fujimino2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(20px, 3.165vw, 60px);
  }

  .l-price-fujimino2 > div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }

  .p-header__main .p-header__list {
    width: 920px;
    max-width: 920px;
  }

  .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__img {
    width: 45.7%;
  }

  .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: 175px;
  }

  .l-header {
    padding: clamp(30px, 2.9697vw, 57px) 0 0 clamp(25px, 2.605vw, 67px);
  }

  .l-header.is-fixed {
    padding: 22px 100px 22px 35px;
  }

  .p-header__main .p-header__list {
    width: 100%;
    max-width: 1040px;
  }

  .p-address-box {
    padding: 135px clamp(25px, 6.02vw, 100px);
  }

  .p-footer-insta {
    width: 50%;
  }

  .p-nav {
    gap: clamp(15px, 1.563vw, 30px);
  }

  .p-nav__item a,
  .p-nav__item p {
    font-size: clamp(1.6rem, 0.9378vw, 1.8rem);
  }

  .p-nav-reserve__btn {
    width: clamp(160px, 9.899vw, 190px);
    height: 50px;
    gap: 15px;
  }

  .p-grid-container {
    grid-template-columns: repeat(4, 1fr);
  }

  .p-grid-container .p-card:nth-child(4n)::after {
    display: none;
  }
}

@media screen and (min-width: 1400px) {
  .p-footer {
    gap: 0;
  }
}

@media screen and (min-width: 1510px) {
  .is-fixed .l-nav {
    margin-right: 175px;
  }

  .is-fixed .l-nav .p-nav-reserve {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }

  .l-nav-sp-bottom.is-fixed {
    display: none;
  }

  .l-nav-sp-bottom {
    display: none;
  }
}

@media screen and (min-width: 1600px) {
  .p-footer {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0;
  }
}

@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 screen and (max-width: 420px) {
  .p-flow-item {
    padding: 0 10px;
  }
}

@media screen and (max-width: 380px) {
  .l-drawer {
    top: 20px;
    right: 18px;
  }

  .p-nav-sp-bottom .p-nav-reserve__btn {
    height: 46px;
  }
}

@media screen and (max-width: 375px) {
  .l-lead {
    margin-top: -16px;
  }

  .l-header {
    height: 80px;
    padding-top: 15px;
  }

  .l-kv {
    padding-bottom: 40px;
    min-height: 480px;
  }

  .l-kv .p-kv-img {
    height: calc(100% - 24.003vw);
  }

  .l-kv .p-kv-container {
    bottom: 140px;
    left: 20px;
  }

  .l-kv[data-kv=kv-bg01]::before,
  .l-kv[data-kv=kv-bg02]::before {
    max-height: 370px;
  }

  .information .l-kv[data-kv=kv-bg01] .p-kv-title {
    margin-bottom: 60px;
  }

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

  .p-nav-footer {
    gap: 15px;
    padding: 20px 5px;
  }
}

@media screen and (max-width: 374px) {
  .aioseo-breadcrumbs,
  .p-breadcrumbs {
    padding-top: 0;
    padding-bottom: 0;
    max-width: 200px;
    margin-left: auto;
  }

  .aioseo-breadcrumbs > li:not(:last-child)::after,
  .p-breadcrumbs > li:not(:last-child)::after {
    margin: 0 0.6em;
  }

  .p-flow-item .p-nav-reserve {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10px;
    margin: 10px auto 0;
  }

  .p-flow-item .p-nav-reserve .p-nav-reserve__btn {
    width: 90%;
    margin: 0 auto;
  }

  .p-flow-item__ttl h3 {
    font-size: 1.5rem;
  }

  .p-flow-item__num {
    width: 46px;
    height: 46px;
    font-size: 2rem;
  }
}

@media (min-width: 768px) and (max-width: 1299px) {
  .p-grid-container .p-card:nth-child(2n)::after {
    display: none;
  }
}

@media (hover: hover) {
  .p-treatment-card a: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 */
