@charset "UTF-8";
/*                共通
======================================================= */
/*                reset
======================================================= */
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.3; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
  scroll-behavior: smooth;
  scroll-padding-top: 122.98px;
}

body {
  -webkit-text-size-adjust: 100%; /* 勝手に文字が拡大されるのを防ぐ */
  /* 以下、案件ごとに適宜変更 */
  color: #37415E;
  font-family: "Noto Sans JP", serif;
  background-color: #fff;
  font-size: 16px;
}

body,
h1,
h2,
h3,
h4,
h5,
table,
th,
td,
ul,
li,
ol,
dl,
dt,
dd,
form,
p {
  margin: 0px;
  padding: 0px;
  font-weight: normal;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  list-style-type: none;
  line-height: 1.7;
}

input,
textArea,
select,
button {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none; /* iOS系のスタイルを外す */
}

button {
  cursor: pointer;
}

figure {
  margin: 0px;
}

img,
iframe {
  max-width: 100%;
  height: auto;
  vertical-align: top; /* 意図しない余白の削除 */
}

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  /* 以下、案件ごとに適宜変更 */
  letter-spacing: 0.05em;
  color: #37415E;
  cursor: pointer;
  transition: 0.3s all;
}
a::before {
  transition: 0.3s;
}

strong {
  font-weight: bold !important;
}

/*                header
======================================================= */
header {
  width: 100%;
  padding: 20px 24px 10px;
  box-sizing: border-box;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
header .header_guide_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_guide_block .site_logo {
  display: block;
  width: 25.4058441558%;
  max-width: 313px;
}
header .header_guide_block .contact_access {
  display: flex;
  align-items: center;
  gap: 15px;
}
header .header_guide_block .contact_access .contact_access_info {
  font-size: 13px;
  color: #6B7798;
  line-height: 1.5;
  text-align: right;
}
header .header_guide_block .contact_access .c-tel_btn {
  max-width: 200px;
  padding: 10px 20px;
}
header .header_guide_block .contact_access .header_access_link {
  display: block;
  text-align: center;
  position: relative;
}
header .header_guide_block .contact_access .header_access_link .img_area {
  position: relative;
  width: 24px;
  height: 24px;
  margin: 0 auto;
}
header .header_guide_block .contact_access .header_access_link .img_area img {
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
header .header_guide_block .contact_access .header_access_link .img_area img:last-child {
  display: none;
}
header .header_guide_block .contact_access .header_access_link p {
  font-size: 14px;
  color: #3C4B78;
  transition: 0.3s;
}
header .header_guide_block .contact_access .header_access_link:hover .img_area img:first-child {
  display: none;
}
header .header_guide_block .contact_access .header_access_link:hover .img_area img:last-child {
  display: block;
}
header .header_guide_block .contact_access .header_access_link:hover p {
  color: #F06D96;
}
header .header_guide_block .open-menu_btn {
  display: none;
}
header .header_nav_block {
  margin-top: 10px;
}
header .header_nav_block .header_nav_list {
  display: flex;
  justify-content: space-between;
}
header .header_nav_block .header_nav_list .header_nav_item {
  width: 14.2857142857%;
  text-align: center;
  padding: 3px 0 5px;
}
header .header_nav_block .header_nav_list .header_nav_item:not(:last-child) {
  border-right: 1px solid #BFC8D7;
}
header .header_nav_block .header_nav_list .header_nav_item:nth-of-type(4), header .header_nav_block .header_nav_list .header_nav_item:nth-of-type(5) {
  position: relative;
}
header .header_nav_block .header_nav_list .header_nav_item:nth-of-type(5) p {
  color: #3C4B78;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
}
header .header_nav_block .header_nav_list .header_nav_item a {
  color: #3C4B78;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 5px;
}
header .header_nav_block .header_nav_list .header_nav_item a:hover {
  color: #F06D96;
}
header .header_nav_block .header_nav_list .header_nav_item:hover .header_child_menu {
  display: block;
}
header .header_nav_block .header_child_menu {
  display: none;
  padding-top: 20px;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  width: 100%;
  margin: auto;
}
header .header_nav_block .header_child_menu .inner {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2588235294);
  padding: 32px 0;
}
header .header_nav_block .header_child_menu .inner a {
  color: #37415E;
}
header .header_nav_block .header_child_menu .inner a:hover {
  color: #F06D96;
}
header .header_nav_block .header_child_menu:hover {
  display: block;
}

.open-menu_wrap {
  position: fixed;
  top: 68px;
  right: -100%;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 20px 20px;
  background-color: #fff;
  z-index: 9998;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}
.open-menu_wrap.active {
  right: 0;
}

@media only screen and (max-width: 900px) {
  header {
    padding: 12px;
  }
  header .header_guide_block .open-menu_btn {
    display: block;
    background-color: #F06D96;
    border-radius: 3px;
    padding: 15px 12px;
    transition: 0.3s;
  }
  header .header_guide_block .open-menu_btn .inner {
    position: relative;
    width: 20px;
    height: 14px;
  }
  header .header_guide_block .open-menu_btn .inner span {
    background-color: #fff;
    position: absolute;
    height: 2px;
    transition: 0.3s;
  }
  header .header_guide_block .open-menu_btn .inner span:nth-of-type(1) {
    top: 0;
    right: 0;
    width: 100%;
  }
  header .header_guide_block .open-menu_btn .inner span:nth-of-type(2) {
    top: 50%;
    right: 0;
    width: 80%;
    transform: translateY(-50%);
  }
  header .header_guide_block .open-menu_btn .inner span:nth-of-type(3) {
    bottom: 0;
    right: 0;
    width: 70%;
  }
  header .header_guide_block .open-menu_btn.active {
    background-color: #6B7798;
    border-radius: 50%;
  }
  header .header_guide_block .open-menu_btn.active .inner span:nth-of-type(1) {
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(45deg);
  }
  header .header_guide_block .open-menu_btn.active .inner span:nth-of-type(2) {
    display: none;
  }
  header .header_guide_block .open-menu_btn.active .inner span:nth-of-type(3) {
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%) rotate(-45deg);
  }
  header .header_guide_block .site_logo {
    width: 65.1595744681%;
  }
  header .header_guide_block .contact_access {
    display: none;
  }
  header .header_nav_block {
    display: none;
  }
}
/*                leyout
======================================================= */
main {
  margin-top: 122.98px;
}
@media only screen and (max-width: 900px) {
  main {
    margin-top: 70px;
  }
}

