@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: #46322D;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  background-color: #fff;
  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: #46322D;
  cursor: pointer;
}

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

/*                タイトル装飾
======================================================= */
/*                テキスト装飾
======================================================= */
.pinkText {
  color: #FA82B4;
}

.blueText {
  color: #37B9E6;
}

.boldText {
  font-weight: bold;
}

/*                見出し
======================================================= */
.heart_num {
  width: 50px;
  height: 46px;
  text-align: center;
  align-content: center;
}
.heart_num span {
  font-family: "Open Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #fff;
}

/*                本文テキスト
======================================================= */
.txt_base p {
  margin-bottom: 1.3em;
}

.no_pointer {
  pointer-events: none;
}

/*                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);
}

.rdm_shabon {
  position: absolute;
}

.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 #37B9E6;
  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(../images/common/crlArw-blue.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  position: absolute;
}
.c-btn span {
  color: #37B9E6;
  font-weight: bold;
}
.c-btn:hover {
  background-color: #37B9E6;
}
.c-btn:hover span {
  color: #fff;
}
.c-btn:hover::before {
  background: url(../images/common/crlArw-wb.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: #FA82B4;
}
.c-telBtn span {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.c-telBtn span::before {
  content: "";
  background: url(../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: #fff;
}
.c-telBtn:hover span {
  color: #FA82B4;
}
.c-telBtn:hover span::before {
  background: url(../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: #fff;
  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_blog {
  border: 2px solid #FA82B4;
}
.tab_cta_wrap .c-tabBtn.btn_blog::before {
  background: url(../images/common/tabIcon-p.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_blog span {
  color: #FA82B4;
}
.tab_cta_wrap .c-tabBtn.btn_blog:hover {
  background-color: #FA82B4;
  border: 2px solid #fff;
}
.tab_cta_wrap .c-tabBtn.btn_blog:hover::before {
  background: url(../images/common/tabIcon-pw.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_blog:hover span {
  color: #fff;
}
.tab_cta_wrap .c-tabBtn.btn_mom {
  border: 2px solid #C8AA82;
}
.tab_cta_wrap .c-tabBtn.btn_mom::before {
  background: url(../images/common/tabIcon-b.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_mom span {
  color: #C8AA82;
}
.tab_cta_wrap .c-tabBtn.btn_mom:hover {
  background-color: #C8AA82;
  border: 2px solid #fff;
}
.tab_cta_wrap .c-tabBtn.btn_mom:hover::before {
  background: url(../images/common/tabIcon-bw.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_mom:hover span {
  color: #fff;
}
.tab_cta_wrap .c-tabBtn.btn_tsuji {
  border: 2px solid #37B9E6;
}
.tab_cta_wrap .c-tabBtn.btn_tsuji::before {
  background: url(../images/common/tabIcon-blue.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_tsuji span {
  color: #37B9E6;
}
.tab_cta_wrap .c-tabBtn.btn_tsuji:hover {
  background-color: #37B9E6;
  border: 2px solid #fff;
}
.tab_cta_wrap .c-tabBtn.btn_tsuji:hover::before {
  background: url(../images/common/tabIcon-sw.png) no-repeat center center/contain;
}
.tab_cta_wrap .c-tabBtn.btn_tsuji:hover span {
  color: #fff;
}

.c-contactBtn {
  background-color: #fff;
}
.c-contactBtn span {
  color: #37B9E6;
  font-weight: 600;
}
.c-contactBtn span::before {
  content: "";
  background: url(../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: #37B9E6;
}
.c-contactBtn:hover span {
  color: #fff;
}
.c-contactBtn:hover span::before {
  background: url(../images/common/mail-w.png) no-repeat center center/contain;
}

.c-webBtn {
  background-color: #37B9E6;
}
.c-webBtn span {
  color: #fff;
  font-weight: 600;
}
.c-webBtn span::before {
  content: "";
  background: url(../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: #fff;
}
.c-webBtn:hover span {
  color: #37B9E6;
}
.c-webBtn:hover span::before {
  background: url(../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: #F5E2E2;
  width: 100%;
  height: 4px;
  top: 22px;
  left: 0;
  position: absolute;
}
.c-nav_wrap .nav_wrap:nth-of-type(2)::after {
  content: "";
  background: #F5E2E2;
  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: #FAF0F0;
  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) .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: #AAA0A0;
  position: relative;
  padding-left: 25px;
  margin-bottom: 5px;
}
.c-nav_wrap .nav_wrap:nth-of-type(2) .childMenu_ttl::before {
  content: "";
  background: url(../images/common/beige-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(../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: #FA82B4;
}
.c-nav_wrap .menu_item a.no_pointer:hover {
  color: #46322D;
}
@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(../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;
  border: 1px solid transparent;
}
.calendar tr th, .calendar tr td {
  text-align: center;
  align-content: center;
  font-weight: bold;
  padding: 8px 0;
  background-color: #EBF5FA;
}
.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: #fff;
}
.calendar tr:nth-child(1) th, .calendar tr:nth-child(1) td {
  background-color: #37B9E6 !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 {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 8px;
       column-gap: 8px;
}
.cl_mark_wrap p:last-child {
  grid-column: span 4/span 4;
}
.cl_mark_wrap + .note {
  font-size: 14px;
  color: #37B9E6;
  margin-top: 10px;
}

/*                footer
======================================================= */
footer {
  background-color: #FAF0F0;
  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(../images/common/contact-bg.png) no-repeat center center/cover;
  box-shadow: 0 0 36px 0 rgba(255, 208, 228, 0.4588235294);
  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;
  }
}
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: #FA82B4;
  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: #FA82B4;
  text-align: center;
}
footer .copyright small {
  color: #fff;
  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: #FFC3DC;
  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: 40px;
  font-weight: bold;
  color: #FA82B4;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .sec_ttl_wrap h2 {
    font-size: 32px;
  }
}

