@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;
  }
}
/*               アニメーション用の初期状態
======================================================= */
.txt_base p {
  margin-bottom: 1em;
}
.txt_base p:last-child {
  margin-bottom: 0;
}

/*                トップページ用
======================================================= */
/*                content
======================================================= */
.home_greeting {
  padding: 40px 24px 230px;
  position: relative;
}
.home_greeting h2 {
  font-size: 22px;
}
.home_greeting .rdm_img {
  position: absolute;
  z-index: 3;
}
.home_greeting .rdm_img:nth-of-type(1) {
  bottom: 17%;
  left: 0;
  max-width: 500px;
  width: 39.0625%;
}
.home_greeting .rdm_img:nth-of-type(2) {
  bottom: 0;
  right: 50%;
  max-width: 230px;
  min-width: 230px;
  width: 17.96875%;
}
.home_greeting .content_wrap {
  background: url(../images/home/greeting-bg.webp) no-repeat center center/cover;
  padding: 120px 0;
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
}
.home_greeting .content_wrap .rdm_img {
  bottom: -10%;
  right: 40px;
  left: auto;
  max-width: 300px;
  width: 23.4375%;
}
.home_greeting .content_wrap .container {
  max-width: 1020px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.home_greeting .content_wrap .container .heading_txt_area {
  width: 48.8683127572%;
}
.home_greeting .content_wrap .container .content_area {
  width: 41.1522633745%;
}
.home_greeting .content_wrap .container .heading_txt {
  font-size: 28px;
  font-weight: bold;
  line-height: 2;
  color: #F06D96;
}
.home_greeting .content_wrap .container .txt_base {
  margin: 32px 0;
}
@media only screen and (max-width: 768px) {
  .home_greeting {
    padding: 100px 8px 234px;
  }
  .home_greeting .rdm_img:nth-of-type(1) {
    top: 40px;
    left: 0;
    max-width: 360px;
    width: 90%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .home_greeting .rdm_img:nth-of-type(2) {
    right: auto;
    left: 0;
    width: 57.5%;
    height: -moz-fit-content;
    height: fit-content;
  }
  .home_greeting .content_wrap {
    padding: 220px 0 176px;
  }
  .home_greeting .content_wrap .container {
    flex-direction: column;
    gap: 32px;
  }
  .home_greeting .content_wrap .container .heading_txt_area {
    width: 100%;
  }
  .home_greeting .content_wrap .container .heading_txt_area .heading_txt {
    font-size: 24px;
    line-height: 1.7;
  }
  .home_greeting .content_wrap .container .content_area {
    width: 100%;
  }
  .home_greeting .content_wrap .rdm_img {
    bottom: -6%;
    right: -8px;
    top: auto;
    left: auto;
    max-width: 300px;
    width: 75%;
    height: -moz-fit-content;
    height: fit-content;
  }
}

.home_feature {
  background-image: linear-gradient(to bottom, #fff 0%, #FFF3F5 40%, #FFF3F5 100%);
  padding: 80px 0;
}
.home_feature .content_wrap {
  max-width: 1120px;
  padding: 0 24px;
  margin: 0 auto;
}
.home_feature h2 {
  font-size: 32px;
}
@media only screen and (max-width: 768px) {
  .home_feature h2 {
    font-size: 26px;
  }
}
.home_feature .sub_ttl {
  margin-bottom: 30px;
}
.home_feature .heading_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1020px;
  margin: 0 auto 20px;
}
.home_feature .heading_container div:first-child {
  width: 49.0196078431%;
}
.home_feature .heading_container div:last-child {
  width: 41.3725490196%;
}
.home_feature .feature_item_block {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.home_feature .feature_item_block .feature_item {
  display: block;
  width: calc(50% - 8px);
  background-color: #fff;
  padding: 32px;
  border-radius: 5px;
  border: 2px solid transparent;
}
.home_feature .feature_item_block .feature_item:nth-of-type(2n) {
  transform: translateY(64px);
}
.home_feature .feature_item_block .feature_item .heading {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  margin-bottom: 12px;
  padding-right: 40px;
}
.home_feature .feature_item_block .feature_item .heading::before {
  content: "";
  background: url(../images/common/arw_blue.webp) no-repeat center center/contain;
  width: 18px;
  height: 12px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s all;
}
.home_feature .feature_item_block .feature_item .heading .icon_area {
  width: 70px;
}
.home_feature .feature_item_block .feature_item .heading h3 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.home_feature .feature_item_block .feature_item .detail {
  margin-bottom: 12px;
}
.home_feature .feature_item_block .feature_item .detail ul li {
  font-weight: bold;
  color: #6B7798;
  padding-left: 10px;
  position: relative;
}
.home_feature .feature_item_block .feature_item .detail ul li::before {
  content: "●";
  font-size: 5px;
  color: #F06D96;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.home_feature .feature_item_block .feature_item:hover {
  border: 2px solid #FFBDD2;
}
.home_feature .feature_item_block .feature_item:hover .heading::before {
  background: url(../images/common/arw_pink.webp) no-repeat center center/contain;
}
.home_feature .c-btn_wrap {
  margin-top: 64px;
  display: flex;
  justify-content: end;
  padding-top: 40px;
}
@media only screen and (max-width: 768px) {
  .home_feature .heading_container {
    flex-direction: column;
    gap: 40px;
  }
  .home_feature .heading_container div:first-child {
    width: 100%;
  }
  .home_feature .heading_container div:last-child {
    width: 100%;
    text-align: center;
  }
  .home_feature .heading_container div:last-child img {
    max-width: 352px;
  }
  .home_feature .feature_item_block {
    flex-direction: column;
    margin-top: 40px;
  }
  .home_feature .feature_item_block .feature_item {
    width: 100%;
    padding: 24px;
  }
  .home_feature .feature_item_block .feature_item:nth-of-type(2n) {
    transform: translateY(0);
  }
  .home_feature .feature_item_block .feature_item .heading .icon_area {
    width: 50px;
  }
  .home_feature .feature_item_block .feature_item .heading h3 {
    font-size: 18px;
    width: calc(100% - 62px);
  }
  .home_feature .c-btn_wrap {
    padding-top: 0;
    margin-top: 40px;
  }
}

.home_troblues {
  padding-top: 40px;
}
.home_troblues h2 {
  font-size: 26px;
}
@media only screen and (max-width: 768px) {
  .home_troblues h2 {
    font-size: 20px;
  }
}
.home_troblues .content_wrap {
  padding: 0 24px;
}
@media only screen and (max-width: 768px) {
  .home_troblues .content_wrap {
    padding: 0 8px;
  }
}
.home_troblues .troblues_item_block_container {
  border: 2px solid #FFBDD2;
  border-radius: 10px;
  padding: 64px;
  max-width: 1232px;
  margin: 0 auto 40px;
}
.home_troblues .troblues_item_block_container .heading_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.home_troblues .troblues_item_block_container .heading_container .ttl_wrap {
  width: 33.137254902%;
}
.home_troblues .troblues_item_block_container .heading_container .txt_base {
  width: 49.0196078431%;
}
.home_troblues .troblues_item_block_container .troblues_item_block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.home_troblues .troblues_item_block_container .troblues_item_block .troblues_item {
  background-color: #FFE6EB;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  gap: 12px;
}
.home_troblues .troblues_item_block_container .troblues_item_block .troblues_item p {
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
}
.home_troblues .troblues_item_block_container .c-btn_wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .home_troblues .troblues_item_block_container {
    padding: 40px 24px;
  }
  .home_troblues .troblues_item_block_container .heading_container {
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
  .home_troblues .troblues_item_block_container .heading_container .ttl_wrap {
    width: 100%;
    text-align: center;
  }
  .home_troblues .troblues_item_block_container .heading_container .txt_base {
    width: 100%;
  }
  .home_troblues .troblues_item_block_container .troblues_item_block {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home_troblues .column_btn_container {
  background-image: linear-gradient(to bottom, #fff 0%, #F3F4F6 100%);
  padding-bottom: 80px;
}
.home_troblues .column_btn_container .column_btn_block {
  max-width: 1068px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
}
.home_troblues .column_btn_container .column_btn_block a {
  display: block;
  width: calc(50% - 8px);
  position: relative;
  align-content: center;
  height: 250px;
  border-radius: 5px;
}
.home_troblues .column_btn_container .column_btn_block a p {
  font-weight: bold;
  text-align: center;
  color: #fff;
  font-size: 22px;
  text-shadow: 1px 1px 10px #4A536D;
}
.home_troblues .column_btn_container .column_btn_block a img {
  -o-object-fit: cover;
     object-fit: cover;
}
.home_troblues .column_btn_container .column_btn_block a::before {
  content: "";
  background: url(../images/common/c-btn-arw_white.webp) no-repeat center center/contain;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 24px;
  right: 24px;
  transition: 0.3s all;
}
.home_troblues .column_btn_container .column_btn_block a:first-child {
  background: url(../images/home/banner-cancer.webp) no-repeat center center/cover;
}
.home_troblues .column_btn_container .column_btn_block a:last-child {
  background: url(../images/home/banner-troubles.webp) no-repeat center center/cover;
}
.home_troblues .column_btn_container .column_btn_block a:hover::before {
  background: url(../images/common/c-btn-arw_blue.webp) no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .home_troblues .column_btn_container .column_btn_block {
    flex-direction: column;
  }
  .home_troblues .column_btn_container .column_btn_block a {
    width: 100%;
    height: 175px;
  }
  .home_troblues .column_btn_container .column_btn_block a p {
    font-size: 20px;
  }
}

.home_recommend {
  padding: 40px 24px 0;
  position: relative;
  z-index: 2;
}
.home_recommend .content_wrap {
  padding: 80px 0;
  text-align: center;
  position: relative;
  --before-opacity: 0;
}
.home_recommend .content_wrap::before {
  content: "";
  background-image: -webkit-image-set(url(../images/home/breast-cancer-screening-bg.webp) 1x, url(../images/home/breast-cancer-screening-bg@2x.webp) 2x);
  background-image: image-set(url(../images/home/breast-cancer-screening-bg.webp) 1x, url(../images/home/breast-cancer-screening-bg@2x.webp) 2x);
  background-repeat: no-repeat;
  background-position: bottom -20px center;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: var(--before-opacity);
  transition: opacity 0.3s ease;
}
.home_recommend .heading .keyword_block {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.home_recommend .heading .keyword_block .keyword {
  background-color: #FF9CBB;
  padding: 4px 8px 6px;
  color: #fff;
  font-weight: bold;
  border-radius: 3px;
}
.home_recommend .heading .ttl_wrap {
  margin: 16px 0 32px;
}
.home_recommend .txt_base {
  margin-bottom: 32px;
}
.home_recommend .c-btn_wrap {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .home_recommend {
    padding: 0;
  }
  .home_recommend .content_wrap {
    padding: 80px 0 160px;
  }
  .home_recommend .content_wrap::before {
    background-image: -webkit-image-set(url(../images/home/breast-cancer-screening-bg_sp.webp) 1x, url(../images/home/breast-cancer-screening-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/home/breast-cancer-screening-bg_sp.webp) 1x, url(../images/home/breast-cancer-screening-bg_sp@2x.webp) 2x);
  }
  .home_recommend .content_wrap .container {
    padding: 0 24px;
  }
  .home_recommend .heading .keyword_block .keyword {
    font-size: 14px;
  }
  .home_recommend .txt_base p:not(:last-child) {
    margin-bottom: 0.5em;
  }
}

.home_doctor {
  min-height: 120vh;
  background-image: -webkit-image-set(url(../images/home/doctor-bg.webp) 1x, url(../images/home/doctor-bg@2x.webp) 2x);
  background-image: image-set(url(../images/home/doctor-bg.webp) 1x, url(../images/home/doctor-bg@2x.webp) 2x);
  background-repeat: no-repeat;
  background-position: right 20% center;
  background-size: cover;
  position: relative;
  z-index: 1;
  margin-top: -5%;
}
.home_doctor .content_wrap {
  width: 31.25%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10.15625%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
@media only screen and (min-width: 769px) {
  .home_doctor .content_wrap.is-visible {
    opacity: 1;
    animation: doctorFadeInPC 0.8s ease forwards;
  }
}
@media only screen and (min-width: 769px) {
  @keyframes doctorFadeInPC {
    from {
      transform: translateY(-46%);
      opacity: 0;
    }
    to {
      transform: translateY(-50%);
      opacity: 1;
    }
  }
}
@media only screen and (max-width: 1100px) {
  .home_doctor {
    min-height: 70vh;
    margin-top: 0;
  }
  .home_doctor .content_wrap {
    width: 49.21875%;
  }
}
@media only screen and (max-width: 768px) {
  .home_doctor {
    padding: 80px 0 240px;
    min-height: 90vh;
    background-image: -webkit-image-set(url(../images/home/doctor-bg_sp.webp) 1x, url(../images/home/doctor-bg_sp@2x.webp) 2x);
    background-image: image-set(url(../images/home/doctor-bg_sp.webp) 1x, url(../images/home/doctor-bg_sp@2x.webp) 2x);
    background-position: bottom center;
    background-size: 100%;
  }
  .home_doctor .content_wrap {
    width: 100%;
    padding: 0 24px;
    position: relative;
    top: 0;
    transform: translateY(0);
    left: 0;
  }
  .home_doctor .content_wrap.is-visible {
    opacity: 1;
    animation: doctorFadeInSP 0.8s ease forwards;
  }
  @keyframes doctorFadeInSP {
    from {
      transform: translateY(20px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
}

.home_access {
  margin-top: 85px;
  background-image: linear-gradient(to bottom, #fff 0%, #F3F4F6 100%);
  padding-bottom: 40px;
}
.home_access .content_wrap {
  padding: 0 24px;
  max-width: 1168px;
  margin: 0 auto;
}
.home_access .content_wrap .home_access_block {
  background-color: #3C4B78;
  padding: 56px;
  border-radius: 10px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.home_access .content_wrap .home_access_block .info_block {
  width: 39.3849206349%;
}
.home_access .content_wrap .home_access_block .info_block .site_name {
  font-size: 20px;
  line-height: 1.2;
  font-weight: bold;
}
.home_access .content_wrap .home_access_block .info_block .site_name span {
  font-size: 15px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.05em;
}
.home_access .content_wrap .home_access_block .info_block .address {
  margin: 24px 0;
}
.home_access .content_wrap .home_access_block .map_block {
  width: 56.6468253968%;
  display: flex;
  justify-content: space-between;
}
.home_access .content_wrap .home_access_block .map_block div.map_img_block {
  width: 53.0647985989%;
}
.home_access .content_wrap .home_access_block .map_block div.map_img_block img {
  margin-bottom: 8px;
}
.home_access .content_wrap .home_access_block .map_block div.map_iframe_block {
  width: 45.534150613%;
}
.home_access .content_wrap .home_access_block .map_block div.map_iframe_block iframe {
  height: calc(100% - 145px);
  min-height: 200px;
}
@media only screen and (max-width: 1100px) {
  .home_access .content_wrap .home_access_block {
    padding: 32px 24px;
    gap: 32px;
  }
  .home_access .content_wrap .home_access_block .info_block {
    width: 50%;
  }
  .home_access .content_wrap .home_access_block .map_block {
    width: 50%;
    flex-direction: column;
    gap: 32px;
  }
  .home_access .content_wrap .home_access_block .map_block div:first-child {
    width: 100%;
  }
  .home_access .content_wrap .home_access_block .map_block div:last-child {
    width: 100%;
  }
  .home_access .content_wrap .home_access_block .map_block div.map_iframe_block iframe {
    height: 300px;
  }
}
@media only screen and (max-width: 768px) {
  .home_access .content_wrap .home_access_block {
    flex-direction: column;
    gap: 32px;
  }
  .home_access .content_wrap .home_access_block .info_block {
    width: 100%;
  }
  .home_access .content_wrap .home_access_block .map_block {
    width: 100%;
  }
}
.home_access .content_wrap .clinic_detail_block {
  width: 54.8214285714%;
  margin: 0 auto;
  display: flex;
}
.home_access .content_wrap .clinic_detail_block div {
  width: 50%;
  display: flex;
  align-items: center;
  gap: 16px;
}
.home_access .content_wrap .clinic_detail_block div img {
  width: 70px;
  height: 50px;
}
.home_access .content_wrap .clinic_detail_block div a {
  font-weight: bold;
  position: relative;
}
.home_access .content_wrap .clinic_detail_block div a:hover {
  color: #F06D96;
}
.home_access .content_wrap .clinic_detail_block div a:hover + .arrow_area img:last-child {
  display: block;
}
.home_access .content_wrap .clinic_detail_block div a:hover + .arrow_area img:first-child {
  display: none;
}
.home_access .content_wrap .clinic_detail_block div .arrow_area {
  position: relative;
  width: 18px;
  height: 12px;
  padding: 0;
}
.home_access .content_wrap .clinic_detail_block div .arrow_area img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home_access .content_wrap .clinic_detail_block div .arrow_area img:last-child {
  display: none;
}
.home_access .content_wrap .clinic_detail_block div:first-child {
  border-right: 2px solid #BFC8D7;
  justify-content: flex-start;
}
.home_access .content_wrap .clinic_detail_block div:last-child {
  justify-content: flex-end;
}
@media only screen and (max-width: 1023px) {
  .home_access .content_wrap .clinic_detail_block {
    width: 100%;
    padding: 0 48px;
  }
  .home_access .content_wrap .clinic_detail_block div:last-child {
    justify-content: center;
  }
}
@media only screen and (max-width: 768px) {
  .home_access .content_wrap .clinic_detail_block {
    padding: 0 0;
    flex-direction: column;
    align-items: center;
  }
  .home_access .content_wrap .clinic_detail_block div {
    padding: 16px 0;
    width: 100%;
  }
  .home_access .content_wrap .clinic_detail_block div:first-child {
    border-right: none;
    border-bottom: 2px solid #BFC8D7;
    justify-content: center;
  }
}/*# sourceMappingURL=home.css.map */