@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.cssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
.pc_only {
  display: none !important;
}

html, body {
  overflow-x: hidden;
  background: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

body {
  margin-top: 120px;
}

.w_base {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}

p {
  color: #444b4f;
}

/*----------------------------------------------------------------------------
******************************************************************************
** google font
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.hd {
  height: 120px;
  padding: 10px 5%;
}

.hd_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%; /*120px*/
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hd_con a.site-title {
  height: 100%;
  max-width: 210px;
  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;
  text-decoration: none;
}
.hd_con a.site-title img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.hd_con a.site-title strong {
  font-size: 0.8em;
  text-align: center;
  text-decoration: none;
  color: #444b4f;
  font-weight: 400;
  display: block;
  font-style: italic;
  font-weight: 450;
}

/*=============================
#humburger
=============================*/
.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.hamburger section {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  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;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  counter-increment: section;
}
.hamburger .btn-trigger {
  position: relative;
  width: 40px;
  height: 34px;
  cursor: pointer;
}
.hamburger .btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #f36299;
  border-radius: 4px;
}
.hamburger .btn-trigger, .hamburger .btn-trigger span {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.hamburger .btn-trigger span:nth-of-type(1) {
  top: 0;
}
.hamburger .btn-trigger span:nth-of-type(2) {
  top: calc(50% - 2px);
}
.hamburger .btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
.hamburger #btn02.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(45deg);
  transform: translateY(15px) rotate(45deg);
}
.hamburger #btn02.active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger #btn02.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(-45deg);
  transform: translateY(-15px) rotate(-45deg);
}

nav.nav_bg {
  position: absolute;
  width: 100%;
  height: 100svh;
  background-color: rgba(255, 255, 255, 0.9411764706);
  top: 0;
  right: 0;
  z-index: -1;
  padding: 140px 5% 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
nav.nav_bg div.global-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 29px;
  text-align: center;
}
nav.nav_bg div.global-nav ul li.menu-item {
  position: relative;
}
nav.nav_bg div.global-nav ul li.menu-item a {
  text-decoration: none;
  color: #444b4f;
}
nav.nav_bg div.global-nav ul li.menu-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  background: #f36299;
  color: white;
  border-radius: 100vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 10px;
}
nav.nav_bg div.global-nav ul li.menu-btn a:before {
  content: "";
  display: block;
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url(../images/reserve.png);
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
nav.nav_bg div.global-nav ul li.menu-btn a:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
}
nav.nav_bg div.global-nav ul li.menu-btn-tel a {
  display: grid;
  grid-template-columns: 1fr 4.6fr 1fr;
  grid-template-rows: 1.5fr 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 1.1em;
  color: #f36299;
  text-decoration: none;
  background: white;
  border: solid 2px #f36299;
  color: #f36299;
  border-radius: 100vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: right;
  line-height: 1;
  padding-top: 5px;
  font-size: 1.5rem;
  min-height: 65px;
  min-width: 255px;
}
nav.nav_bg div.global-nav ul li.menu-btn-tel a small {
  width: 100%;
  grid-area: 2/2/3/3;
  font-size: 0.8rem;
}
nav.nav_bg div.global-nav ul li.menu-btn-tel a:before {
  content: "";
  display: block;
  grid-area: 1/1/3/2;
  width: 30px;
  aspect-ratio: 1/1;
  background-image: url(../images/menu-tel-icon.png);
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 10px;
  margin-right: 3px;
}
nav.nav_bg div.global-nav ul li.menu-btn-tel a:after {
  content: ">";
  aspect-ratio: 1/1;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-area: 1/3/3/4;
  font-size: 1rem;
}

