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

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

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

body {
  -webkit-text-size-adjust: 100%; /* 勝手に文字が拡大されるのを防ぐ */
  /* 以下、案件ごとに適宜変更 */
  color: #41505F;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  background-color: #FFFFFF;
  font-size: 16px;
  letter-spacing: normal;
}

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

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

button {
  cursor: pointer;
}

figure {
  margin: 0px;
}

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

table {
  border-collapse: collapse;
}

a {
  text-decoration: none;
  /* 以下、案件ごとに適宜変更 */
  letter-spacing: normal;
  color: #41505F;
  cursor: pointer;
}

/*                leyout
======================================================= */
main {
  margin-top: 72.8px;
}
@media only screen and (max-width: 1200px) {
  main {
    margin-top: 61px;
  }
}

/*                タイトル装飾
======================================================= */
.heart_num {
  width: 50px;
  height: 46px;
  text-align: center;
  align-content: center;
}
.heart_num span {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
}

/*                テキスト装飾
======================================================= */
.pinkText {
  color: #FA91BE;
}

.blueText {
  color: #4BAAFA;
}

.boldText {
  font-weight: bold;
}

.txt_base p {
  margin-bottom: 1em;
}

/*                見出し
======================================================= */
/*                本文テキスト
======================================================= */
/*                Utility
======================================================= */
.pc_only {
  display: block;
}
@media only screen and (max-width: 768px) {
  .pc_only {
    display: none;
  }
}

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

.c-filter {
  transition: 0.3s all;
}
.c-filter:hover {
  filter: opacity(0.7);
}

.floatBtn {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 100;
  width: 162px;
  height: 162px;
  box-shadow: 0px 0px 40px 0px rgba(69, 179, 213, 0.3960784314);
  border-radius: 50%;
}
@media only screen and (max-width: 768px) {
  .floatBtn {
    bottom: 0;
    right: 0;
    border-radius: 0%;
    box-shadow: none;
    width: 260px;
    height: 72px;
  }
}

.c-btn {
  display: block;
  text-align: center;
  align-items: center;
  position: relative;
  width: 248px;
  border-radius: 30px;
  border: 2px solid #FA91BE;
  background-color: #FFFFFF;
  padding: 10px 0;
}
@media only screen and (max-width: 768px) {
  .c-btn {
    width: 100%;
  }
}
.c-btn.sp_only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .c-btn.sp_only {
    display: block;
  }
}
.c-btn.pc_only {
  display: block;
}
@media only screen and (max-width: 768px) {
  .c-btn.pc_only {
    display: none;
  }
}
.c-btn::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/crlArw-pink.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  position: absolute;
}
.c-btn span {
  color: #FA91BE;
  font-weight: bold;
}
.c-btn:hover {
  background-color: #FA91BE;
}
.c-btn:hover span {
  color: #FFFFFF;
}
.c-btn:hover::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/crlArw-wp.png) no-repeat center center/contain;
}

.c-ctaBtn {
  transition: 0.3s all;
  align-content: center;
}
.c-ctaBtn span {
  font-family: "Open Sans", Arial, sans-serif;
  position: relative;
}

.c-telBtn {
  background-color: #FA91BE;
}
.c-telBtn span {
  color: #FFFFFF;
  letter-spacing: 0.05em;
  font-size: 20px;
}
.c-telBtn span::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/tel-w.png) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -24px;
  position: absolute;
}
.c-telBtn:hover {
  background-color: #FFFFFF;
}
.c-telBtn:hover span {
  color: #FA91BE;
}
.c-telBtn:hover span::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/tel-p.png) no-repeat center center/contain;
}

.tab_cta_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tab_cta_wrap .c-tabBtn {
  width: 248px;
  text-align: center;
  padding: 13px 0;
  border-radius: 30px;
  background-color: #FFFFFF;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  transition: 0.3s all;
}
@media only screen and (max-width: 768px) {
  .tab_cta_wrap .c-tabBtn {
    width: 100%;
  }
}
.tab_cta_wrap .c-tabBtn::before {
  content: "";
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 13px;
  position: absolute;
}
.tab_cta_wrap .c-tabBtn.btn_honin {
  border: 2px solid #FA91BE;
}
.tab_cta_wrap .c-tabBtn.btn_honin::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/tabIcon-p.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_honin span {
  color: #FA91BE;
}
.tab_cta_wrap .c-tabBtn.btn_honin:hover {
  background-color: #FA91BE;
  border: 2px solid #FFFFFF;
}
.tab_cta_wrap .c-tabBtn.btn_honin:hover::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/tabIcon-pw.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_honin:hover span {
  color: #FFFFFF;
}
.tab_cta_wrap .c-tabBtn.btn_mom {
  border: 2px solid #E2C0A1;
}
.tab_cta_wrap .c-tabBtn.btn_mom::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/tabIcon-b.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_mom span {
  color: #E2C0A1;
}
.tab_cta_wrap .c-tabBtn.btn_mom:hover {
  background-color: #E2C0A1;
  border: 2px solid #FFFFFF;
}
.tab_cta_wrap .c-tabBtn.btn_mom:hover::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/tabIcon-bw.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_mom:hover span {
  color: #FFFFFF;
}
.tab_cta_wrap .c-tabBtn.btn_blog {
  border: 2px solid #4BAAFA;
}
.tab_cta_wrap .c-tabBtn.btn_blog::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/tabIcon-blue.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_blog span {
  color: #4BAAFA;
}
.tab_cta_wrap .c-tabBtn.btn_blog:hover {
  background-color: #4BAAFA;
  border: 2px solid #FFFFFF;
}
.tab_cta_wrap .c-tabBtn.btn_blog:hover::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/tabIcon-sw.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_blog:hover span {
  color: #FFFFFF;
}

