@charset "UTF-8";
html {
  font-family: "M PLUS 1", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
body {
  color: #333;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
a {
  color: #333;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
/*----------------------------------------------------
	Header
----------------------------------------------------*/
.l-header {
  z-index: 999;
  position: relative;
  width: 100%;
  min-height: 5rem;
}
.l-header__inner {
  position: relative;
}
.l-header__logo {
  z-index: 1;
  position: relative;
}
.l-header__logo::before {
  z-index: -1;
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.l-header__logo a {
  display: block;
}
/* Header Navi */
.l-header__navi {
  position: relative;
}
.l-header__naviItem {
  position: relative;
}
.l-header__naviItem > a {
  display: block;
  position: relative;
  color: #333;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: 0.3s all;
}
.l-header__naviItem > a::after {
  display: block;
  margin-top: 0.7rem;
  content: attr(data-text) "";
  color: #8dc556;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.2em;
}
.l-header__subMenu {
  display: none;
  z-index: 1;
  position: relative;
}
.l-header__subMenu.is-active {
  display: block;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-header__subMenuList {
  display: flex;
  flex-direction: column;
}
.l-header__subMenu li a {
  display: block;
  transition: color 0.2s linear;
}
.l-header__subMenu li a:hover {
  color: #ff7e9c;
}
/*----------------------------------------------------
	Footer
----------------------------------------------------*/
.l-footer__inner {
  z-index: 1;
  position: relative;
  background-color: #f8f7eb;
}
.l-footer__inner::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.l-footer__inner::after {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 26rem;
  background-color: #fff;
  content: "";
}
.l-footer__infoWrapper {
  display: flex;
  position: relative;
}
.l-footer__infoWrapper::before {
  z-index: -1;
  position: absolute;
  background: url("../../img/common/bg_footer02.svg") no-repeat center/cover;
  content: "";
}
.l-footer__infoWrapper::after {
  z-index: -1;
  position: absolute;
  background: url("../../img/common/bg_footer03.svg") no-repeat center/cover;
  content: "";
}
.l-footer__logo {
  text-align: center;
}
.l-footer__logo a {
  display: block;
}
.l-footer__address {
  text-align: center;
}
.l-footer__reserveWrapper {
  border-radius: 1.6rem;
  background-color: #fff;
}
.l-footer__link {
  text-align: center;
}
.l-footer__link a {
  display: flex;
  justify-content: center;
  font-weight: bold;
}
.l-footer__link a::after {
  border-radius: 50%;
  background-color: #ff7e9c;
  content: "\e5c8";
  color: #fff;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
}
.l-footer__link a span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.l-footer__calendar {
  background-color: #fff;
}
/* ----------------------------------------------------
 calendar
---------------------------------------------------- */
div.cal_wrapper {
  position: relative;
  margin: 0;
}
div.cal_wrapper table {
  width: 100%;
}
div.cal_wrapper table td {
  background: transparent;
}
div.cal_wrapper table.cal tr th {
  background: none;
}
div.cal_wrapper table.cal tr th p {
  z-index: 1;
  position: absolute;
  top: -0.4rem;
  right: 0;
  left: 0;
  margin: auto;
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
div.cal_wrapper table.cal tr th div.cal_ui {
  display: flex;
  z-index: 2;
  position: absolute;
  top: 0;
  right: 0;
  justify-content: space-between;
  width: 100%;
}
div.cal_wrapper table.cal tr th div.cal_ui::before, div.cal_wrapper table.cal tr th div.cal_ui::after {
  z-index: -1;
  position: absolute;
  border-radius: 50%;
  background-color: #ff7e9c;
  content: "\e5c8";
  color: #fff;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
  text-align: center;
}
div.cal_wrapper table.cal tr th div.cal_ui::before {
  padding-left: 0.2rem;
  transform: scale(-1, 1);
}
div.cal_wrapper table.cal tr th div.cal_ui::after {
  padding-left: 0.2rem;
}
div.cal_wrapper table.cal tr th div.cal_ui input {
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  cursor: pointer;
}
div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(2) {
  display: none;
}
div.cal_wrapper table.cal tr td {
  position: relative;
  padding: 0;
  border-top: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-bottom: 1.2rem solid transparent;
  border-left: 1.2rem solid transparent;
  text-align: center;
}
div.cal_wrapper table.cal tr td:first-of-type {
  border-left: none;
}
div.cal_wrapper table.cal tr td:last-of-type {
  border-right: none;
}
div.cal_wrapper table.cal tr:nth-of-type(3) td {
  border-top: none;
}
div.cal_wrapper table.cal tr:last-of-type td {
  border-bottom: none;
}
div.cal_wrapper table.cal tr.headline td {
  background-color: transparent;
}
div.cal_wrapper table.cal tr td div {
  padding: 0.8rem 0.6rem;
  color: #333;
  text-align: center;
}
div.cal_wrapper table.cal tr td div span {
  display: none;
  z-index: 10;
  position: absolute;
  top: 3rem;
  left: 0;
  width: 18rem;
  padding: 0.5rem;
  border: solid 1px #eee;
  background-color: #fff;
  box-shadow: 1px 1px 3px #666;
  color: #000;
  font-weight: normal;
  line-height: 1.5em;
  font-family: sans-serif;
  text-align: left;
}
div.cal_wrapper table.cal tr td div.backward {
  font-weight: normal;
  opacity: 0.5;
}
div.cal_wrapper table.cal tr td div.pointer {
  cursor: pointer;
}
.cal-txt {
  font-size: 1.4rem;
  text-align: left;
}
.cal-txt span {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 1.2rem;
  border-radius: 0.2rem;
  vertical-align: -0.3rem;
}
.cal-txt span:not(:first-of-type) {
  margin-left: 3.6rem;
}
/* ----------------------------------------------------
calendar デザイン調整用
---------------------------------------------------- */
div.cal_wrapper table.cal tr th div.cal_ui input {
  /* next.prev btn */
  -webkit-appearance: none;
  border: 0;
  background: transparent;
}
/* 午後休診 */
div.cal_wrapper table.cal tr td div.Sat {
  background: rgba(61, 193, 186, 0.2);
  color: #3dc1ba;
}
/* Sun;日曜*/
div.cal_wrapper table.cal tr td div.Sun {
  background-color: rgba(255, 126, 156, 0.2);
  color: #ff7e9c;
}
/* Holyday;祝日*/
div.cal_wrapper table.cal tr td div.Holyday {
  background-color: rgba(255, 126, 156, 0.2);
  color: #ff7e9c;
}
/* PMOff；午後休診 */
div.cal_wrapper table.cal tr td div.PMOff {
  background: rgba(61, 193, 186, 0.2);
  color: #3dc1ba;
}
/* dayOff;祝日*/
div.cal_wrapper table.cal tr td div.dayOff {
  background-color: rgba(255, 126, 156, 0.2);
  color: #ff7e9c;
}
/* otherDay;その他 */
div.cal_wrapper table.cal tr td div.otherDay {
  background-color: rgba(141, 197, 86, 0.5);
  color: #5eb705;
}
/* weekday;一日診療　*/
div.cal_wrapper table.cal tr td div.weekday {
  background: transparent;
  color: #333;
}
/* Today;当日 */
div.cal_wrapper table.cal tr td div.Today {
  font-weight: bold;
}
div.cal_wrapper table.cal tr td div.pointer:hover {
  background-color: #aaa;
  color: #fff;
}
/*　凡例　*/
.cal-off {
  background-color: rgba(255, 126, 156, 0.5);
}
.cal-halfOff {
  background-color: rgba(61, 193, 186, 0.5);
}
.cal-other {
  background-color: rgba(141, 197, 86, 0.5);
}
.l-footer__map iframe {
  display: block;
}
.l-footer__copyright {
  text-align: center;
}
.l-footer__copyright small {
  display: inline-block;
  color: #999;
  letter-spacing: 0.015em;
}
.l-footer__copyright small a {
  color: #999;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.l-footer__buttonWrapper {
  display: flex;
  z-index: 1000;
  position: fixed;
  margin-bottom: 0;
}
.l-footer__buttonItem a {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  border: solid 0.2rem #fff;
  background-repeat: no-repeat;
  background-color: #ff7e9c;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
}
.l-footer__button.--web {
  background-image: url("../../img/common/icon_web01.svg");
  background-color: #ff7e9c;
}
.l-footer__button.--line {
  background-image: url("../../img/common/icon_line01.svg");
  background-color: #00b900;
}
.l-footer__button.--tel {
  border: solid 0.2rem #ff7e9c;
  background-image: url("../../img/common/icon_tel01.svg");
  background-color: #fff;
  color: #333;
}
.l-footer__pageTop {
  display: block;
  z-index: 2;
  position: fixed;
  padding-left: 0.2rem;
  background: url("../../img/common/bg_pagetop01.svg") no-repeat center/cover;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s all;
}
.l-footer__pageTop::before {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  content: "\e5d8";
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
}
.l-footer__pageTop.is-show {
  opacity: 1;
  pointer-events: all;
}
.l-footer__pageTop.is-show:hover {
  opacity: 0.8;
}
/*----------------------------------------------------
	Main
----------------------------------------------------*/
.l-container {
  position: relative;
  overflow: hidden;
}
.l-main {
  z-index: 1;
  position: relative;
}
.l-contentsWrapper {
  position: relative;
}
.l-main__inner {
  position: relative;
}
/*----------------------------------------------------
	link
----------------------------------------------------*/
.c-link {
  transition: opacity 0.2s linear;
}
.c-link--bright {
  transition: filter 0.2s linear;
}
/*----------------------------------------------------
	button
----------------------------------------------------*/
/* 通常ボタン */
.c-button01 {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  border: 2px solid #ff7e9c;
  border-radius: 3.2rem;
  background-color: #fff;
  box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.14);
  color: #333;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  transition: all 0.3s;
}
.c-button01::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(255, 126, 156, 0.2);
  content: "\e5c8";
  color: #ff7e9c;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
}
.c-button01:hover {
  background-color: #fff2f5;
}
/* 下線テキスト＋矢印ボタン */
.c-button02 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.c-button02::after {
  border-radius: 50%;
  background-color: #ff7e9c;
  content: "\e5c8";
  color: #fff;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
  text-align: center;
}
.c-button02 span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.c-button02.--right {
  justify-content: flex-end;
}
/*----------------------------------------------------
	common parts
----------------------------------------------------*/
/* WEB予約とLINEボタンのボックス */
.c-reserve {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  align-items: center;
}
.c-reserve::before {
  position: absolute;
  background: url("../../img/common/img_kapibara01.svg") no-repeat center/cover;
  content: "";
}
.c-reserve__text {
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 0.6rem;
  gap: 1rem;
  color: #635242;
  text-align: center;
}
.c-reserve__text::before, .c-reserve__text::after {
  width: 1px;
  background-color: #644f44;
  content: "";
}
.c-reserve__text::before {
  transform: rotate(-25deg);
}
.c-reserve__text::after {
  transform: rotate(25deg);
}
.c-reserve__buttonList {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
}
.c-reserve__button {
  display: flex;
  align-items: center;
  border: solid 0.2rem #fff;
  border-radius: 2.2rem;
  background-repeat: no-repeat;
  background-color: #ff7e9c;
  color: #fff;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
}
.c-reserve__button.--web {
  background-image: url("../../img/common/icon_web01.svg");
  background-color: #ff7e9c;
}
.c-reserve__button.--line {
  background-image: url("../../img/common/icon_line01.svg");
  background-color: #00b900;
}
/* TEL */
.c-tel__text {
  text-align: center;
}
.c-telBox {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.c-telBox::before {
  background: url("../../img/common/icon_tel01.svg") no-repeat center/cover;
  content: "";
}
.c-telBox__number {
  display: block;
  font-weight: 500;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
}
/* 診療時間のテーブル */
.c-hours__table {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  background-image: repeating-linear-gradient(90deg, #333, #333 0.4rem, transparent 0.4rem, transparent 0.8rem), repeating-linear-gradient(90deg, #333, #333 0.4rem, transparent 0.4rem, transparent 0.8rem);
  background-position: left top, left bottom;
  background-size: 100% 0.2rem, 100% 0.2rem;
  background-repeat: repeat-x, repeat-x;
  text-align: center;
}
.c-hours__table thead th {
  font-weight: bold;
}
.c-hours__table thead th.title {
  text-align: left;
}
.c-hours__table tbody td {
  color: #ff7e9c;
  font-weight: 500;
}
.c-hours__table tbody td.hour {
  color: #333;
  text-align: left;
}
.c-hours__text {
  font-weight: normal;
}
.c-hours__text span {
  display: inline-block;
}
/* 採用情報バナー */
.c-footerRecruit {
  z-index: 1;
  position: relative;
}
.c-footerRecruit__inner {
  display: flex;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}
.c-footerRecruit__inner::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.c-footerRecruit__title {
  display: flex;
  z-index: 1;
  font-weight: bold;
}
.c-footerRecruit__title::after {
  display: block;
  transform: rotate(-10.16deg);
  content: attr(data-text) "";
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
  font-family: "Damion", cursive;
  letter-spacing: 0.1em;
}
.c-footerRecruit__textWrapper {
  z-index: 1;
  font-weight: bold;
}
.c-footerRecruit__text {
  margin-bottom: 0;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.c-footerRecruit__buttonWrapper {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.c-footerRecruit__button {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  border: 0.2rem solid #fff;
  border-radius: 3.2rem;
  line-height: 1.3;
  text-align: center;
}
.c-footerRecruit__button::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  content: "\e5c8";
  color: #fff;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
}
.c-footerRecruit__image {
  display: flex;
  z-index: 1;
}
.c-footerRecruit__parts img {
  z-index: 1;
  position: absolute;
}
/* SNSアイコン */
.c-sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem;
}
.c-sns__icon img {
  width: 2.4rem;
}
/*----------------------------------------------------
	Component
----------------------------------------------------*/
/* コンテンツ枠 */
.c-contentBlock01 {
  width: 100%;
}
.c-contentBlock02 {
  width: 100%;
}
.c-contentBlock03 {
  width: 100%;
}
/* Heading */
.c-topHeading01 {
  font-weight: bold;
  line-height: 1;
}
/* パンくずリスト */
.c-breadCrumb__list:not(#_) {
  display: flex;
  margin-bottom: 0;
}
.c-breadCrumb__list li {
  position: relative;
}
.c-breadCrumb__list li::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 0.4rem;
  height: 0.4rem;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  content: "";
}
.c-breadCrumb__list li:last-of-type:after {
  display: none;
}
.c-breadCrumb__list li a , .c-breadCrumb__list li {
  color: #ff7e9c;
}
/* ローカルナビ */
.c-localNav__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.c-localNav__item:not(#_) a {
  display: flex;
  position: relative;
  align-items: center;
  background-color: #fff;
  color: #ff7e9c;
  font-weight: bold;
  transition: all 0.3s;
}
.c-localNav__item:not(#_) a::before {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  width: 2.8rem;
  height: 2.8rem;
  padding-top: 0.3rem;
  padding-left: 0.2rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(255, 126, 156, 0.2);
  content: "\e5c8";
  font-size: 2.1rem;
  line-height: 1;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"400;
  text-align: center;
}
.c-localNav__item:not(#_) a:hover {
  border-color: #fff2f5;
  background-color: #fff2f5;
}
.c-localNav__item:not(#_).current a {
  border-color: #fff2f5;
  background-color: #fff2f5;
}
/*----------------------------------------------------
	Project
----------------------------------------------------*/
/* mainVisual */
.p-mainVisual {
  position: relative;
}
.p-mainVisual::before {
  z-index: 1;
  position: absolute;
  background: url("../../img/top/img_mv01.svg") no-repeat center/cover;
  content: "";
}
.p-mainVisual::after {
  z-index: 2;
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-mainVisual__slideWrapper {
  opacity: 0;
  transition: opacity 0.1s linear;
}
.p-mainVisual__slideWrapper.slick-initialized {
  opacity: 1;
}
.p-mainVisual__slideItem {
  position: relative;
}
.p-mainVisual__textWrapper {
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 5;
  position: absolute;
}
.p-mainVisual__copy {
  color: #3dc1ba;
  font-weight: bold;
}
.p-mainVisual__title {
  margin-bottom: 0;
  font-weight: bold;
}
.p-mainVisual__title .--row {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
}
.p-mainVisual__image {
  overflow: hidden;
}
/* newsと診療時間のwrapper */
.p-topInfoWrapper {
  display: flex;
}
/* news */
.p-topNews {
  position: relative;
  background-color: #f9f9f9;
}
.p-topNews__heading {
  display: flex;
  align-items: center;
  background-image: repeating-linear-gradient(90deg, #333333, #333333 0.4rem, transparent 0.4rem, transparent 0.8rem);
  background-position: left bottom;
  background-size: 100% 0.2rem;
  background-repeat: repeat-x;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.p-topNews__heading::after {
  background: url("../../img/top/icon_news01.svg") no-repeat center/cover;
  content: "";
}
.p-topNews__list {
  margin-bottom: 0;
}
.p-topNews__list li a {
  display: block;
  border-bottom: 1px dotted #d9d9d9;
  transition: opacity 0.2s linear;
}
.p-topNews__list li a:hover {
  opacity: 0.7;
}
.p-topNews__list li time {
  color: #999;
  font-weight: bold;
}
/* お知らせ */
.pointWrap h2 {
  display: flex;
  align-items: center;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.pointWrap h2::before {
  background: url("../../img/top/icon_point01.svg") no-repeat center/cover;
  content: "";
}
.point h3 {
  color: #8dc556;
  font-weight: bold;
}
.point p a {
  color: #ff7e9c;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  transition: 0.3s all;
}
.point p a:hover {
  opacity: 0.8;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
長期休診のお知らせ - table
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
table.schedule {
  width: 100%;
  border: 1px solid #d9d9d9;
}
table.schedule thead th {
  padding: 0.8rem 0.5rem 0.9rem;
  border-left: 1px solid #d9d9d9;
  background-color: #f9f9f9;
  color: #999;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}
table.schedule thead th:first-of-type {
  border-left: none;
}
table.schedule tbody th {
  padding: 0.3rem 0.5rem;
  border-top: 0.1rem solid #d9d9d9;
  background-color: #f9f9f9;
  color: #999;
  font-weight: bold;
  font-size: 1.4rem;
}
table.schedule td {
  padding: 0.3rem 0.5rem;
  border: 0.1rem solid #d9d9d9;
  color: #999;
  font-weight: bold;
  font-size: 1.4rem;
  text-align: center;
}
table.schedule thead th.sat, table.schedule thead th span.sat {
  color: #8dc556;
}
/*日付の日祝*/
table.schedule thead th.red, table.schedule thead th span.red {
  color: #ff7e9c;
}
/*休診欄*/
table.schedule td.red {
  background-color: #fff2f5;
  color: #ff7e9c;
}
/*日付統合の調整*/
table.schedule thead th.merge span {
  display: inline-block;
}
table.schedule thead th.merge span.btw {
  padding: 0 0.5em;
  vertical-align: 50%;
}
/* about us */
.p-topMessage {
  z-index: 1;
  position: relative;
  background-color: #eaf8f7;
}
.p-topMessage::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-topMessage::after {
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-topMessage__boxWrapper {
  z-index: 1;
  position: relative;
}
.p-topMessage__boxWrapper::before {
  position: absolute;
  background: url("../../img/top/bg_about03.svg") no-repeat center/cover;
  content: "";
}
.p-topMessage__boxWrapper::after {
  position: absolute;
  background: url("../../img/top/bg_about04.svg") no-repeat center/cover;
  content: "";
}
.p-topMessage__heading {
  position: relative;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.p-topMessage__heading::before {
  display: block;
  content: attr(data-text) "";
  color: #8dc556;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.2em;
}
.p-topMessage__heading::after {
  position: absolute;
  background: url("../../img/top/icon_about01.svg") no-repeat center/cover;
  content: "";
}
.p-topMessage__image {
  position: relative;
}
.p-topMessage__copy {
  position: absolute;
  font-weight: bold;
  writing-mode: vertical-rl;
}
.p-topMessage__copy .--row {
  display: block;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-color: #fff;
}
.p-topMessage__text {
  margin-bottom: 0;
  line-height: 2;
}
.p-topMessage__text:not(:first-of-type) {
  margin-top: 1.6rem;
}
/* コラム */
.p-topColumn {
  position: relative;
}
.p-topColumn__heading {
  font-weight: bold;
}
.p-topColumn__heading::before {
  display: block;
  content: attr(data-text) "";
  color: #8dc556;
  line-height: 1;
  font-family: "Roboto", sans-serif;
}
.p-topColumn__heading::after {
  z-index: -1;
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-topColumn__balloonWrapper {
  position: absolute;
}
.p-topColumn__balloonTextWrapper {
  position: absolute;
  background: url("../../img/top/img_column02.svg") no-repeat center/cover;
  text-align: center;
}
.p-topColumn__balloonText {
  line-height: 1.7;
}
.p-topColumn__slideInner {
  display: block;
  overflow: hidden;
  background-color: #fff;
}
.p-topColumn__image {
  overflow: hidden;
  transition: opacity 0.2s linear;
}
.p-topColumn__slideInner:hover .p-topColumn__image {
  opacity: 0.8;
}
.p-topColumn__textWrapper {
  transition: opacity 0.2s linear;
}
.p-topColumn__slideInner:hover .p-topColumn__textWrapper {
  opacity: 0.8;
}
.p-topColumn__category {
  display: inline-block;
  border-radius: 0.2rem;
  background-color: #ff7e9c;
  color: #fff;
  font-weight: bold;
}
.p-topColumn__category.--pink {
  background-color: #ff7e9c;
}
.p-topColumn__category.--green {
  background-color: #8dc556;
}
.p-topColumn__category.--blue {
  background-color: #3dc1ba;
}
.p-topColumn__title {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p-topColumn__date {
  display: block;
  color: #999;
  font-weight: bold;
}
.p-topColumn__text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  margin-bottom: 0;
  overflow: hidden;
  letter-spacing: 0.1em;
}
/* 5つの特徴 */
.p-topFeatures {
  position: relative;
  background-color: rgba(255, 126, 156, 0.1);
}
.p-topFeatures::before {
  position: absolute;
  background: url("../../img/top/bg_features01.svg") no-repeat center/cover;
  content: "";
}
.p-topFeatures::after {
  position: absolute;
  background: url("../../img/top/bg_features02.svg") no-repeat center/cover;
  content: "";
}
.p-topFeatures__headingWrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.p-topFeatures__headingWrapper::before {
  position: absolute;
  background: url("../../img/top/img_features04.svg") no-repeat center/cover;
  content: "";
}
.p-topFeatures__headingWrapper::after {
  position: absolute;
  background: url("../../img/top/img_features05.svg") no-repeat center/cover;
  content: "";
}
.p-topFeatures__headingWrapper .--image01 {
  position: absolute;
}
.p-topFeatures__headingWrapper .--image02 {
  position: absolute;
}
.p-topFeatures__heading {
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-topFeatures__heading::before {
  position: absolute;
  background: url("../../img/top/img_features03.svg") no-repeat center/cover;
  content: "";
}
.p-topFeatures__heading .--subTitle {
  display: block;
  margin-bottom: 0.4rem;
  border-radius: 4rem;
  background-color: #fff;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-topFeatures__heading .--number {
  color: #3dc1ba;
  line-height: 1;
}
.p-topFeatures__boxInner {
  display: flex;
}
.p-topFeatures__image {
  position: relative;
}
.p-topFeatures__image::after {
  position: absolute;
  background: url("../../img/top/img_features06.svg") no-repeat center/cover;
  content: "";
}
.p-topFeatures__title {
  position: relative;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.p-topFeatures__title::before {
  position: absolute;
  content: attr(data-number) "";
  color: rgba(255, 126, 156, 0.17);
  font-weight: bold;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.025em;
}
.p-topFeatures__text {
  margin-bottom: 0;
  letter-spacing: 0.1em;
}
/* 診療内容 */
.p-topMedical__headingWrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.p-topMedical__headingWrapper::before {
  position: absolute;
  background: url("../../img/top/img_menu01.svg") no-repeat center/cover;
  content: "";
}
.p-topMedical__headingWrapper::after {
  position: absolute;
  background: url("../../img/top/img_menu02.svg") no-repeat center/cover;
  content: "";
}
.p-topMedical__heading {
  letter-spacing: 0.1em;
  text-align: center;
}
.p-topMedical__heading::after {
  display: block;
  content: attr(data-text) "";
  color: #8dc556;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.2em;
}
.p-topMedical__boxWrapper {
  display: flex;
  flex-wrap: wrap;
}
.p-topMedical__boxInner {
  position: relative;
  border: solid 2px rgba(61, 193, 186, 0.4);
}
.p-topMedical__boxInner::after {
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  transform: rotate(45deg);
  background-color: #3dc1ba;
  content: "";
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}
a.p-topMedical__boxInner {
  display: block;
  transition: opacity 0.2s linear;
}
a.p-topMedical__boxInner:hover {
  opacity: 0.7;
}
.p-topMedical__image {
  margin-right: auto;
  margin-left: auto;
}
.p-topMedical__title {
  margin-bottom: 0.8rem;
  font-weight: bold;
  text-align: center;
}
.p-topMedical__text {
  margin-bottom: 0;
  line-height: 1.7;
}
/* お気軽にご相談ください */
.p-topTabSection__heading {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-weight: bold;
  letter-spacing: 0.12em;
}
.p-topTabSection__heading::before {
  position: absolute;
  left: 0;
  width: 2px;
  transform: rotate(-25deg);
  background-color: #333;
  content: "";
}
.p-topTabSection__heading::after {
  position: absolute;
  right: 0;
  width: 2px;
  transform: rotate(25deg);
  background-color: #333;
  content: "";
}
.p-topTabSection__tabMenu {
  display: flex;
  margin-bottom: 0;
}
.p-topTabSection__tabMenuItem {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  color: #999;
  font-weight: bold;
  list-style: none;
  text-align: center;
  cursor: pointer;
}
.p-topTabSection__tabMenuItem.is-active {
  background-color: #ff7e9c;
  color: #fff;
}
.p-topTabSection__tabPanel {
  border: solid 0.4rem #ff7e9c;
  background-color: #fff;
}
.p-topTabSection__tabPanelBox {
  display: none;
  flex-direction: column;
}
.p-topTabSection__tabPanelBox.is-show {
  display: flex;
}
.p-topTabSection__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.p-topTabSection__listItem {
  display: flex;
  align-items: center;
  justify-content: center;
  border: dashed 1px #ff7e9c;
  border-radius: 4rem;
  line-height: 1.2;
}
.p-topTabSection__listItem::before {
  content: "#. ";
  color: #ff7e9c;
}
.p-topTabSection__button {
  margin-top: auto;
}
/* 医師紹介 */
.p-topDoctor {
  z-index: 1;
  position: relative;
  background-color: #eaf8f7;
}
.p-topDoctor::before {
  z-index: -2;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-topDoctor::after {
  z-index: -2;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-topDoctor__inner::before {
  z-index: -1;
  position: absolute;
  background: url("../../img/top/bg_doctor03.svg") no-repeat center/cover;
  content: "";
}
.p-topDoctor__inner::after {
  z-index: -1;
  position: absolute;
  background: url("../../img/top/bg_doctor04.svg") no-repeat center/cover;
  content: "";
}
.p-topDoctor__headingWrapper {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.p-topDoctor__headingWrapper::before {
  position: absolute;
  background: url("../../img/top/img_doctor01.svg") no-repeat center/cover;
  content: "";
}
.p-topDoctor__headingWrapper::after {
  position: absolute;
  background: url("../../img/top/img_doctor02.svg") no-repeat center/cover;
  content: "";
}
.p-topDoctor__heading::after {
  display: block;
  content: attr(data-text) "";
  color: #8dc556;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.2em;
  text-align: center;
}
.p-topDoctor__tableWrapper {
  position: relative;
}
.p-topDoctor__tableWrapper::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  content: "";
  pointer-events: none;
}
.p-topDoctor__table {
  width: 100%;
  margin-bottom: 0;
  background-color: #fff;
}
.p-topDoctor__table thead th {
  background-color: #8dc556;
  color: #fff;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.p-topDoctor__table tbody th {
  background-color: rgba(141, 197, 86, 0.15);
  color: #8dc556;
  font-weight: 500;
}
.p-topDoctor__table tbody td {
  position: relative;
  background-color: #f3f3f3;
  line-height: 1.7;
  text-align: center;
}
.p-topDoctor__textWrapper {
  display: flex;
  margin-top: 2.4rem;
}
.p-topDoctor__list {
  margin-bottom: 0;
}
.p-topDoctor__listItem {
  position: relative;
  padding-left: 1em;
  line-height: 1.7;
  letter-spacing: 0.1em;
}
.p-topDoctor__listItem::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}
/* クリニック写真 */
.p-topView__scroll {
  display: flex;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
}
.p-topViewList {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  animation: infinity-scroll 30s infinite linear 0.5s both;
}
@keyframes infinity-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.p-topViewListItem {
  overflow: hidden;
}
/* 更新情報 */
.p-topInfo .c-contentBlock02 {
  background-color: #f9f9f9;
}
.p-topInfo__heading {
  display: flex;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-topInfo__heading::before {
  background: url("../../img/top/icon_info01.svg") no-repeat center/cover;
  content: "";
}
.p-topInfo__heading::after {
  position: absolute;
  transform: rotate(-10.16deg);
  content: attr(data-text) "";
  color: rgba(0, 0, 0, 0.5);
  font-family: "Damion", cursive;
}
.p-topInfoList {
  margin-bottom: 0;
  border-bottom: dotted 1px #ccc;
}
.p-topInfoList dt {
  color: #999;
  font-weight: bold;
}
.p-topInfoList dt:not(:first-of-type) {
  padding-top: 1.6rem;
  border-top: dotted 1px #ccc;
}
.p-topInfoList dd {
  line-height: 1.7;
}
.p-topInfoList dd.continuous {
  border-top: none;
}
.p-topInfoList dd a {
  color: #ff7e9c;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.p-topInfoList dd a:hover {
  text-decoration: none;
}
.p-topInfo__button {
  border: none;
  box-shadow: none;
}
/*----------------------------------------------------
	下層ページ
----------------------------------------------------*/
/* タイトル */
.p-visual {
  position: relative;
}
.p-visual::after {
  z-index: 2;
  position: absolute;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  content: "";
}
.p-visual__title {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-visual__title::after {
  display: block;
  content: attr(data-text) "";
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.22em;
}
.p-visual__image {
  overflow: hidden;
}
.p-visual__image::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(90, 61, 41, 0.16);
  content: "";
  opacity: 0.8;
}
/* 見出し */
.hA {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
.hA::before, .hA::after {
  margin-top: 0.3rem;
  content: "";
}
.hA::before {
  background: url("../../img/page/common/bg_heading01.svg") no-repeat center/cover;
}
.hA::after {
  margin-left: -0.2rem;
  background: url("../../img/page/common/bg_heading02.svg") no-repeat center/cover;
}
.hB {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.hB::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #d9d9d9;
  content: "";
}
.hB::after {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: #ff7e9c;
  content: "";
}
.hC {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.hC::before {
  position: absolute;
  left: 0;
  border-radius: 50%;
  background-color: rgba(255, 126, 156, 0.2);
  content: "";
}
.hD {
  overflow: hidden;
  background-image: repeating-linear-gradient(90deg, #cccccc, #cccccc 2px, transparent 2px, transparent 4px);
  background-position: left bottom;
  background-size: 100% 1px;
  background-repeat: repeat-x;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.hE {
  overflow: hidden;
  color: #8dc556;
  font-weight: bold;
  letter-spacing: 0.1em;
}
/* 太文字 */
.strongA {
  -webkit-text-decoration-color: rgba(255, 126, 156, 0.2);
  -webkit-text-decoration-skip-ink: none;
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: rgba(255, 126, 156, 0.2);
  text-decoration-skip-ink: none;
  text-underline-offset: -0.5em;
}
.strongB {
  font-weight: bold;
}
/* リンク */
.l-main__inner p {
  line-height: 2;
}
.l-main__inner a:not([class]) {
  color: #ff7e9c;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.l-main__inner a:not([class]):hover {
  text-decoration: none;
}
.telLink {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.05em;
}
.telLink::before {
  position: static;
  width: 1.3rem;
  height: 1.8rem;
  margin-bottom: 0.3rem;
  transform: translateY(0);
  background: url("../../img/common/icon_tel01.svg") no-repeat center/cover;
  content: "";
}
.telLink a:not(#_) {
  text-decoration: none;
}
.l-main__inner a.linkArrow {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  border: 2px solid #ff7e9c;
  border-radius: 3.2rem;
  background-color: #fff;
  box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.14);
  color: #333;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  transition: all 0.3s;
	min-width: 30rem;}
.l-main__inner a.linkArrow::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: rgba(255, 126, 156, 0.2);
  content: "\e5c8";
  color: #ff7e9c;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
}
.l-main__inner a.linkArrow:hover {
  background-color: #fff2f5;
}
.l-main__inner a.linkArrow.linkExternal span::after {
  display: none;
}
.l-main__inner a:not(.linkArrow).linkExternal span {
  color: #ff7e9c;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  transition: color 0.2s;
}
.l-main__inner a:not(.linkArrow).linkExternal span::after {
  content: "\e89e";
  color: #ff7e9c;
  font-size: 1.8rem;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
}
.l-main__inner a:not(.linkArrow).linkExternal:hover span, .l-main__inner a:not(.linkArrow).linkExternal:hover span::after {
  opacity: 0.8;
}
.l-main__inner a.linkArrow.linkExternal::before {
  margin-top: 0.2rem;
  margin-right: 0.4rem;
  margin-left: -1.6rem;
  content: "\e89e";
  color: #ff7e9c;
  font-size: 2.2rem;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"300;
}
/* リスト */
.listDot:not(#_) li {
  position: relative;
}
.listDot:not(#_) li::before {
  position: absolute;
  left: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background-color: #d9d9d9;
  content: "";
}
.listNum {
  counter-reset: ol_li;
}
.listNum:not(#_) li {
  position: relative;
  margin-left: 0;
  list-style: none;
}
.listNum:not(#_) li:before {
  position: absolute;
  left: 0;
  content: counter(ol_li) "";
  color: rgba(255, 126, 156, 0.49);
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  counter-increment: ol_li;
}
ul.listNote li::before {
  content: "・";
}
.listCheck:not(#_) li {
  position: relative;
}
.listCheck:not(#_) li::before {
  position: absolute;
  content: "\e5ca";
  color: #8dc556;
  font-family: "Material Symbols Outlined";
  font-variation-settings: "wght"400;
}
dl.listData dt {
  color: #ff7e9c;
  font-weight: bold;
}
dl.listData dd {
  line-height: 1.6;
}
/* 装飾ボックス */
.decBox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.decBox01 {
  background-color: #f9f9f9;
}
.decBox02 {
  background-color: #fcf3f6;
}
.decBox03 {
  border: solid 1px rgba(61, 193, 186, 0.4);
  background-color: #fff;
}
/* テーブル */
.tblA th, .tblB th, .tblC th, .tblD th, .tblE th {
  border: solid 1px #d9d9d9;
  background-color: #f9f9f9;
  color: #999;
  font-weight: bold;
}
.tblA td, .tblB td, .tblC td, .tblD td, .tblE td {
  border: solid 1px #d9d9d9;
  background-color: #fff;
  font-weight: 500;
}
.tblB tr th {
  text-align: left;
}
.tblB td.inrTblB table {
  border: none;
}
.tblB td.inrTblB table th {
  border-right: solid 1px #d9d9d9;
  border-bottom: solid 1px #d9d9d9;
}
.tblB td.inrTblB table td {
  border-bottom: solid 1px #d9d9d9;
}
.tblD td:first-of-type {
  border-bottom: 1px solid #d9d9d9;
  background-color: #f3f3f3;
  color: #999;
  text-align: center;
}
.tblE tr:nth-of-type(even) th {
  background-color: #e4e4e4;
}
.tblE tr:nth-of-type(even) td {
  background-color: #f3f3f3;
}
/* 流れ */
.stpBox {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 0;
  background-color: rgba(255, 126, 156, 0.1);
}
.stpBox::after {
  display: none;
}
.stpContent > h3 {
  position: relative;
  font-weight: bold;
}
.stpContent > h3::before {
  display: block;
  border-radius: 8rem;
  background: url("../../img/page/common/bg_step01.svg") no-repeat center/cover;
  content: "STEP.";
  color: #ff7e9c;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
.stpContent > h3::after {
  position: absolute;
  content: "0"attr(data-number);
  color: #ff7e9c;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0;
}
.stpImg {
  overflow: hidden;
  border-radius: 2rem;
}
.stpImg img {
  -o-object-fit: cover;
  object-fit: cover;
}
/*----------------------------------------------------
	Utility
----------------------------------------------------*/
.u-font--en {
  font-family: "Roboto", sans-serif;
}
.u-center {
  text-align: center !important;
}
.u-bold {
  font-weight: bold !important;
}
.u-color--pink01 {
  color: #ff7e9c;
}
.u-color--green01 {
  color: #8dc556;
}
.u-color--blue01 {
  color: #3dc1ba;
}
.u-color--yellow01 {
  color: #f2ff00;
}
.u-objectFit {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ----------------------------------------------------
	以下、PC用・スマホ用のメディアクエリ
---------------------------------------------------- */
@media (max-width: 767px) {
  div.cal_wrapper table.cal tr th p {
    top: 0.1rem;
    font-size: 1.4rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input {
    font-size: 1.3rem;
  }
  div.cal_wrapper table.cal tr td {
    border-top: 0.6rem solid transparent;
    border-right: 0.6rem solid transparent;
    border-bottom: 0.6rem solid transparent;
    border-left: 0.6rem solid transparent;
    font-size: 1.2rem;
  }
  div.cal_wrapper table.cal tr td div {
    padding: 0.7rem 0.4rem;
    font-size: 1.2rem;
  }
  div.cal_wrapper table.cal tr td div span {
    top: 4vw;
    width: 24vw;
    padding: 0.4vw;
  }
  .cal-txt {
    font-size: 1.1rem;
  }
  .cal-txt span {
    width: 1.4rem;
    height: 1.4rem;
    margin-right: 0.6rem;
    vertical-align: -0.3rem;
  }
  .cal-txt span:not(:first-of-type) {
    margin-left: 2rem;
  }
  table.schedule {
    width: 100%;
    margin: 0.8rem 0;
    border-bottom: none;
  }
  table.schedule thead {
    display: block;
    width: 35%;
    float: left;
  }
  table.schedule th, table.schedule td {
    display: block;
    min-height: 3rem;
    padding: 0.5rem;
    font-size: 1.2rem;
    text-align: center;
  }
  table.schedule thead th, table.schedule tbody th {
    min-height: 3rem;
    padding: 0.5rem;
    font-size: 1.2rem;
  }
  table.schedule thead th {
    border-bottom: 1px solid #d9d9d9;
  }
  table.schedule tbody th {
    border-top: none;
    border-bottom: 1px solid #d9d9d9;
    border-left: 1px solid #d9d9d9;
  }
  table.schedule td {
    border-top: none;
    border-right: none;
  }
  table.schedule:not(.schedule_y) thead th {
    border-left: none;
  }
  table.schedule thead th:first-of-type {
    border-top: none;
  }
  table.schedule tbody {
    display: block;
    width: 65%;
    float: left;
  }
  table.schedule thead tr {
    display: block;
  }
  table.schedule tbody tr {
    display: block;
    width: 50%;
    float: left;
  }
  table.schedule {
    zoom: 100%;
  }
  table.schedule td br {
    display: block;
  }
  table.schedule th br {
    display: none;
  }
  table.schedule th br.sp_br {
    display: block !important;
  }
  /*-----------------------------*/
  /*スマホでも横にレイアウト変したい時：長期休診用*/
  table.schedule.schedule_y {
    display: table;
    width: 100% !important;
  }
  table.schedule.schedule_y thead {
    display: table-header-group;
    width: 100%;
    float: none;
  }
  table.schedule.schedule_y thead th {
    border-top: none;
  }
  table.schedule.schedule_y tbody {
    display: table-row-group;
    width: 100%;
    float: none;
  }
  table.schedule.schedule_y th, table.schedule.schedule_y td {
    display: table-cell;
    padding: 0.3rem 1px;
    font-size: 1.2rem;
    text-align: center;
  }
  table.schedule.schedule_y th {
    padding: 0.9rem 0;
  }
  table.schedule.schedule_y td br {
    display: block;
  }
  table.schedule.schedule_y th br {
    display: block !important;
  }
  table.schedule.schedule_y th br.sp_br {
    display: none !important;
  }
  table.schedule.schedule_y thead tr {
    display: table-row;
  }
  table.schedule.schedule_y tbody tr {
    display: table-row;
    width: 100%;
    float: none;
  }
  table.schedule.schedule_y tbody tr th {
    width: 2em;
    padding: 0.6rem 0;
  }
  table.schedule.schedule_y tbody tr:first-of-type td {
    border-top: none;
  }
  table.schedule.schedule_y td:last-of-type {
    border-right: none;
  }
  table.schedule.schedule_y th, table.schedule.schedule_y td {
    margin-top: -1px;
    margin-left: -1px;
  }
  table.schedule.schedule_y {
    zoom: 100%;
  }
  table.schedule.schedule_y th, table.schedule.schedule_y td {
    vertical-align: middle !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1560px) {
  .l-footer__pageTop {
    right: 2rem !important;
  }
}
@media screen and (min-width: 768px) and (hover: hover) {
  .c-link:hover {
    opacity: 0.8;
    transition: opacity 0.2s linear;
  }
  .c-link--bright:hover {
    filter: brightness(1.1);
    transition: filter 0.2s linear;
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  .l-header__inner {
    width: 120rem;
    height: 68rem;
    margin: 0 auto;
  }
  body:not(#home) .l-header__inner {
    height: 46rem;
  }
  .l-header__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-top: 2rem;
  }
  .l-header__logo::before {
    top: 10rem;
    left: -3.3rem;
    width: 58rem;
    height: 14.5rem;
    background-image: url("../../img/common/img_cloud01_pc.svg");
  }
  .l-header__logoImage {
    width: 39.3rem;
  }
  /* ハンバーガーメニュー */
  .l-header__naviWrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 120rem;
    margin: auto;
    background-color: #fff;
  }
  .l-header__naviWrapper.is-fixed {
    z-index: 1000;
    position: fixed;
    top: 0;
    bottom: auto;
  }
  .l-header__naviWrapper.is-fixed::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    transform: translateX(-50%);
    background-color: #fff;
    content: "";
  }
  .l-header__naviWrapperInner {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
  }
  .l-header__naviWrapper.is-fixed .l-header__naviWrapperInner {
    padding-top: 3.8rem;
    padding-bottom: 2.6rem;
  }
  .l-header__navi {
    display: flex;
  }
  .l-header__naviItem {
    flex: 1;
  }
  .l-header__naviItem:not(:last-of-type)::after {
    position: absolute;
    top: 0.3rem;
    left: 100%;
    width: 1px;
    height: 2.8rem;
    background-color: #d9d9d9;
    content: "";
  }
  .l-header__naviItem > a {
    text-align: center;
  }
  .l-header__naviItem:hover > a::before {
    position: absolute;
    top: -1.4rem;
    right: 0;
    left: 0;
    width: 0.9rem;
    height: 0.8rem;
    margin: auto;
    background: url("../../img/common/bg_naviCurrent01.svg") no-repeat center/cover;
    content: "";
  }
  .l-header__subMenu {
    position: absolute;
    top: 3.2rem;
    left: 50%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    padding-top: 1rem;
    transform: translateX(-50%);
  }
  .l-header__subMenu.is-active {
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    animation-name: fadeIn;
  }
  .is-have-subMenu:hover .l-header__subMenu, .l-header__subMenu:hover {
    display: block;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-name: fadeIn;
  }
  .l-header__subMenuList {
    min-width: 19.2rem;
    padding: 0.8rem 2rem 3.2rem;
    gap: 1.8rem;
    border-radius: 0.8rem;
    background-color: #fff;
  }
  .l-header__subMenu li a {
    font-size: 1.4rem;
    line-height: 1.5;
    text-align: center;
  }
  .l-header__infoWrapper {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    align-items: center;
    margin-top: 0.7rem;
    gap: 2rem;
  }
  .l-header__access {
    margin-bottom: 0.7rem;
    padding: 0 2rem 0.1rem;
    border-radius: 0.2rem;
    background-color: #fff2f5;
    color: #ff7e9c;
    font-size: 1.2rem;
    text-align: center;
  }
  .l-footer {
    margin-top: 8rem;
  }
  .l-footer__inner {
    margin-top: 3rem;
  }
  .l-footer__inner::before {
    width: 160rem;
    height: 11.9rem;
    background-image: url("../../img/common/bg_footer01_pc.svg");
    background-size: 100% 11.9rem;
  }
  .l-footer__infoWrapper {
    justify-content: space-between;
    padding-top: 12.6rem;
    padding-right: 9.7rem;
    padding-bottom: 6rem;
    gap: 2.7rem;
  }
  .l-footer__infoWrapper::before {
    top: -1.2rem;
    left: 0;
    width: 18.3rem;
    height: 14.4rem;
  }
  .l-footer__infoWrapper::after {
    right: -1.3rem;
    bottom: -2rem;
    width: 18.3rem;
    height: 14.4rem;
  }
  .l-footer__info {
    width: 60.6rem;
    padding-top: 1.6rem;
  }
  .l-footer__logo {
    margin-bottom: 1rem;
  }
  .l-footer__logo img {
    width: 40.4rem;
  }
  .l-footer__address {
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
  }
  .l-footer__reserveWrapper {
    width: 40.6rem;
    margin-top: 1.1rem;
    margin-right: auto;
    margin-left: auto;
    padding: 2rem 1.6rem 1.6rem;
  }
  .l-footer__tel {
    margin-bottom: 1.2rem;
  }
  .l-footer__link {
    margin-top: 1.9rem;
  }
  .l-footer__link a {
    gap: 0.8rem;
    font-size: 1.5rem;
  }
  .l-footer__link a::after {
    width: 2.5rem;
    height: 2.5rem;
    margin-top: -0.2rem;
    padding-top: 0.3rem;
    font-size: 1.4rem;
  }
  .l-footer__calendar {
    flex: 1;
    padding: 5.2rem 5.9rem 4rem;
    border-radius: 2rem;
  }
  div.cal_wrapper {
    padding: 3rem 0;
  }
  div.cal_wrapper table.cal tr th div.cal_ui::before, div.cal_wrapper table.cal tr th div.cal_ui::after {
    top: -0.1rem;
    width: 2.5rem;
    height: 2.5rem;
    padding-top: 0.3rem;
    font-size: 1.4rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui::before {
    left: -0.5rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui::after {
    right: -0.5rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(1) {
    padding-left: 2.8rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(3) {
    padding-right: 2.8rem;
  }
  div.cal_wrapper table.cal tr.headline td {
    padding: 1.4rem 0.2rem 1.2rem;
  }
  .l-footer__map {
    overflow: hidden;
    border: solid 0.4rem #fff;
    border-radius: 4rem;
  }
  .l-footer__map iframe {
    height: 40.5rem;
  }
  .l-footer__copyright {
    padding: 2.8rem 0 3rem;
  }
  .l-footer__copyright small {
    font-size: 1.4rem;
  }
  .l-footer__buttonWrapper {
    top: 50%;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    transform: translateY(-50%);
  }
  .l-footer__buttonWrapper::before {
    z-index: 1;
    position: absolute;
    top: -6.5rem;
    left: 1.6rem;
    width: 7.9rem;
    height: 7.7rem;
    background: url("../../img/common/img_kapibara02.svg") no-repeat center/cover;
    content: "";
  }
  .l-footer__buttonItem a {
    width: 11rem;
    height: 7.4rem;
    padding-top: 2.3rem;
    border-radius: 0.4rem;
    background-position: center top 1.4rem;
    box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.14);
  }
  .l-footer__button.--web {
    background-size: 2.4rem auto;
  }
  .l-footer__button.--line {
    padding-top: 2.6rem;
    background-position: center top 1rem;
    background-size: 2.5rem auto;
  }
  .l-footer__pageTop {
    right: calc((100% - 120rem) / 2 - 15.5rem);
    bottom: 3rem;
    width: 10.2rem;
    height: 9.8rem;
    padding-top: 5.4rem;
  }
  .l-footer__pageTop::before {
    top: 2rem;
    font-size: 2.6rem;
  }
  .l-container {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
  }
  .l-main {
    flex: 1;
  }
  .l-contentsWrapper {
    width: 120rem;
    margin-right: auto;
    margin-left: auto;
  }
  .c-link:focus {
    opacity: 0.8;
    transition: opacity 0.2s linear;
  }
  .c-link--bright:focus {
    filter: brightness(1.1);
    transition: filter 0.2s linear;
  }
  .c-button01 {
    width: 27rem;
    height: 6.4rem;
    padding: 0.4rem 0.8rem;
  }
  .c-button01::after {
    right: 1.8rem;
    width: 4.1rem;
    height: 4.1rem;
    padding-top: 0.6rem;
    padding-left: 0.1rem;
    font-size: 2.2rem;
  }
  .c-button02 {
    gap: 1.8rem;
  }
  .c-button02::after {
    width: 4.1rem;
    height: 4.1rem;
    padding-top: 0.5rem;
    font-size: 2.2rem;
  }
  .c-reserve::before {
    z-index: -1;
    top: 0;
    right: 3.6rem;
    width: 5.8rem;
    height: 5.4rem;
  }
  .c-reserve__text {
    margin-bottom: 0.4rem;
    font-size: 1rem;
  }
  .c-reserve__text::before, .c-reserve__text::after {
    height: 3rem;
  }
  .c-reserve__button {
    width: 18.2rem;
    height: 4.4rem;
    padding-left: 7.1rem;
    background-position: left 3.5rem center;
    box-shadow: 0 0.4rem 0.4rem 0 rgba(0, 0, 0, 0.14);
  }
  .c-reserve__button.--web {
    background-size: 2.4rem auto;
  }
  .c-reserve__button.--line {
    background-size: 2.5rem auto;
  }
  .c-tel__text {
    margin-bottom: 0.6rem;
    font-size: 1.5rem;
  }
  .c-telBox {
    gap: 0.7rem;
  }
  .c-telBox::before {
    width: 1.9rem;
    height: 2.5rem;
    margin-bottom: 0.6rem;
  }
  .c-telBox.--small {
    gap: 0.6rem;
  }
  .c-telBox.--small::before {
    width: 1.7rem;
    height: 2.2rem;
    margin-bottom: 0.3rem;
  }
  .c-telBox__number {
    font-size: 3.6rem;
  }
  .c-telBox.--small .c-telBox__number {
    font-size: 2.8rem;
  }
  .c-hours__wrapper {
    width: 49rem;
  }
  .c-hours__table {
    margin-bottom: 1.8rem;
  }
  .c-hours__table thead th {
    padding: 3rem 0.9rem 1rem;
    font-size: 1.8rem;
  }
  .c-hours__table thead th.title {
    padding-left: 1rem;
  }
  .c-hours__table tbody td {
    padding: 0.7rem 1.2rem 0.7rem 1.1rem;
    font-size: 2rem;
  }
  .c-hours__table tbody tr:last-of-type td {
    padding-bottom: 3rem;
  }
  .c-hours__table tbody td:last-of-type {
    padding-right: 1.4rem;
  }
  .c-hours__table tbody td.hour {
    padding-right: 0.4rem;
    padding-left: 1rem;
    font-size: 1.6rem;
  }
  .c-hours__table tbody td.open {
    font-size: 1.8rem;
  }
  .c-hours__text {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
  }
  .c-hours__text span {
    margin-right: 1rem;
  }
  .c-footerRecruit {
    width: 119.7rem;
    height: 42.5rem;
    margin-right: auto;
    margin-left: auto;
  }
  .c-footerRecruit__inner {
    width: 119.7rem;
    height: 42.5rem;
    padding: 7.2rem 4.5rem 6rem;
    gap: 2.8rem;
    background-image: url("../../img/common/bg_recruit01_pc.png");
  }
  .c-footerRecruit__inner::before {
    background-image: url("../../img/common/bg_recruit02_pc.svg");
  }
  .c-footerRecruit__title {
    flex-direction: column;
    align-items: center;
    font-size: 3.6rem;
    letter-spacing: 0.3em;
  }
  .c-footerRecruit__title::after {
    margin-left: 1.6rem;
    font-size: 4.8rem;
  }
  .c-footerRecruit__title .--vertical {
    writing-mode: vertical-rl;
  }
  .c-footerRecruit__text {
    margin-top: 0.8rem;
    margin-bottom: 3.5rem;
    font-size: 2.6rem;
    line-height: 1.7;
  }
  .c-footerRecruit__buttonWrapper {
    flex-direction: column;
    gap: 1.5rem;
  }
  .c-footerRecruit__button {
    width: 27rem;
    height: 6.4rem;
    padding: 0.4rem 0.8rem;
  }
  .c-footerRecruit__button::after {
    right: 1.8rem;
    width: 4.1rem;
    height: 4.1rem;
    padding-top: 0.6rem;
    padding-left: 0.1rem;
    font-size: 2.2rem;
  }
  .c-footerRecruit__image {
    position: absolute;
    top: -2.1rem;
    right: 7.9rem;
    align-items: flex-start;
    gap: 2rem;
  }
  .c-footerRecruit__image img {
    width: 22.6rem;
    border-radius: 2rem;
  }
  .c-footerRecruit__image img.--02 {
    margin-top: 9.6rem;
  }
  .c-footerRecruit__parts .--01 {
    top: 2.8rem;
    left: 19.3rem;
    width: 7.2rem;
  }
  .c-footerRecruit__parts .--02 {
    top: 16.7rem;
    left: 58.1rem;
    width: 7.7rem;
  }
  .c-footerRecruit__parts .--03 {
    top: 9.9rem;
    right: 6.9rem;
    width: 3.1rem;
  }
  .c-footerRecruit__parts .--04 {
    top: 25rem;
    left: 55.7rem;
    width: 14.4rem;
  }
  .c-contentBlock01 {
    width: 120rem;
    margin-right: auto;
    margin-left: auto;
  }
  .c-contentBlock02 {
    width: 100rem;
    margin-right: auto;
    margin-left: auto;
  }
  .c-contentBlock03 {
    width: 112.3rem;
    margin-right: auto;
    margin-left: auto;
  }
  .c-topHeading01 {
    font-size: 3.6rem;
  }
  .c-breadCrumb {
    margin-top: 2rem;
    margin-bottom: 6rem;
  }
  .c-breadCrumb__list:not(#_) {
    gap: 1.5rem;
  }
  .c-breadCrumb__list li {
    font-size: 1.2rem;
  }
  .c-breadCrumb__list li::after {
    right: -0.8rem;
  }
  .c-localNav {
    margin-bottom: 10rem;
  }
  .c-localNav__list {
    justify-content: center;
    gap: 1.6rem 1.8rem;
  }
  .c-localNav__item {
    width: 28rem;
  }
  .c-localNav__item:not(#_) a {
    justify-content: center;
    height: 6.4rem;
    padding: 0.9rem 1.6rem;
    border: solid 1px #ff7e9c;
    border-radius: 0.8rem;
    font-size: 1.8rem;
  }
  .p-mainVisual {
    position: absolute;
    top: 10rem;
    right: 0;
    left: 0;
    width: 120rem;
    height: 48rem;
    margin: auto;
  }
  .p-mainVisual::before {
    right: 7.5rem;
    bottom: 1.8rem;
    width: 24.7rem;
    height: 20.1rem;
  }
  .p-mainVisual::after {
    right: -3.5rem;
    bottom: -2.1rem;
    width: 58rem;
    height: 14.5rem;
    background-image: url("../../img/common/img_cloud02_pc.svg");
  }
  .p-mainVisual__textWrapper {
    bottom: 6rem;
    left: 7rem;
  }
  .p-mainVisual__copy {
    margin-bottom: 2.4rem;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
  }
  .p-mainVisual__title {
    font-size: 3rem;
    letter-spacing: 0.2em;
  }
  .p-mainVisual__title .--row {
    margin-top: 1.2rem;
    padding: 0.3rem 2rem;
    border-radius: 0.8rem;
  }
  .p-mainVisual__image {
    border-radius: 4rem;
  }
  .p-topInfoWrapper {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-top: 5rem;
    gap: 6.6rem;
  }
  .p-topNews {
    flex: 1;
    padding: 4.6rem 5rem 4rem;
    border-radius: 2rem;
  }
  .p-topNews__heading {
    margin-bottom: 1.2rem;
    padding-bottom: 2.5rem;
    gap: 1.4rem;
  }
  .p-topNews__heading::after {
    width: 3.1rem;
    height: 4.2rem;
  }
  .p-topNews__list li a {
    padding: 1.7rem 1.7rem 1.5rem;
    letter-spacing: 0.06em;
  }
  .p-topNews__list li time {
    margin-right: 1.6rem;
  }
  .p-topNews__button {
    position: absolute;
    top: 4.5rem;
    right: 5rem;
  }
  .pointWrap {
    width: 84rem;
    margin-top: 7rem;
    margin-right: auto;
    margin-left: auto;
  }
  .pointWrap h2 {
    justify-content: center;
    margin-bottom: 3.3rem;
    gap: 1.4rem;
    font-size: 2.8rem;
  }
  .pointWrap h2::before {
    width: 6.7rem;
    height: 4.7rem;
  }
  .point:not(:first-of-type) {
    margin-top: 4rem;
  }
  .point h3 {
    margin-bottom: 0.8rem;
    font-size: 2rem;
  }
  .point h3:not(:first-of-type) {
    margin-top: 4rem;
  }
  .point p {
    margin-bottom: 1.6rem;
    word-break: break-word;
  }
  table.schedule {
    margin-top: 2.8rem;
    margin-bottom: 2.8rem;
  }
  .p-topMessage {
    min-height: 111rem;
    margin-top: -1.1rem;
    padding-top: 24rem;
    padding-bottom: 9.7rem;
  }
  .p-topMessage::before {
    width: 160rem;
    height: 27.8rem;
    background-image: url("../../img/top/bg_about01_pc.svg");
    background-size: 100% 27.8rem;
  }
  .p-topMessage::after {
    width: 160rem;
    height: 12.1rem;
    background-image: url("../../img/top/bg_about02_pc.svg");
    background-size: 100% 12.1rem;
  }
  .p-topMessage__boxWrapper {
    padding-right: 55.6rem;
  }
  .p-topMessage__boxWrapper::before {
    top: 7rem;
    left: 50.7rem;
    width: 16.2rem;
    height: 10.2rem;
  }
  .p-topMessage__boxWrapper::after {
    top: 61.6rem;
    left: 99.7rem;
    width: 18.3rem;
    height: 14.4rem;
  }
  .p-topMessage__heading {
    margin-bottom: 6rem;
    font-size: 2.8rem;
  }
  .p-topMessage__heading::before {
    margin-bottom: 2.7rem;
    font-size: 2rem;
  }
  .p-topMessage__heading::after {
    top: -1.8rem;
    left: 12.8rem;
    width: 7.2rem;
    height: 6.1rem;
  }
  .p-topMessage__image {
    display: flex;
    position: absolute;
    top: 1rem;
    right: -12.5rem;
    flex-direction: column;
    gap: 3.4rem;
  }
  .p-topMessage__image img {
    border-radius: 2rem;
  }
  .p-topMessage__image img.--01 {
    width: 60.1rem;
    height: 45.1rem;
  }
  .p-topMessage__image img.--02 {
    width: 30.8rem;
    height: 27rem;
  }
  .p-topMessage__copy {
    top: -10.7rem;
    left: 6.1rem;
    font-size: 2.6rem;
  }
  .p-topMessage__copy .--row {
    margin-right: 1.9rem;
    margin-left: 1.9rem;
    padding: 2rem 0.6rem 0.8rem;
    border-radius: 0.8rem;
    letter-spacing: 0.23em;
  }
  .p-topMessage__copy .--row:not(:first-of-type) {
    margin-top: 4.5rem;
  }
  .p-topMessage__button {
    margin-top: 4.2rem;
  }
  .p-topColumn {
    padding-top: 20.2rem;
    padding-bottom: 8.2rem;
  }
  .p-topColumn__heading {
    position: absolute;
    top: 20.2rem;
    left: calc((100% - 120rem) / 2 + 6rem);
    margin-top: 0.4rem;
    font-size: 1.9rem;
    letter-spacing: 0.44em;
    writing-mode: vertical-rl;
  }
  .p-topColumn__heading::before {
    margin-top: -0.6rem;
    margin-left: 1.2rem;
    font-size: 7.2rem;
  }
  .p-topColumn__heading::after {
    top: -8.6rem;
    left: -11.3rem;
    width: 16.3rem;
    height: 16.2rem;
    background-image: url("../../img/top/bg_column01_pc.svg");
  }
  .p-topColumn__balloonWrapper {
    top: 8rem;
    left: calc((100% - 120rem) / 2 + 28.4rem);
  }
  .p-topColumn__balloonImage {
    width: 19rem;
  }
  .p-topColumn__balloonTextWrapper {
    top: 3.2rem;
    left: 19.5rem;
    width: 23.9rem;
    height: 4.7rem;
  }
  .p-topColumn__balloonText {
    margin-top: -1.7rem;
    font-size: 1.4rem;
  }
  .p-topColumn__slideWrapper {
    margin-right: -5.5rem;
    padding-left: calc((100% - 120rem) / 2 + 21.9rem);
  }
  .p-topColumn__slideItem {
    width: calc((100vw - (100vw - 120rem) / 2 - 12rem) / 4);
    margin-right: 2rem;
    margin-left: 2rem;
  }
  .p-topColumn__slideInner {
    border-radius: 1.6rem 1.6rem 0 0;
  }
  .p-topColumn .slick-arrow {
    display: none !important;
  }
  .p-topColumn__image {
    aspect-ratio: 1.1851851852;
    border-radius: 1.6rem;
  }
  .p-topColumn__textWrapper {
    margin-top: 2.4rem;
  }
  .p-topColumn__category {
    padding: 0.3rem 0.8rem;
    font-size: 1.2rem;
  }
  .p-topColumn__title {
    margin-top: 1.6rem;
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
  }
  .p-topColumn__date {
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
  }
  .p-topColumn__button {
    position: absolute;
    top: 12.9rem;
    right: calc((100% - 120rem) / 2);
  }
  .p-topFeatures {
    margin-right: 6rem;
    margin-left: 6rem;
    padding-top: 11.3rem;
    padding-bottom: 10rem;
    border-radius: 4rem;
  }
  .p-topFeatures::before {
    top: -5.4rem;
    left: calc(50% - 59rem);
    width: 14.3rem;
    height: 21.8rem;
  }
  .p-topFeatures::after {
    right: calc(50% - 60rem);
    bottom: -5.4rem;
    width: 14.3rem;
    height: 21.8rem;
  }
  .p-topFeatures .c-contentBlock01 {
    padding-right: 7.6rem;
    padding-left: 7.6rem;
  }
  .p-topFeatures__headingWrapper::before {
    top: 4.6rem;
    left: -14.8rem;
    width: 1.9rem;
    height: 2.5rem;
  }
  .p-topFeatures__headingWrapper::after {
    top: 1.8rem;
    right: -11.1rem;
    width: 3.2rem;
    height: 4.6rem;
  }
  .p-topFeatures__headingWrapper .--image01 {
    top: 1.8rem;
    left: -9.8rem;
    width: 14.3rem;
  }
  .p-topFeatures__headingWrapper .--image02 {
    top: 5.1rem;
    right: -8.6rem;
    width: 11rem;
  }
  .p-topFeatures__heading {
    margin-bottom: 3rem;
    font-size: 4.8rem;
  }
  .p-topFeatures__heading::before {
    top: -4.5rem;
    left: -4.4rem;
    width: 8.1rem;
    height: 5.5rem;
  }
  .p-topFeatures__heading .--subTitle {
    padding: 0.7rem 2.6rem;
    font-size: 2rem;
  }
  .p-topFeatures__heading .--number {
    font-size: 8.4rem;
  }
  .p-topFeatures__heading .--small {
    font-size: 3.6rem;
  }
  .p-topFeatures__boxWrapper {
    display: flex;
    flex-direction: column;
    gap: 6rem;
  }
  .p-topFeatures__boxInner {
    align-items: flex-start;
    gap: 8rem;
  }
  .p-topFeatures__box:nth-of-type(even) .p-topFeatures__boxInner {
    flex-direction: row-reverse;
  }
  .p-topFeatures__image {
    width: 48.8rem;
  }
  .p-topFeatures__image::after {
    top: -1.3rem;
    left: -1.2rem;
    width: 19.1rem;
    height: 9.8rem;
  }
  .p-topFeatures__image img {
    border-radius: 2rem;
  }
  .p-topFeatures__textWrapper {
    flex: 1;
  }
  .p-topFeatures__title {
    display: flex;
    margin-bottom: 3.6rem;
    font-size: 2.8rem;
    line-height: 1.7;
  }
  .p-topFeatures__title::before {
    top: -0.5rem;
    right: 1rem;
    font-size: 10.4rem;
  }
  .p-topFeatures__text {
    line-height: 2;
  }
  .p-topFeatures__button {
    margin-top: 4rem;
  }
  .p-topMedical {
    padding-top: 12rem;
  }
  .p-topMedical__headingWrapper::before {
    top: 1.2rem;
    left: -8.8rem;
    width: 3.6rem;
    height: 4rem;
  }
  .p-topMedical__headingWrapper::after {
    top: -2.8rem;
    right: -13.1rem;
    width: 6.8rem;
    height: 9.1rem;
  }
  .p-topMedical__heading {
    margin-bottom: 3.6rem;
  }
  .p-topMedical__heading::after {
    margin-top: 1.8rem;
    font-size: 2rem;
  }
  .p-topMedical__boxWrapper {
    gap: 2.5rem;
  }
  .p-topMedical__box {
    width: calc((100% - 10rem) / 5);
  }
  .p-topMedical__boxInner {
    padding: 2rem 1.8rem 3.8rem;
    border-radius: 2rem;
  }
  .p-topMedical__boxInner::after {
    right: 1.1rem;
    bottom: 0.2rem;
    width: 1.6rem;
    height: 3.2rem;
  }
  .p-topMedical__image {
    width: 16.7rem;
  }
  .p-topMedical__textWrapper {
    margin-top: 0.8rem;
  }
  .p-topMedical__title {
    font-size: 1.8rem;
  }
  .p-topMedical__text {
    font-size: 1.5rem;
  }
  .p-topTabSection {
    padding-top: 6.9rem;
  }
  .p-topTabSection__heading {
    margin-bottom: 3.2rem;
    padding-right: 2.2rem;
    padding-left: 2.6rem;
    font-size: 2.8rem;
  }
  .p-topTabSection__heading::before {
    top: -0.8rem;
    height: 6.4rem;
  }
  .p-topTabSection__heading::after {
    top: -0.8rem;
    height: 6.4rem;
  }
  .p-topTabSection__tabMenu {
    min-height: 7.2rem;
    gap: 0.4rem;
  }
  .p-topTabSection__tabMenuItem {
    width: 28rem;
    padding: 0.8rem 1.6rem;
    border-radius: 1.6rem 1.6rem 0 0;
    font-size: 2rem;
  }
  .p-topTabSection__tabPanel {
    padding: 5rem 8rem 4rem;
    border-radius: 0 1.6rem 1.6rem 1.6rem;
  }
  .p-topTabSection__tabPanelBox {
    gap: 1rem;
  }
  .p-topTabSection__list {
    gap: 1.8rem 2.4rem;
  }
  .p-topTabSection__listItem {
    height: 5.2rem;
    padding: 1rem 4rem;
  }
  .p-topTabSection__listItem::before {
    margin-right: 0.6rem;
  }
  .p-topDoctor {
    margin-top: 3.2rem;
    padding-top: 21rem;
    padding-bottom: 12rem;
  }
  .p-topDoctor::before {
    width: 160rem;
    height: 27.8rem;
    background-image: url("../../img/top/bg_doctor01_pc.svg");
    background-size: 100% 27.8rem;
  }
  .p-topDoctor::after {
    width: 160rem;
    height: 12.1rem;
    background-image: url("../../img/top/bg_doctor02_pc.svg");
    background-size: 100% 12.1rem;
  }
  .p-topDoctor__inner::before {
    top: 13.6rem;
    left: calc(50% - 56.5rem);
    width: 18.3rem;
    height: 14.4rem;
  }
  .p-topDoctor__inner::after {
    right: calc(50% - 63.2rem);
    bottom: 8.2rem;
    width: 16.2rem;
    height: 10.2rem;
  }
  .p-topDoctor__headingWrapper::before {
    top: -2.2rem;
    left: -20.8rem;
    width: 10.4rem;
    height: 8.9rem;
  }
  .p-topDoctor__headingWrapper::after {
    top: -2rem;
    right: -21.8rem;
    width: 10.4rem;
    height: 8.9rem;
  }
  .p-topDoctor__heading {
    margin-bottom: 3rem;
  }
  .p-topDoctor__heading::after {
    margin-top: 1.8rem;
    font-size: 2rem;
  }
  .p-topDoctor__tableWrapper::before {
    background-image: url("../../img/top/bg_doctor05_pc.png"), url("../../img/top/bg_doctor06_pc.png"), url("../../img/top/bg_doctor07_pc.png"), url("../../img/top/bg_doctor08_pc.png");
    background-position: left top 1px, right top 1px, right bottom, left bottom;
    background-size: 25px auto, 25px auto, 25px auto, 25px auto;
  }
  .p-topDoctor__table thead th {
    padding: 1.2rem 0.4rem;
    border: 4px solid #fff;
    font-size: 1.8rem;
  }
  .p-topDoctor__table tbody th {
    padding: 1.2rem 0.4rem;
    border: 0.4rem solid #fff;
    line-height: 1.7;
  }
  .p-topDoctor__table tbody th .--small {
    font-size: 1.4rem;
  }
  .p-topDoctor__table tbody td {
    width: 10.8rem;
    padding: 1.2rem 0.4rem;
    border: 0.4rem solid #fff;
  }
  .p-topDoctor__textWrapper {
    justify-content: space-between;
  }
  .p-topDoctor__listItem {
    font-size: 1.4rem;
  }
  .p-topDoctor__button {
    margin-top: 0.8rem;
  }
  .p-topView {
    padding-top: 8rem;
  }
  .p-topView__scroll {
    gap: 2.5rem;
  }
  .p-topViewList {
    gap: 2.5rem;
  }
  .p-topViewListItem {
    width: 34rem;
    height: 22.4rem;
    border-radius: 1.6rem;
  }
  .p-topViewListItem.is-offset {
    margin-top: 3.6rem;
  }
  .p-topInfo {
    margin-top: 8rem;
  }
  .p-topInfo .c-contentBlock02 {
    display: flex;
    position: relative;
    padding: 5rem 5.4rem 4rem 4.6rem;
    gap: 6.9rem;
    border-radius: 2rem;
  }
  .p-topInfo__heading {
    flex: 1;
    min-height: 28rem;
    margin-left: 1.2rem;
    padding-top: 7.9rem;
    gap: 1.6rem;
    background-image: repeating-linear-gradient(180deg, #333333, #333333 0.4rem, transparent 0.4rem, transparent 0.8rem);
    background-position: right top;
    background-size: 0.2rem 100%;
    background-repeat: repeat-y;
    font-size: 2.8rem;
  }
  .p-topInfo__heading::before {
    width: 5.1rem;
    height: 4.6rem;
  }
  .p-topInfo__heading::after {
    top: 13.8rem;
    right: 3.4rem;
    font-size: 2.4rem;
  }
  .p-topInfo__boxWrapper {
    width: 56.8rem;
  }
  .p-topInfoList {
    margin-top: -0.6rem;
  }
  .p-topInfoList dt {
    padding-bottom: 1rem;
    padding-left: 1.6rem;
  }
  .p-topInfoList dt:not(:first-of-type) {
    padding-top: 1.6rem;
  }
  .p-topInfoList dd {
    padding-bottom: 1.4rem;
    padding-left: 1.6rem;
  }
  .p-topInfoList dd.continuous {
    margin-top: -1.3rem;
  }
  .p-topInfo__button {
    z-index: 1;
    position: absolute;
    top: 27.9rem;
    left: 4.6rem;
    width: 21.3rem;
    height: 5rem;
    padding-right: 3rem;
  }
  .p-topInfo__button::after {
    right: 0.5rem;
  }
  .p-visual {
    position: absolute;
    top: 10rem;
    right: 0;
    left: 0;
    width: 120rem;
    height: 26rem;
    margin: auto;
  }
  .p-visual::after {
    right: -3.5rem;
    bottom: -2.1rem;
    width: 58rem;
    height: 14.5rem;
    background-image: url("../../img/common/img_cloud02_pc.svg");
  }
  .p-visual__title {
    padding: 4.4rem 3.2rem;
    font-size: 4rem;
  }
  .p-visual__title::after {
    font-size: 2rem;
  }
  .p-visual__image {
    height: 26rem;
    border-radius: 4rem;
  }
  .p-visual__image::before {
    border-radius: 4rem;
  }
  .hA {
    margin-bottom: 5rem;
    gap: 1.8rem;
    font-size: 3.6rem;
  }
  .hA:not(:first-of-type) {
    margin-top: 12rem;
  }
  .hA::before, .hA::after {
    width: 3.8rem;
    height: 3.7rem;
  }
  .hB {
    margin-bottom: 3rem;
    padding-bottom: 1.2rem;
    font-size: 3.2rem;
  }
  .hB {
    margin-top: 5rem;
  }
  .hB::after {
    width: 12rem;
  }
  .hC {
    margin-bottom: 2.4rem;
    padding-left: 4.7rem;
    font-size: 2.8rem;
  }
  .hC {
    margin-top: 3rem;
  }
  .hC::before {
    top: 0.9rem;
    width: 2.6rem;
    height: 2.5rem;
  }
  .hD {
    margin-bottom: 3.6rem;
    padding-bottom: 0.6rem;
    font-size: 2.4rem;
  }
  .hD:not(:first-of-type) {
    margin-top: 6rem;
  }
  .hE {
    margin-bottom: 3.2rem;
    font-size: 2rem;
  }
  .hE:not(:first-of-type) {
    margin-top: 4rem;
  }
  .strongA {
    text-decoration-thickness: 1.9rem;
  }
  .l-main__inner p {
    margin-bottom: 1.6rem;
  }
  .l-main__inner a.linkArrow {
    height: 6.4rem;
    padding: 0.4rem 6rem 0.4rem 3.2rem;
    margin: 1rem 0;
  }
  .l-main__inner a.linkArrow::after {
    right: 1.8rem;
    width: 4.1rem;
    height: 4.1rem;
    padding-top: 0.6rem;
    padding-left: 0.1rem;
    font-size: 2.2rem;
  }
  .l-main__inner a:not(.linkArrow).linkExternal span::after {
    margin-top: 0.2rem;
  }
  .l-main__inner ul:not(.acsDirection), .l-main__inner ol, .l-main__inner dl {
    margin-bottom: 3.2rem;
  }
  /* .l-main__inner ul:not(.acsDirection) li:not(:first-of-type), .l-main__inner ol li:not(:first-of-type) {
    margin-top: 1.6rem;
  }*/
  .l-main__inner ul.col2, .l-main__inner ul.col3, .l-main__inner ul.col4 {
    margin-top: -2rem;
  }
  .l-main__inner ul.col2 li, .l-main__inner ul.col3 li, .l-main__inner ul.col4 li {
    margin-top: 2rem;
  }
  .l-main__inner ul.col2 li:not(:first-of-type), .l-main__inner ul.col3 li:not(:first-of-type), .l-main__inner ul.col4 li:not(:first-of-type) {
    margin-top: 2rem;
  }
  .listDot:not(#_) li {
    padding-left: 2rem;
  }
  .listDot:not(#_) li::before {
    top: 0.8rem;
  }
  .listNum:not(#_) li {
    padding-left: 2rem;
  }
  .listNum:not(#_) li:before {
    top: 0.1rem;
  }
  .listNote li:not(#_):not(:first-of-type) {
    margin-top: 1.4rem;
  }
  .listCheck:not(#_) li {
    padding-left: 2.3rem;
  }
  .listCheck:not(#_) li::before {
    top: -0.3rem;
    left: -0.3rem;
    font-size: 2.2rem;
  }
  dl.listData dt {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
  .decBox {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 4rem 5rem;
    border-radius: 2rem;
  }
  .decBox p:last-of-type {
    margin-bottom: 0;
  }
  .decBox .hA, .decBox .hB, .decBox .hC, .decBox .hD, .decBox .hE {
    margin-bottom: 2.8rem;
  }
  .tblA, .tblB, .tblC, .tblD, .tblE {
    margin-bottom: 2rem;
  }
  .tblA th, .tblB th, .tblC th, .tblD th, .tblE th {
    padding: 1.4rem 2.9rem;
  }
  .tblA td, .tblB td, .tblC td, .tblD td, .tblE td {
    padding: 1.4rem 2.9rem;
  }
  .tblB td.inrTblB table tr:last-of-type th, .tblB td.inrTblB table tr:last-of-type td {
    border-bottom: none;
  }
  .tblD th {
    padding: 1.6rem 2rem;
  }
  .tblD th:last-of-type {
    border-right: none;
  }
  .tblD td:first-of-type {
    padding-right: 0.9rem;
    padding-left: 0.9rem;
    border-right: none;
  }
  .tblE th {
    padding: 1.6rem 2rem;
  }
  .tblE td {
    padding: 1.6rem 1.5rem;
  }
  .floatBox .floatL {
    margin-right: 5.5rem;
  }
  .stpBox {
    margin-bottom: 4.2rem;
    padding: 7rem 8.6rem 6rem;
    gap: 1.6rem 8rem;
    border-radius: 4rem;
  }
  .stpContent > h3 {
    margin-bottom: 3.6rem;
    font-size: 2.8rem;
  }
  .stpContent > h3::before {
    width: 13rem;
    height: 5.8rem;
    margin-bottom: 1.6rem;
    padding: 1.8rem 0 0 2.6rem;
    font-size: 1.6rem;
  }
  .stpContent > h3::after {
    top: 0.4rem;
    left: 7.2rem;
    font-size: 2.8rem;
  }
  .stpImg {
    width: 48.8rem;
  }
  .stpBox .stpContent {
    flex: 1;
  }
  .stpBox .decBox {
    margin-top: 2.4rem;
    margin-bottom: 0;
  }
  .stpBox:not(.stpNoImg) .stpContent .decBox {
    padding-right: 4rem;
    padding-left: 4rem;
  }
  .stpBox > .decBox {
    margin-top: 1.6rem;
    margin-bottom: 0;
  }
}
@media not all and (min-width: 768px) {
  html {
    font-size: 2.6666vw;
  }
  body {
    font-size: 1.4rem;
  }
  .l-header {
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-header__inner {
    width: 100%;
    padding-top: 0.8rem;
  }
  .l-header__logo {
    text-align: center;
  }
  .l-header__logo::before {
    top: 4.2rem;
    right: 0;
    left: 0;
    width: 37.5rem;
    height: 7.3rem;
    margin: auto;
    background-image: url("../../img/common/img_cloud01_sp.svg");
  }
  .l-header__logoImage {
    width: 17.1rem;
  }
  .l-header__spMenu {
    z-index: 1001;
    position: fixed;
    top: 0;
    right: 0.5rem;
  }
  .l-header__naviButton {
    display: block;
    position: relative;
    width: 8.6rem;
    height: 5rem;
    border: none;
    border-radius: 0 0 0.8rem 0.8rem;
    background-color: #fff;
    cursor: pointer;
  }
  .l-hamburgerMenu__bar, .l-hamburgerMenu__bar::before, .l-hamburgerMenu__bar::after {
    position: absolute;
    right: 1.5rem;
    width: 1.8rem;
    height: 0.2rem;
    background-color: #ff7e9c;
    transition: transform 0.25s;
  }
  .l-hamburgerMenu__bar::before, .l-hamburgerMenu__bar::after {
    content: "";
  }
  .l-hamburgerMenu__bar {
    top: 2.4rem;
  }
  .l-hamburgerMenu__bar::before {
    top: 0.7rem;
    right: 0;
  }
  .l-hamburgerMenu__bar::after {
    right: 0;
    bottom: 0.7rem;
  }
  .u-hamburgerMenu__animated .l-hamburgerMenu__bar {
    background-color: transparent;
  }
  .u-hamburgerMenu__animated .l-hamburgerMenu__bar::before {
    top: -0.1rem;
    right: -0.2rem;
    width: 2rem;
    transform: rotate(40deg);
  }
  .u-hamburgerMenu__animated .l-hamburgerMenu__bar::after {
    top: -0.1rem;
    right: -0.2rem;
    bottom: auto;
    width: 2rem;
    transform: rotate(-40deg);
  }
  .l-hamburgerMenu__text {
    position: absolute;
    top: 1.7rem;
    left: 1.4rem;
    color: #ff7e9c;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
  .l-header__naviWrapper {
    z-index: 1000;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s;
  }
  .l-header__naviWrapper.is-show {
    opacity: 1;
    pointer-events: auto;
  }
  .l-header__naviWrapperInner {
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
  }
  .l-header__naviWrapperInner > :last-child::after {
    display: block;
    width: 100%;
    height: 8rem;
    content: "";
  }
  @supports (-webkit-touch-callout: none) {
    .l-header__naviWrapperInner {
      /* Safari用のハック */
      height: -webkit-fill-available;
    }
  }
  .l-header__navi {
    margin-top: 8.3rem;
    margin-right: 2.7rem;
    margin-left: 2.7rem;
  }
  .l-header__naviItem > a {
    padding: 1.8rem 1.5rem 1.9rem;
    border-top: 1px solid #d9d9d9;
    font-size: 1.6rem;
  }
  .l-header__naviItem.is-have-subMenu > a::before {
    position: absolute;
    top: 50%;
    right: 0.6rem;
    transform: translateY(-50%);
    content: "\e313";
    color: #ffb7b9;
    font-size: 3.4rem;
    font-family: "Material Symbols Outlined";
    font-variation-settings: "wght"500;
  }
  .l-header__naviItem.is-have-subMenu > a.is-active::before {
    content: "\e316";
  }
  .l-header__subMenuList {
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
  }
  .l-header__subMenu li a {
    padding: 0.8rem 1.7rem 0.8rem 0;
    font-size: 1.2rem;
    line-height: 1.3;
  }
  .l-header__infoWrapper {
    margin-top: 1.7rem;
    margin-right: 2.9rem;
    margin-left: 2.9rem;
    padding: 1.8rem 1.6rem 1.5rem;
    border-radius: 1.6rem;
    background-color: #f9f9f9;
    opacity: 0;
    pointer-events: none;
  }
  .l-header__naviWrapper.is-show .l-header__infoWrapper {
    opacity: 1;
    pointer-events: all;
  }
  .l-header__sns {
    margin-top: 2rem;
    opacity: 0;
    pointer-events: none;
  }
  .l-header__naviWrapper.is-show .l-header__sns {
    opacity: 1;
    pointer-events: all;
  }
  .l-footer {
    margin-top: 2.5rem;
  }
  .l-footer__inner {
    margin-top: 3rem;
    padding-right: 1.4rem;
    padding-left: 1.4rem;
  }
  .l-footer__inner::before {
    width: 37.5rem;
    height: 6rem;
    height: 6rem;
    background-image: url("../../img/common/bg_footer01_sp.svg");
    background-size: 100% 6rem;
  }
  .l-footer__infoWrapper {
    flex-direction: column;
    padding-top: 7rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }
  .l-footer__infoWrapper::before {
    top: -2.5rem;
    left: -7.1rem;
    width: 13.6rem;
    height: 10.7rem;
  }
  .l-footer__infoWrapper::after {
    right: -9.4rem;
    bottom: -2.5rem;
    width: 13.8rem;
    height: 10.9rem;
  }
  .l-footer__logo {
    margin-bottom: 1.6rem;
  }
  .l-footer__logo img {
    width: 28.7rem;
  }
  .l-footer__address {
    margin-bottom: 2.3rem;
    font-size: 1.3rem;
  }
  .l-footer__reserveWrapper {
    margin-top: 1.6rem;
    padding: 1.8rem 1.6rem 1.5rem;
  }
  .l-footer__tel {
    margin-bottom: 0.4rem;
  }
  .l-footer__link {
    margin-top: 1.6rem;
  }
  .l-footer__link a {
    align-items: center;
    gap: 1.3rem;
  }
  .l-footer__link a::after {
    width: 3.6rem;
    height: 3.6rem;
    padding-top: 0.3rem;
    font-size: 2.1rem;
  }
  .l-footer__calendar {
    padding: 2.2rem 2.8rem 2rem;
    border-radius: 1rem;
  }
  div.cal_wrapper {
    padding: 3.5rem 0 1.3rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui {
    top: 0.2rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui::before, div.cal_wrapper table.cal tr th div.cal_ui::after {
    top: 0.1rem;
    width: 1.8rem;
    height: 1.8rem;
    font-size: 1.2rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui::before {
    left: 0;
  }
  div.cal_wrapper table.cal tr th div.cal_ui::after {
    right: 0;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(1) {
    padding-left: 2.2rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(3) {
    padding-right: 2.2rem;
  }
  div.cal_wrapper table.cal tr.headline td {
    padding: 0.4rem 0.2rem 0.9rem;
  }
  .l-footer__map {
    margin-right: -2.9rem;
    margin-left: -2.9rem;
    border-top: solid 0.2rem #fff;
    border-bottom: solid 0.2rem #fff;
  }
  .l-footer__map iframe {
    height: 25.3rem;
  }
  .l-footer__copyright {
    padding: 2.5rem 0 8rem;
  }
  .l-footer__copyright small {
    font-size: 1rem;
  }
  .l-footer__buttonWrapper {
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.5rem;
    gap: 0.4rem;
    background-color: #f8f7eb;
  }
  .l-footer__buttonItem a {
    height: 4.5rem;
    padding-left: 2rem;
    border-radius: 0.2rem;
    background-position: left 1.9rem center;
    box-shadow: 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.14);
  }
  .l-footer__button.--web {
    width: 12.7rem;
    border: solid 0.2rem #ff7e9c;
    background-size: 1.5rem auto;
  }
  .l-footer__button.--line {
    width: 12.7rem;
    border: solid 0.2rem #00b900;
    background-size: 1.5rem auto;
  }
  .l-footer__button.--tel {
    width: 10.3rem;
    padding-left: 1.5rem;
    background-position: left 1.5rem top 1.6rem;
    background-size: 1.1rem auto;
  }
  .l-footer__pageTop {
    right: 1.5rem;
    bottom: 6.5rem;
    width: 7.2rem;
    height: 6.9rem;
    padding-top: 3.7rem;
    font-size: 1.2rem;
  }
  .l-footer__pageTop::before {
    top: 1.2rem;
    font-size: 2rem;
  }
  .l-contentsWrapper {
    display: flex;
    flex-direction: column;
    margin-right: 2rem;
    margin-left: 2rem;
    padding: 1.6rem 0 2.4rem;
  }
  .l-main__inner {
    order: 2;
  }
  .c-button01 {
    width: 24rem;
    height: 5rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0.4rem 0.8rem;
  }
  .c-button01::after {
    right: 0.6rem;
    width: 3rem;
    height: 3rem;
    padding-top: 0.4rem;
    padding-left: 0.1rem;
    font-size: 1.7rem;
  }
  .c-button02 {
    gap: 1.3rem;
  }
  .c-button02::after {
    width: 3.6rem;
    height: 3.6rem;
    padding-top: 0.3rem;
    font-size: 2.1rem;
  }
  .c-reserve::before {
    z-index: 1;
    top: 2.8rem;
    right: 1rem;
    width: 4.4rem;
    height: 4.1rem;
  }
  .c-reserve__text {
    margin-bottom: 1.3rem;
    font-size: 1.4rem;
  }
  .c-reserve__text::before, .c-reserve__text::after {
    height: 4rem;
    margin-top: 0.2rem;
  }
  .c-reserve__buttonList {
    z-index: 1;
  }
  .c-reserve__button {
    width: 14rem;
    height: 4rem;
    padding-left: 4.6rem;
    background-position: left 2.5rem center;
    box-shadow: 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.14);
  }
  .c-reserve__button.--web {
    background-size: 1.5rem auto;
  }
  .c-reserve__button.--line {
    background-size: 1.5rem auto;
  }
  .c-tel__text {
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
  }
  .c-telBox {
    gap: 0.5rem;
  }
  .c-telBox::before {
    width: 1.5rem;
    height: 1.9rem;
    margin-bottom: 0.4rem;
  }
  .c-telBox__number {
    font-size: 2.7rem;
  }
  .c-hours__wrapper {
    margin-right: 1.1rem;
    margin-left: 1.1rem;
  }
  .c-hours__table {
    margin-bottom: 1.4rem;
  }
  .c-hours__table thead th {
    padding: 2rem 0.6rem 0.8rem;
    font-size: 1.3rem;
  }
  .c-hours__table thead th.title {
    padding-left: 0.6rem;
  }
  .c-hours__table tbody td {
    padding: 0.5rem 0.6rem;
    font-size: 1.4rem;
  }
  .c-hours__table tbody tr:last-of-type td {
    padding-bottom: 1.8rem;
  }
  .c-hours__table tbody td.hour {
    padding-right: 0;
    padding-left: 0.5rem;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
  }
  .c-hours__table tbody td.open {
    font-size: 1.3rem;
  }
  .c-hours__text {
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
  }
  .c-hours__text span {
    margin-right: 0.7rem;
  }
  .c-footerRecruit__inner {
    flex-direction: column;
    padding: 4.8rem 0 4.1rem;
    background-image: url("../../img/common/bg_recruit01_sp.png");
  }
  .c-footerRecruit__inner::before {
    background-image: url("../../img/common/bg_recruit02_sp.svg");
  }
  .c-footerRecruit__title {
    justify-content: center;
    margin-bottom: 0.8rem;
    font-size: 2.4rem;
    letter-spacing: 0.14em;
  }
  .c-footerRecruit__title::after {
    position: absolute;
    top: 1.6rem;
    left: 6.5rem;
    font-size: 3.2rem;
  }
  .c-footerRecruit__text {
    font-size: 1.3rem;
    text-align: center;
  }
  .c-footerRecruit__buttonWrapper {
    width: 100%;
    margin-top: 1.1rem;
    padding-right: 2rem;
    padding-left: 2rem;
    gap: 1.4rem 1rem;
  }
  .c-footerRecruit__button {
    width: calc((100% - 1.4rem) / 2);
    height: 4.2rem;
    padding: 0.4rem 1.5rem;
  }
  .c-footerRecruit__button::after {
    right: 0.6rem;
    width: 3rem;
    height: 3rem;
    padding-top: 0.4rem;
    padding-left: 0.1rem;
    font-size: 1.7rem;
  }
  .c-footerRecruit__image {
    margin-top: 1.8rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .c-footerRecruit__image img {
    -o-object-fit: cover;
    width: 50%;
    height: 15.7rem;
    object-fit: cover;
  }
  .c-footerRecruit__image img.--01 {
    border-radius: 1rem 0 0 1rem;
  }
  .c-footerRecruit__image img.--02 {
    border-radius: 0 1rem 1rem 0;
  }
  .c-footerRecruit__parts .--01 {
    top: 2.4rem;
    left: 1.5rem;
    width: 5.6rem;
  }
  .c-footerRecruit__parts .--02 {
    top: 2.6rem;
    right: 3.5rem;
    width: 4.8rem;
  }
  .c-footerRecruit__parts .--04 {
    right: 1.6rem;
    bottom: 2.5rem;
    width: 8.9rem;
  }
  .c-contentBlock01 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .c-contentBlock02 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .c-contentBlock03 {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
  .c-topHeading01 {
    font-size: 2.3rem;
  }
  .c-breadCrumb {
    order: 1;
    margin-bottom: 4rem;
    padding-bottom: 1.5rem;
    overflow-x: scroll;
  }
  .c-breadCrumb__list:not(#_) {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    gap: 2.4rem;
  }
  .c-breadCrumb__list li {
    font-size: 1.2rem;
  }
  .c-breadCrumb__list li::after {
    top: 55%;
    right: -1.2rem;
  }
  .c-localNav {
    order: 3;
    margin-top: 2.4rem;
    overflow: hidden;
    border: 1px solid #ff7e9c;
    border-radius: 1rem;
  }
  .c-localNav__list {
    flex-direction: column;
  }
  .c-localNav__item:not(#_) a {
    min-height: 5rem;
    padding: 0.8rem 4.5rem 0.8rem 2rem;
  }
  .c-localNav__item:not(#_):not(:first-of-type) a {
    border-top: solid 1px #ff7e9c;
  }
  .p-mainVisual {
    min-height: 42rem;
    margin-top: 5rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .p-mainVisual::before {
    right: -4.2rem;
    bottom: 2.5rem;
    width: 16.3rem;
    height: 13.2rem;
  }
  .p-mainVisual::after {
    right: -1.5rem;
    bottom: -1rem;
    width: 27rem;
    height: 8.3rem;
    background-image: url("../../img/common/img_cloud02_sp.svg");
  }
  .p-mainVisual__textWrapper {
    bottom: 3.5rem;
    left: 2rem;
  }
  .p-mainVisual__copy {
    margin-bottom: 2.4rem;
    font-size: 1rem;
    letter-spacing: 0.14em;
  }
  .p-mainVisual__title {
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  .p-mainVisual__title .--row {
    margin-top: 0.9rem;
    padding: 0.2rem 1rem;
    border-radius: 0.4rem;
  }
  .p-mainVisual__image {
    height: 42rem;
    border-radius: 2rem;
  }
  .p-topInfoWrapper {
    flex-direction: column;
    margin-top: 2.6rem;
    gap: 3rem;
  }
  .p-topNews {
    padding: 2.5rem;
    border-radius: 1rem;
  }
  .p-topNews__heading {
    margin-bottom: 1.3rem;
    padding-bottom: 1.8rem;
    gap: 1.3rem;
  }
  .p-topNews__heading::after {
    width: 2.6rem;
    height: 3.6rem;
    margin-top: -0.4rem;
  }
  .p-topNews__list li a {
    padding: 1rem 0.8rem;
  }
  .p-topNews__list li time {
    display: block;
    margin-bottom: 0.6rem;
  }
  .p-topNews__button {
    justify-content: flex-end;
    margin-top: 1.5rem;
  }
  .pointWrap {
    margin-top: 4rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .pointWrap h2 {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
  }
  .pointWrap h2::before {
    width: 5.7rem;
    height: 4rem;
  }
  .point:not(:first-of-type) {
    margin-top: 2.8rem;
  }
  .point h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
  .point h3:not(:first-of-type) {
    margin-top: 2.8rem;
  }
  .point p {
    margin-bottom: 1.4rem;
    line-height: 1.7;
  }
  table.schedule {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .p-topMessage {
    margin-top: -1.4rem;
    padding-top: 12.5rem;
    padding-bottom: 6rem;
  }
  .p-topMessage::before {
    width: 37.5rem;
    height: 14.4rem;
    background-image: url("../../img/top/bg_about01_sp.svg");
  }
  .p-topMessage::after {
    width: 37.5rem;
    height: 6.3rem;
    background-image: url("../../img/top/bg_about02_sp.svg");
  }
  .p-topMessage__boxWrapper::before {
    top: -2.6rem;
    right: -0.5rem;
    width: 13.4rem;
    height: 8.4rem;
  }
  .p-topMessage__boxWrapper::after {
    top: 61.6rem;
    left: 99.7rem;
    width: 18.3rem;
    height: 14.4rem;
  }
  .p-topMessage__heading {
    margin-bottom: 4rem;
    font-size: 1.8rem;
  }
  .p-topMessage__heading::before {
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
  .p-topMessage__heading::after {
    top: -1.8rem;
    left: 9.3rem;
    width: 6.1rem;
    height: 5.1rem;
  }
  .p-topMessage__image {
    margin-right: -1.5rem;
    margin-bottom: 2.4rem;
    margin-left: -1.5rem;
    padding-bottom: 7.2rem;
  }
  .p-topMessage__image img.--01 {
    width: 33.1rem;
    height: 22.5rem;
    margin-left: 4.4rem;
    border-radius: 1rem 0 0 1rem;
  }
  .p-topMessage__image img.--02 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 18.5rem;
    height: 16.2rem;
    border-radius: 0 1rem 1rem 0;
  }
  .p-topMessage__copy {
    top: -3.2rem;
    right: 1rem;
  }
  .p-topMessage__copy .--row {
    margin-right: 1.2rem;
    margin-left: 1.2rem;
    padding: 1.5rem 0.4rem 0.6rem 0.3rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    letter-spacing: 0.33em;
    white-space: nowrap;
  }
  .p-topMessage__copy .--row:not(:first-of-type) {
    margin-top: 5.2rem;
  }
  .p-topMessage__button {
    margin-top: 2.4rem;
  }
  .p-topColumn {
    padding-top: 8rem;
    padding-bottom: 5rem;
  }
  .p-topColumn__heading {
    margin-bottom: 3rem;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    text-align: center;
  }
  .p-topColumn__heading::before {
    margin-bottom: 0.4rem;
    font-size: 4.2rem;
    letter-spacing: 0.1em;
  }
  .p-topColumn__heading::after {
    top: 4rem;
    left: 3.8rem;
    width: 10.9rem;
    height: 10.8rem;
    background-image: url("../../img/top/bg_column01_sp.svg");
  }
  .p-topColumn__balloonWrapper {
    top: 9.3rem;
    right: 3rem;
  }
  .p-topColumn__balloonImage {
    width: 4.1rem;
  }
  .p-topColumn__balloonTextWrapper {
    top: -5.8rem;
    right: -1.6rem;
    width: 19.6rem;
    height: 3.8rem;
  }
  .p-topColumn__balloonText {
    margin-top: -1.4rem;
    font-size: 1.1rem;
    letter-spacing: 0.12em;
  }
  .p-topColumn__slideWrapper {
    position: relative;
    margin-top: 2.6rem;
  }
  .p-topColumn__slideItem {
    width: 23.3rem;
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .p-topColumn__slideItem:not(.slick-current) {
    opacity: 0.49;
  }
  .p-topColumn__slideInner {
    border-radius: 0.8rem 0.8rem 0 0;
  }
  .p-topColumn__image {
    aspect-ratio: 233/197;
    border-radius: 0.8rem;
  }
  .p-topColumn__textWrapper {
    margin-top: 1.8rem;
  }
  .p-topColumn__category {
    padding: 0 0.6rem 0.1rem;
    font-size: 1.2rem;
  }
  .p-topColumn__title {
    margin-top: 1.2rem;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
  }
  .p-topColumn__date {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    letter-spacing: 0.15em;
  }
  .p-topColumn__button {
    justify-content: flex-end;
    margin-top: 3rem;
    margin-right: 1.5rem;
  }
  .p-topFeatures {
    padding-top: 5rem;
    padding-bottom: 5rem;
    border-radius: 2rem;
  }
  .p-topFeatures::before {
    top: -8.9rem;
    left: 1rem;
    width: 9.6rem;
    height: 14.6rem;
  }
  .p-topFeatures::after {
    right: 0;
    bottom: -8.6rem;
    width: 9.6rem;
    height: 14.6rem;
  }
  .p-topFeatures__headingWrapper::before {
    top: 3rem;
    left: -2.5rem;
    width: 2rem;
    height: 2.6rem;
  }
  .p-topFeatures__headingWrapper::after {
    top: 1.3rem;
    right: -1.6rem;
    width: 2.7rem;
    height: 3.9rem;
  }
  .p-topFeatures__headingWrapper .--image01 {
    top: 3.6rem;
    left: -1.7rem;
    width: 8.6rem;
    height: 6.8rem;
  }
  .p-topFeatures__headingWrapper .--image02 {
    top: 4.8rem;
    right: -1.2rem;
    width: 7.4rem;
    height: 5.2rem;
  }
  .p-topFeatures__heading {
    margin-bottom: 1.6rem;
    font-size: 3rem;
  }
  .p-topFeatures__heading::before {
    top: -2.7rem;
    left: -2.3rem;
    width: 5.2rem;
    height: 3.5rem;
  }
  .p-topFeatures__heading .--subTitle {
    padding: 0.5rem 1.5rem;
    font-size: 1.5rem;
  }
  .p-topFeatures__heading .--number {
    font-size: 5.2rem;
  }
  .p-topFeatures__heading .--small {
    font-size: 2.4rem;
  }
  .p-topFeatures__boxWrapper {
    position: relative;
    margin-right: -1.5rem;
    margin-left: -1.5rem;
  }
  .p-topFeatures__boxWrapper .slick-arrow {
    top: 35%;
  }
  .p-topFeatures .slick-track {
    display: flex;
  }
  .p-topFeatures .slick-slide {
    height: auto;
  }
  .p-topFeatures .slick-dots {
    margin-top: 2.9rem;
  }
  .p-topFeatures .slick-dots li:not(.slick-active) button:before {
    background-color: #fff;
  }
  .p-topFeatures__box {
    position: relative;
  }
  .p-topFeatures__box:not(.slick-current)::after {
    position: absolute;
    top: 0;
    left: 1rem;
    width: calc(100% - 2rem);
    height: 100%;
    background-color: rgba(255, 255, 255, 0.51);
    content: "";
  }
  .p-topFeatures__boxInner {
    flex-direction: column;
    width: 29.1rem;
    height: 100%;
    margin-right: 1rem;
    margin-left: 1rem;
    padding: 1.5rem 1.6rem 3rem;
    border-radius: 1rem;
    background-color: #fff;
  }
  .p-topFeatures__image {
    width: 100%;
    height: 19.3rem;
    margin-bottom: 3.6rem;
  }
  .p-topFeatures__image::after {
    top: -1.5rem;
    left: -1.6rem;
    width: 9.5rem;
    height: 4.9rem;
  }
  .p-topFeatures__image img {
    border-radius: 0.8rem;
  }
  .p-topFeatures__title {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
    line-height: 1.7;
    text-align: center;
  }
  .p-topFeatures__title::before {
    position: absolute;
    top: -2.6rem;
    right: 0;
    left: 0;
    margin: auto;
    font-size: 5.2rem;
  }
  .p-topFeatures__text {
    font-size: 1.3rem;
    line-height: 1.7;
  }
  .p-topFeatures__button {
    width: 18.7rem;
    margin-top: 2rem;
  }
  .p-topMedical {
    padding-top: 8.5rem;
  }
  .p-topMedical__headingWrapper::before {
    top: 0.8rem;
    left: -7rem;
    width: 3.6rem;
    height: 4rem;
  }
  .p-topMedical__headingWrapper::after {
    top: -3rem;
    right: -8.1rem;
    width: 5.5rem;
    height: 7.4rem;
  }
  .p-topMedical__heading {
    margin-bottom: 2.5rem;
  }
  .p-topMedical__heading::after {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  .p-topMedical__boxWrapper {
    gap: 1.5rem 1.3rem;
  }
  .p-topMedical__box {
    width: calc((100% - 1.3rem) / 2);
  }
  .p-topMedical__boxInner {
    padding: 1.6rem 1.6rem 2.8rem;
    border-radius: 1rem;
  }
  .p-topMedical__boxInner::after {
    right: 0.4rem;
    bottom: -0.2rem;
    width: 1.3rem;
    height: 2.6rem;
  }
  .p-topMedical__image {
    width: 10.1rem;
  }
  .p-topMedical__textWrapper {
    margin-top: 0.7rem;
  }
  .p-topMedical__title {
    font-size: 1.5rem;
  }
  .p-topMedical__text {
    font-size: 1.3rem;
  }
  .p-topTabSection {
    padding-top: 3rem;
  }
  .p-topTabSection__heading {
    margin-bottom: 1.5rem;
    padding-right: 1.7rem;
    padding-left: 1.9rem;
    font-size: 1.8rem;
  }
  .p-topTabSection__heading::before {
    top: -0.3rem;
    height: 3.6rem;
  }
  .p-topTabSection__heading::after {
    top: -0.3rem;
    height: 3.6rem;
  }
  .p-topTabSection__tabMenu {
    min-height: 5.2rem;
    gap: 0.3rem;
  }
  .p-topTabSection__tabMenuItem {
    flex: 1;
    flex-direction: column;
    border-radius: 0.8rem 0.8rem 0 0;
    font-size: 1.1rem;
    line-height: 1.4;
  }
  .p-topTabSection__tabMenuItem .--spLarge {
    display: block;
    font-weight: bold;
    font-size: 1.4rem;
  }
  .p-topTabSection__tabPanel {
    padding: 2rem 1.5rem 3rem;
    border-radius: 0 0 0.8rem 0.8rem;
  }
  .p-topTabSection__tabPanelBox {
    gap: 2.4rem;
  }
  .p-topTabSection__list {
    gap: 1rem 0.5rem;
  }
  .p-topTabSection__listItem {
    height: 3rem;
    padding: 0.7rem 1.1rem 0.7rem 1.2rem;
    font-size: 1.1rem;
  }
  .p-topTabSection__listItem::before {
    margin-right: 0.3rem;
  }
  .p-topDoctor {
    padding-top: 12.2rem;
    padding-bottom: 6rem;
  }
  .p-topDoctor::before {
    width: 37.5rem;
    height: 13.9rem;
    background-image: url("../../img/top/bg_doctor01_sp.svg");
  }
  .p-topDoctor::after {
    width: 37.5rem;
    height: 6rem;
    background-image: url("../../img/top/bg_doctor02_sp.svg");
  }
  .p-topDoctor__inner::before {
    top: 7rem;
    left: -1rem;
    width: 10rem;
    height: 9.9rem;
  }
  .p-topDoctor__inner::after {
    right: -3.2rem;
    bottom: 1.5rem;
    width: 13rem;
    height: 8.2rem;
  }
  .p-topDoctor__headingWrapper::before {
    top: -4rem;
    left: -11.1rem;
    width: 7.3rem;
    height: 6.3rem;
  }
  .p-topDoctor__headingWrapper::after {
    top: -3.8rem;
    right: -11.2rem;
    width: 7.5rem;
    height: 6.4rem;
  }
  .p-topDoctor__heading {
    margin-bottom: 2.5rem;
    letter-spacing: 0.12em;
  }
  .p-topDoctor__heading::after {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
  .p-topDoctor__tableWrapper::before {
    background-image: url("../../img/top/bg_doctor05_sp.png"), url("../../img/top/bg_doctor06_sp.png"), url("../../img/top/bg_doctor07_sp.png"), url("../../img/top/bg_doctor08_sp.png");
    background-position: left top, right top, right bottom, left bottom;
    background-size: 12px auto, 12px auto, 1.2rem auto, 1.2rem auto;
  }
  .p-topDoctor__table tr {
    display: flex;
    flex-wrap: wrap;
  }
  .p-topDoctor__table thead {
    display: none;
  }
  .p-topDoctor__table tbody th {
    display: block;
    width: 100%;
    padding: 0.6rem 0.4rem;
    border: 2px solid #fff;
    font-size: 1.2rem;
  }
  .p-topDoctor__table tbody th .--small {
    font-size: 1.1rem;
  }
  .p-topDoctor__table tbody td {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    padding: 3.1rem 0.4rem 0.5rem;
    border-top: 0.6rem solid #fff;
    border-right: 0.1rem solid #fff;
    border-bottom: 1rem solid #fff;
    border-left: 0.1rem solid #fff;
    font-size: 1.1rem;
    line-height: 1.2;
  }
  .p-topDoctor__table tbody td::before {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 2.6rem;
    border-bottom: 0.2rem solid #fff;
    background-color: #8dc556;
    content: attr(data-label);
    color: #fff;
    font-size: 1rem;
  }
  .p-topDoctor__table tbody td:first-of-type {
    margin-left: 1rem;
  }
  .p-topDoctor__table tbody td:last-of-type {
    margin-right: 1rem;
  }
  .p-topDoctor__textWrapper {
    flex-direction: column;
  }
  .p-topDoctor__listItem {
    font-size: 1.2rem;
  }
  .p-topDoctor__listItem:not(:first-of-type) {
    margin-top: 0.4rem;
  }
  .p-topDoctor__button {
    margin-top: 3rem;
  }
  .p-topView {
    padding-top: 2.8rem;
  }
  .p-topView__scroll {
    gap: 1.4rem;
  }
  .p-topViewList {
    gap: 1.4rem;
  }
  .p-topViewListItem {
    width: 17rem;
    height: 11.2rem;
    border-radius: 0.8rem;
  }
  .p-topViewListItem.is-offset {
    margin-top: 1.8rem;
  }
  .p-topInfo {
    margin-top: 4rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .p-topInfo .c-contentBlock02 {
    padding: 2.2rem 2.5rem 3rem;
    gap: 2.1rem;
    border-radius: 1rem;
  }
  .p-topInfo__heading {
    align-items: center;
    margin-bottom: 2.2rem;
    padding-bottom: 1.6rem;
    gap: 0.8rem;
    background-image: repeating-linear-gradient(90deg, #333333, #333333 0.4rem, transparent 0.4rem, transparent 0.8rem);
    background-position: left bottom;
    background-size: 100% 0.2rem;
    background-repeat: repeat-x;
    font-size: 1.8rem;
  }
  .p-topInfo__heading::before {
    width: 4.4rem;
    height: 4rem;
  }
  .p-topInfo__heading::after {
    top: 0.1rem;
    right: -0.6rem;
    font-size: 2.2rem;
  }
  .p-topInfoList dt {
    padding-right: 0.8rem;
    padding-bottom: 0.6rem;
    padding-left: 0.8rem;
  }
  .p-topInfoList dt:not(:first-of-type) {
    padding-top: 1.2rem;
  }
  .p-topInfoList dd {
    padding-right: 0.8rem;
    padding-bottom: 1rem;
    padding-left: 0.8rem;
  }
  .p-topInfoList dd.continuous {
    margin-top: -1rem;
  }
  .p-topInfo__button {
    margin-top: 2rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-visual {
    margin-top: 5rem;
    margin-right: 1.5rem;
    margin-left: 1.5rem;
  }
  .p-visual::after {
    right: -1.5rem;
    bottom: -1rem;
    width: 27rem;
    height: 8.3rem;
    background-image: url("../../img/common/img_cloud02_sp.svg");
  }
  .p-visual__title {
    margin-top: 0.8rem;
    padding: 2.4rem 1.5rem;
    font-size: 2.2rem;
  }
  .p-visual__title::after {
    font-size: 1.6rem;
  }
  .p-visual__image {
    height: 18rem;
    border-radius: 2rem;
  }
  .p-visual__image::before {
    border-radius: 2rem;
  }
  .hA {
    margin-bottom: 3.2rem;
    gap: 1.2rem;
    font-size: 2rem;
  }
  .hA:not(:first-of-type) {
    margin-top: 8rem;
  }
  .hA::before, .hA::after {
    width: 3rem;
    height: 3rem;
  }
  .hB {
    margin-bottom: 2rem;
    padding-bottom: 0.8rem;
    font-size: 1.9rem;
  }
  .hB:not(:first-of-type) {
    margin-top: 4rem;
  }
  .hB::after {
    width: 8rem;
  }
  .hC {
    margin-bottom: 2rem;
    padding-left: 2.8rem;
    font-size: 1.8rem;
  }
  .hC:not(:first-of-type) {
    margin-top: 3.2rem;
  }
  .hC::before {
    top: 0.6rem;
    width: 1.8rem;
    height: 1.8rem;
  }
  .hD {
    margin-bottom: 1.5rem;
    padding-bottom: 0.6rem;
    font-size: 1.7rem;
  }
  .hD:not(:first-of-type) {
    margin-top: 2.4rem;
  }
  .hE {
    margin-bottom: 2rem;
    font-size: 1.6rem;
  }
  .hE:not(:first-of-type) {
    margin-top: 2rem;
  }
  .strongA {
    text-decoration-thickness: 1.4rem;
  }
  .l-main__inner a.linkArrow {
    width: 100%;
    height: 5rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0.4rem 0.8rem;
	min-width: inherit;
  }
  .l-main__inner a.linkArrow::after {
    right: 0.6rem;
    width: 3rem;
    height: 3rem;
    padding-top: 0.4rem;
    padding-left: 0.1rem;
    font-size: 1.7rem;
  }
  .l-main__inner a:not(.linkArrow).linkExternal span::after {
    top: -0.1rem;
    right: -2rem;
  }
  .l-main__inner ul:not(.acsDirection), .l-main__inner ol, .l-main__inner dl {
    margin-bottom: 2.4rem;
  }
  /*  .l-main__inner ul:not(.acsDirection) li:not(:first-of-type), .l-main__inner ol li:not(:first-of-type) {
    margin-top: 1.2rem;
  }*/
  .l-main__inner ul.col2.flexNoWrap li:first-child, .l-main__inner ul.col2.flexNoWrap li:nth-child(2) {
    margin-top: 0;
  }
  .listDot:not(#_) li {
    padding-left: 1.6rem;
  }
  .listDot:not(#_) li::before {
    top: 0.6rem;
  }
  .listNum:not(#_) li {
    padding-left: 1.6rem;
  }
  .listNum:not(#_) li:before {
    top: 0;
    font-size: 1.6rem;
  }
  .listNote li:not(#_) {
    font-size: 1.2rem;
  }
  .listCheck:not(#_) li {
    padding-left: 2.2rem;
  }
  .listCheck:not(#_) li::before {
    top: -0.3rem;
    left: -0.1rem;
    font-size: 2rem;
  }
  dl.listData dt {
    margin-bottom: 0.8rem;
    font-size: 1.6rem;
  }
  .decBox {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 1.5rem 0.8rem;
    border-radius: 1rem;
  }
  .decBox .hA, .decBox .hB, .decBox .hC, .decBox .hD, .decBox .hE {
    margin-bottom: 1.6rem;
  }
  .tblA, .tblB, .tblC, .tblD, .tblE {
    margin-bottom: 2rem;
  }
  .tblA th, .tblB th, .tblC th, .tblD th, .tblE th {
    padding: 0.8rem;
  }
  .tblA td, .tblB td, .tblC td, .tblD td, .tblE td {
    padding: 0.8rem;
  }
  .tblA.tblVertical tr:last-of-type td:last-of-type {
    border-bottom: solid 1px #d9d9d9;
  }
  .tblB td.inrTblB table th {
    background-color: #f9f9f9;
    color: #999;
  }
  .tblB td.inrTblB table tr:last-of-type td:last-of-type {
    border-bottom: solid 1px #d9d9d9 !important;
  }
  .tblC thead tr:first-of-type th:first-of-type, .tblC tbody tr:first-child td:first-of-type, .tblC tbody tr td:first-of-type {
    border-top: solid 1px #d9d9d9;
  }
  .tblD td {
    padding: 0;
  }
  .tblD td:before {
    padding: 0.8rem 0.8rem;
    background-color: #f3f3f3;
    color: #999;
  }
  .tblD tr:last-of-type td:last-child {
    border-bottom: solid 1px #d9d9d9 !important;
  }
  .tblD td span {
    padding: 0.8rem 0.8rem;
  }
  .tblD td:first-of-type {
    padding: 0.8rem 0.8rem;
    border-top: 1px solid #d9d9d9 !important;
  }
  .tbl-scroll {
    position: relative;
    margin-bottom: 2.5vw;
  }
  .tbl-scroll .tblE {
    margin-bottom: 0;
    overflow: visible;
    border-radius: 0;
  }
  .tbl-scroll .tblE th {
    border-left: 1px solid #d9d9d9;
  }
  .tbl-scroll .tblE th::before {
    background-color: #d9d9d9;
  }
  .tbl-scroll .tblE th::after {
    background-color: #d9d9d9;
  }
  .tblE td {
    border-left: none;
  }
  .stpBox {
    margin-bottom: 3.2rem;
    padding: 2.4rem 1.5rem 2rem;
    gap: 1.2rem;
    border-radius: 2rem;
  }
  .stpBox.stpNoImg {
    padding-bottom: 1rem;
  }
  .stpContent > h3 {
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
  .stpContent > h3::before {
    width: 9.1rem;
    height: 4.1rem;
    margin-bottom: 0.8rem;
    padding: 1.2rem 0 0 1.4rem;
    font-size: 1.2rem;
  }
  .stpContent > h3::after {
    top: 0;
    left: 4.8rem;
    font-size: 2.4rem;
  }
  .stpImg {
    order: 3;
    margin-top: 0;
  }
  .stpBox .stpContent {
    order: 1;
  }
  .stpBox .decBox {
    order: 1;
    margin-top: 2rem;
    margin-bottom: 1.4rem;
  }
  .stpBox > .decBox {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1320px) {
  html {
    font-size: 0.75757575vw;
  }
}
@media (min-width: 768px) {
  table.schedule td br {
    display: none;
  }
  table.schedule th br.sp_br {
    display: none !important;
  }
}
@media screen and (min-width: 1600px) {
  .l-footer__inner::before {
    width: 100%;
    background-size: 100% clamp(57px, 7.438vw, 223px);
  }
  .p-topMessage::before {
    width: 100%;
    background-size: 100% clamp(133px, 17.375vw, 521px);
  }
  .p-topMessage::after {
    width: 100%;
    background-size: 100% clamp(58px, 7.563vw, 227px);
  }
  .p-topDoctor::before {
    width: 100%;
    background-size: 100% clamp(133px, 17.375vw, 521px);
  }
  .p-topDoctor::after {
    width: 100%;
    background-size: 100% clamp(58px, 7.563vw, 227px);
  }
}
@media (min-width: 1600px) {
  .p-topFeatures {
    max-width: 148rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (hover: none) {
  .c-link:active {
    opacity: 0.8;
  }
  .c-link--bright:active {
    filter: brightness(1.1);
  }
}