.fv {
  width: 100%;
  height: 860px;
  position: relative;
  background-color: #FAF0F0;
  padding-top: 36px;
}
.fv::before {
  content: "";
  background: url(../images/home/fv-wave.png) no-repeat top center/100% 100%;
  width: 100%;
  height: 611px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .fv::before {
    height: 35%;
    background: url(../images/home/fv-wave_sp.png) no-repeat top center/100% 100%;
  }
}
.fv .shabon_left {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 29.0625rem;
  height: 11.9375rem;
}
@media only screen and (max-width: 768px) {
  .fv .shabon_left {
    width: 40%;
    height: auto;
  }
}
.fv .shabon_right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  width: 26.5rem;
  height: 23.375rem;
}
@media only screen and (max-width: 768px) {
  .fv .shabon_right {
    width: 45%;
    height: auto;
  }
}
.fv .fv_content {
  display: flex;
  gap: 65px;
  max-width: 1000px;
  height: 545px;
  padding-right: 120px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}
@media only screen and (max-width: 768px) {
  .fv .fv_content {
    flex-direction: column;
    gap: 0;
    height: auto;
    padding: 0;
    max-width: 100%;
  }
}
.fv .fv_content .txt_area {
  width: calc(100% - (76.08% + 65px));
  padding-top: 64px;
}
@media only screen and (max-width: 768px) {
  .fv .fv_content .txt_area {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    order: 2;
    text-align: left;
  }
}
.fv .fv_content .txt_area h1 {
  font-size: 36px;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  text-orientation: mixed;
  letter-spacing: 0.25em;
  padding-left: 60px;
}
@media only screen and (max-width: 768px) {
  .fv .fv_content .txt_area h1 {
    font-size: 32px;
    letter-spacing: 0.25em;
    transform: translateY(-12%);
    line-height: 1.5em;
  }
}
@media only screen and (max-width: 480px) {
  .fv .fv_content .txt_area h1 {
    font-size: 28px;
  }
}
.fv .fv_content .img_area {
  width: 76.08%;
  position: relative;
  min-height: 545px;
}
@media only screen and (max-width: 768px) {
  .fv .fv_content .img_area {
    width: 100%;
    min-height: auto;
    order: 1;
  }
  .fv .fv_content .img_area div.img01, .fv .fv_content .img_area div.img02, .fv .fv_content .img_area div.img03 {
    opacity: 1;
  }
}
.fv .fv_content .img_area div {
  position: absolute;
}
.fv .fv_content .img_area div.img01 {
  top: 15%;
  left: 0;
  width: 53.11%;
  opacity: 0;
}
.fv .fv_content .img_area div.img02 {
  top: 0;
  right: 0;
  width: 44.17%;
  opacity: 0;
}
.fv .fv_content .img_area div.img03 {
  bottom: 0;
  right: 12.6%;
  width: 33.87%;
  opacity: 0;
}
.fv .fv_content .img_area div.sp_only {
  display: none;
}
@media only screen and (max-width: 768px) {
  .fv .fv_content .img_area div.sp_only {
    display: block;
    position: relative;
  }
}
@media only screen and (max-width: 768px) {
  .fv {
    height: auto;
    min-height: 500px;
    padding-bottom: 40px;
  }
}

.bg_grd_wrap {
  background: url(../images/home/bg-grd.png) no-repeat top center/100% 100%;
  position: relative;
}
.bg_grd_wrap .shabon-test {
  position: absolute;
  width: 279px;
  height: 283px;
  top: 10vw;
  left: 30px;
}

