@charset "UTF-8";
html {
  font-family: "Zen Kaku Gothic New", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}
body {
  color: #333;
  font-weight: normal;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
p {
  text-align: justify;
}
a {
  color: #333;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
/*----------------------------------------------------
	Header
----------------------------------------------------*/
.l-header {
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
}
@keyframes slideDown {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.l-header__logo a {
  display: flex;
  align-items: center;
}
.l-header__logoText {
  color: #25af13;
  font-weight: 500;
  letter-spacing: 0.055em;
}
/* Header Navi */
.l-header__navi {
  position: relative;
}
.l-header__naviItem {
  position: relative;
}
.l-header__naviItem > a {
  display: block;
  position: relative;
  color: #333;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s all;
}
.l-header__naviItem.current > a {
  -webkit-text-decoration-color: #25af13;
  text-decoration: underline;
  text-decoration-color: #25af13;
}
.l-header__subMenu {
  display: none;
  z-index: 1;
  position: relative;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.l-header__subMenuList {
  display: flex;
  flex-direction: column;
}
.l-header__subMenu li a {
  display: block;
  position: relative;
  background: url("../../img/common/arrow01.svg") no-repeat center right/1.4rem auto;
  font-weight: 500;
  transition: color 0.2s linear;
}
.l-header__subMenu li a:hover {
  color: #25af13;
}
/*----------------------------------------------------
	Footer
----------------------------------------------------*/
.l-footer__inner {
  position: relative;
}
body:not(#home) .l-footer__inner {
  background-color: #fff;
}
.l-footer__infoWrapper {
  display: flex;
  position: relative;
}
.l-footer__logo a {
  display: grid;
}
.l-footer__logoTitle {
  display: block;
  font-weight: 500;
}
.l-footer__logoText {
  display: block;
  font-weight: 500;
  line-height: 1.63;
}
.l-footer__address {
  font-weight: 500;
  line-height: 1.63;
}
.l-footer__hoursWrapper {
  margin-top: 2rem;
}
/* ----------------------------------------------------
 calendar
---------------------------------------------------- */
div.cal_wrapper {
  position: relative;
  margin: 0;
}
div.cal_wrapper::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #694b32;
  content: "";
}
div.cal_wrapper table {
  width: 100%;
  border-top: solid 1px #694b32;
}
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.1rem;
  right: 0;
  left: 0;
  margin: auto;
  color: #694b32;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
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 {
  z-index: -1;
  position: absolute;
  left: 0;
  transform: scale(-1, 1);
  background: url("../../img/common/arrow04.svg") no-repeat center/cover;
  content: "";
}
div.cal_wrapper table.cal tr th div.cal_ui::after {
  z-index: -1;
  position: absolute;
  right: 0;
  background: url("../../img/common/arrow04.svg") no-repeat center/cover;
  content: "";
}
div.cal_wrapper table.cal tr th div.cal_ui input {
  margin: 0;
  padding: 0;
  color: #694b32;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  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: 0.4rem solid transparent;
  border-right: 0.4rem solid transparent;
  border-bottom: 0.4rem solid transparent;
  border-left: 0.4rem 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;
  color: #694b32;
  font-weight: 500;
}
div.cal_wrapper table.cal tr td div {
  padding: 1.7rem 1rem 1.6rem;
  color: #333;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  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.3rem;
  text-align: left;
}
.cal-txt span {
  display: inline-block;
  width: 1.8rem;
  height: 1.9rem;
  margin-right: 0.4rem;
  vertical-align: -0.4rem;
}
.cal-txt span:not(:first-of-type) {
  margin-left: 4.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.Wed, div.cal_wrapper table.cal tr td div.Sat {
  background: #699563;
  color: #fff;
}
/* Sun;日曜*/
div.cal_wrapper table.cal tr td div.Sun {
  background: #d36737;
  color: #fff;
}
/* Holyday;祝日*/
div.cal_wrapper table.cal tr td div.Holyday {
  background: #d36737;
  color: #fff;
}
/* PMOff；午後休診 */
div.cal_wrapper table.cal tr td div.PMOff {
  background: #699563;
  color: #fff;
}
/* dayOff;祝日*/
div.cal_wrapper table.cal tr td div.dayOff {
  background: #d36737;
  color: #fff;
}
/* otherDay;その他 */
div.cal_wrapper table.cal tr td div.otherDay {
  background: #adbcd8;
  color: #fff;
}
/* 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: #d36737;
}
.cal-halfOff {
  background-color: #699563;
}
.cal-other {
  background-color: #adbcd8;
}
.l-footer__map iframe {
  display: block;
}
.l-footer__copyright {
  background-color: #699563;
  text-align: center;
}
.l-footer__copyright small {
  display: inline-block;
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  letter-spacing: 0.025em;
}
.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;
  background-color: #fff;
  font-weight: 500;
  text-align: center;
  transition: 0.3s;
}
.l-footer__buttonItem.--reservation a {
  color: #fcfeb8;
}
.l-footer__pageTop {
  display: block;
  z-index: 2;
  position: absolute;
  top: -3.5rem;
  width: 7rem;
  height: 7rem;
  padding-top: 2.4rem;
  padding-left: 0.2rem;
  border: 1px solid #25af13;
  border-radius: 50%;
  background: #fff url("../../img/common/arrow03.svg") no-repeat center top 1.2rem/1.4rem auto;
  color: #25af13;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.14;
  text-align: center;
  text-transform: uppercase;
  transition: 0.3s all;
}
.l-footer__pageTop::before {
  content: "";
}
.l-footer__pageTop span {
  display: block;
}
/*----------------------------------------------------
	Main
----------------------------------------------------*/
.l-container {
  position: relative;
  overflow: hidden;
}
.l-container::before {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #f4f0ea;
  content: "";
}
.l-main {
  z-index: 2;
  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: block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border: solid 1px #699563;
  border-radius: 3rem;
  background-color: #699563;
  color: #fff;
  font-weight: bold;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.c-button01::after {
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url("../../img/common/arrow01_green.svg") no-repeat center top 1rem/1.5rem auto;
  background-color: #fff;
  content: "";
}
.c-button01.--orange {
  border-color: #d36737;
  background-color: #d36737;
}
.c-button01.--orange::after {
  background-image: url("../../img/common/arrow01_orange.svg");
}
.c-button01.--brown {
  border-color: #ae8660;
  background-color: #ae8660;
}
.c-button01.--brown::after {
  background-image: url("../../img/common/arrow01_brown.svg");
}
.c-button01:hover {
  background-color: #fff;
  color: #699563;
}
.c-button01:hover::after {
  background-image: url("../../img/common/arrow01_white01.svg");
  background-color: #699563;
}
.c-button01.--orange:hover {
  color: #d36737;
}
.c-button01.--orange:hover::after {
  background-color: #d36737;
}
.c-button01.--brown:hover {
  color: #ae8660;
}
.c-button01.--brown:hover::after {
  background-color: #ae8660;
}
/*----------------------------------------------------
	common parts
----------------------------------------------------*/
/* アイコンつき科目ボックス */
a.c-iconBox {
  display: block;
}
.c-iconBox__imageWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  border-radius: 50%;
  background-image: linear-gradient(45deg, #699563, #fcfeb8);
}
.c-iconBox__image {
  margin: 0;
  text-align: center;
  transition: opacity 0.2s linear;
}
a.c-iconBox:hover .c-iconBox__image {
  opacity: 0.7;
}
.c-iconBox__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s linear;
}
.c-iconBox__title::after {
  border-radius: 50%;
  background: #25af13 url("../../img/common/arrow01_white01.svg") no-repeat center;
  content: "";
  transition: all 0.2s linear;
}
a.c-iconBox:hover .c-iconBox__title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2rem;
}
a.c-iconBox:hover .c-iconBox__title::after {
  background-image: url("../../img/common/arrow01.svg");
  background-color: #fcfeb8;
}
/* TEL */
.c-telBox {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1rem;
}
.c-telBox::before {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.2rem;
  background: url("../../img/common/icon_tel01.svg") no-repeat center/cover;
  content: "";
  margin-right: 1rem;
}
.c-telBox__number {
  display: block;
  color: #25af13;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1;
}
/* 診療時間のテーブル */
.c-hours__wrapper {
  background-color: #fff;
}
.c-hours__table {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  text-align: center;
}
.c-hours__table thead th {
  font-weight: 500;
}
.c-hours__table tbody td {
  color: #25af13;
  font-weight: 500;
}
.c-hours__table tbody td.hour {
  color: #333;
  line-height: 1.1;
  letter-spacing: 0.05em;
}
/* 採用情報バナー */
body#home .c-footerRecruitWrapper {
  background-color: #fff;
}
body:not(#home) .c-footerRecruitWrapper {
  margin-top: 4rem;
}
.c-footerRecruit {
  z-index: 1;
  position: relative;
}
.c-footerRecruit::before {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c8cb68;
  content: "";
}
.c-footerRecruit__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.c-footerRecruit__inner::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #699563;
  content: "";
  opacity: 0.8;
  pointer-events: none;
}
.c-footerRecruit__textWrapper {
  z-index: 1;
  position: relative;
  color: #fff;
  text-align: center;
}
.c-footerRecruit__text {
  margin-bottom: 0;
}
.c-footerRecruit__buttonWrapper {
  display: flex;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.c-footerRecruit__button {
  display: flex;
  position: relative;
  align-items: center;
  height: 5.5rem;
  border-radius: 2.8rem;
  background-color: #fff;
  color: #699563;
  font-weight: bold;
}
.c-footerRecruit__button::after {
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #699563 url("../../img/common/arrow01_white01.svg") no-repeat center top 1rem/1.4rem auto;
  content: "";
}
/*----------------------------------------------------
	Component
----------------------------------------------------*/
/* コンテンツ枠 */
.c-contentBlock01 {
  width: 100%;
}
/* Heading */
.c-topHeading01 {
  z-index: 1;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
.c-topHeading01::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  background-image: url("../../img/top/bg_heading01.svg"), url("../../img/top/bg_heading01.svg");
  background-position: left top 0.8rem, right top 0.8rem;
  background-size: 1.5rem auto, 1.5rem auto;
  background-repeat: no-repeat, no-repeat;
  content: attr(data-text) "";
  color: #25af13;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.c-topHeading01.--white::before {
  background-image: url("../../img/top/bg_heading01_white.svg"), url("../../img/top/bg_heading01_white.svg");
  color: #fff;
}
.c-topHeading01.--left {
  text-align: left;
}
.c-topHeading01.--left::before {
  margin: 0;
  padding-right: 0;
  background-image: url("../../img/top/bg_heading01.svg");
  background-position: left top 0.8rem;
  background-size: 1.5rem auto;
  background-repeat: no-repeat;
}
.c-topHeading02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  font-weight: 500;
  letter-spacing: 0.055em;
  text-align: center;
}
.c-topHeading02 .--line {
  display: inline-block;
  background-image: radial-gradient(circle, #d36737 0.2rem, transparent 0.2rem);
  background-position: left bottom;
  background-size: 1.2rem 0.4rem;
  background-repeat: repeat-x;
}
.c-topHeading03 {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background-color: #699563;
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.c-topHeading03::before, .c-topHeading03::after {
  position: absolute;
  content: "";
}
.c-topHeading03::before {
  background: url("../../img/top/bg_heading02.svg") no-repeat center/cover;
}
.c-topHeading03::after {
  background: url("../../img/top/bg_heading03.svg") no-repeat center/cover;
}
.c-topHeading03__inner::before, .c-topHeading03__inner::after {
  position: absolute;
  top: 0;
  height: 100%;
  content: "";
}
.c-topHeading03__inner::before {
  background-image: linear-gradient(to right, rgba(105, 149, 99, 0), #699563);
}
.c-topHeading03__inner::after {
  background-image: linear-gradient(to left, rgba(105, 149, 99, 0), #699563);
}
/* パンくずリスト */
.c-breadCrumb__list:not(#_) {
  display: flex;
  margin-bottom: 0;
}
.c-breadCrumb__list li {
  position: relative;
  font-weight: 500;
  letter-spacing: 0.025em;
}
.c-breadCrumb__list li::after {
  display: block;
  position: absolute;
  top: 52%;
  width: 0.6rem;
  height: 0.6rem;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #699563;
  border-right: 1px solid #699563;
  content: "";
}
.c-breadCrumb__list li:last-of-type:after {
  display: none;
}
.c-breadCrumb__list li a {
  color: #25af13;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
/* ローカルナビ */
.c-localNav__list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.c-localNav__item:not(#_) a {
  display: flex;
  align-items: center;
  background-color: #fff;
  color: #699563;
  font-weight: bold;
  transition: all 0.3s;
}
.c-localNav__item:not(#_) a:hover {
  background-color: #fcfeb8;
}
.c-localNav__item:not(#_).current a {
  background-color: #699563;
  color: #fff;
}
/*----------------------------------------------------
	Project
----------------------------------------------------*/
/* mainVisual */
.p-mainVisual {
  z-index: 1;
  position: relative;
}
.p-mainVisual::after {
  z-index: -1;
  position: absolute;
  left: 0;
  width: 100%;
  background-image: linear-gradient(to bottom, #fff, rgba(255, 255, 255, 0));
  content: "";
}
.p-mainVisual__slideWrapper {
  position: absolute;
}
.p-mainVisual__textWrapper {
  -webkit-transform: translate3d(0, 0, 0);
  z-index: 5;
  position: absolute;
}
.p-mainVisual__title {
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.055em;
}
.p-mainVisual__title span {
  display: block;
}
.p-mainVisual__hoursWrapper {
  z-index: 3;
  position: absolute;
  bottom: 0;
  background-color: #fff;
}
.p-mainVisual__bg {
  position: absolute;
}
/* お知らせ */
.pointWrap h2 {
  z-index: 1;
  position: relative;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}
.pointWrap h2::before {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
  background-image: url("../../img/top/bg_heading01.svg"), url("../../img/top/bg_heading01.svg");
  background-position: left top 0.8rem, right top 0.8rem;
  background-size: 1.5rem auto, 1.5rem auto;
  background-repeat: no-repeat, no-repeat;
  content: "Information";
  color: #25af13;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.point {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}
.point:not(:first-of-type) {
  margin-top: -1.6rem;
  padding-top: 2.8rem;
}
.point:not(:first-of-type)::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  margin: auto;
  background: #dedede;
  content: "";
}
.point h3 {
  position: relative;
  font-weight: bold;
  font-size: 4.8vw;
}
.point h3:not(:first-of-type)::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  margin: auto;
  background: #dedede;
  content: "";
}
.point p {
  font-weight: 500;
}
.point p a {
  color: #25af13;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.point p a:hover {
  text-decoration: none;
}
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
長期休診のお知らせ - table
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
table.schedule {
  width: 100%;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(105, 75, 50, 0.2);
}
table.schedule thead th {
  padding: 0.6rem 0.5rem 0.7rem;
  border-left: 0.1rem solid #fff;
  background-color: #699563;
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.47;
  text-align: center;
}
table.schedule thead th:first-of-type {
  border-left: none;
}
table.schedule tbody th {
  padding: 0.9rem 0.5rem 0.9rem;
  border-top: 0.1rem solid rgba(105, 75, 50, 0.2);
  font-weight: 500;
  font-size: 1.5rem;
}
table.schedule td {
  padding: 0.9rem 0.5rem 0.9rem;
  border-top: 0.1rem solid rgba(105, 75, 50, 0.2);
  font-weight: 500;
  font-size: 1.7rem;
  text-align: center;
}
table.schedule thead th.sat, table.schedule thead th span.sat {
  color: #c0edeb;
}
/*日付の日祝*/
table.schedule thead th.red, table.schedule thead th span.red {
  color: #c0edeb;
}
/*休診欄*/
table.schedule td.red {
  background-color: #f4f0ea;
}
/*日付統合の調整*/
table.schedule thead th.merge span {
  display: inline-block;
}
table.schedule thead th.merge span.btw {
  padding: 0 0.5em;
  vertical-align: 50%;
}
/* 医師の紹介 */
.p-topMessage {
  z-index: auto;
  position: relative;
}
.p-topMessage::before {
  z-index: -1;
  position: absolute;
  content: "";
  pointer-events: none;
}
.p-topMessage::after {
  z-index: -1;
  position: absolute;
  content: "";
  pointer-events: none;
}
.p-topMessage__boxWrapper {
  display: flex;
}
.p-topMessage__heading {
  font-weight: 500;
  letter-spacing: 0.055em;
  text-align: center;
}
.p-topMessage__text {
  margin-bottom: 0;
}
.p-topMessage__text:not(:first-of-type) {
  margin-top: 2.4rem;
}
.p-topMessage__image {
  z-index: auto;
  position: relative;
  margin: 0;
}
.p-topMessage__image::before {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c8cb68;
  content: "";
}
.p-topMessage__imageCaption {
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #25af13;
  font-weight: 500;
}
.p-topMessage__imageCaption::after {
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid 1px #25af13;
  content: "";
  pointer-events: none;
}
.p-topMessage__buttonWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-left: auto;
  background-color: #fff;
}
.p-topMessage__telTitle {
  margin-bottom: 0.4rem;
  font-weight: bold;
  text-align: center;
}
/* 診療内容 */
.p-topMedical__boxWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* 選ばれてきた理由 */
.p-topReason {
  position: relative;
  margin-right: 4rem;
  margin-left: 4rem;
  background-color: #fff;
}
.p-topReason__heading {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
}
.p-topReason__boxWrapper {
  counter-reset: number 0;
}
.p-topReason__title {
  display: flex;
  position: relative;
  align-items: center;
  font-weight: 500;
  letter-spacing: 0.055em;
  counter-increment: number 1;
}
.p-topReason__title::before {
  background: url("../../img/top/bg_heading04.svg") no-repeat center/cover;
  content: "";
}
.p-topReason__title::after {
  position: absolute;
  content: counter(number, decimal-leading-zero) "";
  color: #ae8660;
  font-weight: bold;
  line-height: 1;
  font-family: "Tangerine", cursive;
  letter-spacing: 0.05em;
}
.p-topReason__text {
  margin-bottom: 0;
}
.p-topReason__button {
  margin-top: 2rem;
}
/* 困っていることはありませんか？ */
.p-topWorry__boxWrapper {
  display: flex;
  flex-wrap: wrap;
}
.p-topWorry__box {
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0.3rem 0.6rem 0 rgba(0, 0, 0, 0.16);
}
.p-topWorry__box.--01 {
  display: flex;
}
.p-topWorry__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.p-topWorry__list {
  margin-bottom: 0;
}
.p-topWorry__listItem {
  position: relative;
  font-weight: 500;
}
.p-topWorry__listItem:not(:first-of-type) {
  margin-top: 1rem;
}
.p-topWorry__listItem::before {
  position: absolute;
  left: 0;
  width: 1.8rem;
  height: 1.5rem;
  background: url("../../img/common/icon_check01.svg") no-repeat center/cover;
  content: "";
}
.p-topWorry__iconWrapper {
  display: flex;
  justify-content: center;
}
/* クリニック写真 */
.p-topView {
  position: relative;
}
.p-topView::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  content: "";
}
.p-topView__scroll {
  display: flex;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
}
.p-topViewList {
  display: flex;
  align-items: flex-end;
  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-topNews {
  background-color: #fff;
}
.p-topNewsList {
  margin-bottom: 0;
}
.p-topNewsList dt {
  color: #ae8660;
  font-weight: 500;
}
.p-topNewsList dd {
  font-weight: 500;
}
.p-topNewsList dd.continuous {
  padding-top: 0.8rem;
  border-top: none;
}
.p-topNewsList dd a {
  color: #25af13;
  text-decoration: underline;
}
.p-topNewsList dd a:hover {
  text-decoration: none;
}
/*----------------------------------------------------
	下層ページ
----------------------------------------------------*/
/* タイトル */
.p-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
}
/*.p-visual::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #aec975;
  content: "";
  opacity: 0.8;
}*/
.p-visual__title {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  color: #fff;
  font-weight: 500;
  text-align: center;
}
/* 見出し */
.hA {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  background-image: radial-gradient(circle, #d36737 0.2rem, transparent 0.2rem);
  background-position: left bottom;
  background-size: 1.2rem 0.4rem;
  background-repeat: repeat-x;
  color: #333;
  font-weight: 500;
  text-align: center;
}
.hB {
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  border-radius: 0.2rem;
  background-color: rgba(255, 255, 255, 0.75);
  color: #25af13;
  font-weight: 500;
}
.hC {
  z-index: 1;
  max-width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #25af13;
  color: #333;
  font-weight: 500;
}
.hD {
  z-index: 1;
  position: relative;
  overflow: hidden;
  border-left: 0.5rem solid #25af13;
  color: #333;
  font-weight: 500;
}
.hE {
  z-index: 1;
  position: relative;
  overflow: hidden;
  color: #333;
  font-weight: 500;
}
.hE::before {
  position: absolute;
  left: 0;
  background: url("../../img/page/common/bg_heading01.png") no-repeat center/cover;
  content: "";
}
/* 太文字 */
.strongA {
  display: inline;
  background: linear-gradient(transparent 55%, #fcfeb8 0%);
  font-weight: bold;
}
.strongB {
  font-weight: bold;
}
/* リンク */
.l-main__inner p {
  font-weight: 500;
}
.l-main__inner a:not(.linkArrow) {
  color: #25af13;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.l-main__inner a:not(.linkArrow):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.5rem;
  color: #25af13;
  font-weight: bold;
  font-size: 3.5rem;
  line-height: 1;
  text-decoration: none !important;
}
.telLink::before {
  position: static;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.2rem;
  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-block;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  border: solid 1px #699563;
  border-radius: 3rem;
  background-color: #fff;
  color: #699563;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: left;
  transition: all 0.3s;
}
.l-main__inner a.linkArrow::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 2.5rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: url("../../img/common/arrow01_white01.svg") no-repeat center top 1rem/1.5rem auto;
  background-color: #699563;
  content: "";
}
.l-main__inner a.linkArrow:hover {
  background-color: #699563;
  color: #fff;
}
.l-main__inner a.linkArrow:hover::after {
  background-image: url("../../img/common/arrow01_green.svg");
  background-color: #fff;
}
.l-main__inner a.linkArrow.linkExternal span::after {
  display: none;
}
.l-main__inner a:not(.linkArrow).linkExternal span {
  color: #25af13;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
  transition: color 0.2s;
}
.l-main__inner a:not(.linkArrow).linkExternal span::after {
  content: "\e89e";
  color: #25af13;
  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 {
  text-decoration: none;
}
.l-main__inner a.linkArrow.linkExternal::after {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0;
  background-image: url("../../img/common/icon_external01.svg");
  background-position: center;
  background-size: 1.5rem auto;
  background-color: transparent;
}
.l-main__inner a.linkArrow.linkExternal:hover::after {
  background-image: url("../../img/common/icon_external01_white.svg");
}
/* リスト */
.l-main__inner ul:not(.acsDirection), .l-main__inner ol, .l-main__inner dl {
  font-weight: normal;
}
.l-main__inner ul:not(.acsDirection) li, .l-main__inner ol li {
  font-weight: 500;
}
.listDot:not(#_) li {
  position: relative;
  padding-left: 1.2rem;
}
.listDot:not(#_) li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 100%;
  background-color: #25af13;
  content: "";
}
.listNum {
  counter-reset: ol_li;
}
.listNum:not(#_) li {
  position: relative;
  margin-left: 0;
  padding-left: 2.5rem;
  list-style: none;
}
.listNum:not(#_) li:before {
  position: absolute;
  top: 0.3rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #25af13;
  content: counter(ol_li) "";
  color: #fff;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: center;
  counter-increment: ol_li;
}
.listNote li:not(#_) {
  font-size: 1.4rem;
}
.listNote li:not(#_):not(:first-of-type) {
  margin-top: 0.2rem;
}
.listCheck:not(#_) li {
  position: relative;
}
.listCheck:not(#_) li::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background: url("../../img/common/icon_check01.svg") no-repeat center/cover;
  content: "";
}
dl.listData dt {
  color: #25af13;
  font-weight: 500;
  font-size: 1.8rem;
}
/* 装飾ボックス */
.decBox {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.decBox01 {
  border: 1px solid #25af13;
}
.decBox02 {
  background-color: rgba(255, 255, 255, 0.75);
}
.decBox03 {
  background-color: rgba(252, 254, 184, 0.6);
}
/* テーブル */
.tblA th, .tblB th, .tblC th, .tblD th, .tblE th {
  border: solid 1px #fff;
  border-left: none;
  background-color: #699563;
  color: #fff;
  font-weight: 500;
}
.tblA td, .tblB td, .tblC td, .tblD td, .tblE td {
  border: solid 1px rgba(105, 75, 50, 0.2);
  border-left: none;
  background-color: #fff;
  font-weight: 500;
}
.tblB td.inrTblB table {
  border: none;
}
.tblB td.inrTblB table th {
  text-align: left;
}
.tblB td.inrTblB table td {
  border-bottom: solid 1px rgba(105, 75, 50, 0.2) !important;
}
.tblB td.inrTblB table tr:last-of-type th, .tblB td.inrTblB table tr:last-of-type td {
  border-bottom: none !important;
}
.tblD td:first-of-type {
  border-right: none;
  border-bottom: 1px solid #fff;
  background-color: #ae8660;
  color: #fff;
  text-align: center;
}
.tblE tr:nth-of-type(even) th {
  background-color: #ae8660;
}
.tblE tr:nth-of-type(even) td {
  background-color: #f4f0ea;
}
/* 流れ */
.stpBox {
  display: flex;
  z-index: 1;
  position: relative;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 0;
}
.stpBox::after {
  z-index: -1;
  position: absolute;
  width: 1px;
  transform: translateX(0) rotate(0);
  border: none;
  background-color: #25af13;
  content: "";
}
.stpContent > h3 {
  display: flex;
  position: relative;
  align-items: center;
  gap: 2rem;
  font-weight: 500;
}
.stpContent > h3::before {
  padding-top: 0.5rem;
  background: url("../../img/page/common/bg_flow01.png") no-repeat center/cover;
  content: "STEP";
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.stpContent > h3::after {
  position: absolute;
  left: 0;
  content: "0"attr(data-number);
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-align: center;
}
.stpImg {
  z-index: 1;
  position: relative;
}
.stpImg::before {
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #c8cb68;
  content: "";
  opacity: 0.9;
}
.stpImg img {
  -o-object-fit: cover;
  object-fit: cover;
}
/*----------------------------------------------------
	Utility
----------------------------------------------------*/
.u-font--en {
  font-family: "Tangerine", cursive;
}
.u-center {
  text-align: center !important;
}
.u-bold {
  font-weight: bold !important;
}
.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 div.cal_ui input {
    font-size: 1.4rem;
  }
  div.cal_wrapper table.cal tr td {
    font-size: 3.7vw;
  }
  div.cal_wrapper table.cal tr td div {
    padding: 1.1rem 0.4rem;
    font-size: 1.3rem;
  }
  div.cal_wrapper table.cal tr td div span {
    top: 4vw;
    width: 24vw;
    padding: 0.4vw;
  }
  .cal-txt {
    font-size: 1.4rem;
  }
  .cal-txt span {
    width: 1.6rem;
    height: 1.6rem;
    vertical-align: -0.2rem;
  }
  .cal-txt span:not(:first-of-type) {
    margin-left: 1.4rem;
  }
  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;
    padding: 0.4rem 0.5rem;
    border-width: 1px;
    font-size: 1.5rem;
    line-height: 1.6 !important;
    text-align: center;
  }
  table.schedule thead th, table.schedule tbody th {
    padding: 0.4rem 0.5rem;
    border-top: 1px solid #fff;
    border-left: 1px solid #fff;
  }
  table.schedule tbody th {
    border-right: solid 1px rgba(105, 75, 50, 0.2);
    border-left: 1px solid #fff;
  }
  table.schedule td {
    border-right: solid 1px rgba(105, 75, 50, 0.2);
  }
  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;
    border-bottom: solid 1px rgba(105, 75, 50, 0.2);
  }
  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 thead th:first-of-type {
    border-bottom: 1px solid #699563;
  }
  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;
    border-bottom: solid 1px rgba(105, 75, 50, 0.2);
  }
  table.schedule.schedule_y tbody tr th:first-of-type {
    border-top: 1px solid #699563;
  }
  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 (hover: hover) {
  .c-link:hover {
    opacity: 0.7;
    transition: opacity 0.2s linear;
  }
  .c-link--bright:hover {
    filter: brightness(1.1);
    transition: filter 0.2s linear;
  }
}
@media screen and (min-width: 768px) {
  .l-header {
    position: absolute;
  }
  body:not(#home) .l-header {
    position: fixed;
    min-height: 10rem;
    background-color: #fff;
  }
  body#home .l-header.js-fixed {
    position: fixed;
    background-color: #fff;
    animation: slideDown 0.3s ease-in-out;
    opacity: 1;
  }
  .l-header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 120rem;
    margin: 0 auto;
    padding-top: 2.5rem;
    padding-bottom: 1.4rem;
  }
  body#home .l-header:not(.js-fixed) .l-header__inner {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0 0;
  }
  body:not(#home) .l-header .l-header__inner, body#home .l-header.js-fixed .l-header__inner {
    flex-direction: row;
    justify-content: flex-start;
    width: 160rem;
    padding: 1.6rem 2rem 1.5rem;
  }
  .l-header__logo a {
    gap: 1rem;
  }
  .l-header__logoImage {
    width: 9rem;
  }
  body:not(#home) .l-header .l-header__logoImage, body#home .l-header.js-fixed .l-header__logoImage {
    width: 6.9rem;
  }
  .l-header__logoText {
    font-size: 4rem;
  }
  body:not(#home) .l-header .l-header__logoText, body#home .l-header.js-fixed .l-header__logoText {
    font-size: 3rem;
  }
  /* ハンバーガーメニュー */
  .l-header__naviWrapper {
    flex: 1;
  }
  .l-header__navi {
    display: flex;
    margin-top: 3rem;
  }
  body:not(#home) .l-header__navi, body#home .l-header.js-fixed .l-header__navi {
    justify-content: flex-end;
    width: auto;
    margin-top: 0;
    margin-right: calc(31.1rem + clamp(5px, 0.625vw, 19px));
  }
  .l-header__naviItem > a {
    padding-right: 1.8rem;
    padding-left: 1.8rem;
    text-align: center;
  }
  .l-header__naviItem > a:hover {
    -webkit-text-decoration-color: #25af13;
    text-decoration: underline;
    text-decoration-color: #25af13;
    text-underline-offset: 0.6rem;
  }
  .l-header__naviItem.current > a {
    text-underline-offset: 0.6rem;
  }
  .l-header__subMenu {
    position: absolute;
    top: 1.4rem;
    left: 50%;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    padding-top: 0.8rem;
    transform: translateX(-50%);
  }
  .l-header__subMenu.is-active {
    display: block;
    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__naviItem:hover > a {
    -webkit-text-decoration-color: #25af13;
    text-decoration: underline;
    text-decoration-color: #25af13;
    text-underline-offset: 0.6rem;
  }
  .l-header__subMenuList {
    min-width: 15rem;
    padding: 1.5rem 1rem;
    gap: 0.8rem;
    background-color: #fcfeb8;
  }
  .l-header__subMenu li a {
    padding-right: 2.2rem;
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .l-header__infoWrapper {
    display: flex;
    position: absolute;
    top: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 31.1rem;
    height: 10rem;
    padding-bottom: 0.8rem;
    gap: 0.8rem;
    border-bottom: solid 2px #25af13;
    border-left: solid 2px #25af13;
    border-radius: 0 0 0 2rem;
    background-color: #fff;
  }
  .l-header__address {
    color: #25af13;
    font-weight: 500;
  }
  .l-footer__infoWrapper {
    align-items: flex-start;
    justify-content: space-between;
    padding-top: 8.6rem;
    padding-bottom: 8.5rem;
    gap: 11rem;
  }
  .l-footer__info {
    width: 66rem;
  }
  .l-footer__logo {
    margin-bottom: 2rem;
  }
  .l-footer__logo a {
    grid-column-gap: 1.8rem;
    grid-row-gap: 1rem;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 9.2rem auto;
  }
  .l-footer__logoImage {
    grid-area: 1/1/3/2;
  }
  .l-footer__logo img {
    width: 9.2rem;
  }
  .l-footer__logoTitle {
    grid-area: 1/2/2/3;
    font-size: 2rem;
  }
  .l-footer__logoText {
    grid-area: 2/2/3/3;
  }
  .l-footer__tel {
    margin-top: 0.8rem;
  }
  .l-footer__calendar {
    flex: 1;
  }
  div.cal_wrapper {
    padding: 3rem 0 1.8rem;
  }
  div.cal_wrapper::before {
    top: 8rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui::before, div.cal_wrapper table.cal tr th div.cal_ui::after {
    top: 0.3rem;
    width: 1.8rem;
    height: 1.8rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(1) {
    padding-left: 2.3rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(3) {
    padding-right: 2.3rem;
  }
  div.cal_wrapper table.cal tr.headline td {
    padding: 0.8rem 0.2rem 1.6rem;
    font-size: 1.5rem;
  }
  .l-footer__map iframe {
    height: 36.2rem;
  }
  .l-footer__copyright {
    padding: 1.8rem 0 1.7rem;
  }
  .l-footer__copyright small {
    line-height: 1.43;
  }
  .l-footer__buttonWrapper {
    right: 2rem;
    bottom: 2rem;
    flex-direction: column;
    gap: 1.5rem;
  }
  /*  body:not(#home) .l-footer__buttonItem.--reservation {
    display: none;
  }*/
  .l-footer__buttonItem.--reservation a {
    width: 18rem;
    height: 18rem;
    padding-right: 0.2rem;
    padding-bottom: 1rem;
    gap: 1.2rem;
    border-radius: 50%;
    background: #25af13 url("../../img/common/arrow02.svg") no-repeat left 3rem bottom 5.2rem/13.2rem auto;
    box-shadow: 0 0 1rem 0 #fff;
    font-size: 2.4rem;
    line-height: 1.38;
  }
  .l-footer__pageTop {
    right: calc((100% - 120rem) / 2);
  }
  body:not(#home) .l-footer__pageTop {
    position: fixed;
    top: auto;
    right: 2rem;
    bottom: 21.2rem;
    opacity: 0;
    pointer-events: none;
  }
  body:not(#home) .l-footer__pageTop.is-show {
    opacity: 1;
    pointer-events: all;
  }
  body:not(#home) .l-footer__pageTop.is-show:hover {
    opacity: 0.7;
  }
  .l-container {
    display: flex;
    flex-flow: column;
    min-height: 100vh;
  }
  .l-container::before {
    background-image: url("../../img/common/bg_body01_pc.png");
  }
  .l-main {
    flex: 1;
  }
  .l-contentsWrapper {
    width: 120rem;
    margin-right: auto;
    margin-left: auto;
  }
  .c-link:focus {
    opacity: 0.7;
    transition: opacity 0.2s linear;
  }
  .c-link--bright:focus {
    filter: brightness(1.1);
    transition: filter 0.2s linear;
  }
  .c-button01 {
    width: 25rem;
    min-height: 5.5rem;
    padding: 1.3rem 5.4rem 1.2rem 3rem;
  }
  .c-button01::after {
    right: 2rem;
  }
  .c-iconBox__imageWrapper {
    width: 14.6rem;
    height: 14.6rem;
  }
  .c-iconBox__image {
    width: 9rem;
  }
  .c-iconBox__textWrapper {
    margin-top: 2.2rem;
  }
  .c-iconBox__title {
    gap: 1rem;
    font-size: 2rem;
  }
  .c-iconBox__title::after {
    width: 2.5rem;
    height: 2.5rem;
    background-size: 1.6rem auto;
  }
  .c-iconBox__text {
    margin-top: 1rem;
  }
  .c-hours__wrapper {
    width: 65.9rem;
    padding: 1.4rem 1.1rem 1.4rem;
  }
  .c-hours__table {
    font-size: 1.8rem;
  }
  .c-hours__table thead th {
    padding: 0.8rem 0.9rem 0.7rem;
  }
  .c-hours__table thead th:last-of-type {
    padding-right: 0;
  }
  .c-hours__table thead th.title {
    padding-right: 2rem;
    letter-spacing: 0.1em;
  }
  .c-hours__table tbody td {
    padding: 0.9rem 2.8rem 1rem;
  }
  .c-hours__table tbody td:last-of-type {
    padding-right: 1.4rem;
  }
  .c-hours__table tbody td.hour {
    padding: 0.9rem 1.4rem 1rem 0;
  }
  .c-hours__table tbody td.hour .--small {
    font-size: 1.4rem;
  }
  .c-footerRecruitWrapper {
    padding-bottom: 17.2rem;
  }
  .c-footerRecruit {
    width: 120rem;
    margin-right: auto;
    margin-left: auto;
  }
  .c-footerRecruit::before {
    top: 2rem;
    left: 2rem;
  }
  .c-footerRecruit__inner {
    min-height: 34.4rem;
    padding: 6rem 4rem 6.3rem;
    background-image: url("../../img/common/bg_recruit01_pc.jpg");
  }
  .c-footerRecruit__text {
    margin-top: 3rem;
  }
  .c-footerRecruit__buttonWrapper {
    align-items: flex-end;
    margin-top: 3rem;
    padding-right: 16.5rem;
    padding-left: 16.5rem;
    gap: 2rem;
  }
  .c-footerRecruit__button {
    width: 25rem;
    padding: 0.4rem 5rem 0.4rem 3rem;
    font-size: 1.8rem;
  }
  .c-footerRecruit__button::after {
    right: 2rem;
  }
  .c-contentBlock01 {
    width: 120rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .c-topHeading01 {
    padding-top: 2.6rem;
    font-size: 3.7rem;
  }
  .c-topHeading02 {
    padding-bottom: 1rem;
    font-size: 3.7rem;
    line-height: 1.22;
  }
  .c-topHeading02 .--line {
    padding-bottom: 0.8rem;
  }
  .c-topHeading03 {
    padding: 1.4rem 2rem;
    font-size: 3.7rem;
  }
  .c-topHeading03::before {
    top: -2.7rem;
    left: -5rem;
    width: 13rem;
    height: 4.1rem;
  }
  .c-topHeading03::after {
    right: -5rem;
    bottom: -2.5rem;
    width: 13rem;
    height: 3.9rem;
  }
  .c-topHeading03__inner::before, .c-topHeading03__inner::after {
    width: 5rem;
  }
  .c-topHeading03__inner::before {
    left: -5rem;
  }
  .c-topHeading03__inner::after {
    right: -5rem;
  }
  .c-breadCrumb {
    margin-top: 1rem;
    margin-bottom: 9rem;
  }
  .c-breadCrumb__list:not(#_) {
    gap: 2.4rem;
  }
  .c-breadCrumb__list li {
    font-size: 1.4rem;
  }
  .c-breadCrumb__list li::after {
    right: -1.4rem;
  }
  .c-localNav {
    margin-bottom: 9rem;
  }
  .c-localNav__list {
    justify-content: center;
    gap: 1.6rem 2rem;
  }
  .c-localNav__item {
    width: 32rem;
  }
  .c-localNav__item:not(#_) a {
    justify-content: center;
    height: 5.5rem;
    padding: 0.9rem 1.6rem;
    border: solid 1px #699563;
    border-radius: 4rem;
    font-size: 1.8rem;
    text-align: center;
  }
  .p-mainVisual {
    height: 108rem;
  }
  .p-mainVisual::before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 23.5rem;
    background-color: #fff;
    content: "";
  }
  .p-mainVisual::after {
    top: 23.5rem;
    height: calc(100% - 23.5rem);
  }
  .p-mainVisual__slideWrapper.--mv01 {
    top: 47.6rem;
    left: calc((100% - 120rem) / 2 - 15.3rem);
    width: 61.2rem;
    height: 38.4rem;
  }
  .p-mainVisual__slideWrapper.--mv02 {
    top: 30.1rem;
    right: 0;
    width: calc((100% - 120rem) / 2 + 67.7rem);
    height: 68.7rem;
  }
  .p-mainVisual__slideWrapper.--mv01 .p-mainVisual__slideItem {
    height: 38.4rem;
  }
  .p-mainVisual__slideWrapper.--mv02 .p-mainVisual__slideItem {
    height: 68.7rem;
  }
  .p-mainVisual__textWrapper {
    top: 29.8rem;
    left: calc((100% - 120rem) / 2 - 15.5rem);
  }
  .p-mainVisual__title {
    font-size: 4.5rem;
    line-height: 1.66;
  }
  .p-mainVisual__hoursWrapper {
    left: 0;
    padding-left: calc((100% - 120rem) / 2 - 20rem);
  }
  .p-mainVisual__bg.--01 {
    top: -4.6rem;
    left: calc(50% - 88rem);
    width: 43.8rem;
    height: 37.6rem;
  }
  .p-mainVisual__bg.--02 {
    top: -5.3rem;
    right: calc(50% - 80.2rem);
    width: 34.1rem;
    height: 37.3rem;
  }
  .pointWrap {
    width: 120rem;
    margin-top: 8rem;
    margin-right: auto;
    margin-bottom: 5.8rem;
    margin-left: auto;
  }
  .pointWrap h2 {
    margin-bottom: 3.6rem;
    padding-top: 2.6rem;
    font-size: 3.7rem;
  }
  .point {
    padding: 5rem 4rem 4rem;
  }
  .point:not(:first-of-type)::before {
    width: 112rem;
  }
  .point h3 {
    margin-bottom: 2.6rem;
    font-size: 2rem;
  }
  .point h3:not(:first-of-type) {
    margin-top: 4rem;
    padding-top: 2.8rem;
  }
  .point h3:not(:first-of-type)::before {
    width: 112rem;
  }
  .point p {
    margin-bottom: 1.6rem;
    word-break: break-word;
    font-size: 1.8rem;
  }
  .p-topMessage {
    padding-top: 9rem;
  }
  .p-topMessage::before {
    top: 0;
    left: calc(50% - 80rem);
    width: 38.3rem;
    height: 26.4rem;
    background: url("../../img/top/bg_message01_pc.png") no-repeat center/cover;
  }
  .p-topMessage::after {
    top: 41.6rem;
    right: calc(50% - 80.5rem);
    width: 38.5rem;
    height: 21.3rem;
    background: url("../../img/top/bg_message02_pc.png") no-repeat center/cover;
  }
  .p-topMessage__boxWrapper {
    margin-right: 11.3rem;
    gap: 6rem;
  }
  .p-topMessage__textWrapper {
    flex: 1;
    padding-top: 3.8rem;
  }
  .p-topMessage__heading {
    margin-bottom: 3.7rem;
    font-size: 3.3rem;
    line-height: 1.36;
  }
  .p-topMessage__image {
    width: 28.3rem;
    height: 36rem;
  }
  .p-topMessage__image::before {
    top: 1.3rem;
    left: 1.3rem;
  }
  .p-topMessage__imageCaption {
    right: -11.3rem;
    bottom: -3.2rem;
    width: 21.5rem;
    height: 5.4rem;
    font-size: 2rem;
  }
  .p-topMessage__imageCaption::after {
    top: 0.5rem;
    left: 0.5rem;
  }
  .p-topMessage__buttonWrapper {
    margin-top: 13.3rem;
    padding: 3.4rem 2.4rem 3.3rem;
    gap: 2.3rem;
    border-radius: 7rem;
  }
  .p-topMessage__telWrapper {
    margin-top: -0.4rem;
    margin-right: 3.4rem;
  }
  .p-topMedical {
    padding-top: 11.5rem;
    padding-bottom: 16.2rem;
  }
  .p-topMedical__heading {
    margin-bottom: 6.2rem;
  }
  .p-topMedical__boxWrapper {
    padding-right: 2rem;
    padding-left: 2rem;
    gap: 4rem;
  }
  .p-topMedical__box {
    width: calc((100% - 12rem) / 4);
  }
  .p-topReason {
    padding-top: 4.4rem;
    padding-bottom: 3rem;
    border-radius: 7rem;
  }
  .p-topReason__heading {
    top: -4.4rem;
  }
  .p-topReason__box {
    grid-column-gap: 5.3rem;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-template-columns: 40.3rem auto;
    padding: 5rem 0;
  }
  .p-topReason__box:not(:last-of-type) {
    background-image: radial-gradient(circle, #d36737 0.2rem, transparent 0.2rem);
    background-position: left bottom;
    background-size: 1.2rem 0.4rem;
    background-repeat: repeat-x;
  }
  .p-topReason__box:nth-of-type(even) {
    grid-template-columns: auto 40.3rem;
  }
  .p-topReason__image {
    grid-area: 1/1/3/2;
    width: 40.3rem;
  }
  .p-topReason__box:nth-of-type(even) .p-topReason__image {
    grid-area: 1/2/3/3;
  }
  .p-topReason__title {
    grid-area: 1/2/2/3;
    margin-top: auto;
    margin-right: -0.8rem;
    margin-bottom: 0.4rem;
    font-size: 3.3rem;
  }
  .p-topReason__title::before {
    width: 8.5rem;
    height: 11.3rem;
    margin-left: 3.5rem;
  }
  .p-topReason__title::after {
    top: -1.5rem;
    left: -0.1rem;
    font-size: 12.5rem;
  }
  .p-topReason__box:nth-of-type(even) .p-topReason__title {
    grid-area: 1/1/2/2;
  }
  .p-topReason__textWrapper {
    grid-area: 2/2/3/3;
    margin-bottom: -1.3rem;
  }
  .p-topReason__box:nth-of-type(even) .p-topReason__textWrapper {
    grid-area: 2/1/3/2;
  }
  .p-topReason__button {
    margin-top: 2rem;
    margin-left: auto;
  }
  .p-topWorry {
    padding-top: 11rem;
    padding-bottom: 12rem;
  }
  .p-topWorry__heading {
    margin-bottom: 6.2rem;
  }
  .p-topWorry__boxWrapper {
    gap: 2.5rem;
  }
  .p-topWorry__box.--01 {
    align-items: center;
    width: 100%;
    padding: 2.5rem 5rem;
  }
  .p-topWorry__box.--02 {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 5rem) / 3);
    padding: 2.4rem 2.4rem 2.2rem;
  }
  .p-topWorry__box.--01 .p-topWorry__textWrapper {
    flex: 1;
  }
  .p-topWorry__title {
    margin-bottom: 3.3rem;
    font-size: 3.3rem;
  }
  .p-topWorry__title.--brownLine {
    background: linear-gradient(transparent 65%, rgba(174, 134, 96, 0.2) 0%);
  }
  .p-topWorry__title.--greenLine {
    background: linear-gradient(transparent 65%, rgba(37, 175, 19, 0.1) 0%);
  }
  .p-topWorry__listItem {
    padding-left: 2.7rem;
    font-size: 2rem;
  }
  .p-topWorry__listItem::before {
    top: 0.7rem;
  }
  .p-topWorry__box.--01 .p-topWorry__iconWrapper {
    width: 51.5rem;
    gap: 5.5rem;
  }
  .p-topView::before {
    height: 12.7rem;
  }
  .p-topView__scroll {
    gap: 2.5rem;
  }
  .p-topViewList {
    gap: 2.5rem;
  }
  .p-topViewListItem {
    width: 38.1rem;
    height: 25.4rem;
  }
  .p-topNews {
    min-height: 41rem;
    padding-top: 10.8rem;
    padding-bottom: 14rem;
  }
  .p-topNews .c-contentBlock01 {
    display: flex;
    position: relative;
    padding-right: 6rem;
  }
  .p-topNews__heading {
    flex: 1;
  }
  .p-topNews__boxWrapper {
    width: 81.1rem;
  }
  .p-topNewsList {
    border-bottom: solid 1px #dedede;
  }
  .p-topNewsList dt {
    position: absolute;
    padding-top: 2.8rem;
  }
  .p-topNewsList dd {
    padding-top: 2.6rem;
    padding-bottom: 2.7rem;
    padding-left: 12.7rem;
    border-top: solid 1px #dedede;
    font-size: 1.8rem;
  }
  .p-topNewsList dd.continuous {
    margin-top: -1.3rem;
    border-top: none;
  }
  .p-topNews__button {
    z-index: 1;
    position: absolute;
    top: 11rem;
    left: 0;
  }
  .p-visual {
    margin-top: 10rem;
  }
  .p-visual__title {
    padding: 4.4rem 3.2rem;
    font-size: 4.5rem;
  }
  .p-visual__image {
    height: 34.5rem;
  }
  .hA {
    margin-bottom: min(4.16vw, 50px);
    padding-bottom: 0.4rem;
    font-size: 3.7rem;
  }
  .hA:not(:first-of-type) {
    margin-top: 9rem;
  }
  .hB {
    margin-bottom: min(2.5vw, 30px);
    padding: 1.2rem 2.5rem;
    font-size: 3rem;
  }
  .hB:not(:first-of-type) {
    margin-top: 6.4rem;
  }
  .hC {
    margin-bottom: min(2.5vw, 30px);
    padding: 0 1rem 0.9rem;
    font-size: 2.6rem;
  }
  .hC:not(:first-of-type) {
    margin-top: 5.6rem;
  }
  .hD {
    margin-bottom: min(1.6vw, 20px);
    padding-left: 1.5rem;
    font-size: 2.2rem;
  }
  .hD:not(:first-of-type) {
    margin-top: 4rem;
  }
  .hE {
    margin-bottom: 2rem;
    padding-left: 2.5rem;
    font-size: 2rem;
  }
  .hE:not(:first-of-type) {
    margin-top: 3.6rem;
  }
  .hE::before {
    top: 0.7rem;
    width: 1.5rem;
    height: 1.5rem;
  }
  .l-main__inner p {
    margin-bottom: 2rem;
  }
  .l-main__inner a.linkArrow {
    min-width: 32rem;
    min-height: 5.5rem;
    padding: 1.3rem 5.4rem 1.2rem 3rem;
  }
  .l-main__inner a.linkArrow::after {
    right: 2rem;
  }
  .l-main__inner a:not(.linkArrow).linkExternal span::after {
    margin-top: 0.2rem;
  }
  .l-main__inner a.linkArrow.linkExternal {
    padding-right: 4.8rem;
  }
  .l-main__inner ul:not(.acsDirection), .l-main__inner ol, .l-main__inner dl {
    margin-bottom: 5rem;
  }
  .l-main__inner ul:not(.acsDirection) li:not(:first-of-type), .l-main__inner ol li:not(:first-of-type) {
    margin-top: 0.4rem;
  }
  .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;
  }
  .listCheck:not(#_) li {
    padding-left: 2.4rem;
  }
  dl.listData dt {
    margin-bottom: 1.5rem;
  }
  dl.listData dd {
    padding-left: 2rem;
  }
  .decBox {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 3rem 3rem 1rem;
    border-radius: 1rem;
  }
  .decBox .hD {
    margin-bottom: 2rem;
  }
  .tblA, .tblB, .tblC, .tblD, .tblE {
    margin-bottom: 2rem;
  }
  .tblA th, .tblB th, .tblC th, .tblD th, .tblE th {
    padding: 1.4rem 1.9rem;
    border-top: none;
  }
  .tblA tr:last-of-type th, .tblB tr:last-of-type th, .tblE tr:last-of-type th {
    border-bottom: none;
  }
  .tblA td, .tblB td, .tblC td, .tblD td, .tblE td {
    padding: 1.4rem 1.9rem;
    border-top: none;
  }
  .tblA td:last-of-type, .tblB td:last-of-type, .tblC td:last-of-type, .tblD td:last-of-type, .tblE td:last-of-type {
    border-right: none;
  }
  .tblA tr:first-of-type td, .tblB tr:first-of-type td, .tblC tr:first-of-type td, .tblD tr:first-of-type td, .tblE tr:first-of-type td {
    border-top: solid 1px rgba(105, 75, 50, 0.2);
  }
  .tblB td.inrTblB table th {
    border-right: solid 1px #fff !important;
    border-bottom: solid 1px #fff !important;
  }
  .tblC th {
    padding: 1.2rem 0.8rem 1rem;
  }
  .tblC th:last-of-type {
    border-right: none;
  }
  .tblC td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .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;
  }
  .tblE td {
    padding: 1.6rem 1rem;
  }
  .floatBox .floatL {
    margin-right: 5.5rem;
  }
  .stpBox {
    margin-bottom: 6rem;
    gap: 6rem;
  }
  .stpBox::after {
    bottom: -6rem;
    left: 16.5rem;
    height: 100%;
  }
  .stpBox.stpNoImg::after {
    position: absolute;
    bottom: -6rem;
    left: 16.5rem;
    width: 1px;
    height: 6rem;
    background-color: #25af13;
    content: "";
  }
  .stpBox.stpNoImg:last-child::after {
    display: none;
  }
  .stpContent > h3 {
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
  .stpContent > h3::before {
    width: 8rem;
    height: 8rem;
    font-size: 1.6rem;
  }
  .stpContent > h3::after {
    top: 1rem;
    width: 8rem;
    height: 8rem;
    font-size: 4.5rem;
  }
  .stpImg {
    width: 33rem;
  }
  .stpImg::before {
    top: 1rem;
    left: 1rem;
  }
  .stpBox .stpContent {
    flex: 1;
  }
  .stpBox .decBox {
    margin-top: 2.4rem;
    margin-bottom: 2.4rem;
  }
  .stpBox > .decBox {
    margin-top: -2rem;
  }
}
@media not all and (min-width: 768px) {
  html {
    font-size: 2.6666vw;
  }
  .l-header {
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 5.4rem;
    background-color: #fff;
  }
  .l-header__inner {
    width: 100%;
  }
  .l-header__logoImage {
    width: 5.4rem;
  }
  .l-header__logoText {
    font-size: 2.2rem;
  }
  .l-header__spMenu {
    z-index: 1001;
    position: fixed;
    top: 0;
    right: 0;
  }
  .l-header__naviButton {
    display: block;
    position: relative;
    width: 5.4rem;
    height: 5.4rem;
    border: none;
    background-color: #25af13;
    cursor: pointer;
  }
  .l-hamburgerMenu__bar, .l-hamburgerMenu__bar::before, .l-hamburgerMenu__bar::after {
    position: absolute;
    right: 0;
    left: 0;
    width: 2.8rem;
    height: 0.2rem;
    margin: auto;
    background-color: #fff;
    transition: transform 0.25s;
  }
  .l-hamburgerMenu__bar::before, .l-hamburgerMenu__bar::after {
    content: "";
  }
  .l-hamburgerMenu__bar {
    top: 2.6rem;
  }
  .l-hamburgerMenu__bar::before {
    top: 0.8rem;
  }
  .l-hamburgerMenu__bar::after {
    bottom: 0.8rem;
  }
  .u-hamburgerMenu__animated .l-hamburgerMenu__bar {
    background-color: transparent;
  }
  .u-hamburgerMenu__animated .l-hamburgerMenu__bar::before {
    top: 0;
    width: 2.4rem;
    transform: rotate(45deg);
  }
  .u-hamburgerMenu__animated .l-hamburgerMenu__bar::after {
    top: 0;
    bottom: auto;
    width: 2.4rem;
    transform: rotate(-45deg);
  }
  .l-header__naviWrapper {
    z-index: 1000;
    position: fixed;
    top: 5.4rem;
    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;
  }
  @supports (-webkit-touch-callout: none) {
    .l-header__naviWrapperInner {
      /* Safari用のハック */
      height: -webkit-fill-available;
    }
  }
  .l-header__navi {
    margin-top: 2.4rem;
  }
  .l-header__naviItem {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  .l-header__naviItem:last-of-type::after {
    display: block;
    width: 1px;
    height: 12rem;
    content: "";
  }
  .l-header__naviItem > a {
    padding: 1.8rem 0 1.9rem;
    border-bottom: 1px solid #dedede;
    font-size: 1.8rem;
  }
  .l-header__naviItem.is-have-subMenu > a {
    border-bottom: none;
  }
  .l-header__naviItem.current > a {
    text-underline-offset: 0.3rem;
  }
  .l-header__subMenu {
    display: block;
  }
  .l-header__subMenuList {
    padding: 1rem 2rem 0.8rem;
    border-bottom: solid 1px #dedede;
    background-color: #f4f0ea;
  }
  .l-header__subMenu li a {
    padding: 0.5rem 1.7rem 0.5rem 0;
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .l-footer__infoWrapper {
    flex-direction: column;
    padding-top: 6.1rem;
    padding-bottom: 6.2rem;
    gap: 2.8rem;
  }
  .l-footer__logo {
    margin-bottom: 2rem;
  }
  .l-footer__logo a {
    grid-column-gap: 1rem;
    grid-row-gap: 2rem;
    grid-template-rows: 5.4rem auto;
    grid-template-columns: 5.4rem auto;
    align-items: center;
  }
  .l-footer__logoImage {
    grid-area: 1/1/2/2;
  }
  .l-footer__logo img {
    width: 5.4rem;
  }
  .l-footer__logoTitle {
    grid-area: 1/2/2/3;
    font-size: 2.2rem;
  }
  .l-footer__logoText {
    grid-area: 2/1/3/3;
  }
  .l-footer__address {
    margin-top: 2rem;
  }
  .l-footer__tel {
    margin-top: 0.8rem;
  }
  div.cal_wrapper {
    padding: 2.7rem 0 1rem;
  }
  div.cal_wrapper::before {
    top: 6.4rem;
  }
  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.4rem;
    width: 1.4rem;
    height: 1.4rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(1) {
    padding-left: 1.8rem;
  }
  div.cal_wrapper table.cal tr th div.cal_ui input:nth-of-type(3) {
    padding-right: 1.8rem;
  }
  div.cal_wrapper table.cal tr.headline td {
    padding: 0.4rem 0.2rem 0.9rem;
  }
  .l-footer__map iframe {
    height: 35rem;
  }
  .l-footer__copyright {
    padding: 1.8rem 0 6rem;
  }
  .l-footer__copyright small {
    line-height: 1.79;
  }
  .l-footer__buttonWrapper {
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .l-footer__buttonItem {
    width: 50%;
  }
  .l-footer__buttonItem a {
    justify-content: center;
    width: 100%;
    height: 4.5rem;
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
  .l-footer__buttonItem.--tel a {
    padding-bottom: 0.2rem;
    border: solid 2px #25af13;
    border-left: none;
  }
  .l-footer__buttonItem.--tel .c-telBox {
    gap: 0.3rem;
  }
  .l-footer__buttonItem.--tel .c-telBox::before {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.7rem;
    margin-bottom: 0;
    margin-right: 0 !important;
  }
  .l-footer__buttonItem.--tel .c-telBox__number {
    font-size: 2.6rem;
  }
  .l-footer__buttonItem.--reservation a {
    padding-right: 2.6rem;
    background: #25af13 url("../../img/common/arrow01_white02.svg") no-repeat right 1.3rem top 2rem/1.6rem auto;
    color: #fcfeb8;
  }
  .l-footer__pageTop {
    right: 2rem;
  }
  .l-container::before {
    background-image: url("../../img/common/bg_body01_sp.png");
  }
  .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: 29.5rem;
    min-height: 5.5rem;
    padding: 1.3rem 5.4rem 1.2rem 3rem;
  }
  .c-button01::after {
    right: 2rem;
  }
  .c-iconBox__imageWrapper {
    width: 10rem;
    height: 10rem;
  }
  .c-iconBox__image {
    width: 6rem;
  }
  .c-iconBox__textWrapper {
    margin-top: 1rem;
  }
  .c-iconBox__title {
    gap: 0.8rem;
    letter-spacing: 0.05em;
  }
  .c-iconBox__title::after {
    width: 1.5rem;
    height: 1.5rem;
    margin-top: 0.1rem;
    background-size: 1rem auto;
  }
  .c-iconBox__text {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  .c-telBox__number {
    letter-spacing: 0.06em;
  }
  .c-hours__wrapper {
    padding: 0.3rem 0 0.4rem;
  }
  .c-hours__table thead th {
    padding: 0.6rem 0.5rem;
    font-size: 1.5rem;
  }
  .c-hours__table thead th:last-of-type {
    padding-right: 0.8rem;
  }
  .c-hours__table thead th.title {
    padding-left: 1rem;
    letter-spacing: 0.06em;
  }
  .c-hours__table tbody td {
    padding: 0.7rem 0.8rem 0.9rem;
    font-size: 1.5rem;
  }
  .c-hours__table tbody td:last-of-type {
    padding-right: 1.2rem;
  }
  .c-hours__table tbody td.hour {
    padding-right: 0;
    padding-left: 0.2rem;
  }
  .c-hours__table tbody td.hour .--small {
    font-size: 1.3rem;
  }
  .c-footerRecruitWrapper {
    padding-bottom: 10.7rem;
  }
  .c-footerRecruit {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  .c-footerRecruit::before {
    top: 1rem;
    left: 1rem;
  }
  .c-footerRecruit__inner {
    padding: 3rem 2rem;
    background-image: url("../../img/common/bg_recruit01_sp.jpg");
  }
  .c-footerRecruit__text {
    margin-top: 2.2rem;
  }
  .c-footerRecruit__buttonWrapper {
    width: 100%;
    margin-top: 2.9rem;
    gap: 1.5rem 1rem;
  }
  .c-footerRecruit__button {
    width: calc((100% - 1rem) / 2);
    padding: 0.4rem 3.2rem 0.4rem 1.6rem;
    font-size: 1.8rem;
    line-height: 1.1;
  }
  .c-footerRecruit__button::after {
    right: 1.2rem;
  }
  .c-contentBlock01 {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .c-topHeading01 {
    padding-top: 1.8rem;
    font-size: 2.8rem;
  }
  .c-topHeading02 {
    font-size: 2.4rem;
    line-height: 1.7;
  }
  .c-topHeading03 {
    width: 29.5rem;
    padding: 1.1rem 1.6rem;
    font-size: 2.5rem;
    line-height: 1.44;
  }
  .c-topHeading03::before {
    top: -1.1rem;
    left: -2rem;
    width: 7.4rem;
    height: 2.3rem;
  }
  .c-topHeading03::after {
    right: -2rem;
    bottom: -1.1rem;
    width: 7.4rem;
    height: 2.2rem;
  }
  .c-topHeading03__inner::before, .c-topHeading03__inner::after {
    width: 2rem;
  }
  .c-topHeading03__inner::before {
    left: -2rem;
  }
  .c-topHeading03__inner::after {
    right: -2rem;
  }
  .c-breadCrumb {
    order: 1;
    margin-bottom: 2rem;
    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 {
    right: -1.2rem;
  }
  .c-localNav {
    order: 3;
    margin-top: 2.4rem;
    margin-right: -2rem;
    margin-left: -2rem;
    border-top: 1px solid #699563;
    border-bottom: 1px solid #699563;
  }
  .c-localNav__list {
    flex-direction: column;
    overflow: hidden;
  }
  .c-localNav__item:not(#_) a {
    position: relative;
    min-height: 5rem;
    padding: 0.8rem 4rem 0.8rem 2rem;
    background-color: #fff;
    text-align: left;
  }
  .c-localNav__item:not(#_) a::before {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    width: 1.5rem;
    height: 0.5rem;
    transform: translateY(-50%);
    background: url("../../img/common/arrow01_green.svg") no-repeat center/cover;
    content: "";
  }
  .c-localNav__item:not(#_):not(:first-of-type) a {
    border-top: 1px solid #699563;
  }
  .c-localNav__item:not(#_).current a::before {
    background-image: url("../../img/common/arrow01_white01.svg");
  }
  .p-mainVisual {
    min-height: 71.1rem;
    margin-top: 5.4rem;
  }
  .p-mainVisual::after {
    top: 0;
    height: 100%;
  }
  .p-mainVisual__slideWrapper.--mv01 {
    top: 0;
    left: 0;
    width: 32.1rem;
    height: 18.5rem;
  }
  .p-mainVisual__slideWrapper.--mv02 {
    top: 36.7rem;
    right: 0;
    width: 35.4rem;
    height: 21.9rem;
  }
  .p-mainVisual__textWrapper {
    top: 20.6rem;
    left: 2rem;
  }
  .p-mainVisual__title {
    font-size: 2.8rem;
    line-height: 1.66;
  }
  .p-mainVisual__hoursWrapper {
    left: 0;
    width: calc(100% - 2rem);
    padding-right: 0.8rem;
  }
  .p-mainVisual__bg.--01 {
    top: 14rem;
    right: -6.3rem;
    width: 17.6rem;
    height: 17.9rem;
  }
  .pointWrap {
    margin-top: 6.3rem;
  }
  .pointWrap h2 {
    margin-bottom: 3rem;
    padding-top: 1.8rem;
    font-size: 2.8rem;
  }
  .point {
    margin-right: 2rem;
    margin-left: 2rem;
    padding: 3rem 2rem 1.8rem;
  }
  .point:not(:first-of-type) {
    padding-top: 4.4rem;
  }
  .point:not(:first-of-type)::before {
    top: 1.6rem;
    width: 29.5rem;
  }
  .point h3 {
    margin-bottom: 1.8rem;
  }
  .point h3:not(:first-of-type) {
    margin-top: 2.8rem;
    padding-top: 2.8rem;
  }
  .point h3:not(:first-of-type)::before {
    width: 29.5rem;
  }
  .point p {
    margin-bottom: 1.2rem;
  }
  .p-topMessage {
    padding-top: 11.5rem;
  }
  .p-topMessage::before {
    top: 0;
    left: -0.4rem;
    width: 17.9rem;
    height: 12.9rem;
    background: url("../../img/top/bg_message01_sp.png") no-repeat center/cover;
  }
  .p-topMessage::after {
    right: -0.8rem;
    bottom: 34.2rem;
    width: 17.1rem;
    height: 10.3rem;
    background: url("../../img/top/bg_message02_sp.png") no-repeat center/cover;
  }
  .p-topMessage__boxWrapper {
    flex-direction: column;
    gap: 3rem;
  }
  .p-topMessage__heading {
    margin-bottom: 3rem;
    font-size: 2.5rem;
    line-height: 1.6;
  }
  .p-topMessage__image {
    width: 18.7rem;
    height: 23.8rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-topMessage__image::before {
    top: 0.9rem;
    left: 0.9rem;
  }
  .p-topMessage__imageCaption {
    bottom: -2.8rem;
    left: 2.6rem;
    width: 14.9rem;
    height: 4.2rem;
  }
  .p-topMessage__imageCaption::after {
    top: 0.4rem;
    left: 0.4rem;
  }
  .p-topMessage__buttonWrapper {
    flex-direction: column;
    margin-top: 9rem;
    padding: 3rem 2rem;
    gap: 1.5rem;
    border-radius: 2rem;
  }
  .p-topMessage__telWrapper {
    margin-bottom: 1rem;
  }
  .p-topMedical {
    padding-top: 8rem;
    padding-bottom: 9.5rem;
  }
  .p-topMedical__heading {
    margin-bottom: 5rem;
  }
  .p-topMedical__boxWrapper {
    gap: 3rem 1.9rem;
  }
  .p-topMedical__box {
    width: calc((100% - 1.9rem) / 2);
  }
  .p-topReason {
    padding-top: 13rem;
    border-radius: 2rem;
  }
  .p-topReason__heading {
    top: -0.4rem;
  }
  .p-topReason__boxWrapper {
    padding-bottom: 3rem;
  }
  .p-topReason__image {
    width: 25.5rem;
    margin-bottom: 2rem;
  }
  .p-topReason__title {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 2.3rem;
    line-height: 1.52;
    text-align: center;
  }
  .p-topReason__title::before {
    width: 6rem;
    height: 8rem;
    margin-left: 1.7rem;
  }
  .p-topReason__title::after {
    top: -1.5rem;
    right: 0;
    left: 0;
    margin: auto;
    margin-right: 2.3rem;
    font-size: 8.5rem;
  }
  .p-topWorry {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }
  .p-topWorry__heading {
    margin-bottom: 3rem;
    font-size: 2.8rem;
  }
  .p-topWorry__boxWrapper {
    gap: 2rem;
  }
  .p-topWorry__box {
    width: 100%;
  }
  .p-topWorry__box.--01 {
    flex-direction: column;
    padding: 3rem 2rem;
  }
  .p-topWorry__box.--02 {
    padding: 3rem 2rem 2rem;
  }
  .p-topWorry__title {
    margin-right: auto;
    margin-bottom: 2rem;
    margin-left: auto;
    font-size: 2.2rem;
  }
  .p-topWorry__title.--brownLine {
    background: linear-gradient(transparent 55%, rgba(174, 134, 96, 0.2) 0%);
  }
  .p-topWorry__title.--greenLine {
    background: linear-gradient(transparent 55%, rgba(37, 175, 19, 0.1) 0%);
  }
  .p-topWorry__listItem {
    margin-right: -0.8rem;
    padding-left: 2.5rem;
    letter-spacing: 0.05em;
  }
  .p-topWorry__listItem::before {
    top: 0.5rem;
  }
  .p-topWorry__box.--01 .p-topWorry__iconWrapper {
    margin-top: 3.2rem;
    gap: 5.5rem;
  }
  .p-topWorry__box.--02 .p-topWorry__iconWrapper {
    margin-top: 2.1rem;
  }
  .p-topMedical__boxInner .c-iconBox__title {
    font-size: 1.4rem;
  }
  .p-topView::before {
    height: 8.7rem;
  }
  .p-topView__scroll {
    gap: 1.7rem;
  }
  .p-topViewList {
    gap: 1.7rem;
  }
  .p-topViewListItem {
    width: 26.1rem;
    height: 17.4rem;
  }
  .p-topNews {
    padding-top: 7.5rem;
    padding-bottom: 6rem;
  }
  .p-topNews__heading {
    margin-bottom: 3rem;
  }
  .p-topNewsList {
    border-bottom: solid 1px #dedede;
  }
  .p-topNewsList dt {
    padding-top: 2rem;
    padding-bottom: 1rem;
    border-top: solid 1px #dedede;
  }
  .p-topNewsList dd {
    padding-bottom: 2rem;
  }
  .p-topNewsList dd.continuous {
    margin-top: -1rem;
  }
  .p-topNews__button {
    margin-top: 3rem;
    margin-right: auto;
    margin-left: auto;
  }
  .p-visual {
    margin-top: 5.4rem;
  }
  .p-visual__title {
    padding: 2.4rem 1.5rem;
    font-size: 2.2rem;
  }
  .p-visual__image {
    height: 14rem;
  }
  .hA {
    margin-bottom: 2rem;
    padding-bottom: 0.3rem;
    font-size: 2.2rem;
  }
  .hA:not(:first-of-type) {
    margin-top: 8rem;
  }
  .hB {
    margin-bottom: 2rem;
    padding: 0.8rem 1.5rem;
    font-size: 4.6vw;
  }
  .hB:not(:first-of-type) {
    margin-top: 4rem;
  }
  .hC {
    margin-bottom: 2rem;
    padding: 0 1.5rem 0.5rem;
    font-size: 4.4vw;
  }
  .hC:not(:first-of-type) {
    margin-top: 3.2rem;
  }
  .hD {
    margin-bottom: 1.5rem;
    padding-left: 1rem;
    font-size: 1.8rem;
  }
  .hD:not(:first-of-type) {
    margin-top: 2.4rem;
  }
  .hE {
    margin-bottom: 2rem;
    padding-left: 2rem;
    font-size: 1.8rem;
  }
  .hE:not(:first-of-type) {
    margin-top: 2rem;
  }
  .hE::before {
    top: 0.8rem;
    width: 1.2rem;
    height: 1.2rem;
  }
  .telLink {
    letter-spacing: 0.06em;
  }
  .l-main__inner a.linkArrow {
    width: 100%;
    /*    min-height: 5.5rem;
*/ padding: 1.3rem 5.4rem 1.2rem 3rem;
    font-size: 4vw;
  }
  .l-main__inner a.linkArrow::after {
    right: 2rem;
  }
  .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: 2rem;
  }
  .l-main__inner ul:not(.acsDirection) li:not(:first-of-type), .l-main__inner ol li:not(:first-of-type) {
    margin-top: 0.6rem;
  }
  .l-main__inner ul.col2.flexNoWrap li:first-child, .l-main__inner ul.col2.flexNoWrap li:nth-child(2) {
    margin-top: 0;
  }
  .listCheck:not(#_) li {
    padding-left: 2.2rem;
  }
  dl.listData dt {
    margin-bottom: 0.8rem;
  }
  dl.listData dd {
    padding-left: 1.5rem;
  }
  .decBox {
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 1.5rem 0.8rem;
    border-radius: 0.6rem;
  }
  .decBox .hD {
    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;
    border-top: solid 1px #699563;
  }
  .tblA tr:last-of-type th, .tblB tr:last-of-type th, .tblE tr:last-of-type th {
    border-bottom: solid 1px #699563;
  }
  .tblA td, .tblB td, .tblC td, .tblD td, .tblE td {
    padding: 0.8rem;
    border-top: solid 1px rgba(105, 75, 50, 0.2);
  }
  .tblA tr:last-of-type td, .tblB tr:last-of-type td, .tblE tr:last-of-type td {
    border-bottom: solid 1px rgba(105, 75, 50, 0.2) !important;
  }
  .tblA:not(.tblVertical) td:last-of-type {
    border-right: none;
  }
  .tblA.tblVertical th, .tblA.tblVertical td {
    border-right: none;
  }
  .tblA.tblVertical th {
    border-top: solid 1px #25af13;
  }
  .tblA.tblVertical tr:first-of-type th:first-of-type {
    border-top: none;
  }
  .tblB tr th {
    border-top: solid 1px #25af13;
    border-right: none;
    border-bottom: dotted 1px #25af13 !important;
  }
  .tblB tr:first-of-type th:first-of-type {
    border-top: none;
  }
  .tblB tr td {
    border-right: none;
  }
  .tblB td.inrTblB table th {
    background-color: #699563;
    color: #fff;
  }
  .tblC {
    border-top: solid 1px rgba(105, 75, 50, 0.2);
  }
  .tblC td {
    border-left: solid 1px #fff !important;
  }
  .tblC tbody tr:first-child td {
    border-right: solid 1px rgba(105, 75, 50, 0.2);
    border-bottom: solid 1px rgba(105, 75, 50, 0.2);
  }
  .tblC tbody tr:last-of-type td {
    border-right: none;
  }
  .tblD td {
    padding: 0;
    border-right: none;
  }
  .tblD td:before {
    padding: 0.8rem 0.8rem;
    background-color: #699563;
    color: #fff;
  }
  .tblD td:last-child {
    border-bottom: solid 1px rgba(105, 75, 50, 0.2) !important;
  }
  .tblD td span {
    padding: 0.8rem 0.8rem;
  }
  .tblD td:first-of-type {
    padding: 0.8rem 0.8rem;
    border-bottom: none;
  }
  .tbl-scroll {
    position: relative;
    margin-bottom: 2.5vw;
  }
  .tbl-scroll .tblE {
    margin-bottom: 0;
    overflow: visible;
    border: none;
    border-radius: 0;
  }
  .tblE td {
    border-left: none;
  }
  .tblE td:last-of-type {
    border-right: none;
  }
  .stpBox {
    margin-bottom: 6rem;
    gap: 1.6rem;
  }
  .stpBox::after {
    right: 0;
    bottom: -5.5rem;
    left: 0;
    height: 5rem;
    margin: auto;
  }
  .stpContent > h3 {
    min-height: 6.4rem;
    margin-bottom: 1.6rem;
    padding-left: 7.2rem;
    font-size: 2rem;
  }
  .stpContent > h3::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 6.4rem;
    height: 6.4rem;
    font-size: 1.2rem;
  }
  .stpContent > h3::after {
    top: 0.8rem;
    width: 6.4rem;
    height: 6.4rem;
    font-size: 3.6rem;
  }
  .stpImg {
    order: 3;
    margin-top: 0;
  }
  .stpImg::before {
    top: 0.6rem;
    left: 0.6rem;
  }
  .stpBox .stpContent {
    order: 1;
  }
  .stpBox .decBox {
    order: 1;
    margin-top: 2.4rem;
  }
  .stpBox > .decBox {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 1600px) {
  html {
    font-size: 0.625vw;
  }
}
@media (min-width: 768px) {
  table.schedule td br {
    display: none;
  }
  table.schedule th br.sp_br {
    display: none !important;
  }
}
@media (min-width: 1600px) {
  .p-topReason {
    max-width: 152rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (hover: none) {
  .c-link:active {
    opacity: 0.7;
  }
  .c-link--bright:active {
    filter: brightness(1.1);
  }
}