.c-contactBtn {
  background-color: #FFFFFF;
}
.c-contactBtn span {
  color: #4BAAFA;
  font-weight: 600;
}
.c-contactBtn span::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/mail-b.png) no-repeat center center/contain;
  width: 26px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -31px;
  position: absolute;
}
.c-contactBtn:hover {
  background-color: #4BAAFA;
}
.c-contactBtn:hover span {
  color: #FFFFFF;
}
.c-contactBtn:hover span::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/mail-w.png) no-repeat center center/contain;
}

.c-webBtn {
  background-color: #4BAAFA;
}
.c-webBtn span {
  color: #FFFFFF;
}
.c-webBtn span::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/web-w.png) no-repeat center center/contain;
  width: 30px;
  height: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -35px;
  position: absolute;
}
.c-webBtn:hover {
  background-color: #FFFFFF;
}
.c-webBtn:hover span {
  color: #4BAAFA;
}
.c-webBtn:hover span::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/web-b.png) no-repeat center center/contain;
}

.c-nav_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
}
.c-nav_wrap .nav_wrap:nth-of-type(1) {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 36px;
       column-gap: 36px;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .nav_wrap:nth-of-type(1) {
    display: block;
  }
}
.c-nav_wrap .nav_wrap:nth-of-type(2) {
  margin: 36px 0 26px;
  padding-bottom: 26px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .nav_wrap:nth-of-type(2) {
    margin: 0 0 16px;
    padding-bottom: 6px;
  }
}
.c-nav_wrap .nav_wrap:nth-of-type(2)::before {
  content: "";
  background: #C8F0FF;
  width: 100%;
  height: 4px;
  top: 22px;
  left: 0;
  position: absolute;
}
.c-nav_wrap .nav_wrap:nth-of-type(2)::after {
  content: "";
  background: #C8F0FF;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  position: absolute;
}
.c-nav_wrap .nav_wrap:nth-of-type(2) .tr_ttl {
  display: inline-block;
  background-color: #E6F7FF;
  padding: 10px 20px 10px 0;
  position: relative;
  z-index: 1;
  font-weight: bold;
  font-size: 20px;
}
.c-nav_wrap .nav_wrap:nth-of-type(2) .tr_ttl .menu_item_ttl:hover {
  color: #4BAAFA;
  transition: 0.3s all;
}
.c-nav_wrap .nav_wrap:nth-of-type(2) .menu_item_tr {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 36px;
       column-gap: 36px;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .nav_wrap:nth-of-type(2) .menu_item_tr {
    display: block;
  }
}
.c-nav_wrap .nav_wrap:nth-of-type(2) .childMenu_ttl {
  font-weight: bold;
  color: #8C9BAA;
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.c-nav_wrap .nav_wrap:nth-of-type(2) .childMenu_ttl::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/gray-heart.png) no-repeat center center/contain;
  width: 14px;
  height: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  position: absolute;
}
.c-nav_wrap .nav_wrap:nth-of-type(3) {
  display: flex;
  -moz-column-gap: 36px;
       column-gap: 36px;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .nav_wrap:nth-of-type(3) {
    display: block;
  }
}
.c-nav_wrap .menu_item .menu_item_ttl {
  font-weight: bold;
  font-size: 20px;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .menu_item .menu_item_ttl {
    position: relative;
    padding-left: 18px;
  }
  .c-nav_wrap .menu_item .menu_item_ttl::before {
    content: "";
    background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/menu_arw.png) no-repeat center center/contain;
    width: 12px;
    height: 14px;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    position: absolute;
  }
}
.c-nav_wrap .menu_item a {
  transition: 0.3s all;
}
.c-nav_wrap .menu_item a:hover {
  color: #4BAAFA;
}
.c-nav_wrap .menu_item a.no_pointer:hover {
  color: #41505F;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .menu_item {
    margin-bottom: 16px;
  }
}
.c-nav_wrap .menu_item_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.c-nav_wrap .childMenu_item {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 16px;
       column-gap: 16px;
  padding-top: 10px;
}
.c-nav_wrap .childMenu_item::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/dotLine.png) repeat-x center center;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  position: absolute;
}
.c-nav_wrap .childMenu_item a {
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .childMenu_item {
    margin-bottom: 10px;
  }
}
.c-nav_wrap .adress_area {
  display: flex;
  justify-content: space-between;
  gap: 36px;
  margin-top: 24px;
}
.c-nav_wrap .adress_area .item_left {
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .adress_area .item_left {
    flex-direction: column;
  }
}
.c-nav_wrap .adress_area .item_left div:nth-of-type(1) {
  width: 240px;
}
.c-nav_wrap .adress_area .item_left div:nth-of-type(2) p {
  font-size: 12px;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .adress_area .item_left div:nth-of-type(2) p {
    text-align: center;
  }
}
.c-nav_wrap .adress_area a {
  display: block;
  max-width: 500px;
}
@media only screen and (max-width: 768px) {
  .c-nav_wrap .adress_area {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin-top: 36px;
  }
  .c-nav_wrap .adress_area a {
    order: 1;
  }
  .c-nav_wrap .adress_area .item_left {
    order: 2;
  }
}