.sp_only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

.content_wrapper {
  position: relative;
  padding-top: 80px;
}
.content_wrapper.bottom_gray_shabow::after {
  content: "";
  background-image: linear-gradient(to bottom, #FFFFFF 0%, #F3F4F6 100%);
  width: 100%;
  height: 160px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.content_wrapper.bottom_pink_shabow::after {
  content: "";
  background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFF3F5 100%);
  width: 100%;
  height: 160px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.content_wrapper.bg_pink_gradient {
  background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFF3F5 100%);
}
.content_wrapper:last-child {
  padding: 80px 0 120px;
}
@media only screen and (max-width: 768px) {
  .content_wrapper:last-child {
    padding: 80px 0 80px;
  }
}

section.bg_pink_gradient {
  background-image: linear-gradient(to bottom, #FFFFFF 0%, #FFF3F5 100%);
}
section.bg_gray_gradient {
  background-image: linear-gradient(to bottom, #FFFFFF 0%, #F3F4F6 100%);
}

.half_flex {
  display: flex;
  gap: 30px;
}
.half_flex .txt_area,
.half_flex .img_area {
  width: calc(50% - 15px);
}
.half_flex .txt_area .heading_txt {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  font-weight: bold;
  margin-bottom: 32px;
}
.half_flex .txt_area .heading_txt::before {
  content: "";
  background: url(../images/common/check-box.webp) no-repeat center center/contain;
  width: 23px;
  height: 23px;
  top: 3px;
  left: 0;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .half_flex {
    flex-direction: column;
  }
  .half_flex .txt_area,
  .half_flex .img_area {
    width: 100%;
  }
  .half_flex .txt_area .heading_txt {
    margin-bottom: 20px;
  }
  .half_flex.reverse {
    flex-direction: column-reverse;
  }
}

.mb-32 {
  margin-bottom: 32px;
}

.mb-24 {
  margin-bottom: 24px;
}

.bold_text {
  font-weight: bold;
}

.light_text {
  font-weight: 400;
}

/*                タイトル装飾
======================================================= */
h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 0.3em;
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 26px;
    margin-bottom: 0.1em;
  }
}
h2 + .sub_ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
  position: relative;
  font-size: 15px;
  font-weight: bold;
  padding-left: 15px;
  line-height: normal;
  display: inline-block;
}
h2 + .sub_ttl::before {
  content: "";
  background: url(../images/common/sub-ttl-heart.webp) no-repeat center center/contain;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 9px;
}

.common_ttl_wrap {
  padding-bottom: 32px;
  border-bottom: 4px solid #F3F4F6;
  margin-bottom: 48px;
}
.common_ttl_wrap h2 {
  color: #F06D96;
}

/*                テキスト装飾
======================================================= */
.pink1_text {
  color: #F06D96;
  font-weight: bold;
}

.pink2_text {
  color: #FFBDD2;
}

.black_text {
  color: #37415E;
}

/*                見出し
======================================================= */
/*                本文テキスト
======================================================= */
.txt_base p {
  margin-bottom: 0.5em;
}
.txt_base p:last-child {
  margin-bottom: 0;
}

