@charset "UTF-8";
/************************************
** 変数
************************************/
@font-face {
  font-family: "Noto Sans Japanese";
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans Japanese";
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-weight: 400;
  src: url("../font/NotoSerifJP-Regular.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-weight: 500;
  src: url("../font/NotoSerifJP-Medium.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Noto Serif Japanese";
  font-weight: 700;
  src: url("../font/NotoSerifJP-Bold.woff2") format("woff2");
  font-display: swap;
}
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/************************************
** サイト共通
************************************/
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  line-height: 170%;
  color: #5A431B;
  text-align: justify;
  letter-spacing: 0.04em;
}

p {
  margin-bottom: 1.5rem;
}

a {
  text-decoration: none;
  transition: all 0.3s;
}
a:hover {
  color: #6c006c;
  opacity: 0.8;
}

h1 {
  font-size: 2.25rem;
  line-height: 140%;
}
@media (width <= 992px) {
  h1 {
    font-size: 2rem;
    line-height: 150%;
  }
}

h2 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 150%;
}
@media (width <= 992px) {
  h2 {
    font-size: 1.625rem;
  }
}

h3 {
  font-size: 1.75rem;
  line-height: 150%;
}
@media (width <= 992px) {
  h3 {
    font-size: 1.375rem;
  }
}

h4 {
  font-size: 1.5rem;
  line-height: 150%;
}
@media (width <= 992px) {
  h4 {
    font-size: 1.25rem;
  }
}