.calendar {
  width: 100%;
  border-collapse: collapse;
}
.calendar tr th, .calendar tr td {
  text-align: center;
  align-content: center;
  font-weight: bold;
  padding: 8px 0;
  background-color: #FFFFFF;
}
.calendar tr th {
  width: 120px;
}
.calendar tr td {
  position: relative;
}
.calendar tr td:last-child {
  padding-right: 12px;
}
.calendar tr td:first-child {
  padding-left: 12px;
}
.calendar tr td img {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.calendar tr:nth-child(1) {
  color: #FFFFFF;
}
.calendar tr:nth-child(1) th, .calendar tr:nth-child(1) td {
  background-color: #4BAAFA !important;
}
.calendar tr:nth-child(1) th {
  border-radius: 5px 0 0 0;
}
.calendar tr:nth-child(1) td:last-child {
  border-radius: 0 5px 0 0;
}
.calendar tr:nth-child(2) th, .calendar tr:nth-child(2) td {
  padding-bottom: 0px;
}
.calendar tr:nth-child(3) th, .calendar tr:nth-child(3) td {
  padding-top: 0px;
}

.cl_mark_wrap + .note {
  font-size: 14px;
  color: #4BAAFA;
  margin-top: 10px;
}

/*                footer
======================================================= */
footer {
  background-color: #E6F7FF;
  padding-top: 200px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  footer {
    padding-top: 300px;
  }
}
footer .footer_cta {
  max-width: 1080px;
  padding: 60px 0;
  margin: 0 auto;
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/contact-bg.png) no-repeat center center/cover;
  box-shadow: 0 0 36px 0 rgba(97, 179, 212, 0.2274509804);
  border-radius: 20px;
  position: absolute;
  top: -100px;
  left: 0;
  right: 0;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  footer .footer_cta {
    top: -150px;
    background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/contact-bg_sp.png) no-repeat center center/cover;
  }
}
footer .footer_cta .inner {
  display: flex;
  justify-content: space-between;
  max-width: 968px;
  margin: 0 auto;
}
footer .footer_cta .inner .txt_area {
  width: 41.26%;
}
footer .footer_cta .inner .txt_area p:first-child {
  font-weight: bold;
  color: #4BAAFA;
  font-size: 24px;
  margin-bottom: 20px;
  line-height: 1.3;
}
footer .footer_cta .inner .btn_area {
  width: 56.25%;
  display: flex;
  justify-content: center;
  gap: 16px;
}
footer .footer_cta .inner .btn_area a {
  max-width: 260px;
  width: 50%;
  padding: 40px 0 40px 4.5rem;
  border-radius: 10px;
}
@media only screen and (max-width: 1080px) {
  footer .footer_cta {
    margin: 0 30px;
    padding: 30px;
    top: -130px;
  }
  footer .footer_cta .inner {
    flex-direction: column;
    gap: 16px;
  }
  footer .footer_cta .inner .txt_area,
  footer .footer_cta .inner .btn_area {
    width: 100%;
    text-align: center;
  }
  footer .footer_cta .inner .txt_area p:first-child {
    margin-bottom: 20px;
  }
  footer .footer_cta .inner .btn_area a {
    padding: 24px 0 24px 2rem;
  }
}
@media only screen and (max-width: 1080px) and (max-width: 768px) {
  footer .footer_cta .inner .btn_area {
    flex-direction: column;
    gap: 8px;
  }
  footer .footer_cta .inner .btn_area a {
    max-width: 100%;
    width: 100%;
  }
}
footer .c-nav_wrap {
  margin-bottom: 64px;
}
@media only screen and (max-width: 768px) {
  footer .c-nav_wrap {
    margin-bottom: 26px;
    margin-top: 30px;
  }
}
footer .copyright {
  width: 100%;
  display: block;
  background-color: #4BAAFA;
  text-align: center;
}
footer .copyright small {
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 400;
}