/*                Utility
======================================================= */
.calendar_table {
  width: 100%;
  font-weight: 600;
  border: 2px solid #6B7798;
  background-color: #3C4B78;
  color: #fff;
}
.calendar_table .calendar_table_row {
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
}
.calendar_table .calendar_table_row div {
  padding: 8px 0;
}
.calendar_table .calendar_table_row div:first-child {
  width: 100px;
  text-align: center;
}
.calendar_table .calendar_table_row div:not(:first-child) {
  min-width: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.calendar_table .calendar_table_row:nth-of-type(1) {
  background-color: #6B7798;
}
.calendar_table .calendar_table_row:nth-of-type(1) div {
  padding: 3px 0;
}
.calendar_table .calendar_table_row:nth-of-type(2) {
  border-bottom: dashed 2px #6B7798;
  padding: 0;
  margin: 0 20px;
}
.calendar_table + p {
  font-size: 13px;
  margin-top: 8px;
}

.c-tel_btn {
  display: block;
  background-color: #F06D96;
  align-content: center;
  text-align: center;
  border-radius: 3px;
}
.c-tel_btn span {
  position: relative;
  color: #fff;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  padding-left: 20px;
}
.c-tel_btn span::before {
  content: "";
  background: url(../images/common/tel-icon_white.webp) no-repeat center center/contain;
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.c-tel_btn:hover {
  background-color: #fff;
  border: 2px solid #F06D96;
}
.c-tel_btn:hover span {
  color: #F06D96;
}
.c-tel_btn:hover span::before {
  background: url(../images/common/tel-icon_pink.webp) no-repeat center center/contain;
}
.c-tel_btn + .note {
  text-align: center;
  font-size: 15px;
  color: #6B7798;
  margin-top: 5px;
}

.filter_link:hover {
  filter: opacity(50%);
}

.c-cta_block {
  display: flex;
  max-width: 960px;
  margin: 0 auto 40px;
  gap: 40px;
  justify-content: space-between;
}
.c-cta_block div:first-child p:first-child {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}
.c-cta_block div:first-child p:last-child {
  font-size: 15px;
  line-height: 1.8;
}
.c-cta_block div:last-child {
  width: 31.25%;
}
.c-cta_block div:last-child .c-tel_btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  height: 70px;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .c-cta_block {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .c-cta_block div:first-child {
    text-align: center;
  }
  .c-cta_block div:first-child p:first-child {
    font-size: 20px;
  }
  .c-cta_block div:last-child {
    width: 100%;
  }
}

.c-nav_block {
  background-color: #F3F4F6;
  padding: 64px;
  display: flex;
  justify-content: space-between;
  max-width: 1600px;
  margin: 0 auto;
}
.c-nav_block .clinic_info {
  width: 32.7898550725%;
}
.c-nav_block .clinic_info a {
  display: block;
  margin-bottom: 24px;
  max-width: 340px;
}
.c-nav_block .clinic_info .detail_area {
  background-color: #E6EAF0;
  padding: 16px;
  color: #3C4B78;
  font-size: 14px;
  line-height: 1.3;
}
.c-nav_block .clinic_info .detail_area p:first-child {
  text-indent: -3em;
  padding-left: 3em;
  margin-bottom: 0.8em;
}
.c-nav_block .clinic_nav_block {
  width: 55.0724637681%;
}
.c-nav_block .clinic_nav_block .main_nav {
  display: flex;
  -moz-column-gap: 50px;
       column-gap: 50px;
  justify-content: end;
  margin-bottom: 40px;
}
.c-nav_block .clinic_nav_block .main_nav ul li:not(:last-child) {
  margin-bottom: 0.4em;
}
.c-nav_block .clinic_nav_block .main_nav ul li a {
  font-size: 14px;
  font-weight: bold;
}
.c-nav_block .clinic_nav_block .main_nav ul li a:hover {
  color: #F06D96;
}
.c-nav_block .clinic_nav_block .sub_nav {
  margin-bottom: 40px;
}
.c-nav_block .clinic_nav_block .sub_nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
.c-nav_block .clinic_nav_block .sub_nav ul li {
  line-height: normal;
  padding: 0 1em;
}
.c-nav_block .clinic_nav_block .sub_nav ul li:not(:last-child) {
  border-right: 1px solid #BFC8D7;
}
.c-nav_block .clinic_nav_block .sub_nav ul li a {
  font-size: 14px;
  color: #6B7798;
}
.c-nav_block .clinic_nav_block .sub_nav ul li a:hover {
  color: #F06D96;
}
.c-nav_block .clinic_nav_block .external_link_wrap a {
  display: block;
  max-width: 300px;
  width: 49.3421052632%;
  margin-left: auto;
}
@media only screen and (max-width: 1200px) {
  .c-nav_block {
    padding: 40px 30px;
  }
  .c-nav_block .clinic_nav_block .main_nav {
    flex-wrap: wrap;
    row-gap: 20px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .c-nav_block .clinic_nav_block .main_nav ul {
    width: 50%;
  }
  .c-nav_block .clinic_nav_block .sub_nav ul {
    justify-content: start;
    row-gap: 10px;
  }
  .c-nav_block .clinic_nav_block .external_link_wrap a {
    margin-right: auto;
    margin-left: 0;
  }
}
@media only screen and (max-width: 768px) {
  .c-nav_block {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .c-nav_block .clinic_info {
    width: 100%;
  }
  .c-nav_block .clinic_nav_block {
    width: 100%;
  }
  .c-nav_block .clinic_nav_block .main_nav {
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
  }
  .c-nav_block .clinic_nav_block .main_nav ul {
    width: 100%;
  }
  .c-nav_block .clinic_nav_block .main_nav ul li {
    border-bottom: 1px solid #fff;
    padding: 8px 0;
    text-align: center;
  }
  .c-nav_block .clinic_nav_block .main_nav ul li:not(:last-child) {
    margin-bottom: 0;
  }
  .c-nav_block .clinic_nav_block .sub_nav {
    margin-bottom: 30px;
  }
  .c-nav_block .clinic_nav_block .external_link_wrap a {
    width: 100%;
    margin: 0 auto;
  }
}

.c-btn {
  display: flex;
  gap: 10px;
  align-items: center;
}
.c-btn .icon_area {
  position: relative;
  width: 60px;
  height: 60px;
}
.c-btn .icon_area img {
  position: absolute;
  transition: 0.3s;
  top: 0;
  left: 0;
}
.c-btn .icon_area img:last-child {
  display: none;
}
.c-btn span {
  font-weight: bold;
  transition: 0.3s;
}
.c-btn:hover .icon_area img:last-child {
  display: block;
}
.c-btn:hover .icon_area img:first-child {
  display: none;
}
.c-btn:hover span {
  color: #F06D96;
}

.sp_fixed_cta {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp_fixed_cta {
    display: flex;
    position: fixed;
    z-index: 10;
    bottom: 0;
    right: 0;
    width: 100%;
    padding: 0 10px;
    height: 60px;
    background: #F06D96;
    border: transparent;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  .sp_fixed_cta .inner {
    display: flex;
    gap: 24px;
    align-items: center;
  }
  .sp_fixed_cta .inner p {
    font-weight: bold;
  }
  .sp_fixed_cta .inner p:first-child {
    font-size: 14px;
  }
  .sp_fixed_cta .inner p:last-child {
    font-size: 20px;
    position: relative;
    padding-left: 20px;
  }
  .sp_fixed_cta .inner p:last-child::before {
    content: "";
    background: url(../images/common/tel-icon_white.webp) no-repeat center center/contain;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
  }
  .sp_fixed_cta:hover {
    background: #fff;
    border: 2px solid #F06D96;
    color: #F06D96;
  }
  .sp_fixed_cta:hover .inner p:last-child::before {
    background: url(../images/common/tel-icon_pink.webp) no-repeat center center/contain;
  }
}

.open_popUp {
  color: #fff;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
  display: inline-block;
  cursor: pointer;
  transition: 0.3s;
}
.open_popUp::before {
  content: "";
  background: url(../images/common/arw_white.webp) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.open_popUp:hover {
  color: #F06D96;
}
.open_popUp:hover::before {
  background: url(../images/common/arw_pink.webp) no-repeat center center/contain;
}

.popUp_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100vh;
  padding: 0 24px;
  overflow-y: auto;
  background: rgba(60, 75, 120, 0.5960784314);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: 1000;
  transition: 0.3s;
}
.popUp_overlay.is-active {
  display: block;
}
.popUp_overlay .popUp_container {
  background-color: #F3F4F6;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 40px 24px;
  position: relative;
}
.popUp_overlay .popUp_container .popUp_content {
  max-width: 500px;
  margin: 0 auto;
}
.popUp_overlay .popUp_container .popUp_close {
  position: absolute;
  top: -60px;
  right: 0;
  cursor: pointer;
}
@media only screen and (max-width: 1100px) {
  .popUp_overlay .popUp_container {
    width: 100%;
  }
}

/*                footer
======================================================= */
footer {
  background-color: #fff;
  box-sizing: border-box;
  padding: 40px 20px;
  box-sizing: border-box;
}
footer .copyright {
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  color: #6B7798;
  margin-top: 1em;
}

/*                iframeのレスポン化
======================================================= */
.frame_respon .fb_iframe_widget,
.frame_respon .fb_iframe_widget span,
.frame_respon .fb_iframe_widget iframe[style] {
  width: 100% important;
}

.gmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.gmap iframe,
.gmap object,
.gmap embed {
  border: none !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*               電話番号リンクをspのみ有効
======================================================= */
@media only screen and (min-width: 1024px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*               アニメーション用の初期状態
======================================================= */
/*                leyout
======================================================= */
/*                header
======================================================= */
/*                sp_menu
======================================================= */
/*                下層ページ共通
======================================================= */
.common_fv {
  padding: 20px 24px 0;
}
.common_fv .common_fv_inner {
  width: 100%;
  min-height: 400px;
  height: 70vh;
  background-image: -webkit-image-set(url(../images/common/common-fv-bg.webp) 1x, url(../images/common/common-fv-bg@2x.webp) 2x);
  background-image: image-set(url(../images/common/common-fv-bg.webp) 1x, url(../images/common/common-fv-bg@2x.webp) 2x);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  position: relative;
  border-radius: 10px;
}
.common_fv .content {
  position: absolute;
  top: 50%;
  left: 8.1168831169%;
  transform: translateY(-50%);
}
.common_fv .page_category {
  color: #F06D96;
}
.common_fv h1 {
  font-size: 48px;
  margin-bottom: 0.5em;
  font-weight: bold;
  line-height: 1.2;
}
.common_fv .pankuzu_menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}
.common_fv .pankuzu_menu a:hover {
  color: #F06D96;
}
.common_fv .pankuzu_menu a:not(:last-child)::after {
  content: "＞";
  margin-left: 14px;
  color: #F06D96;
}
@media only screen and (max-width: 768px) {
  .common_fv .common_fv_inner {
    height: 50vh;
    min-height: 300px;
    background-image: -webkit-image-set(url(../images/common/common-fv-bg_sp.webp) 1x, url(../images/common/common-fv-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/common/common-fv-bg_sp.webp) 1x, url(../images/common/common-fv-bg_sp@2x.webp) 2x);
    background-position: center center;
  }
  .common_fv h1 {
    font-size: 40px;
  }
}

section {
  padding: 0 24px;
}
section:not(:last-child) {
  margin-bottom: 80px;
}
section .content_wrap {
  max-width: 1120px;
  margin: 0 auto;
}
section .content_block:not(:last-child) {
  margin-bottom: 48px;
}
section .content_block .sec_heading_img {
  margin-bottom: 32px;
}

.content_wrapper:not(:last-child) section:last-child {
  padding-bottom: 80px;
}
.content_wrapper:not(:last-child) section:not(:last-child) {
  margin-bottom: 80px;
}

h3 {
  background-color: #3C4B78;
  color: #fff;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 32px;
  border-radius: 5px;
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 20px;
  }
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
  border: 2px solid #BFC8D7;
}
.c-table th, .c-table td {
  border: 2px solid #BFC8D7;
  padding: 10px 30px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .c-table th, .c-table td {
    padding: 10px 20px;
  }
}
.c-table th {
  text-align: center;
  color: #6B7798;
}
.c-table td:last-child {
  text-align: center;
  align-content: center;
}
.c-table.two-col td:first-child {
  width: 71.1607142857%;
}
.c-table.two-col td:last-child {
  width: 28.8392857143%;
}
.c-table.symptom_table td:first-child {
  width: 21.4285714286%;
  padding: 10px 20px;
}
.c-table.symptom_table td:first-child .inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-table.symptom_table td:first-child .inner img {
  width: 60px;
}
.c-table.symptom_table td:first-child .inner p {
  font-weight: bold;
  line-height: 1.3;
}
.c-table.symptom_table td:nth-child(2), .c-table.symptom_table td:nth-child(3) {
  width: 39.2857142857%;
  align-content: center;
  text-align: left;
  padding: 10px 20px;
}
.c-table.symptom_table th:first-child {
  width: 21.4285714286%;
}
.c-table.symptom_table th:nth-child(2), .c-table.symptom_table th:nth-child(3) {
  width: 39.2857142857%;
}
@media only screen and (max-width: 768px) {
  .c-table.symptom_table {
    width: 1000px;
    margin: 0 auto;
  }
  .c-table.symptom_table th:first-child {
    width: 33.3333333333%;
  }
  .c-table.symptom_table th:nth-child(2), .c-table.symptom_table th:nth-child(3) {
    width: 33.3333333333%;
  }
  .c-table.symptom_table td:first-child {
    width: 33.3333333333%;
  }
  .c-table.symptom_table td:nth-child(2), .c-table.symptom_table td:nth-child(3) {
    width: 33.3333333333%;
  }
}

/*                各ページスタイル
======================================================= */
.about_information .access_block {
  display: flex;
  justify-content: space-between;
}
.about_information .access_block .info_block {
  width: 35.4464285714%;
}
.about_information .access_block .info_block p:first-child {
  font-weight: 500;
  margin-bottom: 10px;
}
.about_information .access_block .map_block {
  width: 60.9821428571%;
  display: flex;
  justify-content: space-between;
}
.about_information .access_block .map_block .map_img_block {
  width: 44.3631039531%;
}
.about_information .access_block .map_block .map_iframe_block {
  width: 54.4655929722%;
}
.about_information .access_block .map_block .map_iframe_block iframe {
  height: calc(100% - 34px);
  min-height: 200px;
}
.about_information .access_block .open_popUp {
  color: #3C4B78;
}
.about_information .access_block .open_popUp::before {
  background: url(../images/common/arw_blue.webp) no-repeat center center/contain;
}
.about_information .access_block .open_popUp:hover {
  color: #F06D96;
}
.about_information .access_block .open_popUp:hover::before {
  background: url(../images/common/arw_pink.webp) no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .about_information .access_block {
    flex-direction: column;
    gap: 40px;
  }
  .about_information .access_block .info_block {
    width: 100%;
  }
  .about_information .access_block .info_block .calendar_table {
    max-width: 400px;
  }
  .about_information .access_block .map_block {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .about_information .access_block .map_block {
    flex-direction: column;
    gap: 24px;
  }
  .about_information .access_block .map_block .map_img_block {
    width: 100%;
  }
  .about_information .access_block .map_block .map_iframe_block {
    width: 100%;
  }
  .about_information .access_block .map_block .map_iframe_block iframe {
    height: 250px;
  }
}
.about_information .parking_block {
  display: flex;
  justify-content: space-between;
  border-radius: 10px;
  padding: 50px 60px;
}
.about_information .parking_block .img_area {
  width: 33.1%;
}
.about_information .parking_block .detail_area {
  width: 64.1%;
}
.about_information .parking_block .detail_area .heading_txt {
  font-weight: bold;
  font-size: 24px;
  padding-bottom: 8px;
  border-bottom: 3px solid #fff;
  margin-bottom: 28px;
}
.about_information .parking_block .detail_area a {
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}
.about_information .parking_block .detail_area a::before {
  content: "";
  background: url(../images/common/arw_blue.webp) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.about_information .parking_block .detail_area a:hover {
  color: #F06D96;
}
.about_information .parking_block .detail_area a:hover::before {
  background: url(../images/common/arw_pink.webp) no-repeat center center/contain;
}
.about_information .parking_block .detail_area .txt_base, .about_information .parking_block .detail_area img {
  margin-bottom: 28px;
}
.about_information .parking_block.bg_gray_flex {
  background-color: #F3F4F6;
}
.about_information .parking_block.bg_pink_flex {
  background-color: #FFF3F5;
}
.about_information .parking_block.bg_pink_flex .heading_txt {
  color: #F06D96;
  border-bottom: 3px solid #FFE6EB;
}
.about_information .parking_block.bg_pink_flex .txt_base p:first-child {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .about_information .parking_block {
    padding: 30px;
    flex-direction: column;
    gap: 28px;
  }
  .about_information .parking_block .img_area, .about_information .parking_block .detail_area {
    width: 100%;
  }
}

.doctor_profile_block .doctor_name {
  background-color: #3C4B78;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  margin-bottom: 32px;
}
.doctor_profile_block .doctor_name span {
  padding-right: 10px;
}
.doctor_profile_block .container {
  display: flex;
  justify-content: space-between;
}
.doctor_profile_block .container .img_area {
  width: 35.7142857143%;
}
.doctor_profile_block .container .txt_base {
  width: 61.4285714286%;
}
@media only screen and (max-width: 768px) {
  .doctor_profile_block .container {
    flex-direction: column;
    gap: 32px;
  }
  .doctor_profile_block .container .img_area, .doctor_profile_block .container .txt_base {
    width: 100%;
  }
}

.doctor_career_block {
  padding: 50px 60px;
  border-radius: 10px;
}
.doctor_career_block.bg_gray {
  background-color: #F3F4F6;
}
.doctor_career_block.bg_gray dt {
  border-bottom: 3px solid #fff;
}
.doctor_career_block.bg_gray dd {
  border-bottom: 2px dotted #CFD1D5;
}
.doctor_career_block.bg_pink {
  background-color: #FFF3F5;
}
.doctor_career_block.bg_pink dt {
  border-bottom: 3px solid #FFE6EB;
  color: #F06D96;
}
.doctor_career_block.bg_pink dd {
  border-bottom: 2px dotted #FFBDD2;
}
.doctor_career_block:last-child dd a {
  position: relative;
  padding-right: 30px;
}
.doctor_career_block:last-child dd a::before {
  content: "";
  background: url(../images/common/arw_blue.webp) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.doctor_career_block:last-child dd a:hover {
  color: #F06D96;
}
.doctor_career_block:last-child dd a:hover::before {
  background: url(../images/common/arw_pink.webp) no-repeat center center/contain;
}
.doctor_career_block:last-child dd a span {
  padding-right: 10px;
}
.doctor_career_block dt {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.doctor_career_block dd {
  font-weight: 500;
  padding: 8px 0;
  display: flex;
  gap: 30px;
}
.doctor_career_block dd:last-child {
  border-bottom: none;
}
.doctor_career_block dd .year {
  width: 110px;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .doctor_career_block {
    padding: 30px;
  }
  .doctor_career_block dd {
    flex-direction: column;
    gap: 3px;
  }
  .doctor_career_block dd .year {
    justify-content: flex-start;
    width: auto;
    gap: 10px;
  }
  .doctor_career_block:last-child dd {
    display: flex;
  }
}

.check_block {
  padding: 30px 60px;
  background-color: #fff;
  border-radius: 10px;
}
.check_block.no-style {
  padding: 0;
  background-color: transparent;
}
.check_block li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
}
.check_block li::before {
  content: "";
  background: url(../images/common/check-box.webp) no-repeat center center/contain;
  width: 23px;
  height: 23px;
  top: 3px;
  left: 0;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .check_block {
    padding: 30px;
  }
}

.column_img_block {
  display: flex;
  justify-content: space-between;
}
.column_img_block .img_area {
  width: calc(50% - 15px);
}
@media only screen and (max-width: 768px) {
  .column_img_block {
    flex-direction: column;
    gap: 24px;
  }
  .column_img_block .img_area {
    width: 100%;
  }
}

.stages_list {
  padding: 30px 60px;
  background-color: #FFF3F5;
  border-radius: 10px;
}
.stages_list .list_area {
  display: flex;
  gap: 30px;
  align-items: center;
}
.stages_list .list_area:not(:last-child) {
  margin-bottom: 24px;
}
.stages_list .list_area .img_area {
  width: 100px;
}
.stages_list .list_area .txt_area {
  width: calc(100% - 130px);
}
.stages_list dt {
  position: relative;
  padding-left: 16px;
  color: #F06D96;
  font-weight: bold;
  margin-bottom: 10px;
}
.stages_list dt::before {
  content: "";
  background: url(../images/common/sub-ttl-heart.webp) no-repeat center center/contain;
  width: 8px;
  height: 8px;
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .stages_list {
    padding: 30px;
  }
}

.feature-results_sec05 .check_block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .feature-results_sec05 .check_block {
    flex-direction: column;
    gap: 10px;
  }
}

.glaph_long {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.glaph_long img {
  min-width: 768px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .glaph_long {
    width: 100%;
    overflow-x: auto;
  }
}

.reserve_block .reserve_item:not(:last-child) {
  margin-bottom: 32px;
}
.reserve_block .reserve_item dt {
  font-weight: bold;
  position: relative;
  padding-left: 20px;
  margin-bottom: 0.7em;
}
.reserve_block .reserve_item dt::before {
  content: "◆";
  font-size: 16px;
  color: #F06D96;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.reserve_block .reserve_item .link_btn {
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}
.reserve_block .reserve_item .link_btn::before {
  content: "";
  background: url(../images/common/arw_blue.webp) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.four-paenel_block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.four-paenel_block .txt_area .ttl {
  color: #F06D96;
  font-weight: bold;
  margin: 0.7em 0;
}
@media only screen and (max-width: 768px) {
  .four-paenel_block {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media only screen and (max-width: 480px) {
  .four-paenel_block {
    grid-template-columns: repeat(1, 1fr);
  }
}

.medical-services_sec01 {
  text-align: center;
}
.medical-services_sec01 .btn_wrap {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.medical-services_sec01 .btn_wrap a {
  display: block;
  max-width: 300px;
  width: 100%;
  padding: 10px 0 12px;
  position: relative;
  background-color: #3C4B78;
  border-radius: 30px;
}
.medical-services_sec01 .btn_wrap a::before {
  content: "";
  background: url(../images/common/bottom_arw.webp) no-repeat center center/contain;
  width: 12px;
  height: 18px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.medical-services_sec01 .btn_wrap a:hover {
  background-color: #F06D96;
}
.medical-services_sec01 .btn_wrap a span {
  color: #fff;
  font-weight: bold;
}
@media only screen and (max-width: 480px) {
  .medical-services_sec01 .btn_wrap {
    flex-direction: column;
    gap: 16px;
  }
}

.txt_base.bg-gray {
  background-color: #F3F4F6;
  padding: 32px;
  border-radius: 10px;
}

.ex_block {
  padding: 50px 60px;
  border-radius: 10px;
}
.ex_block dt {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 8px;
  margin-bottom: 28px;
}
.ex_block.type-gray {
  background-color: #F3F4F6;
}
.ex_block.type-gray dt {
  border-bottom: 3px solid #fff;
}
.ex_block.type-pink {
  background-color: #FFF3F5;
}
.ex_block.type-pink dt {
  color: #F06D96;
  border-bottom: 3px solid #FFE6EB;
}
@media only screen and (max-width: 768px) {
  .ex_block {
    padding: 40px 30px;
  }
  .ex_block dt {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 6px;
  }
}

.machine_block {
  display: flex;
  justify-content: space-between;
}
.machine_block .img_area {
  width: 33.1%;
}
.machine_block .txt_area {
  width: 64.1%;
}
@media only screen and (max-width: 768px) {
  .machine_block {
    flex-direction: column;
    gap: 24px;
  }
  .machine_block .img_area, .machine_block .txt_area {
    width: 100%;
  }
}

.sitemap_list h4 {
  font-size: 24px;
  font-weight: bold;
  color: #F06D96;
  border-bottom: 3px solid #FFE6EB;
  padding-bottom: 8px;
  margin-bottom: 28px;
}
.sitemap_list .page_ttl a {
  font-weight: bold;
  padding-left: 45px;
  position: relative;
}
.sitemap_list .page_ttl a::before {
  content: "";
  background: url(../images/common/sitemap_arw.webp) no-repeat center center/contain;
  width: 34px;
  height: 34px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sitemap_list .page_ttl a:hover {
  color: #F06D96;
}
.sitemap_list .page_ttl a:hover::before {
  background: url(../images/common/sitemap_arw_pink.webp) no-repeat center center/contain;
}
.sitemap_list .inner-menu {
  margin: 8px 0 24px;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
  -moz-column-gap: 24px;
       column-gap: 24px;
  padding-left: 45px;
}
.sitemap_list .inner-menu a {
  font-weight: bold;
  font-size: 14px;
}
.sitemap_list .inner-menu a:hover {
  color: #F06D96;
}

.faq_block dl {
  margin-bottom: 32px;
}
.faq_block dl dt {
  background-color: #3C4B78;
  padding: 5px 20px;
  border-radius: 5px;
  color: #FFE6EB;
  font-weight: bold;
  margin-bottom: 1em;
}
.faq_block dl dd a {
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}
.faq_block dl dd a::before {
  content: "";
  background: url(../images/common/arw_blue.webp) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq_block dl dd a:hover {
  color: #F06D96;
}
.faq_block dl dd a:hover::before {
  background: url(../images/common/arw_pink.webp) no-repeat center center/contain;
}

.news_list_block a {
  padding: 20px 40px;
  background-color: #F3F4F6;
  border-radius: 5px;
  display: flex;
  gap: 20px;
  position: relative;
  border: 2px solid transparent;
}
.news_list_block a .news_date {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  font-size: 14px;
}
.news_list_block a .news_title {
  padding-right: 40px;
}
.news_list_block a::before {
  content: "";
  background: url(../images/common/arw_blue.webp) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.news_list_block a:not(:last-child) {
  margin-bottom: 24px;
}
.news_list_block a:hover {
  background-color: #fff;
  border: 2px solid #F06D96;
  color: #F06D96;
}
.news_list_block a:hover::before {
  background: url(../images/common/arw_pink.webp) no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .news_list_block a {
    padding: 20px 24px;
    flex-direction: column;
    gap: 4px;
  }
  .news_list_block a::before {
    right: 24px;
  }
  .news_list_block a .news_title {
    padding-right: 30px;
  }
}

.pagination {
  margin-top: 32px;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.pagination .arrow {
  width: 50px;
  height: 50px;
}
.pagination .arrow a {
  display: block;
  width: 100%;
  position: relative;
}
.pagination .arrow a img {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
.pagination .arrow a img:last-child {
  display: none;
}
.pagination .arrow:hover a img:first-child {
  display: none;
}
.pagination .arrow:hover a img:last-child {
  display: block;
}
.pagination .arrow.prevArw {
  margin-right: 10px;
}
.pagination .arrow.nextArw {
  margin-left: 10px;
}
.pagination .number span {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: bold;
  padding: 5px;
  cursor: pointer;
  align-content: center;
}
.pagination .number.current span {
  color: #F06D96;
}
.pagination .number:hover span {
  color: #F06D96;
}

.wp-block-heading {
  margin: 20px 0 24px;
}

h2.wp-block-heading {
  background-color: #3C4B78;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
}

h3.wp-block-heading {
  background-color: transparent;
  color: #37415E;
  padding: 0;
  border-radius: 0;
  font-size: 28px;
}

h4.wp-block-heading {
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 16px;
}

.news_btn_block {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
.news_btn_block a {
  width: 100%;
  max-width: 260px;
  margin: 0 auto;
  height: 60px;
  background-color: #F06D96;
  border-radius: 5px;
  align-content: center;
  text-align: center;
  border: 2px solid transparent;
}
.news_btn_block a span {
  color: #fff;
  font-weight: bold;
}
.news_btn_block a:hover {
  background-color: #fff;
  border: 2px solid #F06D96;
}
.news_btn_block a:hover span {
  color: #F06D96;
}/*# sourceMappingURL=page.css.map */