.home_news {
  margin-top: -114px;
  position: relative;
  z-index: 5;
}
.home_news .newsList_block {
  max-width: 1052px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  padding: 38px 36px;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  position: relative;
}
@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;
  }
}
.home_news .newsList_block .ttl_area {
  width: 23.68%;
}
.home_news .newsList_block .ttl_area .c-btn {
  width: 100%;
  margin-top: 20px;
}
.home_news .newsList_block .ttl_area .c-btn span {
  font-size: 14px;
}
.home_news .newsList_block .newsList {
  width: 76.32%;
}
.home_news .newsList_block .newsList a {
  display: block;
  padding: 24px 32px;
  border-radius: 5px;
  background-color: #EBF5FA;
  display: flex;
  gap: 20px;
  margin-bottom: 8px;
}
.home_news .newsList_block::after {
  content: "";
  background: url(../images/home/shabon@2x.png) no-repeat center center/contain;
  width: 26.52%;
  height: 78.61%;
  bottom: -100px;
  left: -100px;
  position: absolute;
  z-index: -1;
}

@media only screen and (max-width: 768px) {
  .home_news {
    margin-top: 0;
    padding-bottom: 5rem;
  }
  .home_news .newsList_block {
    flex-direction: column;
  }
  .home_news .newsList_block::after {
    width: 183px;
    height: 186px;
    bottom: -9rem;
    right: -1rem;
    left: auto;
  }
  .home_news .newsList_block .ttl_area {
    width: 100%;
    margin-bottom: 1rem;
  }
  .home_news .newsList_block .newsList {
    width: 100%;
    margin-bottom: 1rem;
  }
  .home_news .newsList_block .newsList a {
    padding: 16px;
    flex-direction: column;
    gap: 0;
  }
}
.home_message {
  padding-top: 10rem;
  padding-bottom: 10rem;
  position: relative;
  overflow: hidden;
}
.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: 35px;
}
.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: 16px;
}
.home_message .content_wrap .txt_area .txt_base p:last-child {
  margin-bottom: 0;
}
.home_message .content_wrap .rdm_shabon {
  z-index: -1;
}
.home_message .content_wrap .rdm_shabon.shabon01 {
  top: -6rem;
  right: -5rem;
  width: 183px;
  height: 206px;
}
.home_message .content_wrap .rdm_shabon.shabon02 {
  right: -4rem;
  bottom: 3rem;
  width: 170px;
  height: 170px;
}
.home_message .content_wrap .rdm_shabon.shabon03 {
  left: -12rem;
  bottom: 3rem;
  width: 325px;
  height: 299px;
}
.home_message .content_wrap .rdm_shabon.shabon04 {
  bottom: -8rem;
  left: 13rem;
  width: 241px;
  height: 276px;
}
@media only screen and (max-width: 768px) {
  .home_message {
    padding-top: 0;
    padding-bottom: 7rem;
  }
  .home_message .content_wrap {
    flex-direction: column;
    gap: 24px;
  }
  .home_message .content_wrap .img_area,
  .home_message .content_wrap .txt_area {
    width: 100%;
  }
  .home_message .content_wrap .rdm_shabon.shabon01 {
    top: 0;
    right: 0;
    width: 183px;
    height: 186px;
  }
  .home_message .content_wrap .rdm_shabon.shabon02 {
    right: 7rem;
    bottom: 12rem;
    width: 120px;
    height: 120px;
  }
  .home_message .content_wrap .rdm_shabon.shabon05 {
    width: 100px;
    height: 100px;
    right: 30px;
    bottom: 6rem;
  }
}