li::marker {
  color: #128E7A;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

@media (width <= 992px) {
  .scroll_table {
    overflow-x: scroll;
    white-space: nowrap;
  }
}

.display_none {
  display: none;
}

.align_right {
  text-align: right;
}

.align_left {
  text-align: justify;
}

.align_center {
  text-align: center;
}

.mt10 {
  margin-top: 0.625rem;
}

.mt20 {
  margin-top: 1.25rem;
}

.mt30 {
  margin-top: 1.875rem;
}

.mb10 {
  margin-bottom: 0.625rem;
}

.mb20 {
  margin-bottom: 1.25rem;
}

@media (width <= 992px) {
  .m_br::after {
    white-space: pre;
    content: "\a";
  }
}

/************************************
** ボタン
************************************/
.btn,
.btn_group,
.btn_solid,
.btn_orange {
  position: relative;
  display: inline-block;
  justify-content: space-between;
  padding: 0.625rem 2.5rem 0.625rem 1.25rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  vertical-align: middle;
  background-image: linear-gradient(to bottom, #D5E5E6, #128E7A 70%);
  border-radius: 6px;
}
.btn::after,
.btn_group::after,
.btn_solid::after,
.btn_orange::after {
  position: absolute;
  top: calc(50% - 0.21875rem);
  right: 1.375rem;
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px white;
  border-right: solid 2px white;
  transition: all 0.2s;
  transform: rotate(45deg);
}
.btn:hover,
.btn_group:hover,
.btn_solid:hover,
.btn_orange:hover {
  color: white;
  filter: drop-shadow(0 2px 2px rgba(77, 77, 77, 0.25));
  opacity: 0.9;
}
.btn:hover::after,
.btn_group:hover::after,
.btn_solid:hover::after,
.btn_orange:hover::after {
  right: 1.125rem;
}

.btn_orange {
  background-image: linear-gradient(to bottom, #FCE2B7, #F57820 70%);
}

.btn_solid {
  color: #128E7A;
  background-color: white;
  background-image: none;
  border: solid 1px #128E7A;
}
.btn_solid::after {
  border-top: solid 2px #128E7A;
  border-right: solid 2px #128E7A;
}
.btn_solid:hover {
  color: #128E7A;
}

.btn_group {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #056152;
  text-align: center;
  background-color: white;
  background-image: none;
  filter: drop-shadow(0 0 4px rgba(77, 77, 77, 0.25));
  border: 0;
}
.btn_group::after {
  position: absolute;
  top: 1.875rem;
  left: calc(50% + 11.25rem);
  display: inline-block;
  width: 1.625rem;
  height: 0.25rem;
  content: "";
  background-image: url("../images/icon/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  transform: rotate(0deg);
}
.btn_group:hover {
  color: #128E7A;
  filter: drop-shadow(0 0 6px rgba(77, 77, 77, 0.15));
}
.btn_group:hover::after {
  left: calc(50% + 11.5625rem);
}
@media (width <= 992px) {
  .btn_group:hover::after {
    left: calc(50% + 9.0625rem);
  }
}
@media (width <= 992px) {
  .btn_group {
    font-size: 1rem;
  }
  .btn_group::after {
    left: calc(50% + 8.75rem);
  }
}

/************************************
** 電話ボタン・web問診・web予約
************************************/
.tel_btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 10rem;
  height: 2.1875rem;
  padding-left: 1.25rem;
  margin-inline: 0.3125rem;
  font-size: 1rem;
  font-weight: 500;
  color: #5A431B;
  background-color: #eeeaea;
  border-radius: 6px;
  transition: 0.3s;
}
.tel_btn::before {
  position: absolute;
  top: 0.4375rem;
  left: 0.3125rem;
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  content: "";
  background-image: url("../images/icon/phone.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.tel_btn:hover {
  color: #5A431B;
  opacity: 0.7;
}

.interview_btn,
.web_btn {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 11.25rem;
  height: 4.25rem;
  padding-left: 1.875rem;
  margin-inline: 0.3125rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  background-image: linear-gradient(to bottom, #D5E5E6, #128E7A 70%);
  border-radius: 6px;
  transition: 0.3s;
}
.interview_btn::before,
.web_btn::before {
  position: absolute;
  top: 1rem;
  left: 0.9375rem;
  display: inline-block;
  width: 2.25rem;
  height: 2.25rem;
  content: "";
  background-image: url("../images/icon/list.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.interview_btn:hover,
.web_btn:hover {
  color: white;
  opacity: 0.7;
}

.web_btn {
  min-width: 13.75rem;
  background-image: linear-gradient(to bottom, #FCE2B7, #F57820 70%);
}
.web_btn::before {
  background-image: url("../images/icon/calendar.svg");
}

/************************************
** 上に戻るボタン
************************************/
.scroll_top {
  position: fixed;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 100;
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  padding: 0.625rem;
  background-color: #128E7A;
  border: solid 2px white;
  border-radius: 8px;
  opacity: 0;
}
@media (width <= 992px) {
  .scroll_top {
    right: 0.3125rem;
    bottom: 3.125rem;
    scale: 70%;
  }
}
.scroll_top::after {
  position: absolute;
  top: calc(50% - 0.1875rem);
  right: calc(50% - 0.28125rem);
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  content: "";
  border-top: solid 2px white;
  border-right: 0;
  border-left: solid 2px white;
  transition: all 0.2s;
  transform: rotate(45deg);
}
.scroll_top:hover {
  opacity: 0.9;
}
.scroll_top:hover::after {
  top: calc(50% - 0.5rem);
}

/************************************
** モバイル時下部固定ボタン
************************************/
.footer_fix_mobile {
  display: none;
}
@media (width <= 992px) {
  .footer_fix_mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(3, auto);
  }
}
.footer_fix_mobile a {
  display: inline-block;
  justify-content: space-between;
  width: 33.3vw;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
}
.footer_fix_mobile a::before {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  vertical-align: -0.4375rem;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
}
.footer_fix_mobile .footer_fix_tel {
  background-image: linear-gradient(to bottom, #e0dede, #858585 70%);
  border-right: 1px solid white;
}
.footer_fix_mobile .footer_fix_tel::before {
  background-image: url("../images/icon/phone-w.svg");
}
.footer_fix_mobile .footer_fix_interview {
  background-image: linear-gradient(to bottom, #D5E5E6, #128E7A 70%);
  border-left: 1px solid white;
}
.footer_fix_mobile .footer_fix_interview::before {
  margin-right: 0.3125rem;
  background-image: url("../images/icon/list.svg");
}
.footer_fix_mobile .footer_fix_web {
  background-image: linear-gradient(to bottom, #FCE2B7, #F57820 70%);
  border-right: 1px solid white;
  border-left: 1px solid white;
}
.footer_fix_mobile .footer_fix_web::before {
  margin-right: 0.3125rem;
  background-image: url("../images/icon/calendar.svg");
}

/************************************
** テーブル
************************************/
.wp-block-table th {
  font-weight: 500;
  background-color: #e5e0d7;
  border: solid 1px #D5E6E3 !important;
}
.wp-block-table td {
  background-color: white;
  border: solid 1px #D5E6E3 !important;
}

/************************************
** 診療時間
************************************/
.info_hours_section {
  margin-bottom: 3.125rem;
}

.info_hours {
  max-width: 62.5rem;
  padding: 0;
  margin: 0 auto 1.25rem;
  overflow: hidden;
  text-align: center;
}
.info_hours table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: collapse;
}
.info_hours tbody tr th,
.info_hours tbody tr td {
  padding: 0.625rem 0;
  font-weight: 400;
  border: 0;
  border-bottom: solid 1px #D5E6E3;
}
.info_hours tbody tr:first-child th {
  width: 30%;
}
.info_hours tbody tr:last-child th,
.info_hours tbody tr:last-child td {
  border: 0;
}

/************************************
** マップ
************************************/
.info_map iframe {
  margin-bottom: 1.25rem;
}
.info_map table {
  position: relative;
  display: flex;
}
.info_map table th {
  width: 6.25rem;
  padding-left: 0.9375rem;
  font-weight: 400;
  vertical-align: top;
}
.info_map table::before {
  position: absolute;
  display: inline-block;
  width: 0.1875rem;
  height: 100%;
  content: "";
  background-color: #128E7A;
  border-radius: 2.5px;
}

/*********************************
* タイムライン
https://ponhiro.com/timeline-wordpress/
*********************************/
.ptimeline-wrap {
  margin: 0 auto 2rem;
}

.ptimeline-wrap .ptimeline {
  padding: 0 !important;
  list-style: none !important;
}

.ptimeline-wrap .ptimeline-label {
  padding: 3px 0 0 2px;
  font-size: 12px;
  font-weight: 500;
  color: #444444;
}

.ptimeline-wrap .ptimeline-title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.5;
  color: #056152;
}

.ptimeline-wrap .ptimeline-main {
  padding: 0 0 1.5em;
  margin-top: 0.5em;
  font-size: 1rem;
  line-height: 1.8;
  color: #5A431B;
  border-bottom: dashed 1px #DFDFDF;
}

.ptimeline-wrap .ptimeline-main img {
  display: block;
  margin: 1em auto;
}

.ptimeline-wrap .ptimeline-item {
  position: relative;
  padding: 0 0 1em 1.5em !important;
  margin-bottom: 0 !important;
  border: none;
}

.ptimeline-wrap .ptimeline .ptimeline-item::before {
  position: absolute;
  top: 25px;
  bottom: -3px;
  left: 5px;
  display: block;
  width: 3px;
  content: "";
  background: #D5E6E3 !important;
}

.ptimeline-wrap .ptimeline-item:last-child::before {
  content: none;
}

/*********************************
* タイムライン マーカー
*********************************/
.ptimeline-wrap .ptimeline-marker {
  position: absolute;
  top: 6px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  border: solid 3px #056152;
  border-radius: 50%;
}

.ptimeline-wrap .ptimeline-item:first-child .ptimeline-marker,
.ptimeline-wrap .ptimeline-item:last-child .ptimeline-marker {
  background: #056152;
}

/* 四角 */
.ptimeline-wrap .square .ptimeline-marker {
  border-radius: 0;
}

/* アイコン */
.ptimeline-wrap .icon .ptimeline-item .ptimeline-marker {
  content: unset;
  background: none !important;
  border: none !important;
}

.ptimeline-wrap .icon .ptimeline-item .ptimeline-marker::before {
  position: absolute;
  top: -1px;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  color: #056152;
}

.ptimeline-wrap .icon .ptimeline-item:first-child .ptimeline-marker,
.ptimeline-wrap .icon .ptimeline-item:last-child .ptimeline-marker {
  background: none !important;
}

/* 画像 */
.ptimeline-wrap .tl-img .ptimeline-item .ptimeline-marker {
  content: unset;
  background: none !important;
  border: none !important;
}

.ptimeline-wrap .tl-img .ptimeline-item .ptimeline-marker::before {
  position: relative;
  top: -4px;
  left: -2px;
  display: inline-block;
  width: 40px;
  height: 40px;
  content: "";
  background-image: url("ここに画像URL"); /* 画像1番目 */
  background-repeat: no-repeat;
  background-size: contain;
}

.ptimeline-wrap .tl-img li:nth-of-type(2) > .ptimeline-marker::before {
  background-image: url("ここに画像URL") !important; /* 画像2番目 */
}

.ptimeline-wrap .tl-img li:nth-of-type(3) > .ptimeline-marker::before {
  background-image: url("ここに画像URL") !important; /* 画像3番目 */
}

.ptimeline-wrap .tl-img li:nth-of-type(4) > .ptimeline-marker::before {
  background-image: url("ここに画像URL") !important; /* 画像4番目 */
}

.ptimeline-wrap .tl-img li:nth-of-type(5) > .ptimeline-marker::before {
  background-image: url("ここに画像URL") !important; /* 画像5番目 */
}

.ptimeline-wrap .tl-img .ptimeline-item {
  padding: 0 0 1em 3em !important;
}

.ptimeline-wrap .tl-img .ptimeline-item::before {
  top: 30px;
  left: 15px;
}

/************************************
** ヘッダー・ナビ
************************************/
header {
  height: 9.375rem;
  background-color: #FCFBFB;
}
@media (width <= 1260px) {
  header {
    justify-content: normal;
  }
}
@media (width <= 992px) {
  header {
    height: 3.75rem;
  }
}

.header_container {
  display: grid;
  grid-template-rows: 3.75rem 1fr;
  grid-template-columns: repeat(4, 1fr);
  padding: 0.625rem max((100vw - 1260px) / 2, 1.25rem);
}
@media (width <= 1260px) {
  .header_container {
    width: 100%;
  }
}
@media (width <= 992px) {
  .header_container {
    display: block;
  }
}
.header_container .header_logo {
  grid-row: 1/2;
  grid-column: 1/2;
}
.header_container .header_logo img {
  width: auto;
  max-width: 100%;
  height: 3.125rem;
  margin-top: 0.625rem;
  text-align: left;
}
@media (width <= 992px) {
  .header_container .header_logo img {
    height: 2.5rem;
    margin-top: 0;
  }
}
.header_container .nav_pc {
  position: relative;
  grid-row: 2/3;
  grid-column: 1/5;
  justify-self: center;
}
.header_container .nav_pc::before {
  position: absolute;
  top: 1.25rem;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 0.0625rem;
  content: "";
  border-top: solid 1px #DFDFDF;
}
@media (width <= 992px) {
  .header_container .nav_pc {
    display: none;
  }
}
.header_container .nav_pc .nav_first {
  display: flex;
  padding-left: 0;
  margin-top: 1.875rem;
}
.header_container .nav_pc .nav_first li {
  position: relative;
  padding: 0.125rem 1.5625rem;
  padding-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 500;
  list-style: none;
}
.header_container .nav_pc .nav_first li::after {
  position: absolute;
  top: 0.3125rem;
  right: 0;
  width: 0.0625rem;
  height: 1.625rem;
  content: "";
  border-right: solid 1px #DFDFDF;
}
.header_container .nav_pc .nav_first li:last-child::after {
  content: none;
}
.header_container .nav_pc .nav_first li a {
  color: #5A431B;
  text-decoration: none;
}
.header_container .nav_pc .nav_first li:has(.nav_second)::before {
  position: absolute;
  top: 1.875rem;
  left: calc(50% - 3px);
  width: 0.3125rem;
  height: 0.3125rem;
  content: "";
  border-top: solid 1px #128E7A;
  border-right: solid 1px #128E7A;
  transform: rotate(135deg);
}
.header_container .nav_pc .nav_first .nav_second {
  z-index: 9999;
  display: none;
}
.header_container .nav_pc .nav_first .nav_second.is_active {
  position: absolute;
  top: 3.125rem;
  left: 0;
  display: block;
  width: 15.625rem;
  padding: 0.625rem 0.3125rem;
  background-color: #FCFBFB;
}
.header_container .nav_pc .nav_first .nav_second.is_active li {
  padding: 0.625rem;
  border-right: 0;
}
.header_container .header_info {
  z-index: 0;
  display: flex;
  grid-row: 1/2;
  grid-column: 3/5;
  justify-content: flex-end;
}
.header_container .header_info p {
  margin-top: 0.3125rem;
  margin-bottom: 0;
  font-size: 0.6875rem;
  text-align: center;
}
@media (width <= 992px) {
  .header_container .header_info {
    display: none;
  }
}
.header_container .nav_sp_wrap {
  display: none;
}
@media (width <= 992px) {
  .header_container .nav_sp_wrap {
    display: block;
  }
}
.header_container .nav_sp_wrap .hamburger {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  justify-content: center;
  width: 3.75rem;
  height: 3.75rem;
  cursor: pointer;
  background-color: #128E7A;
  border: 0;
}
.header_container .nav_sp_wrap .hamburger .hamburger_bar,
.header_container .nav_sp_wrap .hamburger .hamburger_bar::before,
.header_container .nav_sp_wrap .hamburger .hamburger_bar::after {
  position: absolute;
  top: 1.25rem;
  display: block;
  width: 1.5625rem;
  height: 0.1875rem;
  content: "";
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s;
}
.header_container .nav_sp_wrap .hamburger .hamburger_bar::before {
  top: -0.5rem;
}
.header_container .nav_sp_wrap .hamburger .hamburger_bar::after {
  top: 0.5rem;
}
.header_container .nav_sp_wrap .hamburger .hamburger_label {
  position: relative;
  top: 0.9375rem;
  left: 0;
  font-size: 0.75rem;
  color: white;
  white-space: nowrap;
}
.header_container .nav_sp_wrap .nav_sp {
  position: fixed;
  top: 0;
  left: 100%;
  z-index: 9998;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  background-color: #FFF5EF;
  transition: all 0.5s;
}
.header_container .nav_sp_wrap .nav_sp ul {
  padding: 4.375rem 10vw 0;
}
.header_container .nav_sp_wrap .nav_sp ul li {
  list-style: none;
}
.header_container .nav_sp_wrap .nav_sp ul li a {
  position: relative;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding: 0.625rem;
  padding-left: 0.9375rem;
  font-size: 1rem;
  color: #5A431B;
  text-decoration: none;
}
.header_container .nav_sp_wrap .nav_sp ul li a::before {
  position: absolute;
  top: 1.25rem;
  left: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px #128E7A;
  border-right: solid 2px #128E7A;
  transform: rotate(45deg);
}
.header_container .nav_sp_wrap .nav_sp ul .nav_second {
  padding: 0 1.25rem;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours {
  padding: 1.25rem 0.625rem;
}
.header_container .nav_sp_wrap .nav_sp .nav_sp_info_hours ul {
  padding: 0;
  font-size: 0.875rem;
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar {
  background-color: rgba(255, 255, 255, 0);
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar::before {
  top: 0;
  transform: rotate(45deg);
}
.header_container .nav_sp_wrap:has(.is_active) .hamburger_bar::after {
  top: 0;
  transform: rotate(-45deg);
}
.header_container .nav_sp_wrap:has(.is_active) .nav_sp {
  left: 0;
}

/************************************
** ヒーロー
************************************/
.hero_section {
  position: relative;
}
.hero_section img {
  width: 100vw;
  height: 25rem;
  object-fit: cover;
  object-position: right 20%;
}
@media (width <= 992px) {
  .hero_section img {
    width: 100vw;
    object-position: right 20%;
  }
}
.hero_section .splide__pagination {
  display: none;
}
.hero_section .hero_content {
  position: absolute;
  top: 5rem;
  left: 6.25rem;
}
@media (width <= 992px) {
  .hero_section .hero_content {
    top: 1.25rem;
    left: 1.25rem;
  }
}
.hero_section .hero_content .hero_text_day {
  display: block;
  padding: 0.75rem;
  padding-bottom: 0;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text_day {
    padding: 0.3125rem 0.5625rem 0;
    font-size: 1rem;
  }
}
.hero_section .hero_content .hero_text {
  display: block;
  padding: 0.625rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 140%;
  text-shadow: 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 4px white, 0 0 8px white;
}
@media (width <= 992px) {
  .hero_section .hero_content .hero_text {
    padding: 0.3125rem;
    font-size: 1.5rem;
  }
}
.hero_section .hero_content2 {
  position: absolute;
  top: 15.625rem;
  left: 6.25rem;
}
@media (width <= 992px) {
  .hero_section .hero_content2 {
    top: 18.125rem;
    left: 1.25rem;
  }
}
.hero_section .hero_content2 .hero_text2 {
  display: inline-block;
  padding-top: 0.625rem;
  font-weight: 500;
  text-shadow: 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white, 0 0 3px white;
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 ul {
    padding-left: 1.5625rem;
  }
}
@media (width <= 992px) {
  .hero_section .hero_content2 .hero_text2 {
    padding: 0.3125rem;
    padding-right: 0.625rem;
    font-size: 1rem;
  }
}

/************************************
** フッター
************************************/
footer {
  padding: 3.125rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: #FCFBFB;
}
@media (width <= 992px) {
  footer {
    padding: 1.25rem 0.625rem;
  }
}
footer .grid_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
@media (width <= 992px) {
  footer .grid_container {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(6.25rem, auto);
  }
}
footer .grid_container .footer_logo {
  position: relative;
  grid-row: 1/2;
  grid-column: 1/2;
}
@media (width <= 992px) {
  footer .grid_container .footer_logo {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_logo img {
  position: relative;
  max-height: 9.375rem;
  margin-block: 3.125rem;
  margin-inline: auto;
}
@media (width <= 992px) {
  footer .grid_container .footer_logo img {
    top: 0;
    max-height: 8.75rem;
  }
}
footer .grid_container .footer_group {
  grid-row: 1/2;
  grid-column: 2/3;
  margin-top: 3.75rem;
  text-align: left;
}
footer .grid_container .footer_group .btn_group {
  margin-top: 1.25rem;
}
@media (width <= 992px) {
  footer .grid_container .footer_group {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_info_hours {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media (width <= 992px) {
  footer .grid_container .footer_info_hours {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_map {
  grid-row: 2/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  footer .grid_container .footer_map {
    grid-row: 4/5;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_menu {
  grid-row: 3/4;
  grid-column: 1/3;
  margin-top: 5rem;
  margin-bottom: 0.625rem;
  font-size: 0.875rem;
  text-align: center;
}
@media (width <= 992px) {
  footer .grid_container .footer_menu {
    grid-row: 5/6;
    grid-column: 1/2;
  }
}
footer .grid_container .footer_menu a {
  color: #5A431B;
}
footer .grid_container .footer_copyright {
  grid-row: 4/5;
  grid-column: 1/3;
  margin-bottom: 3.125rem;
  font-size: 0.75rem;
  text-align: center;
}
@media (width <= 992px) {
  footer .grid_container .footer_copyright {
    grid-row: 6/7;
    grid-column: 1/2;
  }
}

/************************************
** お知らせ
************************************/
.news_post {
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem) 3.125rem;
  background-color: #F2F7F6;
}
@media (width <= 992px) {
  .news_post {
    padding: 1.25rem 0.625rem 12.5rem;
  }
}
.news_post .grid_container {
  display: grid;
  grid-template-columns: 3fr 1fr;
  grid-auto-rows: minmax(6.25rem, auto);
  gap: 2.5rem;
}
@media (width <= 992px) {
  .news_post .grid_container {
    grid-template-columns: repeat(1, auto);
  }
}
.news_post .grid_container .news_main {
  grid-row: 1/2;
  grid-column: 1/2;
  padding: 3.125rem 1.875rem 2.5rem;
  background-color: white;
  filter: drop-shadow(0 0 5px rgba(66, 66, 66, 0.05));
  border-radius: 6px;
}
@media (width <= 992px) {
  .news_post .grid_container .news_main {
    padding: 2.5rem 1.25rem;
  }
}
.news_post .grid_container .news_main h1 {
  padding-bottom: 3.125rem;
  font-weight: 500;
}
.news_post .grid_container .news_main h2 {
  text-align: left;
}
.news_post .grid_container .news_main h2::after {
  content: none;
}
.news_post .grid_container .news_main time {
  color: #5A431B;
}
.news_post .grid_container .news_main .news_post_title {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
}
.news_post .grid_container .news_main .news_link {
  padding: 3.125rem 0.625rem 0.625rem;
  text-align: center;
  list-style: none;
}
.news_post .grid_container .news_main .news_link.grid_container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.news_post .grid_container .news_main .news_link a {
  position: relative;
  color: #5A431B;
}
.news_post .grid_container .news_main .news_link a::before {
  position: absolute;
  top: calc(50% - 0.125rem);
  left: -1.25rem;
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px #128E7A;
  border-right: solid 2px #128E7A;
  transition: all 0.2s;
  transform: rotate(-135deg);
}
.news_post .grid_container .news_main .news_link .prev_news {
  grid-row: 1/2;
  grid-column: 1/2;
}
.news_post .grid_container .news_main .news_link .next_news {
  grid-row: 1/2;
  grid-column: 2/3;
}
.news_post .grid_container .news_main .news_link .next_news a::before {
  right: -1.25rem;
  left: inherit;
  transform: rotate(45deg);
}
.news_post .grid_container .widget_area {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  .news_post .grid_container .widget_area {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.news_post .grid_container .widget_area .widget {
  padding-bottom: 2.5rem;
}
.news_post .grid_container .widget_area .widget h2 {
  padding-bottom: 0.625rem;
  font-size: 1.75rem;
  font-weight: 500;
}
.news_post .grid_container .widget_area .widget h2::after {
  content: none;
}
@media (width <= 992px) {
  .news_post .grid_container .widget_area .widget h2 {
    font-size: 1.5rem;
  }
}
.news_post .grid_container .widget_area .widget ul {
  padding-left: 0;
  list-style: none;
}
.news_post .grid_container .widget_area .widget ul li {
  padding: 0.625rem;
  border-bottom: 1px dashed #A6A6A6;
}
.news_post .grid_container .widget_area .widget ul a {
  color: #5A431B;
}

/************************************
** お知らせアーカイブ
************************************/
.archive .news_post .grid_container .news_main .title_container {
  padding: 0.625rem;
}
.archive .news_post .grid_container .news_main .title_container time {
  font-size: 0.875rem;
  color: #5A431B;
}
.archive .news_post .grid_container .news_main .title_container h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #5A431B;
  text-align: left;
}
.archive .news_post .grid_container .news_main .nav-links {
  text-align: center;
}
.archive .news_post .grid_container .news_main .nav-links .prev,
.archive .news_post .grid_container .news_main .nav-links .next {
  position: relative;
  color: #5A431B;
}
.archive .news_post .grid_container .news_main .nav-links .prev::before,
.archive .news_post .grid_container .news_main .nav-links .next::before {
  position: absolute;
  top: calc(50% - 0.21875rem);
  left: -1.25rem;
  display: inline-block;
  width: 0.4375rem;
  height: 0.4375rem;
  content: "";
  border-top: solid 2px #128E7A;
  border-right: solid 2px #128E7A;
  transition: all 0.2s;
  transform: rotate(-135deg);
}
.archive .news_post .grid_container .news_main .nav-links .next::before {
  right: -1.25rem;
  left: inherit;
  transform: rotate(45deg);
}
.archive .news_post .grid_container .news_main .nav-links a {
  color: #5A431B;
}
.archive .news_post .grid_container .news_main .nav-links .current {
  color: #5A431B;
}

/************************************
** 固定ページ
************************************/
.page_wrap {
  background-color: white;
}
@media (width <= 992px) {
  .page_wrap {
    padding: 1.25rem 0.625rem;
  }
}
.page_wrap nav {
  padding: 0.125rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: #F2F7F6;
}
.page_wrap nav p {
  margin-bottom: 0;
  font-size: 0.875rem;
}
.page_wrap a {
  color: #056152;
  text-decoration: underline;
}
.page_wrap .btn {
  margin-bottom: 1.875rem;
  color: white;
  text-decoration: none;
}
.page_wrap .main_page {
  padding-bottom: 3.125rem;
}
.page_wrap .main_page .main_page_text {
  padding: 100px max((100vw - 1000px) / 2, 10px) 50px;
}
.page_wrap .main_page .main_page_title {
  padding: 6.25rem max((100vw - 75rem) / 2, 0.625rem);
  background-color: rgba(255, 255, 255, 0.7);
  background-image: url("../images/photo/hero-img-pc.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-blend-mode: overlay;
}
@media (width <= 992px) {
  .page_wrap .main_page .main_page_title {
    padding: 1.25rem 0.625rem;
  }
}
.page_wrap .main_page .main_page_title h1 {
  margin: auto;
  font-weight: 500;
  text-align: center;
}
@media (width <= 992px) {
  .page_wrap .main_page .main_page_title h1 {
    font-size: 1.625rem;
  }
}
.page_wrap .main_page h2 {
  position: relative;
  margin-bottom: 4.0625rem;
  text-align: left;
}
.page_wrap .main_page h2:not(:first-child) {
  margin-top: 5rem;
}
.page_wrap .main_page h2::after {
  left: 0;
}
@media (width <= 992px) {
  .page_wrap .main_page h2 {
    margin-bottom: 2.5rem;
  }
}
.page_wrap .main_page h3 {
  position: relative;
  padding-bottom: 0.3125rem;
  margin-top: 3.125rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  border-bottom: solid 2px #D5E6E3;
}
@media (width <= 992px) {
  .page_wrap .main_page h3 {
    margin-bottom: 1.25rem;
  }
}
.page_wrap .main_page h4 {
  display: inline-block;
  margin-bottom: 1.25rem;
  font-weight: 400;
  border-bottom: solid 4px #FFEDE1;
}
@media (width <= 992px) {
  .page_wrap .main_page h4 {
    margin-bottom: 1rem;
  }
}
.page_wrap .main_page ul {
  margin-bottom: 1.25rem;
}
.page_wrap .main_page .btn_grid_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 1.25rem;
}
@media (width <= 992px) {
  .page_wrap .main_page .btn_grid_container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (width <= 480px) {
  .page_wrap .main_page .btn_grid_container {
    grid-template-columns: repeat(1, 1fr);
  }
}
.page_wrap .main_page .btn_grid_container .btn {
  width: 100%;
}
.page_wrap .main_page .schema-faq-section {
  margin-bottom: 3.125rem;
}
.page_wrap .main_page .schema-faq-section .schema-faq-question {
  position: relative;
  padding-left: 2.5rem;
  margin-left: 0.3125rem;
}
.page_wrap .main_page .schema-faq-section .schema-faq-question::before {
  position: absolute;
  top: -0.3125rem;
  left: 0;
  padding: 0.1875rem 0.625rem;
  color: white;
  content: "Q";
  background-color: #128E7A;
  border-radius: 9999px;
}
.page_wrap .main_page .schema-faq-section .schema-faq-answer {
  position: relative;
  padding: 0.9375rem;
  padding-left: 2.5rem;
  margin-top: 0.9375rem;
  background-color: white;
  border: solid 2px #D5E6E3;
  border-radius: 10px;
}
.page_wrap .main_page .schema-faq-section .schema-faq-answer::before {
  position: absolute;
  top: 0.9375rem;
  left: 0.9375rem;
  content: "A. ";
}
.page_wrap .main_page .th_fix_width th {
  width: 6.25rem;
}

/************************************
** トップ　共通
************************************/
.selif {
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
}

h2 {
  position: relative;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  color: #128E7A;
  text-align: center;
}

/************************************
** トップ　pickup
************************************/
.pickup_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem);
  background-image: linear-gradient(to bottom, #fffcfb, #fffcf9);
}
@media (width <= 992px) {
  .pickup_section {
    padding: 1.875rem 1.25rem 5rem;
  }
}
@media (width <= 992px) {
  .pickup_section .top_pickup_recruit {
    padding: 1.25rem;
  }
}

/************************************
** トップ　お知らせ・コラム
************************************/
.news_section,
.column_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem);
  background-color: #f6f6f6;
}
.news_section .top_info_news,
.news_section .top_info_column,
.column_section .top_info_news,
.column_section .top_info_column {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 2fr;
  grid-row: 1/2;
  grid-column: 1/3;
  min-height: 15rem;
  padding: 1.875rem 3.125rem;
  background-color: white;
  filter: drop-shadow(0 0 7px rgba(32, 32, 32, 0.1));
  border-radius: 12px;
}
@media (width <= 992px) {
  .news_section .top_info_news,
  .news_section .top_info_column,
  .column_section .top_info_news,
  .column_section .top_info_column {
    grid-template-rows: 1fr 2fr 1fr;
    grid-template-columns: 1fr;
    grid-row: 1/2;
    grid-column: 1/2;
    padding: 1.25rem;
  }
}
.news_section .top_info_news .top_info_news_title,
.news_section .top_info_news .top_info_column_title,
.news_section .top_info_column .top_info_news_title,
.news_section .top_info_column .top_info_column_title,
.column_section .top_info_news .top_info_news_title,
.column_section .top_info_news .top_info_column_title,
.column_section .top_info_column .top_info_news_title,
.column_section .top_info_column .top_info_column_title {
  grid-row: 1/2;
  grid-column: 1/2;
  place-content: left;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title,
  .news_section .top_info_news .top_info_column_title,
  .news_section .top_info_column .top_info_news_title,
  .news_section .top_info_column .top_info_column_title,
  .column_section .top_info_news .top_info_news_title,
  .column_section .top_info_news .top_info_column_title,
  .column_section .top_info_column .top_info_news_title,
  .column_section .top_info_column .top_info_column_title {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.news_section .top_info_news .top_info_news_title .title_english,
.news_section .top_info_news .top_info_column_title .title_english,
.news_section .top_info_column .top_info_news_title .title_english,
.news_section .top_info_column .top_info_column_title .title_english,
.column_section .top_info_news .top_info_news_title .title_english,
.column_section .top_info_news .top_info_column_title .title_english,
.column_section .top_info_column .top_info_news_title .title_english,
.column_section .top_info_column .top_info_column_title .title_english {
  position: relative;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.5rem;
  color: #128E7A;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title .title_english,
  .news_section .top_info_news .top_info_column_title .title_english,
  .news_section .top_info_column .top_info_news_title .title_english,
  .news_section .top_info_column .top_info_column_title .title_english,
  .column_section .top_info_news .top_info_news_title .title_english,
  .column_section .top_info_news .top_info_column_title .title_english,
  .column_section .top_info_column .top_info_news_title .title_english,
  .column_section .top_info_column .top_info_column_title .title_english {
    font-size: 1.25rem;
  }
}
.news_section .top_info_news .top_info_news_title .title_english::before,
.news_section .top_info_news .top_info_column_title .title_english::before,
.news_section .top_info_column .top_info_news_title .title_english::before,
.news_section .top_info_column .top_info_column_title .title_english::before,
.column_section .top_info_news .top_info_news_title .title_english::before,
.column_section .top_info_news .top_info_column_title .title_english::before,
.column_section .top_info_column .top_info_news_title .title_english::before,
.column_section .top_info_column .top_info_column_title .title_english::before {
  position: absolute;
  top: 1.25rem;
  left: 4.6875rem;
  display: inline-block;
  width: 3.125rem;
  height: 0.0625rem;
  content: "";
  background-color: #128E7A;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_title .title_english::before,
  .news_section .top_info_news .top_info_column_title .title_english::before,
  .news_section .top_info_column .top_info_news_title .title_english::before,
  .news_section .top_info_column .top_info_column_title .title_english::before,
  .column_section .top_info_news .top_info_news_title .title_english::before,
  .column_section .top_info_news .top_info_column_title .title_english::before,
  .column_section .top_info_column .top_info_news_title .title_english::before,
  .column_section .top_info_column .top_info_column_title .title_english::before {
    top: 0.9375rem;
    left: 4.0625rem;
  }
}
.news_section .top_info_news .top_info_news_title h2,
.news_section .top_info_news .top_info_column_title h2,
.news_section .top_info_column .top_info_news_title h2,
.news_section .top_info_column .top_info_column_title h2,
.column_section .top_info_news .top_info_news_title h2,
.column_section .top_info_news .top_info_column_title h2,
.column_section .top_info_column .top_info_news_title h2,
.column_section .top_info_column .top_info_column_title h2 {
  font-weight: 500;
  text-align: left;
}
.news_section .top_info_news .top_info_column_title .title_english::before,
.news_section .top_info_column .top_info_column_title .title_english::before,
.column_section .top_info_news .top_info_column_title .title_english::before,
.column_section .top_info_column .top_info_column_title .title_english::before {
  left: 6.5625rem;
}
.news_section .top_info_news .top_info_news_btn,
.news_section .top_info_news .top_info_column_btn,
.news_section .top_info_column .top_info_news_btn,
.news_section .top_info_column .top_info_column_btn,
.column_section .top_info_news .top_info_news_btn,
.column_section .top_info_news .top_info_column_btn,
.column_section .top_info_column .top_info_news_btn,
.column_section .top_info_column .top_info_column_btn {
  grid-row: 2/3;
  grid-column: 1/2;
  place-content: center;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_btn,
  .news_section .top_info_news .top_info_column_btn,
  .news_section .top_info_column .top_info_news_btn,
  .news_section .top_info_column .top_info_column_btn,
  .column_section .top_info_news .top_info_news_btn,
  .column_section .top_info_news .top_info_column_btn,
  .column_section .top_info_column .top_info_news_btn,
  .column_section .top_info_column .top_info_column_btn {
    grid-row: 3/4;
    grid-column: 1/2;
    text-align: center;
  }
}
.news_section .top_info_news .top_info_news_main,
.news_section .top_info_news .top_info_column_main,
.news_section .top_info_column .top_info_news_main,
.news_section .top_info_column .top_info_column_main,
.column_section .top_info_news .top_info_news_main,
.column_section .top_info_news .top_info_column_main,
.column_section .top_info_column .top_info_news_main,
.column_section .top_info_column .top_info_column_main {
  grid-row: 1/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  .news_section .top_info_news .top_info_news_main,
  .news_section .top_info_news .top_info_column_main,
  .news_section .top_info_column .top_info_news_main,
  .news_section .top_info_column .top_info_column_main,
  .column_section .top_info_news .top_info_news_main,
  .column_section .top_info_news .top_info_column_main,
  .column_section .top_info_column .top_info_news_main,
  .column_section .top_info_column .top_info_column_main {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.news_section .top_info_news .info_news_item,
.news_section .top_info_news .info_column_item,
.news_section .top_info_column .info_news_item,
.news_section .top_info_column .info_column_item,
.column_section .top_info_news .info_news_item,
.column_section .top_info_news .info_column_item,
.column_section .top_info_column .info_news_item,
.column_section .top_info_column .info_column_item {
  margin: 0.625rem 0;
  border-bottom: 1px dashed #DFDFDF;
}
.news_section .top_info_news .info_news_item:last-child,
.news_section .top_info_news .info_column_item:last-child,
.news_section .top_info_column .info_news_item:last-child,
.news_section .top_info_column .info_column_item:last-child,
.column_section .top_info_news .info_news_item:last-child,
.column_section .top_info_news .info_column_item:last-child,
.column_section .top_info_column .info_news_item:last-child,
.column_section .top_info_column .info_column_item:last-child {
  border-bottom: 0;
}
.news_section .top_info_news .info_news_item a,
.news_section .top_info_news .info_column_item a,
.news_section .top_info_column .info_news_item a,
.news_section .top_info_column .info_column_item a,
.column_section .top_info_news .info_news_item a,
.column_section .top_info_news .info_column_item a,
.column_section .top_info_column .info_news_item a,
.column_section .top_info_column .info_column_item a {
  display: grid;
  grid-template-columns: 5rem 1fr;
  color: #5A431B;
}
.news_section .top_info_news .info_news_item a time,
.news_section .top_info_news .info_column_item a time,
.news_section .top_info_column .info_news_item a time,
.news_section .top_info_column .info_column_item a time,
.column_section .top_info_news .info_news_item a time,
.column_section .top_info_news .info_column_item a time,
.column_section .top_info_column .info_news_item a time,
.column_section .top_info_column .info_column_item a time {
  grid-column: 1/2;
  font-size: 0.875rem;
}
.news_section .top_info_news .info_news_item a p,
.news_section .top_info_news .info_column_item a p,
.news_section .top_info_column .info_news_item a p,
.news_section .top_info_column .info_column_item a p,
.column_section .top_info_news .info_news_item a p,
.column_section .top_info_news .info_column_item a p,
.column_section .top_info_column .info_news_item a p,
.column_section .top_info_column .info_column_item a p {
  grid-column: 2/3;
  margin-bottom: 0.625rem;
}

/************************************
** トップ　info
************************************/
.info_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem);
  background-color: #FEFEF9;
}
.info_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.5rem;
}
@media (width <= 992px) {
  .info_section .grid_container {
    grid-template-columns: repeat(1, auto);
  }
}
.info_section .top_info_hours {
  grid-row: 2/3;
  grid-column: 1/2;
}
@media (width <= 992px) {
  .info_section .top_info_hours {
    grid-row: 2/3;
    grid-column: 1/2;
  }
}
.info_section .top_info_hours .info_hours_section {
  margin-bottom: 0;
}
.info_section .top_map {
  grid-row: 2/3;
  grid-column: 2/3;
}
@media (width <= 992px) {
  .info_section .top_map {
    grid-row: 3/4;
    grid-column: 1/2;
  }
}

/************************************
** トップ　特徴
************************************/
.feature_section {
  padding: 3.125rem max((100vw - 75rem) / 2, 1.25rem) 6.25rem;
  background-color: white;
}
.feature_section .title_english {
  position: relative;
  top: 3.125rem;
  left: 7.1875rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: #f6f6f6;
}
@media (width <= 1260px) {
  .feature_section .title_english {
    left: 0;
  }
}
@media (width <= 992px) {
  .feature_section .title_english {
    top: 2.5rem;
    left: 0;
    font-size: 4rem;
  }
}
.feature_section .grid_container {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 3.125rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 6.25rem;
}
@media (width <= 1260px) {
  .feature_section .grid_container {
    grid-template-columns: repeat(2, auto);
    height: 100%;
  }
}
@media (width <= 992px) {
  .feature_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 3.125rem;
  }
}
.feature_section .top_feature_card {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 15.9375rem;
  height: 100%;
  padding: 1.875rem 1.25rem 1.25rem;
  background-color: white;
  filter: drop-shadow(0 0 7px rgba(44, 44, 44, 0.2));
  border-radius: 12px;
}
@media (width <= 992px) {
  .feature_section .top_feature_card {
    width: 100%;
  }
}
.feature_section .top_feature_card h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.9375rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
.feature_section .top_feature_card h3 span {
  display: inline;
  background: linear-gradient(transparent 60%, #F2F7F6 0%);
}
.feature_section .top_feature_card h3::after {
  position: absolute;
  top: 11.25rem;
  left: 1.25rem;
  display: inline-block;
  width: calc(100% - 2.5rem);
  height: 0.0625rem;
  content: "";
  background-color: #D5E6E3;
}
.feature_section .top_feature_card p {
  margin-top: 0.9375rem;
}

/************************************
** トップ　症状
************************************/
.symptoms_section {
  padding: 6.25rem max((100vw - 75rem) / 2, 1.25rem);
  background-color: #FEFEF9;
}
.symptoms_section img {
  margin-inline: auto;
  margin-top: 3.125rem;
}
.symptoms_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 3.125rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 6.25rem;
}
.symptoms_section .grid_container .symptoms_text {
  position: relative;
  padding: 0.625rem 1.25rem 0.625rem 2.8125rem;
  font-size: 1.25rem;
  background-color: #f4f4f4;
  border-radius: 6px;
}
.symptoms_section .grid_container .symptoms_text::before {
  position: absolute;
  top: 0.4375rem;
  left: 0.3125rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  content: "";
  background-image: url("../images/icon/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (width <= 992px) {
  .symptoms_section .grid_container .symptoms_text {
    width: 22.1875rem;
  }
}
.symptoms_section .grid_container .advice_text {
  grid-row: 2/3;
  grid-column: 1/3;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 200%;
  text-align: center;
}
.symptoms_section .grid_container .advice_text .underline {
  display: inline;
  background: linear-gradient(transparent 60%, #facf8f 0%);
}
@media (width <= 992px) {
  .symptoms_section .grid_container .advice_text {
    grid-row: auto;
    grid-column: auto;
    margin-top: 3.125rem;
    font-size: 1rem;
  }
}
.symptoms_section .grid_container .btn {
  place-self: end;
}
@media (width <= 992px) {
  .symptoms_section .grid_container .btn {
    place-self: center;
    margin-top: 1.25rem;
  }
}
.symptoms_section .grid_container .btn_orange {
  place-self: start;
}
@media (width <= 992px) {
  .symptoms_section .grid_container .btn_orange {
    place-self: center;
    margin-top: 1.25rem;
  }
}
@media (width <= 992px) {
  .symptoms_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

/************************************
** トップ　診療案内
************************************/
.treatment_section {
  position: relative;
  padding: 6.25rem max((100vw - 75rem) / 2, 1.25rem);
  background-color: #F2F7F6;
}
.treatment_section .title_english {
  position: relative;
  top: 3.125rem;
  left: 15.9375rem;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: white;
}
@media (width <= 1260px) {
  .treatment_section .title_english {
    left: calc((100vw - 43.125rem) / 2);
  }
}
@media (width <= 992px) {
  .treatment_section .title_english {
    top: 2.5rem;
    left: calc((100vw - 23.125rem) / 2);
    font-size: 4rem;
  }
}
.treatment_section .grid_container ul {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  padding-left: 0;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .treatment_section .grid_container ul {
    grid-template-columns: 1fr;
  }
}
.treatment_section .grid_container ul li {
  position: relative;
  padding: 0.625rem;
  margin: 0 3.125rem 1.25rem;
  list-style: none;
  border-bottom: 1px solid #128E7A;
}
@media (width <= 992px) {
  .treatment_section .grid_container ul li {
    margin: 0.75rem 1.25rem;
  }
}
.treatment_section .grid_container ul li a {
  display: block;
  color: #5A431B;
}
.treatment_section .grid_container ul li::after {
  position: absolute;
  right: 0.125rem;
  bottom: -0.3125rem;
  display: block;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 1px solid #128E7A;
  transition: all 0.2s;
  transform: rotate(45deg);
}
.treatment_section .grid_container ul li:hover {
  transition: transform 0.1s ease-in-out;
  transform: translateX(8px);
}
@media (width <= 992px) {
  .treatment_section .grid_container ul li:hover {
    transform: none;
  }
}

/************************************
** トップ　カウンセリング
************************************/
.counseling_section {
  padding: 6.25rem max((100vw - 75rem) / 2, 1.25rem);
  background-color: white;
}
.counseling_section img {
  margin-inline: auto;
  margin-top: 3.125rem;
}
.counseling_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 3.125rem;
  place-items: center;
  align-items: start;
  justify-content: center;
  margin-top: 6.25rem;
}
.counseling_section .grid_container .symptoms_text {
  position: relative;
  padding: 0.625rem 1.25rem 0.625rem 2.8125rem;
  font-size: 1.25rem;
  background-color: #f4f4f4;
  border-radius: 6px;
}
.counseling_section .grid_container .symptoms_text::before {
  position: absolute;
  top: 0.4375rem;
  left: 0.3125rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  content: "";
  background-image: url("../images/icon/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media (width <= 992px) {
  .counseling_section .grid_container .symptoms_text {
    width: 22.1875rem;
  }
}
.counseling_section .grid_container .advice_text {
  grid-row: 2/3;
  grid-column: 1/3;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 200%;
  text-align: center;
}
.counseling_section .grid_container .advice_text .underline {
  display: inline;
  background: linear-gradient(transparent 60%, #facf8f 0%);
}
@media (width <= 992px) {
  .counseling_section .grid_container .advice_text {
    grid-row: auto;
    grid-column: auto;
    margin-top: 3.125rem;
    font-size: 1rem;
  }
}
.counseling_section .grid_container .btn {
  place-self: end;
}
@media (width <= 992px) {
  .counseling_section .grid_container .btn {
    place-self: center;
    margin-top: 1.25rem;
  }
}
.counseling_section .grid_container .btn_orange {
  place-self: start;
}
@media (width <= 992px) {
  .counseling_section .grid_container .btn_orange {
    place-self: center;
    margin-top: 1.25rem;
  }
}
@media (width <= 992px) {
  .counseling_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}

/************************************
** トップ　ご挨拶
************************************/
.greeting_section {
  padding: 6.25rem max((100vw - 75rem) / 2, 1.25rem) 6.25rem;
}
@media (width <= 992px) {
  .greeting_section {
    padding-top: 3.125rem;
    background-color: #fefef9;
  }
}
.greeting_section .grid_container {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr 1fr;
  place-content: center;
  place-items: center;
  margin-top: 3.125rem;
}
@media (width <= 992px) {
  .greeting_section .grid_container {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(6.25rem, auto);
  }
}
.greeting_section .grid_container .top_greeting_img {
  grid-row: 1/2;
  grid-column: 1/2;
  width: 100%;
  height: 100%;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_img {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}
.greeting_section .grid_container .top_greeting_img img {
  max-height: 31.25rem;
  margin-top: 3.125rem;
  object-fit: cover;
  border-radius: 12px;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_img img {
    margin-inline: auto;
  }
}
.greeting_section .grid_container h2 {
  margin-bottom: 2.5rem;
  text-align: left;
}
.greeting_section .grid_container .top_greeting_text {
  position: relative;
  padding: 0.9375rem;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_text {
    padding: 2.5rem 0.9375rem;
  }
}
.greeting_section .grid_container .top_greeting_text p:nth-child(6) {
  place-self: end;
  font-family: "Noto Serif Japanese", "Hiragino Kaku Gothic ProN", meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_text p:nth-child(6) {
    font-size: 1.25rem;
  }
}
.greeting_section .grid_container .top_greeting_text .btn {
  margin-inline: auto;
}
.greeting_section .grid_container .top_greeting_text div:has(.btn) {
  margin-top: 3.125rem;
}
.greeting_section .grid_container .top_greeting_text::before {
  position: absolute;
  top: -5%;
  left: -20vw;
  z-index: -1;
  display: inline-block;
  width: 70vw;
  height: 110%;
  content: "";
  background-color: #fefef9;
}
@media (width <= 992px) {
  .greeting_section .grid_container .top_greeting_text::before {
    content: none;
  }
}

/************************************
** トップ　予約CTA
************************************/
.cta_section {
  padding: 6.25rem max((100vw - 75rem) / 2, 1.25rem) 6.25rem;
  background-image: url("../images/photo/top_cta.webp");
  background-repeat: no-repeat;
  background-size: cover;
}
@media (width <= 992px) {
  .cta_section {
    background-position: 50%;
  }
}
.cta_section .grid_container {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 3.125rem;
  place-content: center;
  place-items: center;
}
@media (width <= 992px) {
  .cta_section .grid_container {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    row-gap: 0;
  }
}
.cta_section .grid_container p {
  grid-row: 1/2;
  grid-column: 1/3;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 200%;
  color: white;
  text-align: center;
}
@media (width <= 992px) {
  .cta_section .grid_container p {
    grid-row: auto;
    grid-column: auto;
    font-size: 1rem;
  }
}
.cta_section .grid_container .btn {
  place-self: end;
}
@media (width <= 992px) {
  .cta_section .grid_container .btn {
    place-self: center;
    margin-top: 1.25rem;
  }
}
.cta_section .grid_container .btn_orange {
  place-self: start;
}
@media (width <= 992px) {
  .cta_section .grid_container .btn_orange {
    place-self: center;
    margin-top: 1.25rem;
  }
}

/************************************
** ふわっと下から上へ出現
************************************/
.scroll_up {
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateY(3rem);
}
.scroll_up.on {
  opacity: 1;
  transform: translateY(0);
}

/************************************
** ふわっと左から出現
************************************/
.scroll_left {
  filter: alpha(opacity=0);
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateX(-30px);
}
@media screen and (width <= 480px) {
  .scroll_left {
    transform: translateY(3rem);
  }
}

.scroll_left.on {
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/************************************
** ふわっと下から上へ出現
************************************/
.scroll_up {
  opacity: 0;
  transition: 0.8s ease-in-out;
  transform: translateY(3rem);
}
.scroll_up.on {
  opacity: 1;
  transform: translateY(0);
}

/************************************
** TOP公開時
************************************/
header .nav_pc {
  visibility: hidden;
}
header .header_info {
  visibility: hidden;
}
header .nav_sp_wrap {
  visibility: hidden;
}

.info_map_tel {
  display: none;
}

.btn {
  display: none;
}

.btn_orange {
  display: none;
}

.btn_group {
  display: block;
}

.footer_fix_mobile {
  display: none;
}

.treatment_section a {
  pointer-events: none;
}