/*                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;
  }
}
.sec_ttl_wrap .sub_ttl {
  font-family: "Open Sans", Arial, sans-serif;
  color: #87DCFF;
  font-weight: bold;
  margin-bottom: 3px;
}
@media only screen and (max-width: 768px) {
  .sec_ttl_wrap .sub_ttl {
    margin-bottom: 0;
  }
}
.sec_ttl_wrap h2 {
  font-size: 36px;
  font-weight: bold;
  color: #4BAAFA;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .sec_ttl_wrap h2 {
    font-size: 32px;
  }
}

.rdm_shabon {
  position: absolute;
  z-index: -1;
}

/*                トップページ用
======================================================= */
/*                content
======================================================= */
.home_message {
  padding-top: 170px;
  padding-bottom: 240px;
}
@media only screen and (max-width: 768px) {
  .home_message {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.home_message .content_wrap {
  display: flex;
  justify-content: space-between;
  max-width: 1077px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
.home_message .content_wrap .img_area {
  width: 35.51%;
  padding-top: 90px;
}
@media only screen and (max-width: 768px) {
  .home_message .content_wrap .img_area {
    position: relative;
    padding-top: 0;
  }
  .home_message .content_wrap .img_area::before {
    content: "";
    background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/c-bubble.png) no-repeat center center/contain;
    width: 170px;
    height: 170px;
    bottom: -30px;
    right: -30px;
    position: absolute;
    z-index: -1;
  }
  .home_message .content_wrap .img_area .sec_ttl_wrap {
    margin-bottom: 24px;
  }
}
.home_message .content_wrap .txt_area {
  width: 55.45%;
}
.home_message .content_wrap .txt_area .sec_ttl_wrap {
  margin-bottom: 35px;
}
.home_message .content_wrap .txt_area .txt_base {
  margin-bottom: 35px;
}
.home_message .content_wrap .txt_area .txt_base p {
  margin-bottom: 0.8em;
  line-height: 2;
}
.home_message .content_wrap .txt_area .txt_base p:last-child {
  margin-bottom: 0;
}
.home_message .content_wrap .rdm_shabon:nth-of-type(1) {
  width: 295px;
  height: 510px;
  top: 0;
  left: -11%;
}
@media only screen and (max-width: 768px) {
  .home_message .content_wrap .rdm_shabon:nth-of-type(1) {
    width: 80%;
    top: -10%;
    left: 0;
  }
}
.home_message .content_wrap .rdm_shabon:nth-of-type(2) {
  width: 240px;
  height: 240px;
  top: -10%;
  right: -9%;
}
@media only screen and (max-width: 768px) {
  .home_message .content_wrap .rdm_shabon:nth-of-type(2) {
    display: none;
  }
}
.home_message .content_wrap .rdm_shabon:nth-of-type(3) {
  width: 170px;
  height: 170px;
  top: 34%;
  right: -5%;
}
@media only screen and (max-width: 768px) {
  .home_message .content_wrap .rdm_shabon:nth-of-type(3) {
    display: none;
  }
}
.home_message .content_wrap .rdm_shabon:nth-of-type(4) {
  width: 175px;
  height: 175px;
  bottom: 5%;
  left: 30%;
}
@media only screen and (max-width: 768px) {
  .home_message .content_wrap .rdm_shabon:nth-of-type(4) {
    display: none;
  }
}
.home_message .content_wrap .rdm_shabon:nth-of-type(5) {
  width: 381px;
  height: 348px;
  bottom: -35%;
  left: -15%;
}
@media only screen and (max-width: 768px) {
  .home_message .content_wrap .rdm_shabon:nth-of-type(5) {
    width: 90%;
    bottom: -17%;
    left: -15%;
  }
}
.home_message .content_wrap .rdm_shabon:nth-of-type(6) {
  width: 258px;
  height: 234px;
  bottom: -30%;
  right: -10%;
}
@media only screen and (max-width: 768px) {
  .home_message .content_wrap .rdm_shabon:nth-of-type(6) {
    width: 70%;
    bottom: 16%;
  }
}
@media only screen and (max-width: 768px) {
  .home_message {
    padding-top: 80px;
  }
  .home_message .content_wrap {
    flex-direction: column;
    gap: 24px;
  }
  .home_message .content_wrap .img_area,
  .home_message .content_wrap .txt_area {
    width: 100%;
  }
}

.bg_gradient_wrap {
  overflow: hidden;
  background: #ffffff; /* フォールバック */
  background: linear-gradient(180deg, #ffffff 0%, #E6F8FF 40%, #ffffff 100%);
}
.bg_gradient_wrap:nth-last-of-type(1) {
  margin-bottom: 15rem;
}

.home_feature {
  padding-bottom: 160px;
}
@media only screen and (max-width: 768px) {
  .home_feature {
    padding-bottom: 80px;
  }
}
.home_feature .content_wrap {
  max-width: 1140px;
  margin: -5% auto 0;
  padding: 0 30px;
  position: relative;
  z-index: 5;
}
.home_feature .content_wrap .rdm_shabon:nth-of-type(1) {
  width: 229px;
  height: 229px;
  bottom: -12%;
  left: -5%;
}
@media only screen and (max-width: 768px) {
  .home_feature .content_wrap .rdm_shabon:nth-of-type(1) {
    width: 50%;
    height: 229px;
    bottom: -3%;
    left: 10%;
  }
}
.home_feature .content_wrap .rdm_shabon:nth-of-type(2) {
  width: 585px;
  height: 473px;
  bottom: -18%;
  right: -28%;
}
@media only screen and (max-width: 768px) {
  .home_feature .content_wrap .rdm_shabon:nth-of-type(2) {
    width: 95%;
    height: 585px;
    bottom: -13%;
    right: -28%;
    z-index: -2;
  }
}
.home_feature .sec_ttl_wrap {
  margin-bottom: 46px;
}
.home_feature .feature_ttl {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
}
.home_feature .feature_block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 73px;
  position: relative;
}
.home_feature .feature_block .img_area {
  width: 41.48%;
}
.home_feature .feature_block .txt_area {
  width: 55.18%;
}
.home_feature .feature_block .ttl_bar {
  position: relative;
  padding: 10px 0;
  align-content: center;
  margin-bottom: 16px;
  border-radius: 0 30px 30px 0;
  background-color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block .ttl_bar {
    margin-bottom: 24px;
  }
}
.home_feature .feature_block .ttl_bar .heart_num {
  position: absolute;
  top: 0;
  left: -23px;
}
.home_feature .feature_block .ttl_bar .feature_ttl {
  padding: 0 37px;
}
.home_feature .feature_block .btn_wrap {
  display: flex;
  justify-content: end;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block {
    gap: 24px;
  }
  .home_feature .feature_block .img_area,
  .home_feature .feature_block .txt_area {
    width: 100%;
  }
  .home_feature .feature_block .ttl_bar {
    border-radius: 30px;
    background-color: #FFFFFF;
  }
  .home_feature .feature_block .ttl_bar .heart_num {
    top: -15px;
    left: -10px;
  }
  .home_feature .feature_block .btn_wrap {
    margin-top: 30px;
  }
}
.home_feature .feature_block.feature_block01 .heart_num, .home_feature .feature_block.feature_block03 .heart_num {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/blue-heart.png) no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block.feature_block01, .home_feature .feature_block.feature_block03 {
    flex-direction: column-reverse;
  }
}
.home_feature .feature_block.feature_block01::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/c-bubble.png) no-repeat center center/contain;
  width: 325px;
  height: 366px;
  position: absolute;
  top: -20%;
  right: -12%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block.feature_block01::before {
    width: 92%;
    top: auto;
    bottom: -30px;
    right: -21%;
  }
}
.home_feature .feature_block.feature_block02::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/c-bubble.png) no-repeat center center/contain;
  width: 180px;
  height: 180px;
  position: absolute;
  top: -11px;
  left: -5%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block.feature_block02::before {
    width: 45%;
    top: auto;
    left: auto;
    bottom: 12%;
    right: 0;
  }
}
.home_feature .feature_block.feature_block02 .heart_num {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/pink-heart.png) no-repeat center center/contain;
}
.home_feature .feature_block.feature_block02 .c-btn {
  width: 286px;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block.feature_block02 {
    flex-direction: column;
  }
  .home_feature .feature_block.feature_block02 .c-btn {
    width: 100%;
  }
}
.home_feature .feature_block.feature_block03::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/c-bubble.png) no-repeat center center/contain;
  width: 180px;
  height: 180px;
  position: absolute;
  top: -50px;
  right: -5%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block.feature_block03::before {
    left: -27%;
    width: 335px;
    height: 335px;
  }
}
.home_feature .feature_block.feature_block03::after {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/c-bubble.png) no-repeat center center/contain;
  width: 335px;
  height: 335px;
  position: absolute;
  bottom: -40%;
  left: -20%;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block.feature_block03::after {
    display: none;
  }
}
.home_feature .feature_list_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_list_wrap {
    display: block;
  }
}
.home_feature .feature_list_wrap .feature_list {
  display: block;
  padding: 16px 24px;
  border-radius: 10px;
  position: relative;
}
.home_feature .feature_list_wrap .feature_list .ttl_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.home_feature .feature_list_wrap .feature_list .container {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_list_wrap .feature_list .container {
    margin-bottom: 20px;
  }
}
.home_feature .feature_list_wrap .feature_list .container .img_area {
  margin-bottom: 16px;
}
.home_feature .feature_list_wrap .feature_list .container .img_area img {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: block;
}
.home_feature .feature_list_wrap .feature_list .link_wrap {
  position: absolute;
  bottom: 16px;
  right: 24px;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_list_wrap .feature_list .link_wrap {
    position: relative;
    display: flex;
    justify-content: end;
    right: 0;
    bottom: 0;
  }
}
.home_feature .feature_list_wrap .feature_list .link_wrap p {
  font-weight: bold;
  padding-right: 35px;
  position: relative;
}
.home_feature .feature_list_wrap .feature_list .link_wrap p::before {
  content: "";
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_list_wrap .feature_list {
    padding: 20px;
    margin-bottom: 8px;
  }
  .home_feature .feature_list_wrap .feature_list .container {
    display: flex;
    gap: 8px;
  }
  .home_feature .feature_list_wrap .feature_list .ttl_wrap {
    margin-bottom: 20px;
  }
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n) {
  background-image: linear-gradient(to bottom, #EDF9FF, #D5F4FF);
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n) .heart_num {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/blue-heart.png) no-repeat center center/contain;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n) .link_wrap p {
  color: #4BAAFA;
  transition: 0.3s all;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n) .link_wrap p::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/crlArw-wb.png) no-repeat center center/contain;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n):hover {
  background-image: linear-gradient(135deg, #D5F4FF, #A6E7FF);
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n):hover .link_wrap p {
  color: #FFFFFF;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1) {
  background-image: linear-gradient(135deg, #FAF0F0, #FFE6F0);
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1) .heart_num {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/pink-heart.png) no-repeat center center/contain;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1) .link_wrap p {
  color: #FA91BE;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1) .link_wrap p::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/crlArw-wp.png) no-repeat center center/contain;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1):hover {
  background-image: linear-gradient(135deg, #FFE6F0, #FFC8DE);
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1):hover .link_wrap p {
  color: #FFFFFF;
}

.home_menu {
  padding-bottom: 157px;
}
@media only screen and (max-width: 768px) {
  .home_menu {
    padding-bottom: 80px;
  }
}
.home_menu .content_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 5;
}
.home_menu .sec_ttl_wrap {
  margin-bottom: 36px;
}

.trMenu_block {
  background-color: #E6F7FF;
  border-radius: 10px;
  padding: 24px;
  position: relative;
}
.trMenu_block::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/c-bubble.png) no-repeat center center/contain;
  width: 157px;
  height: 157px;
  bottom: -20%;
  right: -7%;
  z-index: -1;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .trMenu_block::before {
    width: 50%;
    height: 60%;
    bottom: 0;
    right: auto;
    left: -30px;
  }
}
@media only screen and (max-width: 768px) {
  .trMenu_block {
    padding: 20px;
  }
}
.trMenu_block .tab_area {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 16px;
       column-gap: 16px;
  margin-bottom: 16px;
}
.trMenu_block .tab_area li {
  border-radius: 10px 10px 0 0;
  padding: 10px 0;
  text-align: center;
  align-content: center;
  cursor: pointer;
  transition: 0.3s all;
}
.trMenu_block .tab_area li p {
  font-weight: bold;
  font-size: 20px;
}
.trMenu_block .tab_area li:nth-child(1), .trMenu_block .tab_area li:nth-child(3) {
  border-bottom: 4px solid #4BAAFA;
}
.trMenu_block .tab_area li:nth-child(1).active, .trMenu_block .tab_area li:nth-child(1):hover, .trMenu_block .tab_area li:nth-child(3).active, .trMenu_block .tab_area li:nth-child(3):hover {
  background-color: #4BAAFA;
  border-bottom: 4px solid #FFFFFF;
}
.trMenu_block .tab_area li:nth-child(1).active p, .trMenu_block .tab_area li:nth-child(1):hover p, .trMenu_block .tab_area li:nth-child(3).active p, .trMenu_block .tab_area li:nth-child(3):hover p {
  color: #FFFFFF;
}
.trMenu_block .tab_area li:nth-child(2) {
  border-bottom: 4px solid #FA91BE;
}
.trMenu_block .tab_area li:nth-child(2).active, .trMenu_block .tab_area li:nth-child(2):hover {
  background-color: #FA91BE;
  border-bottom: 4px solid #FFFFFF;
}
.trMenu_block .tab_area li:nth-child(2).active p, .trMenu_block .tab_area li:nth-child(2):hover p {
  color: #FFFFFF;
}
@media only screen and (max-width: 768px) {
  .trMenu_block .tab_area {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 6px;
         column-gap: 6px;
  }
  .trMenu_block .tab_area li p {
    font-size: 16px;
    line-height: 1.2;
  }
}
.trMenu_block .menu_content {
  display: none;
}
.trMenu_block .menu_content.active {
  display: block;
}
.trMenu_block .menu_content .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.trMenu_block .menu_content .menu_item {
  padding: 22px 16px;
  border-radius: 10px;
  position: relative;
}
.trMenu_block .menu_content .menu_item .menu_item_inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trMenu_block .menu_content .menu_item .menu_item_inner .img_area {
  width: 52px;
  height: 52px;
  position: relative;
}
.trMenu_block .menu_content .menu_item .menu_item_inner .img_area img {
  transition: 0.3s all;
}
.trMenu_block .menu_content .menu_item .menu_item_inner .img_area img:last-child {
  display: none;
  position: absolute;
  top: 0;
  left: o;
}
.trMenu_block .menu_content .menu_item .menu_item_inner .ttl_area p {
  font-weight: bold;
}
.trMenu_block .menu_content .menu_item:hover .menu_item_inner .img_area img:last-child {
  display: block;
}
.trMenu_block .menu_content .menu_item:hover .menu_item_inner .img_area img:first-child {
  display: none;
}
@media only screen and (max-width: 768px) {
  .trMenu_block .menu_content .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
  }
}
.trMenu_block .menu_content:nth-of-type(1) .menu_item, .trMenu_block .menu_content:nth-of-type(3) .menu_item {
  border: 2px solid #4BAAFA;
  background-color: #FFFFFF;
}
.trMenu_block .menu_content:nth-of-type(1) .menu_item p, .trMenu_block .menu_content:nth-of-type(3) .menu_item p {
  color: #4BAAFA;
}
.trMenu_block .menu_content:nth-of-type(1) .menu_item::before, .trMenu_block .menu_content:nth-of-type(3) .menu_item::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/crlArw-wb.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  bottom: 10px;
  right: 10px;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .trMenu_block .menu_content:nth-of-type(1) .menu_item::before, .trMenu_block .menu_content:nth-of-type(3) .menu_item::before {
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.trMenu_block .menu_content:nth-of-type(1) .menu_item:hover, .trMenu_block .menu_content:nth-of-type(3) .menu_item:hover {
  background-color: #E6F7FF;
}
.trMenu_block .menu_content:nth-of-type(1) .menu_item:hover::before, .trMenu_block .menu_content:nth-of-type(3) .menu_item:hover::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/crlArw-blue.png) no-repeat center center/contain;
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item {
  border: 2px solid #FA91BE;
  background-color: #FFFFFF;
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item p {
  color: #FA91BE;
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/crlArw-wp.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  bottom: 10px;
  right: 10px;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .trMenu_block .menu_content:nth-of-type(2) .menu_item::before {
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item:hover {
  background-color: #FFF0FA;
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item:hover::before {
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/crlArw-pink.png) no-repeat center center/contain;
}

.home_doctor {
  padding-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  .home_doctor {
    padding-top: 2rem;
  }
}
.home_doctor .content_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.home_doctor .content_wrap::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/c-bubble.png) no-repeat center center/contain;
  width: 210px;
  height: 210px;
  bottom: 0;
  right: -5%;
  z-index: -1;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .home_doctor .content_wrap::before {
    width: 50%;
    height: 31%;
    bottom: 0;
    right: 0;
  }
}
.home_doctor .sec_ttl_wrap {
  margin-bottom: 36px;
}
.home_doctor .doctor_block {
  display: flex;
  justify-content: space-between;
}
.home_doctor .doctor_block .img_area {
  width: 41.48%;
}
.home_doctor .doctor_block .txt_area {
  width: 55.18%;
}
.home_doctor .doctor_block .heading_text {
  padding-bottom: 8px;
  border-bottom: 2px solid #4BAAFA;
  margin-bottom: 24px;
}
.home_doctor .doctor_block .heading_text p {
  position: relative;
  padding-left: 30px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.home_doctor .doctor_block .heading_text p::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/common/min-blue-heart.png) no-repeat center center/contain;
  width: 22px;
  height: 20px;
  top: 8px;
  left: 0;
  position: absolute;
}
.home_doctor .doctor_block .txt_base {
  padding-left: 30px;
}
.home_doctor .doctor_block .btn_wrap {
  display: flex;
  justify-content: end;
  margin-top: 30px;
}
@media only screen and (max-width: 768px) {
  .home_doctor .doctor_block {
    flex-direction: column;
    gap: 24px;
  }
  .home_doctor .doctor_block .img_area,
  .home_doctor .doctor_block .txt_area {
    width: 100%;
  }
  .home_doctor .doctor_block .txt_base {
    padding-left: 0;
  }
}