nav.nav_bg.active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.hd_contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.hd_logo img {
  max-width: 354px;
  height: auto;
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.mv-content {
  margin-bottom: 50px;
}
.mv-content .mv-wrap {
  position: relative;
}
.mv-content .mv-wrap .mv-metaslider {
  overflow: visible;
  width: 90%;
  max-width: 1600px;
  aspect-ratio: 2/3;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.mv-content .mv-wrap .mv-metaslider .metaslider .flex-viewport {
  overflow: hidden;
  border-radius: 10vw 0 10vw 0;
}

.mv-metaslider::before, .mv-metaslider::after {
  content: "";
  position: absolute;
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.mv-metaslider::before {
  width: 60px;
  aspect-ratio: 117/142;
  background-image: url(../images/sakura5.png);
  top: 0;
  left: 0px;
  z-index: 2;
}
.mv-metaslider::after {
  width: 100px;
  aspect-ratio: 182/224;
  background-image: url(../images/sakura6.png);
  bottom: -70px;
  right: -25px;
}

.metaslider .flexslider {
  margin-bottom: 0 !important;
}

.metaslider .flex-control-nav {
  position: absolute !important;
  left: 30px !important;
  width: -webkit-max-content !important;
  width: -moz-max-content !important;
  width: max-content !important;
  bottom: -22px !important;
}

section[class^=index-] {
  margin: 50px auto;
}
section[class^=index-] h2 {
  font-size: 1.5em;
  color: #444b4f;
}
section[class^=index-] h2 span {
  color: #f36299;
  display: block;
  font-size: 0.5em;
}
section[class^=index-] h2._white {
  color: white;
}
section[class^=index-] h2._white span {
  color: white;
}
section[class^=index-] h3 {
  color: #444b4f;
}

.index-news .news-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.index-news .news-wrap h2 {
  width: 100%;
}
.index-news .news-wrap ul.news-list {
  width: 100%;
}
.index-news .news-wrap ul.news-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: solid 1px #f36299;
  padding-bottom: 10px;
}
.index-news .news-wrap ul.news-list li time {
  font-size: 0.8em;
  font-weight: bold;
  color: #82878A;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.index-news .news-wrap ul.news-list li time.new::after {
  content: "";
  position: absolute;
  width: 0.8em;
  top: 50.7%;
  right: -1.2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 1/1;
  border-radius: 100vh;
  background: #f36299;
}
.index-news .news-wrap ul.news-list li a.link-none {
  color: #444b4f;
  text-decoration: none;
}

.news-archive-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.news-archive-btn a {
  margin-top: 30px;
  display: block;
  background-color: white;
  border-radius: 100vh;
  border: solid 1px #f36299;
  padding: 5px 30px;
  text-align: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #444b4f;
  text-decoration: none;
}

section.index-access {
  position: relative;
  background: #FFEEF3;
  padding: 50px 30px 100px;
  margin-bottom: 100px;
}
section.index-access .access-box {
  width: 100%;
  text-align: left;
  padding-left: 1.5em;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.7px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
section.index-access .access-box h3 {
  width: 100%;
  text-align: left;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-bottom: 1em;
  font-size: clamp(1.2em, 2vw, 1.7em);
}
section.index-access .access-box h3:before {
  content: "";
  background-image: url(../images/ping.png);
  display: block;
  width: 1.1em;
  aspect-ratio: 1/1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
section.index-access .access-box .access-item p.access-tel {
  margin-bottom: 1em;
}
section.index-access .access-box .access-item p.access-tel a {
  font-weight: bold;
  text-decoration: none;
  font-family: "Noto Sans JP";
  letter-spacing: 0.1em;
  margin-left: 0.5em;
}
section.index-access .access-box .access-item {
  width: 100%;
}
section.index-access .access-box .googlemap {
  width: 100%;
}
section.index-access .access-box .googlemap iframe {
  width: 100%;
  height: 100%;
}

.common_btn {
  display: block;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 43px;
  font-weight: bold;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  background: #F36299;
  color: white;
  border-radius: 100vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 10px;
}
.common_btn:before {
  content: "";
  width: 1em;
  height: 1em;
  width: 30px;
  height: 30px;
  background-image: url(../images/reserve.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.common_btn:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
  line-height: 1.6em;
  font-family: "Noto Sans JP";
}

.common_btn_2 {
  display: block;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 43px;
  font-weight: bold;
  font-size: 1.1em;
  color: white;
  text-decoration: none;
  background: #20B2AA;
  color: white;
  border-radius: 100vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0 10px;
}
.common_btn_2:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
  line-height: 1.6em;
  font-family: "Noto Sans JP";
}

._fukidashi span {
  position: absolute;
  left: 50%;
  top: -34px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #444B4F;
  background: white;
  border: solid 2px #F36299;
  border-radius: 100vw;
  font-size: 0.8em;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 3px 2em;
}
._fukidashi span:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #ffffff;
  border-bottom: 0;
}

.access-reservebtn {
  position: absolute;
  bottom: -24px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.index-course .course-box {
  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;
}
.index-course .course-box .course-item {
  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;
}
.index-course .course-box .course-item figure {
  max-width: 364px;
  width: 30%;
}
.index-course .course-box .course-item figure img {
  display: block;
  width: 100%;
  margin: auto;
}
.index-course .course-box .course-item .course-text {
  width: 65%;
}
.index-course .course-box .course-item .course-text-title {
  font-weight: bold;
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.index-course .course-box .course-detail {
  width: 100%;
}
.index-course .course-box .course-detail-title {
  margin-top: 1em;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.index-course .course-box .course-detail-name {
  padding-left: 25px;
  position: relative;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
}
.index-course .course-box .course-detail-name:before {
  content: "";
  width: 15px;
  aspect-ratio: 1/1;
  background: url(../images/arrow.png) center center/contain no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.index-course .course-box .course-detail-exp {
  display: none;
}
.index-course .course-box .course-detail-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  background-image: linear-gradient(to right, #f36299 7px, transparent 1px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.index-course .course-box .course-detail-item.active .course-detail-name:before {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.index-course .course-box .course-detail-item.active .course-detail-exp {
  display: block;
}

.index-feature {
  background-color: #f36299;
  margin-bottom: 0 !important;
}
.index-feature .feature-wrap {
  padding: 60px 0 100px;
}
.index-feature h2 {
  width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 100px;
}
.index-feature h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: white;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.index-feature .feature-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 70px;
}
.index-feature .feature-box .feature-item {
  width: 100%;
  background-color: white;
  position: relative;
  border-radius: 20px;
  padding: 1.8em;
}
.index-feature .feature-box .feature-item_title {
  font-weight: bold;
  text-align: center;
  min-height: 3em;
  line-height: 1.5em;
  margin-bottom: 1em;
  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;
}
.index-feature .feature-box .feature-item::before {
  position: absolute;
  content: "";
  width: 79px;
  height: 41px;
  background-size: contain;
  background-position: center;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
}
.index-feature .feature-box figure {
  margin-bottom: 1em;
}
.index-feature .feature-box .feature-item:nth-child(1):before {
  background-image: url(../images/01.png);
}
.index-feature .feature-box .feature-item:nth-child(2):before {
  background-image: url(../images/02.png);
}
.index-feature .feature-box .feature-item:nth-child(3):before {
  background-image: url(../images/03.png);
}

.index-greeting {
  background-image: linear-gradient(140deg, rgb(255, 238, 243), rgb(255, 255, 255) 40%);
  margin-top: 0 !important;
  position: relative;
}
.index-greeting:before {
  background: url(../images/sakura5.png);
  aspect-ratio: 218/222;
  top: -30px;
  left: 0;
}
.index-greeting:after {
  background: url(../images/sakura6.png);
  aspect-ratio: 230/337;
  right: -10px;
  bottom: -10px;
}
.index-greeting:before, .index-greeting:after {
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 130px;
  position: absolute;
  z-index: 0;
  opacity: 0.4;
}
.index-greeting .greeting-wrap {
  padding: 100px 5% 70px;
  position: relative;
  z-index: 2;
}
.index-greeting h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.index-greeting h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: #f36299;
  left: 0;
  bottom: 0;
}
.index-greeting h3 {
  font-size: clamp(1.2em, 1.7vw, 1.5em);
  margin-bottom: 25px;
}
.index-greeting img {
  float: right;
  margin: 0 0 10px 20px;
  width: 50%;
  max-width: 410px;
  border-radius: 20px;
}
.index-greeting .supervising-doctor_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  gap: 2%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
}
.index-greeting .supervising-doctor_box .supervising-doctor_item {
  width: 100%;
}
.index-greeting .supervising-doctor_box .supervising-doctor_item dl {
  font-size: 1.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.index-greeting .supervising-doctor_box .supervising-doctor_item dl dt {
  width: 5em;
  font-size: bold;
}
.index-greeting .supervising-doctor_box .supervising-doctor_item dl dd {
  width: calc(100% - 5em);
}
.index-greeting .supervising-doctor_box h3 {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  margin-bottom: 1em;
}
.index-greeting .supervising-doctor_box h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f36299;
}

.index-line .line-wrap {
  width: 90%;
  max-width: 620px;
  margin: auto;
  background: #ffeef3;
  border-radius: 10px;
  padding: 30px 25px;
}
.index-line h2 {
  width: 100%;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.index-line h2:before {
  content: "";
  display: block;
  position: absolute;
  width: 70px;
  height: 2px;
  background-color: #f36299;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.index-line .line {
  font-size: 1.2em;
}
.index-line .line p {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  margin: 0 auto 30px;
  width: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-size: 0.8em;
}
.index-line .line p::before, .index-line .line p::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  width: 20px;
  background-color: #f36299;
}
.index-line .line p::before {
  left: -20px;
  bottom: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.index-line .line p::after {
  right: -20px;
  bottom: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.index-line .line a {
  display: block;
  color: white;
  font-weight: bold;
  background-color: #06c755;
  padding: 0.4em 1.5em;
  text-align: center;
  margin: auto;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  border-radius: 100vh;
  text-decoration: none;
}

.float_left_bnr {
  position: fixed;
  right: 45px;
  bottom: 0;
  width: 290px;
  aspect-ratio: 1200/388;
}

.link_control {
  display: block;
  width: 100%;
}

.link_control img {
  width: 100%;
  height: auto;
}

.toggle_cb {
  cursor: pointer;
  top: 0;
  right: -30px;
  position: absolute;
  font-size: 18px;
  color: #000;
  background-color: #fff;
  width: 30px;
  height: 30px;
  text-align: center;
  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;
  border-radius: 100vw;
  -webkit-box-shadow: 0px 0px 3px 1px #c5c5c5;
          box-shadow: 0px 0px 3px 1px #c5c5c5;
}

.ds_none {
  display: none !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
footer.ft_bg {
  background: white;
  margin: 100px 0 0 0;
  border-top: solid 1px #e5e5e5;
}

footer.ft_bg .ft_con {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 70px 0;
}
footer.ft_bg .ft_con div.ft_tel {
  width: 100%;
}
footer.ft_bg .ft_con div.ft_tel_titlearea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}
footer.ft_bg .ft_con div.ft_tel_titlearea p {
  font-weight: bold;
  font-size: clamp(1em, 1.5vw, 2em);
  color: #444b4f;
}
footer.ft_bg .ft_con div.ft_tel_info {
  background-color: #FFF9FB;
  border-radius: 10px;
  padding: 20px 5px;
}
footer.ft_bg .ft_con div.ft_tel_info p.tellnum {
  font-size: 1.2em;
  text-align: center;
}
footer.ft_bg .ft_con div.ft_tel_info p.tellnum a {
  color: #f36299;
  font-size: 1.5em;
  letter-spacing: 0.3em;
  font-weight: bold;
  text-decoration: none;
}
footer.ft_bg .ft_con div.ft_tel_info p.tellnum a img {
  width: calc(100% - 4.8rem);
  max-width: 244px;
}
footer.ft_bg .ft_con div.ft_tel_info p.faxnum a {
  color: #f36299;
  letter-spacing: 0.3em;
  font-weight: bold;
  text-decoration: none;
}
footer.ft_bg .ft_con div.ft_tel_info p.faxnum a img {
  display: block;
  margin: auto;
  width: calc(100% - 4.8rem);
  max-width: 174px;
}
footer.ft_bg .ft_con div.ft_tel_info p.tellmsg {
  text-align: center;
}
footer.ft_bg .ft_con nav.ft_nav {
  width: 100%;
}
footer.ft_bg .ft_con nav.ft_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 20px 4%;
  margin-top: 14px;
}
footer.ft_bg .ft_con nav.ft_nav ul li {
  width: 48%;
  max-width: 400px;
}
footer.ft_bg .ft_con nav.ft_nav ul li a {
  position: relative;
  padding-left: 1em;
  text-decoration: none;
  color: #444b4f;
}
footer.ft_bg .ft_con nav.ft_nav ul li a:before {
  content: "▶";
  font-size: 0.5em;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
footer.ft_bg .ft_con nav.ft_nav ul li a:hover {
  text-decoration: underline;
}

footer.ft_bg a.line-icon {
  color: #06c755;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  width: 100%;
  padding: 10px 5%;
  line-height: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 50px;
}
footer.ft_bg a.line-icon img {
  width: 50px;
  aspect-ratio: 1/1;
  margin-right: 1em;
}

.ft_copy {
  background-color: #FFF9FB;
  text-align: center;
  padding: 10px 0;
  display: block;
  width: 100%;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.page_title {
  width: 100%;
  min-height: 150px;
  background-color: #f36299;
  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;
}
.page_title .page_title-wrap {
  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;
}
.page_title .page_title-wrap h1.page_title-text {
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: clamp(1.2em, 2vw, 1.7em);
}

.main.page {
  margin: 80px auto;
}
.main.page h2 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.7em;
  font-weight: normal;
  position: relative;
  margin-bottom: 2em;
}
.main.page h2::before {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: #f36299;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.main.page h3 {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  margin-bottom: 1em;
}
.main.page h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f36299;
}
.main.page p {
  margin-bottom: 1em;
}
.main.page figure.price-table table tr {
  background-image: linear-gradient(to right, #f36299 7px, transparent 1px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 0.9em;
}
.main.page figure.price-table table tr td {
  border: initial;
  display: block;
}
.main.page figure.price-table table tr td:nth-child(1) {
  padding-bottom: 0;
}
.main.page .link-btn a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: #f36299;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: white;
  text-decoration: none;
}

.link-btn a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: #f36299;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: white;
  text-decoration: none;
}

.link-btn-2 a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: white;
  border: solid 2px #f36299;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: #444b4f;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.link-btn-2 a .__left {
  margin-left: 0;
}

.link-btn-2 a:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
  margin-top: -2px;
}

.link-btn-3 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: white;
  border: solid 2px #f36299;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: #444b4f;
  text-decoration: none;
  gap: 10px;
}
.link-btn-3 a .__left {
  margin-left: 0;
}

.link-btn-3 a:after {
  content: ">";
  display: block;
  aspect-ratio: 1/1;
  margin-top: -2px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** single
******************************************************************************
----------------------------------------------------------------------------*/
.single_title {
  width: 100%;
  min-height: 150px;
  background-color: #f36299;
  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;
}
.single_title .single_title-wrap {
  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;
}
.single_title .single_title-wrap h1.single_title-text {
  width: 100%;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: clamp(1.2em, 2vw, 1.7em);
}

.main.single {
  margin: 80px auto;
}
.main.single h2 {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.7em;
  font-weight: normal;
  position: relative;
  margin-bottom: 2em;
}
.main.single h2::before {
  content: "";
  display: block;
  width: 85px;
  height: 1px;
  background: #f36299;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.main.single h3 {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  margin-bottom: 1em;
}
.main.single h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #f36299;
}
.main.single p {
  margin-bottom: 1em;
}
.main.single figure.price-table table tr {
  background-image: linear-gradient(to right, #f36299 7px, transparent 1px);
  background-size: 10px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: 0.9em;
}
.main.single figure.price-table table tr td {
  border: initial;
  display: block;
}
.main.single figure.price-table table tr td:nth-child(1) {
  padding-bottom: 0;
}
.main.single .link-btn a {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 0.5em 1em;
  background: #f36299;
  text-align: center;
  margin: auto;
  border-radius: 100vh;
  color: white;
  text-decoration: none;
}

/*----------------------------------------------------------------------------
******************************************************************************
** single-special 特集記事
******************************************************************************
----------------------------------------------------------------------------*/
.thunbnail-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.thunbnail-box .thumbnail-figure {
  width: 100%;
}
.thunbnail-box .thumbnail-figure img {
  width: 100%;
  display: block;
  margin: auto;
  height: auto;
}
.thunbnail-box .thumbnail-text {
  width: 100%;
}
.thunbnail-box .thumbnail-text p.thumbnail-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 1em;
  display: block;
}
.thunbnail-box .thumbnail-text p span.sakura {
  font-weight: bold;
  color: #f36299;
}
.thunbnail-box .thumbnail-text p {
  font-size: 1em;
  font-weight: normal;
}
.thunbnail-box .btn-box {
  width: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.single-special-box {
  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;
  margin: auto;
  width: 90%;
}
.single-special-box .single-anchor-box {
  background: #f7f7f7;
  border-radius: 10px;
  padding: 10px 10px 20px;
  margin: 30px auto;
}
.single-special-box .single-anchor-box p {
  text-align: center;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 20px;
  position: relative;
  font-size: 1.1em;
}
.single-special-box .single-anchor-box p:before {
  content: "";
  -webkit-filter: opacity(0.6);
          filter: opacity(0.6);
  display: block;
  position: absolute;
  width: 1.5em;
  aspect-ratio: 1/1;
  background: url(../images/agenda.png) center center/contain no-repeat;
  top: 50%;
  left: -2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.single-special-box .single-anchor-list {
  border-top: solid 1px #cdcdcd;
  padding-top: 20px;
}
.single-special-box .single-anchor-list li {
  margin-bottom: 0.7em;
}
.single-special-box .single-anchor-list li a {
  color: #444b4f;
}
.single-special-box .single-anchor-list li a:hover {
  opacity: 0.5;
}
.single-special-box .single-anchor-list-child {
  margin-top: 0.5rem;
  font-size: 0.9em;
  padding-left: 2rem;
}
.single-special-box span.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(64%, transparent), color-stop(0%, #ffc4da));
  background: linear-gradient(transparent 64%, #ffc4da 0%);
}

.single-special-w_base {
  width: 100%;
  max-width: 860px;
  margin: auto;
}

.author-box {
  background: #f7f7f7;
  padding: 20px;
  font-size: 0.9em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  border-radius: 10px;
  margin-top: 100px;
}
.author-box div.author-avatar {
  overflow: hidden;
  aspect-ratio: 1/1;
  border-radius: 100vh;
  width: 80px;
}
.author-box div.author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.author-box .author-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.author-box .author-detail .author-info {
  width: calc(100% - 90px);
}
.author-box .author-info .author-name {
  margin-bottom: 0.2em;
}
.author-box .author-info .author-affi a {
  color: #444b4f;
}
.author-box .author-info .author-name, .author-box .author-info .author-jobttl, .author-box .author-info .author-affi {
  font-weight: bold;
}
.author-box .author-info .author-bio {
  font-size: 0.8rem;
}
.author-box time {
  font-size: 0.7rem;
}

.cta-wrap {
  position: sticky;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7098039216);
  display: block;
  width: 100%;
  padding: 10px 20px;
}
.cta-wrap .cta-lead {
  text-align: center;
  color: white;
  line-height: 1.1;
  margin-bottom: 0.5em;
}
.cta-wrap .cta-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

/*----------------------------------------------------------------------------
******************************************************************************
** single-special サイドバー
******************************************************************************
----------------------------------------------------------------------------*/
aside {
  display: block;
  width: 100%;
}
aside h3 {
  text-align: center;
  margin-bottom: 20px;
}
aside .reservation-area {
  border: solid 1px #20B2AA;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 5px;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
aside .reservation-area .reservation-text1 {
  text-align: center;
  font-weight: bold;
}
aside .reservation-area .reservation-text2 {
  font-size: 0.8em;
  text-align: center;
  font-style: italic;
}
aside .reservation-area .reservation-phonenum {
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: #f36299;
  font-size: clamp(1.5em, 2vw, 2em);
  border-bottom: solid 2px #f36299;
  margin-left: 5px;
  margin-bottom: 10px;
}
aside .reservation-area .reservation-address {
  font-size: 0.8em;
  margin: 10px 0;
}
aside .reservation-area .common_btn_2 {
  font-size: 0.8em;
  padding: 7px 35px;
}
aside ul.sidebar-rec {
  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;
  margin-bottom: 50px;
}
aside ul.category-list {
  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: 10px 0;
}
aside ul.category-list li {
  width: 48%;
}
aside ul.category-list a {
  display: block;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  color: #444b4f;
  font-size: 0.8em;
  text-decoration: none;
  background: #ededed;
}/*# sourceMappingURL=sp.css.map */