.home_feature .content_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
}
.home_feature .content_wrap .rdm_shabon {
  width: 240px;
  height: 240px;
  top: -10rem;
  right: 5rem;
}
.home_feature .sec_ttl_wrap {
  margin-bottom: 35px;
}
.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;
}
.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: 7px 0;
  align-content: center;
  margin-bottom: 16px;
  border-radius: 0 30px 30px 0;
}
.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;
}
@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;
  }
  .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 .ttl_bar {
  background-color: #EBF5FA;
}
.home_feature .feature_block.feature_block01 .heart_num {
  background: url(../images/common/blue-heart.png) no-repeat center center/contain;
}
@media only screen and (max-width: 768px) {
  .home_feature .feature_block.feature_block01 {
    flex-direction: column-reverse;
  }
}
.home_feature .feature_block.feature_block02 .ttl_bar {
  background-color: #FAF0F0;
}
.home_feature .feature_block.feature_block02 .heart_num {
  background: url(../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_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 +1) {
  background-image: linear-gradient(to bottom, #EBF5FA, #D7F0FF);
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1) .heart_num {
  background: url(../images/common/blue-heart.png) no-repeat center center/contain;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1) .link_wrap p {
  color: #37B9E6;
  transition: 0.3s all;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1) .link_wrap p::before {
  background: url(../images/common/crlArw-wb.png) no-repeat center center/contain;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1):hover {
  background-image: linear-gradient(135deg, #D7F0FF, #A5D2EB);
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n +1):hover .link_wrap p {
  color: #fff;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n) {
  background-image: linear-gradient(to bottom, #FAF0F0, #FFE6F0);
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n) .heart_num {
  background: url(../images/common/pink-heart.png) no-repeat center center/contain;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n) .link_wrap p {
  color: #FA82B4;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n) .link_wrap p::before {
  background: url(../images/common/crlArw-wp.png) no-repeat center center/contain;
}
.home_feature .feature_list_wrap .feature_list:nth-of-type(2n):hover {
  background-image: linear-gradient(135deg, #FFE6F0, #FABED6);
}

.bg_grad_wrap02 {
  padding-bottom: 25rem;
  background: url(../images/home/bg-grd2.png) no-repeat center center/100% 100%;
}

.home_menu {
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .home_menu {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.home_menu .content_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.home_menu .content_wrap .rdm_shabon {
  z-index: -1;
}
.home_menu .content_wrap .rdm_shabon.shabon01 {
  width: 173px;
  height: 173px;
  top: -7rem;
  left: -10rem;
}
@media only screen and (max-width: 768px) {
  .home_menu .content_wrap .rdm_shabon.shabon01 {
    top: -3rem;
    left: -5rem;
  }
}
.home_menu .content_wrap .rdm_shabon.shabon02 {
  width: 130px;
  height: 130px;
  top: 3rem;
  left: -5rem;
}
@media only screen and (max-width: 768px) {
  .home_menu .content_wrap .rdm_shabon.shabon02 {
    top: 9rem;
    left: 1rem;
  }
}
.home_menu .content_wrap .rdm_shabon.shabon03 {
  width: 203px;
  height: 203px;
  top: -2rem;
  right: -5rem;
}
.home_menu .content_wrap .rdm_shabon.shabon04 {
  width: 304px;
  height: 424px;
  bottom: -14rem;
  right: -9rem;
}

.trMenu_block {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px;
}
@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 #EBF5FA;
}
.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: #EBF5FA;
  border-bottom: 4px solid #37B9E6;
}
.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: #37B9E6;
}
.trMenu_block .tab_area li:nth-child(2) {
  border-bottom: 4px solid #FAF0F0;
}
.trMenu_block .tab_area li:nth-child(2).active, .trMenu_block .tab_area li:nth-child(2):hover {
  background-color: #FAF0F0;
  border-bottom: 4px solid #FA82B4;
}
.trMenu_block .tab_area li:nth-child(2).active p, .trMenu_block .tab_area li:nth-child(2):hover p {
  color: #FA82B4;
}
@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;
  line-height: 1.3;
}
.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 #37B9E6;
}
.trMenu_block .menu_content:nth-of-type(1) .menu_item p, .trMenu_block .menu_content:nth-of-type(3) .menu_item p {
  color: #37B9E6;
}
.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(../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: #EBF5FA;
}
.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(../images/common/crlArw-blue.png) no-repeat center center/contain;
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item {
  border: 2px solid #FA82B4;
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item p {
  color: #FA82B4;
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item::before {
  content: "";
  background: url(../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: #FAF0F0;
}
.trMenu_block .menu_content:nth-of-type(2) .menu_item:hover::before {
  background: url(../images/common/crlArw-pink.png) no-repeat center center/contain;
}

.home_doctor {
  padding-bottom: 100px;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .home_doctor {
    overflow: auto;
    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 .rdm_shabon {
  z-index: -1;
}
.home_doctor .content_wrap .rdm_shabon.shabon01 {
  width: 197px;
  height: 197px;
  top: -6rem;
  left: -3rem;
}
@media only screen and (max-width: 768px) {
  .home_doctor .content_wrap .rdm_shabon.shabon01 {
    top: -2rem;
    left: 1rem;
  }
}
.home_doctor .content_wrap .rdm_shabon.shabon02 {
  width: 130px;
  height: 130px;
  bottom: -8rem;
  right: -8rem;
}
.home_doctor .content_wrap .rdm_shabon.shabon03 {
  width: 212px;
  height: 221px;
  bottom: -7rem;
  left: -7rem;
}
.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 #FA82B4;
  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(../images/common/pink-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;
  padding-bottom: 6rem;
}
.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(../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(../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_info {
  padding-bottom: 15rem;
  padding-top: 8rem;
  margin-top: -25rem;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .home_info {
    padding-top: 0;
  }
}
.home_info .content_wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 1;
}
.home_info .content_wrap .rdm_shabon {
  z-index: -1;
  width: 430px;
  height: 427px;
  top: -8rem;
  right: -10rem;
}
.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: 60%;
  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;
  }
}

/*                content
======================================================= *//*# sourceMappingURL=home.css.map */