.slider_area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.slider_area .rdm_shabon {
  width: 143px;
  height: 143px;
  bottom: 0;
  left: 5.5rem;
  z-index: 1;
}
.slider_area .slider_img_wrap {
  position: relative;
  z-index: 1;
  display: flex;
}
.slider_area .slider_img_wrap::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/home/slider-blur-left.png) no-repeat center center/cover;
  width: 280px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.slider_area .slider_img_wrap::after {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/home/slider-blur-right.png) no-repeat center center/cover;
  width: 280px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .slider_area .slider_img_wrap::after {
    content: none;
  }
}
.slider_area .slider_img {
  padding: 0 30px;
  animation: scroll-left 80s linear 0.5s infinite both;
}
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.slider_area .slider_img li {
  width: 2584px;
}

.home_news {
  padding-top: 160px;
}
@media only screen and (max-width: 768px) {
  .home_news {
    padding-top: 80px;
  }
}
.home_news .content_wrap {
  max-width: 1052px;
  margin: 0 auto;
  position: relative;
}
.home_news .content_wrap::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/news-b.png) no-repeat center center/contain;
  width: 360px;
  height: 617px;
  bottom: -30%;
  right: -10%;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .home_news .content_wrap::before {
    background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/news-b_sp.png) no-repeat center center/contain;
    width: 80%;
    height: 66%;
    top: -35%;
    left: 0;
  }
}
.home_news .newsList_block {
  background-color: #fff;
  border-radius: 10px;
  padding: 38px 36px;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 1052px) {
  .home_news .newsList_block {
    margin: 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  .home_news .newsList_block {
    padding: 24px;
    flex-direction: column;
  }
}
.home_news .newsList_block .ttl_area {
  width: 23.68%;
}
.home_news .newsList_block .ttl_area .c-btn {
  width: 100%;
  margin-top: 36px;
}
.home_news .newsList_block .ttl_area .c-btn span {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .home_news .newsList_block .ttl_area {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.home_news .newsList_block .newsList {
  width: 76.32%;
}
.home_news .newsList_block .newsList a {
  display: block;
  padding: 16px 32px;
  border-radius: 5px;
  background-color: #EBF5FA;
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .home_news .newsList_block .newsList {
    width: 100%;
    margin-bottom: 1rem;
  }
  .home_news .newsList_block .newsList a {
    padding: 16px;
    flex-direction: column;
    gap: 0;
  }
}

.home_info {
  padding-top: 160px;
}
@media only screen and (max-width: 768px) {
  .home_info {
    padding-top: 80px;
  }
}
.home_info .content_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.home_info .content_wrap::before {
  content: "";
  background: url(https://shonanlc.com/tsujido-ladies-clinic/wp-content/themes/shonan-cx_theme/assets/images/bubbles/info-b.png) no-repeat center center/contain;
  width: 395px;
  height: 449px;
  top: -30%;
  left: -10%;
  position: absolute;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .home_info .content_wrap::before {
    width: 78%;
    height: 45%;
    top: -16%;
    left: 0;
  }
}
.home_info .sec_ttl_wrap {
  margin-bottom: 36px;
}
.home_info .info_block {
  display: flex;
  justify-content: space-between;
}
.home_info .info_block .detail_area {
  width: 36.85%;
}
.home_info .info_block .detail_area .site_logo {
  max-width: 300px;
}
.home_info .info_block .detail_area .adress_txt {
  font-size: 14px;
  line-height: 1.5;
  margin: 20px 0 10px;
}
.home_info .info_block .detail_area .cl_detail {
  margin-top: 10px;
}
.home_info .info_block .map_area {
  width: 59.81%;
}
.home_info .info_block .map_area .g-map_wrap {
  height: 267px;
  margin-bottom: 10px;
}
.home_info .info_block .map_area .g-map_wrap iframe {
  width: 100%;
  height: 100%;
}
.home_info .info_block .map_area p {
  font-size: 14px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .home_info .info_block {
    flex-direction: column;
    gap: 30px;
  }
  .home_info .info_block .detail_area,
  .home_info .info_block .map_area {
    width: 100%;
  }
  .home_info .info_block .detail_area .site_logo {
    width: 100%;
  }
  .home_info .info_block .map_area .g-map_wrap {
    height: 400px;
  }
}/*# sourceMappingURL=home.css.map */