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

body {
  min-height: 100vh;
}

/*----------------------------------------------------------------------------
******************************************************************************
** base color
******************************************************************************
----------------------------------------------------------------------------*/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** tablet
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** common parts
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  background: #fff;
}
.hd_bg .hd {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(2rem, 1.091rem + 4.55vw, 4rem);
  height: 90px;
  padding: 15px 10px;
}
.hd_bg .hd .hd_logo a {
  display: flex;
  align-items: baseline;
  color: #006FB0;
  font-family: "Kosugi Maru", sans-serif;
  font-size: clamp(1.3rem, 0.845rem + 2.27vw, 2.3rem);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.hd_bg .hd .hd_logo a span {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(2.8rem, 1.891rem + 4.55vw, 4.8rem);
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.hd_nav {
  position: fixed;
  top: 0px;
  right: -70%;
  z-index: 100;
  overflow-x: none;
  overflow-y: auto;
  width: 70%;
  height: calc(100% + 500px);
  padding-bottom: 500px;
  background: #006FB0;
  color: #fff;
  transition: All 0.5s ease;
}
.hd_nav_list > li > a {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  color: #fff;
  display: block;
  padding: 1em 1em 1em 1.5em;
  text-decoration: none;
  position: relative;
}
.hd_nav_list > li > a:focus, .hd_nav_list > li > a:hover, .hd_nav_list > li > a.current {
  background-color: rgba(0, 0, 0, 0.2);
}
.hd_nav_list > li > .nav_clist > li > a {
  background-color: rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 13px;
  padding: 1em 1em 1em 2em;
  text-decoration: none;
}
.hd_nav_list > li > .nav_clist > li > a:focus, .hd_nav_list > li > .nav_clist > li > a:hover, .hd_nav_list > li > .nav_clist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}
.hd_nav_list > li > .nav_clist > li > .nav_glist > li > a {
  background-color: rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: block;
  font-size: 11px;
  padding: 1em 1em 1em 3em;
  text-decoration: none;
}
.hd_nav_list > li > .nav_clist > li > .nav_glist > li > a:focus, .hd_nav_list > li > .nav_clist > li > .nav_glist > li > a:hover, .hd_nav_list > li > .nav_clist > li > .nav_glist > li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

.sp_nav_open {
  right: 0 !important;
}

.sp_nav_trigger {
  cursor: pointer;
  z-index: 1000;
  position: fixed !important;
  top: 25px;
  right: 15px;
  margin-top: -5px;
  width: 36px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
}
.sp_nav_trigger span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.4s;
  box-sizing: border-box;
}
.sp_nav_trigger span:nth-of-type(1) {
  top: 0;
}
.sp_nav_trigger span:nth-of-type(2) {
  top: 10px;
}
.sp_nav_trigger span:nth-of-type(3) {
  bottom: 0;
}
.sp_nav_trigger::after {
  position: absolute;
  left: 0;
  bottom: -20px;
  content: "MENU";
  display: block;
  width: 100%;
  padding-top: 20px;
  color: #000;
  font-size: 10px;
  text-decoration: none;
  text-align: center;
  transition: all 0.4s;
}
.sp_nav_trigger.sp_active::after {
  content: "CLOSE";
  bottom: -25px;
  color: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(2) {
  opacity: 0;
  background: #fff;
}
.sp_nav_trigger.sp_active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.index_slider_bg {
  overflow-x: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_slider_bg {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_slider_bg {
    display: flex;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_slider_bg .index_slider {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: calc(100% - (50% - 530px));
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_slider_bg .index_slider {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: calc(100% - (50% - 530px));
  }
}
.index_slider_bg .index_slider_ttl {
  width: 100%;
  padding: 0 10px;
}
.index_slider_bg .index_slider_ttl h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #000;
  font-size: clamp(3.3rem, 2.845rem + 2.27vw, 4.3rem);
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_slider_bg .index_slider_ttl h2 {
    margin-top: 50px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .index_slider_bg .index_slider_ttl h2 {
    margin-top: 30px;
  }
}
@media screen and (max-width: 520px) {
  .index_slider_bg .index_slider_ttl h2 {
    margin-bottom: 40px;
  }
}
.index_slider_bg .index_slider_ttl h2 br {
  display: none;
}
.index_slider_bg .index_slider_ttl h2 span {
  position: relative;
  display: inline-block;
}
.index_slider_bg .index_slider_ttl h2 span::after {
  position: absolute;
  bottom: 10px;
  left: 0;
  content: "";
  display: block;
  width: 90%;
  height: 7px;
}
.index_slider_bg .index_slider_ttl h2 span:first-of-type::after {
  background: #006FB0;
}
.index_slider_bg .index_slider_ttl h2 span:last-of-type::after {
  background: #8BCBF0;
}
.index_slider_bg .index_slider_ttl h3 {
  display: none;
}
.index_slider_bg .index_slider_ttl p {
  display: none;
}
.index_slider_bg .index_slider_img {
  display: flex;
  justify-content: flex-end;
  width: 100vw;
}
.index_slider_bg .index_slider_img img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .index_slider_bg {
    display: flex;
    justify-content: flex-end;
  }
  .index_slider_bg .index_slider {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: calc(100% - (50% - 530px));
  }
}

.con_bg {
  position: relative;
  z-index: 1;
  margin-bottom: -30px;
  overflow-x: hidden;
}
.con_bg .con .index_main .index_greet {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 110px 10px;
}
.con_bg .con .index_main .index_greet h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 0 40px;
  color: #006FB0;
  font-size: clamp(2.6rem, 2.327rem + 1.36vw, 3.2rem);
  font-weight: 500;
  text-align: center;
}
.con_bg .con .index_main .index_greet p {
  margin: 0 0 40px;
  text-align: center;
  line-height: 2.2;
}
.con_bg .con .index_main .index_greet p:last-of-type {
  color: #006FB0;
  font-size: clamp(2.6rem, 2.327rem + 1.36vw, 3.2rem);
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}
.con_bg .con .index_main .index_subject {
  padding: 85px 0;
  background: #F8F4E7;
  border-radius: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_subject_item {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: calc(100% - (50% - 530px));
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_subject_item {
    display: flex;
    gap: 40px;
    width: 100%;
    max-width: calc(100% - (50% - 530px));
  }
}
.con_bg .con .index_main .index_subject_item_ttl {
  order: 2;
  width: 100%;
  margin-bottom: 40px;
  padding: 0 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_subject_item_ttl {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_subject_item_ttl {
    margin-bottom: 0;
  }
}
.con_bg .con .index_main .index_subject_item_ttl h2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 520px) {
  .con_bg .con .index_main .index_subject_item_ttl h2 {
    text-align: center;
  }
}
.con_bg .con .index_main .index_subject_item_ttl h2 span {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.con_bg .con .index_main .index_subject_item_ttl h2 span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_subject_item_ttl h2 span::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_subject_item_ttl ul {
  display: flex;
  flex-direction: column;
  gap: 20px 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_subject_item_ttl ul {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_subject_item_ttl ul {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.con_bg .con .index_main .index_subject_item_ttl ul li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 10px;
  background: #FBF9F7;
  color: #000;
  font-size: clamp(1.4rem, 1.127rem + 1.36vw, 2rem);
  font-weight: 700;
  border: 3px solid #E9E3D0;
  border-radius: 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_subject_item_ttl ul li {
    width: calc((100% - 10px) / 2);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_subject_item_ttl ul li {
    width: calc((100% - 10px) / 2);
  }
}
.con_bg .con .index_main .index_subject_item_ttl ul li span {
  position: absolute;
  top: -42px;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 35px;
  background: #006FB0;
  color: #fff;
  font-size: clamp(1.2rem, 1.064rem + 0.68vw, 1.5rem);
  border-radius: 50vh;
}
.con_bg .con .index_main .index_subject_item_ttl ul li span::after {
  position: absolute;
  bottom: -15px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  border-top: 25px solid #006FB0;
  border-bottom: 0;
}
.con_bg .con .index_main .index_subject_item_ttl .subject_more_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_subject_item_ttl .subject_more_list {
    flex-direction: row;
    justify-content: center;
  }
}
.con_bg .con .index_main .index_subject_item_ttl .subject_more_list .subject_more {
  width: 100%;
  max-width: 240px;
  height: 68px;
  padding: 0;
  background: none;
  border: none;
}
.con_bg .con .index_main .index_subject_item_ttl .subject_more_list .subject_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  background: #006FB0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  border: 3px solid #8BCBF0;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.con_bg .con .index_main .index_subject_item_ttl .subject_more_list .subject_more a:focus, .con_bg .con .index_main .index_subject_item_ttl .subject_more_list .subject_more a:hover {
  background: #fff;
  color: #006FB0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_subject_item_ttl .subject_more_list .subject_more a {
    font-size: 1.6rem;
  }
}
.con_bg .con .index_main .index_subject_item_img {
  order: 1;
  width: 100vw;
  padding-right: 10px;
}
.con_bg .con .index_main .index_subject_item_img img {
  width: 100%;
}
.con_bg .con .index_main .index_schedule_wrap {
  padding: 120px 10px 50px;
}
.con_bg .con .index_main .index_schedule_wrap h2 {
  margin-bottom: 40px;
  text-align: center;
}
.con_bg .con .index_main .index_schedule_wrap h2 span {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.con_bg .con .index_main .index_schedule_wrap h2 span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_schedule_wrap h2 span::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_schedule_wrap .index_schedule {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 100px;
    padding: 0 10px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_schedule_wrap .index_schedule {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 20px;
    padding: 0 10px;
  }
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_ttl > h3 {
  margin-bottom: 15px;
  color: #000;
  font-size: clamp(2.2rem, 1.927rem + 1.36vw, 2.8rem);
  font-weight: 400;
  line-height: 1.8;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_ttl > p {
  font-size: 1.6rem;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_ttl > p.caution {
  margin: 20px 0;
  color: #f00;
  font-size: 1.4rem;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_ttl > .contact {
  display: none;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list {
  width: 100%;
  max-width: 570px;
  margin-top: 10px;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list table {
  width: 100%;
  margin-bottom: 20px;
  color: #000;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 20px;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list table tr th, .con_bg .con .index_main .index_schedule_wrap .index_schedule_list table tr td {
  padding: 10px;
  font-size: clamp(1.4rem, 1.127rem + 1.36vw, 2rem);
  font-weight: 400;
  text-align: center;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list table tr:first-child th {
  border-radius: 20px 0 0 0;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list table tr:first-child th:last-of-type {
  border-radius: 0 20px 0 0;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list table tr:first-child td {
  border-radius: 0 20px 0 0;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list table tr:last-child th {
  border-radius: 0 0 0 20px;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list table tr:last-child td:last-of-type {
  border-radius: 0 0 20px 0;
}
.con_bg .con .index_main .index_schedule_wrap .index_schedule_list p {
  color: #000;
  font-size: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_schedule_wrap .index_schedule {
    display: flex;
    justify-content: space-between;
    gap: 100px;
    padding: 120px 10px 50px;
  }
}
.con_bg .con .index_main .index_contact {
  margin: 0 10px 110px;
  padding: clamp(1.875rem, 1.307rem + 2.84vw, 3.125rem);
  background: #D8ECFD;
  border-radius: 20px;
  text-align: center;
}
.con_bg .con .index_main .index_contact h2 {
  color: #000;
  font-size: clamp(1.6rem, 0.873rem + 3.64vw, 3.2rem);
  font-weight: 400;
}
.con_bg .con .index_main .index_contact .tel {
  margin-bottom: 20px;
  color: #006FB0;
  font-size: clamp(1.3rem, -0.064rem + 6.82vw, 4.3rem);
  font-weight: 700;
}
.con_bg .con .index_main .index_contact .tel a {
  display: inline-block;
  margin-left: 20px;
  color: #006FB0;
  font-size: clamp(1.8rem, -0.109rem + 9.55vw, 6rem);
  text-decoration: none;
  line-height: 1.2;
}
.con_bg .con .index_main .index_contact .tel a::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #006FB0;
}
.con_bg .con .index_main .index_contact .support {
  display: inline-block;
  padding: 10px 50px;
  background: #fff;
  color: #006FB0;
  font-size: clamp(1.3rem, 1.164rem + 0.68vw, 1.6rem);
  border-radius: 50vh;
}
.con_bg .con .index_main .index_hospitalization_wrap {
  overflow-x: hidden;
  padding: 90px 10px;
  background: #F8F4E7;
  border-radius: 30px;
}
.con_bg .con .index_main .index_hospitalization_wrap h2 {
  margin-bottom: 60px;
  text-align: center;
}
.con_bg .con .index_main .index_hospitalization_wrap h2 span {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.con_bg .con .index_main .index_hospitalization_wrap h2 span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_hospitalization_wrap h2 span::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: clamp(2.6rem, 2.327rem + 1.36vw, 3.2rem);
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization h3 span {
  color: #006FB0;
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  margin: 50px auto 20px;
}
@media screen and (max-width: 520px) {
  .con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_list {
    flex-wrap: wrap;
  }
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_list > ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_list > ul {
    width: calc((100% - 0.5rem) / 2);
  }
}
@media screen and (max-width: 520px) {
  .con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_list > ul {
    width: 100%;
  }
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_list > ul li {
  margin-bottom: 0;
  font-size: 2rem;
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization hr {
  height: 3px;
  margin: 40px 0;
  background: #D8ECFD;
  border: none;
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 30px;
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_contact_item {
  display: inline-block;
  padding: 20px;
  background: #D8ECFD;
  border-radius: 20px;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_contact_item {
    width: calc((100% - 2rem) / 2);
  }
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_contact_item .tel {
  color: #006FB0;
  font-size: clamp(2.6rem, 2.327rem + 1.36vw, 3.2rem);
  font-weight: 700;
}
.con_bg .con .index_main .index_hospitalization_wrap .index_hospitalization_contact_item .tel a {
  margin-left: 20px;
  color: #006FB0;
  font-size: clamp(3rem, 2.545rem + 2.27vw, 4rem);
  text-decoration: none;
  line-height: 1.2;
}
.con_bg .con .index_main .index_kaigo_wrap {
  padding: 90px 0;
}
.con_bg .con .index_main .index_kaigo_wrap h2 {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.con_bg .con .index_main .index_kaigo_wrap h2::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_kaigo_wrap h2::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_kaigo_wrap h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 60px;
  padding: 0;
  line-height: 1.5;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_kaigo_wrap h2 {
    flex-direction: row;
    justify-content: center;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_kaigo_wrap h2 {
    flex-direction: row;
    justify-content: center;
  }
}
.con_bg .con .index_main .index_kaigo_wrap h2::before, .con_bg .con .index_main .index_kaigo_wrap h2::after {
  display: none;
}
.con_bg .con .index_main .index_kaigo_wrap h2 span:first-of-type {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.con_bg .con .index_main .index_kaigo_wrap h2 span:first-of-type::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_kaigo_wrap h2 span:first-of-type::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_kaigo_wrap h2 span:first-of-type {
  padding-right: 1rem;
  font-size: 2.4rem;
}
.con_bg .con .index_main .index_kaigo_wrap h2 span:last-of-type {
  display: block;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo {
  overflow-x: hidden;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item {
    display: flex;
    gap: 40px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item {
    display: flex;
    gap: 40px;
  }
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl {
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 10px;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.8;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl p {
  margin-bottom: 40px;
  font-size: 1.6rem;
  line-height: 2;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule {
  width: 100%;
  max-width: 570px;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule table {
  table-layout: fixed;
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
  color: #000;
  border-spacing: 0;
  border-collapse: separate;
  border-radius: 20px;
  border-top: 1px solid #E9E3D0;
  border-left: 1px solid #E9E3D0;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule table tr th, .con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule table tr td {
  padding: 10px;
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  border-right: 1px solid #E9E3D0;
  border-bottom: 1px solid #E9E3D0;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule table tr:first-child th {
  border-radius: 20px 0 0 0;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule table tr:first-child th:last-of-type {
  border-radius: 0 20px 0 0;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule table tr:first-child td {
  border-radius: 0 20px 0 0;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule table tr:last-child td:first-of-type {
  border-radius: 0 0 0 20px;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_ttl .index_kaigo_schedule table tr:last-child td:last-of-type {
  border-radius: 0 0 20px 0;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_img {
  width: 100vw;
  padding-left: 10px;
}
.con_bg .con .index_main .index_kaigo_wrap .index_kaigo_item_img img {
  width: 100%;
}
.con_bg .con .index_main .index_access_wrap {
  padding: 135px 10px;
  background: #F8F4E7;
  border-radius: 30px;
}
.con_bg .con .index_main .index_access_wrap h2 {
  margin-bottom: 40px;
  text-align: center;
}
.con_bg .con .index_main .index_access_wrap h2 span {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.con_bg .con .index_main .index_access_wrap h2 span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_access_wrap h2 span::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_access_wrap .index_access {
    display: flex;
    gap: 40px;
  }
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl {
  order: 2;
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl h3 {
  margin-bottom: 10px;
  color: #006FB0;
  font-size: 1.8rem;
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl p {
  margin-bottom: 20px;
  color: #000;
  font-size: 1.6rem;
  line-height: 1.8;
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl .map_more {
  width: 100%;
  max-width: 240px;
  height: 68px;
  padding: 0;
  background: none;
  border: none;
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl .map_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  background: #006FB0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  border: 3px solid #8BCBF0;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl .map_more a:focus, .con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl .map_more a:hover {
  background: #fff;
  color: #006FB0;
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl .map_more {
  display: flex;
  justify-content: center;
  margin: 20px auto 40px;
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_access_wrap .index_access .index_access_ttl_case {
    display: flex;
    justify-content: space-between;
    gap: 40px;
  }
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_map {
  order: 1;
  border-radius: 10px;
}
.con_bg .con .index_main .index_access_wrap .index_access .index_access_map iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_access_wrap .index_access .index_access_map {
    display: flex;
    gap: 40px;
  }
  .con_bg .con .index_main .index_access_wrap .index_access .index_access_map iframe {
    aspect-ratio: auto;
    width: revert-layer;
    height: revert-layer;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_access_wrap .index_access .index_access_map {
    display: flex;
    gap: 40px;
  }
}
.con_bg .con .index_main .index_recruit_wrap {
  overflow-x: hidden;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 90px 0;
}
.con_bg .con .index_main .index_recruit_wrap h2 {
  margin-bottom: 40px;
  text-align: center;
}
.con_bg .con .index_main .index_recruit_wrap h2 span {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.con_bg .con .index_main .index_recruit_wrap h2 span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_recruit_wrap h2 span::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_recruit_wrap .index_recruit_item {
    display: flex;
    gap: 40px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_recruit_wrap .index_recruit_item {
    display: flex;
    gap: 40px;
  }
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
  padding: 0 10px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl {
    margin-bottom: 0;
  }
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl h3 {
  margin-bottom: 20px;
  color: #000;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1.8;
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl p {
  font-size: 1.6rem;
  line-height: 2;
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl .recruit_more_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 40px auto 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl .recruit_more_list {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl .recruit_more_list .recruit_more {
  width: 100%;
  max-width: 240px;
  height: 68px;
  padding: 0;
  background: none;
  border: none;
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl .recruit_more_list .recruit_more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  background: #006FB0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  border: 3px solid #8BCBF0;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl .recruit_more_list .recruit_more a:focus, .con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl .recruit_more_list .recruit_more a:hover {
  background: #fff;
  color: #006FB0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_recruit_wrap .index_recruit_item_ttl .recruit_more_list .recruit_more a {
    font-size: 1.6rem;
  }
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_img {
  width: 100vw;
  padding-left: 10px;
}
.con_bg .con .index_main .index_recruit_wrap .index_recruit_item_img img {
  width: 100%;
}
.con_bg .con .index_main .index_group_wrap {
  padding: 90px 0;
  background: #F8F4E7;
}
.con_bg .con .index_main .index_group_wrap h2 {
  margin-bottom: 60px;
  text-align: center;
}
.con_bg .con .index_main .index_group_wrap h2 span {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.con_bg .con .index_main .index_group_wrap h2 span::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_group_wrap h2 span::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
.con_bg .con .index_main .index_group_wrap .index_group {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 10px;
}
.con_bg .con .index_main .index_group_wrap .index_group_item {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .con_bg .con .index_main .index_group_wrap .index_group_item {
    width: calc((100% - 12rem) / 4);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .con_bg .con .index_main .index_group_wrap .index_group_item {
    width: calc((100% - 4rem) / 2);
  }
}
.con_bg .con .index_main .index_group_wrap .index_group_item a {
  display: block;
  margin-bottom: 10px;
}
.con_bg .con .index_main .index_group_wrap .index_group_item a img {
  width: 100%;
  transition: all 0.3s ease;
}
.con_bg .con .index_main .index_group_wrap .index_group_item a:hover img {
  opacity: 0.8;
}
.con_bg .con .index_main .index_group_wrap .index_group_item span {
  display: block;
  font-size: 1.4rem;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  margin-top: auto;
  padding-top: 30px;
  background: url(../images/ft_bg.jpg) no-repeat center bottom;
  background-size: cover;
}
.ft_bg .ft {
  padding: 90px 0;
}
.ft_bg .ft_logo {
  display: flex;
  justify-content: center;
}
.ft_bg .ft_logo a {
  display: flex;
  align-items: baseline;
  color: #006FB0;
  font-family: "Kosugi Maru", sans-serif;
  font-size: clamp(1.3rem, 0.845rem + 2.27vw, 2.3rem);
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.ft_bg .ft_logo a span {
  display: inline-block;
  margin-left: 10px;
  font-size: clamp(2.8rem, 1.891rem + 4.55vw, 4.8rem);
}
.ft_bg .ft_address {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 1.527rem + 1.36vw, 2.4rem);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .ft_bg .ft_address {
    gap: 20px;
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .ft_bg .ft_address {
    gap: 20px;
  }
}
.ft_bg .ft_address span {
  display: block;
}
.ft_bg .ft_fukuriha_logo {
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.ft_bg .ft_copy {
  font-size: 1.1rem;
  text-align: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  position: fixed;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #006FB0;
  border-radius: 50%;
  z-index: 100;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  position: relative;
  cursor: pointer;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  transform: rotate(45deg);
}
.pt .pt_btn::before, .pt .pt_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: #FFF;
}
.pt .pt_btn::before {
  bottom: 0;
  width: 5px;
}
.pt .pt_btn::after {
  right: 0;
  height: 5px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.doctor_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.doctor_list_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding: 20px;
  border: 2px solid #8BCBF0;
  border-radius: 20px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .doctor_list_item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .doctor_list_item {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: calc((100% - 30px) / 2);
  }
}
.doctor_list_item_img {
  order: 2;
  width: 100%;
  max-width: 200px;
}
.doctor_list_item_profile {
  width: 100%;
  order: 1;
}
.doctor_list_item_profile h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0 !important;
  color: #111 !important;
}
.doctor_list_item_profile h3 span {
  display: inline-block;
  font-size: 1.4rem;
}
.doctor_list_item_profile strong {
  display: block;
  margin-bottom: 1rem !important;
  color: #006FB0;
}
.doctor_list_item_profile p {
  margin-bottom: 0.5rem !important;
  font-size: 1.5rem;
}

.hospital_list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.hospital_list_item {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hospital_list_item {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 521px) and (max-width: 768px) {
  .hospital_list_item {
    width: calc((100% - 30px) / 2);
  }
}
.hospital_list_item img {
  border-radius: 20px;
}
.hospital_list_item figcaption {
  display: flex;
  justify-content: center;
  padding: 10px;
  font-weight: 700;
}

.recruit_list li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-left: 0 !important;
  list-style-type: none !important;
}
.recruit_list li::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 7px 5px 0 0;
  background: url(../images/icon_recruit.svg) no-repeat center center;
  background-size: contain;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
  padding: 0 10px;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon_ttl {
  display: flex;
  justify-content: center;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 80px 0;
  background: #F8F4E7;
}
.mcon_ttl h1 {
  position: relative;
  padding-left: 45px;
  color: #000;
  font-size: clamp(2.3rem, 1.709rem + 2.95vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}
.mcon_ttl h1::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #006FB0;
  border-radius: 50vh;
}
.mcon_ttl h1::after {
  position: absolute;
  top: 50%;
  left: 21px;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #8BCBF0;
  border-radius: 50vh;
}
.mcon_page {
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.mcon_page h1 {
  display: flex;
  justify-content: center;
  margin: 30px 0;
  font-size: 3.2rem;
}
.mcon_page h2 {
  position: relative;
  margin: 20px 0;
  padding-left: 20px;
  color: #006FB0;
  font-size: 3rem;
  font-weight: 400;
}
.mcon_page h2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 3px;
  height: 100%;
  background: #006FB0;
}
.mcon_page h3 {
  position: relative;
  margin: 20px 0;
  padding-bottom: 10px;
  font-size: 2.4rem;
  border-bottom: 1px solid rgba(112, 112, 112, 0.22);
}
.mcon_page h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
  font-size: 2rem;
  font-weight: 400;
}
.mcon_page h4::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 6px solid #006FB0;
  border-radius: 50vh;
  box-sizing: border-box;
}
.mcon_page h5, .mcon_page h6 {
  margin: 20px 0;
  padding-bottom: 10px;
  padding-left: 20px;
  font-size: 1.8rem;
  border-bottom: 1px solid rgba(112, 112, 112, 0.22);
}
.mcon_page hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon_page iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}
.mcon_page img {
  max-width: 100%;
  height: auto;
}
.mcon_page p {
  margin-bottom: 1em;
}
.mcon_page ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon_page ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}
.mcon_page ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon_page ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon_page .more_btn {
  width: 100%;
  max-width: 240px;
  height: 68px;
  padding: 0;
  background: none;
  border: none;
}
.mcon_page .more_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 40px;
  background: #006FB0;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  border: 3px solid #8BCBF0;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.mcon_page .more_btn a:focus, .mcon_page .more_btn a:hover {
  background: #fff;
  color: #006FB0;
}/*# sourceMappingURL=sp.css.map */