@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;
  }
}
/*                leyout
======================================================= */
/*                header
======================================================= */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 10px 20px;
  box-sizing: border-box;
  z-index: 999;
  background-color: #FAF0F0;
}
header .header_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_nav a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
header .header_nav a:hover {
  color: #FA82B4;
}
header .header_nav ul {
  display: flex;
  gap: 24px;
}
header .header_cta a {
  padding: 15px 0;
  width: 187px;
  display: inline-block;
  border-radius: 30px;
}
header .header_cta a span {
  font-family: "Open Sans", Arial, sans-serif;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #fff;
  position: relative;
}
header .header_cta .header_telBtn {
  background-color: #FA82B4;
}
header .header_cta .header_telBtn span {
  padding-left: 50px;
}
header .header_cta .header_telBtn span::before {
  content: "";
  background: url(../images/common/header-call-w.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 14px;
  position: absolute;
}
header .header_cta .header_telBtn:hover {
  background-color: #fff;
}
header .header_cta .header_telBtn:hover span {
  color: #FA82B4;
}
header .header_cta .header_telBtn:hover span::before {
  background: url(../images/common/header-call-p.png) no-repeat center center/contain;
}
header .header_cta .header_webBtn {
  background-color: #37B9E6;
}
header .header_cta .header_webBtn span {
  padding-left: 70px;
}
header .header_cta .header_webBtn span::before {
  content: "";
  background: url(../images/common/header-web-w.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 32px;
  position: absolute;
}
header .header_cta .header_webBtn:hover {
  background-color: #fff;
}
header .header_cta .header_webBtn:hover span {
  color: #37B9E6;
}
header .header_cta .header_webBtn:hover span::before {
  background: url(../images/common/header-web-b.png) no-repeat center center/contain;
}
header .sp_nav_icon {
  display: none;
}
header .sp_nav_wrap {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 90px 30px 54px;
  background-color: #FAF0F0;
  z-index: 9998;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}
header .sp_nav_wrap.active {
  right: 0;
}
header .sp_nav_wrap .c-nav_wrap {
  padding: 0;
}
header .sp_nav_wrap .btn_area {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  header .sp_nav_wrap .btn_area {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}
header .sp_nav_wrap .btn_area a {
  width: 340px;
  padding: 10px 0;
  border-radius: 40px;
}
header .sp_nav_wrap .btn_area a span {
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  header .sp_nav_wrap .btn_area a {
    width: 100%;
    text-align: center;
  }
}
header .sp_nav_wrap .btn_area .c-telBtn {
  padding-left: 7rem;
}
@media only screen and (max-width: 768px) {
  header .sp_nav_wrap .btn_area .c-telBtn {
    padding-left: 2rem;
  }
}
header .sp_nav_wrap .btn_area .c-webBtn {
  padding-left: 9rem;
}
@media only screen and (max-width: 768px) {
  header .sp_nav_wrap .btn_area .c-webBtn {
    padding-left: 2rem;
  }
}

@media only screen and (max-width: 1200px) {
  header .header_inner .header_nav, header .header_inner .header_cta {
    display: none;
  }
  header .sp_nav_icon {
    display: block;
    width: 82px;
    height: 77px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
    cursor: pointer;
  }
}
/*                sp_menu
======================================================= */
/*                ページ共通
======================================================= */
.page_fv {
  width: 100%;
  height: 670px;
  position: relative;
  background-color: #FAF0F0;
}
@media only screen and (max-width: 768px) {
  .page_fv {
    height: 530px;
  }
}
.page_fv::after {
  content: "";
  background: url(../images/common/c-fv_wave.png) no-repeat top center/100% 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 91.19%;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .page_fv::after {
    background: url(../images/common/c-fv_wave_sp.png) no-repeat top center/100% 100%;
    height: 60.41%;
  }
}
.page_fv .shabon_left {
  position: absolute;
  width: 215px;
  height: 261px;
  top: 0;
  left: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .page_fv .shabon_left {
    width: 166px;
    height: 121px;
  }
}
.page_fv .shabon_right {
  position: absolute;
  width: 424px;
  height: 374px;
  top: 0;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .page_fv .shabon_right {
    width: 172px;
    height: 333px;
  }
}
.page_fv .page_fv_inner {
  width: 900px;
  margin: 0 auto;
  padding: 165px 40px 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .page_fv .page_fv_inner {
    width: 100%;
  }
}
.page_fv .page_ttl {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 768px) {
  .page_fv .page_ttl {
    gap: 12px;
  }
}
.page_fv .page_ttl .icon {
  width: 60px;
}
.page_fv .page_ttl h1 {
  font-size: 48px;
  color: #FA82B4;
  letter-spacing: 2px;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .page_fv .page_ttl h1 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 480px) {
  .page_fv .page_ttl h1 {
    font-size: 28px;
  }
}
.page_fv .pankuzu {
  margin-top: 16px;
}
.page_fv .pankuzu ul {
  display: flex;
  gap: 24px;
}
.page_fv .pankuzu li {
  position: relative;
  line-height: 1.2;
}
.page_fv .pankuzu li::before {
  content: "";
  background: #FA82B4;
  width: 1px;
  height: 15px;
  position: absolute;
  top: 2px;
  right: -12px;
  transform: rotate3d(1, 1, 1, 45deg);
}
.page_fv .pankuzu li:last-child::before {
  display: none;
}
.page_fv .pankuzu li a {
  color: #FA82B4;
  font-size: 15px;
  font-weight: bold;
}

/*                レイアウト
======================================================= */
* + .wp-block-heading {
  margin-top: 48px;
}

.page_section_wrap {
  position: relative;
}
.page_section_wrap::before {
  content: "";
  background: url(../images/common/page-grd.png) no-repeat top center/100% 100%;
  position: absolute;
  width: 100%;
  height: 1300px;
  top: 15rem;
  left: 0;
  z-index: 0;
}
@media only screen and (max-width: 768px) {
  .page_section_wrap::before {
    top: 5rem;
    height: 50%;
  }
}
.page_section_wrap.article_section_wrap::before {
  height: 70%;
}
.page_section_wrap section:first-child {
  margin-top: -15rem;
}
@media only screen and (max-width: 768px) {
  .page_section_wrap section:first-child {
    margin-top: -5rem;
  }
}

section {
  max-width: 960px;
  margin: 0 auto;
  padding-bottom: 88px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 960px) {
  section {
    max-width: 100%;
    margin: 0 30px;
  }
}
@media only screen and (max-width: 768px) {
  section {
    padding-bottom: 60px;
  }
}
section .content_inner {
  max-width: 880px;
  margin: 0 auto;
}
section.hos_info {
  padding-bottom: 15rem;
}
section.hos_info .content_inner {
  max-width: 795px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
}
section.hos_info .content_inner .cl_wrap {
  width: 398px;
}
section.hos_info .content_inner .cl_detail {
  width: calc(100% - 398px);
}
@media only screen and (max-width: 768px) {
  section.hos_info .content_inner {
    flex-direction: column;
    gap: 12px;
  }
  section.hos_info .content_inner .cl_wrap,
  section.hos_info .content_inner .cl_detail {
    width: 100%;
  }
}

.container-lg {
  display: flex;
  justify-content: space-between;
}
.container-lg .img_area {
  width: 37.95%;
}
.container-lg .txt_base {
  width: 57.95%;
}
.container-lg + .txt_base {
  margin-top: 36px;
}
@media only screen and (max-width: 768px) {
  .container-lg + .txt_base {
    margin-top: 8px;
  }
}
.container-lg + .content_block {
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .container-lg + .content_block {
    margin-top: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .container-lg {
    flex-direction: column;
    gap: 36px;
  }
  .container-lg .img_area,
  .container-lg .txt_base {
    width: 100%;
  }
}

.container-lg_2 {
  display: flex;
  justify-content: space-between;
}
.container-lg_2 .img_area {
  width: 42.72%;
}
.container-lg_2 .txt_base {
  width: 53.18%;
}
.container-lg_2 + .txt_base {
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .container-lg_2 + .txt_base {
    margin-top: 36px;
  }
}
@media only screen and (max-width: 768px) {
  .container-lg_2 {
    flex-direction: column;
    gap: 36px;
  }
  .container-lg_2 .img_area,
  .container-lg_2 .txt_base {
    width: 100%;
  }
}

.container-md {
  display: flex;
  justify-content: space-between;
}
.container-md .img_area {
  width: 29.54%;
}
.container-md .txt_base {
  width: 66.36%;
}
.container-md + * {
  margin-top: 24px;
}
@media only screen and (max-width: 768px) {
  .container-md + * {
    margin-top: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .container-md {
    flex-direction: column;
    gap: 24px;
  }
  .container-md .img_area,
  .container-md .txt_base {
    width: 100%;
  }
  .container-md .img_area img {
    display: block;
    margin: 0 auto;
    max-width: 260px;
  }
}

.content_block {
  margin-bottom: 48px;
}
@media only screen and (max-width: 480px) {
  .content_block {
    margin-bottom: 36px;
  }
}
.content_block:last-child {
  margin-bottom: 0;
}

.ul_list_block {
  padding: 24px 40px;
  background-color: #FAF0F0;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
}
.ul_list_block.white_base {
  background-color: #fff;
}
.ul_list_block.no_wrap {
  flex-direction: column;
}
@media only screen and (max-width: 480px) {
  .ul_list_block {
    padding: 24px 20px;
    flex-direction: column;
  }
}
.ul_list_block + p, .ul_list_block + .txt_base {
  margin-top: 24px;
}
.ul_list_block.check_block li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 20px;
}
.ul_list_block.check_block li::before {
  content: "";
  background: url(../images/common/check-icon.png) no-repeat center center/contain;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 8px;
  left: 0;
}

.dl_list_block {
  padding: 24px 40px;
  border-radius: 10px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 480px) {
  .dl_list_block {
    padding: 24px 20px;
  }
}
.dl_list_block dt {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 480px) {
  .dl_list_block dt {
    margin-bottom: 0.4em;
  }
}
.dl_list_block dt:not(:first-child) {
  margin-top: 1.5em;
}
@media only screen and (max-width: 480px) {
  .dl_list_block dt:not(:first-child) {
    margin-top: 1em;
  }
}
.dl_list_block .txt_base p:not(:last-child) {
  margin-bottom: 0.3em;
}
.dl_list_block .dd_list_wrap {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
}
@media only screen and (max-width: 768px) {
  .dl_list_block .dd_list_wrap {
    flex-direction: column;
  }
}
.dl_list_block.pink_base {
  background-color: #FAF0F0;
}
.dl_list_block.pink_base dt {
  color: #FA82B4;
}
.dl_list_block.blue_base {
  background-color: #EBF5FA;
}
.dl_list_block.blue_base dt {
  color: #37B9E6;
}
.dl_list_block.white_base {
  background-color: #fff;
}
.dl_list_block.check_block dd li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 20px;
}
.dl_list_block.check_block dd li::before {
  content: "";
  background: url(../images/common/check-icon.png) no-repeat center center/contain;
  position: absolute;
  width: 12px;
  height: 12px;
  top: 8px;
  left: 0;
}

/*                パーツ
======================================================= */
.c-table {
  width: 100%;
}
.c-table th {
  color: #fff;
  font-weight: bold;
  text-align: center;
  align-content: center;
}
.c-table th:not(:first-child) {
  border-left: 2px solid #fff;
}
.c-table th, .c-table td {
  padding: 8px 10px;
  font-size: 20px;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .c-table th, .c-table td {
    font-size: 16px;
  }
}
.c-table.pink_base tr:nth-of-type(2n + 1) td {
  background-color: #FAF0F0;
}
.c-table.pink_base tr:nth-of-type(2n) td {
  background-color: #fff;
}
.c-table.pink_base th {
  background-color: #FA82B4;
}
.c-table.pink_base td {
  border-bottom: 1px solid #FA82B4;
}
.c-table.pink_base td:not(:first-child) {
  border-left: 2px dashed #FA82B4;
}
.c-table.blue_base tr:nth-of-type(2n + 1) td {
  background-color: #EBF5FA;
}
.c-table.blue_base tr:nth-of-type(2n) td {
  background-color: #fff;
}
.c-table.blue_base th {
  background-color: #37B9E6;
}
.c-table.blue_base td {
  border-bottom: 1px solid #37B9E6;
}
.c-table.blue_base td:not(:first-child) {
  border-left: 2px dashed #37B9E6;
}
.c-table.three_column_tb th, .c-table.three_column_tb td {
  width: 33.33% !important;
}
.c-table.two_column_tb th, .c-table.two_column_tb td {
  width: 50% !important;
  text-align: center;
  vertical-align: middle;
  font-size: 16px;
}
.c-table.two_column_tb tr:first-child td {
  border-top: 1px solid #37B9E6;
}
.c-table.price_tb th, .c-table.price_tb td {
  font-size: 16px;
  align-content: center;
}
.c-table.price_tb tr:first-child td {
  border-top: 1px solid #37B9E6;
}
.c-table.price_td_two td:not(:first-child) {
  padding-left: 30px;
}
@media only screen and (max-width: 768px) {
  .c-table.price_td_two td:not(:first-child) {
    padding-left: 10px;
  }
}
.c-table.price_td_two td:first-child {
  width: 26.25%;
  text-align: center;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .c-table.price_td_two td:first-child {
    width: 40.25%;
  }
}
.c-table.price_tb_three th {
  width: 26.25%;
  border-bottom: 1px solid #fff;
}
.c-table.price_tb_three tr td {
  padding-left: 30px;
  padding-right: 30px;
  background-color: #fff !important;
}
@media only screen and (max-width: 768px) {
  .c-table.price_tb_three tr td {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.c-table.price_tb_three tr td.price_row {
  width: 26.25%;
  border-left: 0 !important;
}
.c-table.price_tb_three.obstetrics_tb tr:nth-of-type(3) td, .c-table.price_tb_three.obstetrics_tb tr:nth-of-type(7) td, .c-table.price_tb_three.obstetrics_tb tr:nth-of-type(8) td {
  background-color: #EBF5FA !important;
}
.c-table.price_tb_three.gynecology_tb tr:nth-of-type(2) td, .c-table.price_tb_three.gynecology_tb tr:nth-of-type(3) td, .c-table.price_tb_three.gynecology_tb tr:nth-of-type(5) td, .c-table.price_tb_three.gynecology_tb tr:nth-of-type(7) td, .c-table.price_tb_three.gynecology_tb tr:nth-of-type(9) td {
  background-color: #EBF5FA !important;
}
.c-table.price_tb_three.vaccine_tb tr:nth-of-type(3) td, .c-table.price_tb_three.vaccine_tb tr:nth-of-type(4) td {
  background-color: #EBF5FA !important;
}
.c-table.pms_tb.three_column_tb th:first-child, .c-table.pms_tb.three_column_tb td:first-child {
  width: 26.25% !important;
}
.c-table.pms_tb td:first-child {
  width: 26.25%;
  text-align: center;
  vertical-align: middle;
}
.c-table.pms_tb td:not(:first-child) {
  font-size: 16px;
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (max-width: 768px) {
  .c-table.pms_tb td:not(:first-child) {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/*                見出し
======================================================= */
h2 {
  padding: 5px 20px;
  background-color: #FA82B4;
  margin-bottom: 48px;
}
h2.wp-block-heading {
  font-weight: bold;
  color: #fff;
  font-size: 24px;
}
@media only screen and (max-width: 768px) {
  h2.wp-block-heading {
    font-size: 20px;
  }
}
@media only screen and (max-width: 768px) {
  h2 {
    margin-bottom: 36px;
  }
}
h2 span {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  h2 span {
    font-size: 20px;
  }
}
h2 span::before {
  content: "";
  background: url(../images/common/white-heart.png) no-repeat center center/contain;
  position: absolute;
  width: 22px;
  height: 20px;
  top: 10px;
  left: 0;
}

h3 {
  color: #FA82B4;
  font-size: 20px;
  font-weight: bold;
  padding-left: 10px;
  border-left: 3px solid #FA82B4;
  margin-bottom: 40px;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  h3 {
    margin-bottom: 25px;
    font-size: 18px;
  }
}

h4.wp-block-heading {
  font-size: 18px;
  font-weight: bold;
  color: #FA82B4;
  margin-bottom: 24px;
}
@media only screen and (max-width: 768px) {
  h4 {
    font-size: 16px;
  }
}

/*                本文テキスト
======================================================= */
.txt_base p:last-child {
  margin-bottom: 0;
}
.txt_base p span {
  font-weight: bold;
}
.txt_base + .content_block {
  margin-top: 50px;
}
@media only screen and (max-width: 768px) {
  .txt_base + .content_block {
    margin-top: 36px;
  }
}
.txt_base + ul, .txt_base + dl {
  margin-top: 24px;
}

.note {
  font-size: 14px;
}

.inner_link {
  color: #37B9E6;
}

/*                各ページ・セクションごと
======================================================= */
.infertility_sec02 .aproch_block {
  background-color: #fff;
  padding: 36px 0;
  border-radius: 10px;
  margin: 24px;
}
@media only screen and (max-width: 768px) {
  .infertility_sec02 .aproch_block {
    padding: 30px;
  }
}
.infertility_sec02 .aproch_block .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 34px;
  max-width: 564px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .infertility_sec02 .aproch_block .inner {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 34px;
  }
}
.infertility_sec02 .aproch_block .inner div {
  text-align: center;
  white-space: nowrap;
}
.infertility_sec02 .aproch_block .inner div img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.recurrent_sec05 .content_block:nth-of-type(5) .dl_list_block:nth-of-type(1), .recurrent_sec05 .content_block:nth-of-type(5) .dl_list_block:nth-of-type(2) {
  margin-top: 24px;
}

.inf-treat_sec03 .dl_list_block {
  margin-top: 48px;
}
.inf-treat_sec03 .dl_list_block dd {
  margin-bottom: 16px;
}
.inf-treat_sec03 .dl_list_block dd .num_ttl {
  font-weight: bold;
  margin-bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .inf-treat_sec03 .dl_list_block {
    background-color: #fff;
  }
}

.inf-treat_sec04 .dl_list_block,
.inf-treat_sec09 .dl_list_block {
  margin-top: 36px;
}

.inf-treat_sec10 .dl_list_block {
  margin-top: 24px;
}
.inf-treat_sec10 .dl_list_block dt:not(:first-child) {
  margin-top: 24px;
}

.maternity_sec04 .grid_area {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media only screen and (max-width: 480px) {
  .maternity_sec04 .grid_area {
    flex-direction: column;
  }
}
.maternity_sec04 .grid_area dl {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 480px) {
  .maternity_sec04 .grid_area dl {
    width: 100%;
  }
}
.maternity_sec04 .grid_area dl:nth-of-type(7) {
  width: 100%;
}
.maternity_sec04 .grid_area dl:nth-of-type(7) .txt_base {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 480px) {
  .maternity_sec04 .grid_area dl:nth-of-type(7) .txt_base {
    display: block;
  }
}

.cancer_sec04 .container-lg + .dl_list_block {
  margin-top: 36px;
  margin-bottom: 45px;
}

.content_block_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 48px;
}
@media only screen and (max-width: 768px) {
  .content_block_wrap {
    display: block;
  }
}

.about_sec04 .content_block:last-child h3:not(:first-child),
.doctor_sec03 .content_block:last-child h3:not(:first-child) {
  margin-top: 36px;
}

.hos_access {
  padding-bottom: 15rem;
}
.hos_access .content_inner .access_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
@media only screen and (max-width: 768px) {
  .hos_access .content_inner .access_wrap {
    display: block;
  }
  .hos_access .content_inner .access_wrap .map_block {
    display: none;
  }
}
.hos_access .content_inner .access_wrap .cl_detail {
  margin-top: 16px;
}
.hos_access .content_inner .access_wrap iframe {
  width: 100%;
  height: 100%;
}

.container-profile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 48px;
}
@media only screen and (max-width: 768px) {
  .container-profile {
    display: block;
    margin-bottom: 36px;
  }
}
.container-profile .img_area {
  width: 31.81%;
}
@media only screen and (max-width: 768px) {
  .container-profile .img_area {
    width: 100%;
    margin-bottom: 24px;
  }
}
.container-profile .txt_area {
  width: 64.09%;
}
@media only screen and (max-width: 768px) {
  .container-profile .txt_area {
    width: 100%;
  }
}
.container-profile .txt_area div:first-child {
  margin-bottom: 30px;
}
.container-profile .txt_area .ul_list_block {
  padding: 24px 24px;
}
.container-profile .txt_area h3 {
  margin-bottom: 16px;
}
.container-profile .txt_area .doctor_name {
  padding-left: 1em;
}

.career_list li {
  border-bottom: 1px solid #EBCDCD;
  padding: 8px 0;
  display: flex;
  gap: 20px;
}
.career_list li p:first-child {
  width: 100px;
}
@media only screen and (max-width: 768px) {
  .career_list li p:first-child {
    width: auto;
    white-space: nowrap;
  }
}

.doc_message {
  padding: 36px 40px;
  border-radius: 10px;
  margin-top: 48px;
}
@media only screen and (max-width: 768px) {
  .doc_message {
    padding: 36px 24px;
    margin-top: 36px;
  }
}
.doc_message .ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 24px;
  padding-left: 10px;
  line-height: 1.3;
}
.doc_message.pink_base {
  background-color: #FAF0F0;
}
.doc_message.pink_base .ttl {
  color: #FA82B4;
  border-left: 3px solid #FA82B4;
}
.doc_message.blue_base {
  background-color: #EBF5FA;
}
.doc_message.blue_base .ttl {
  color: #37B9E6;
  border-left: 3px solid #37B9E6;
}
.doc_message .inner_mes {
  padding: 22px 20px;
  border: 3px solid #fff;
  margin-top: 16px;
  border-radius: 10px;
}
.doc_message .inner_mes .headingTxt {
  font-weight: bold;
  color: #FA82B4;
  border-bottom: 1px solid #EBCDCD;
  padding-bottom: 8px;
  margin-bottom: 1em;
}

.price_sec03 .content_block {
  margin-top: 48px;
}
.price_sec03 .content_block .txt_base:nth-of-type(1) {
  margin-bottom: 36px;
}
.price_sec03 .content_block .txt_base:nth-of-type(1) span {
  font-weight: 400;
}

.pms_sec02 .content_block,
.pms_sec05 .content_block {
  margin-top: 48px;
}

.pms_sec03 .dl_list_block dd {
  margin: 1em 0;
}

.menopause_sec04 .dl_list_block .txt_base p:not(:last-child) {
  margin-bottom: 1.3em;
}
.menopause_sec04 .note_wrap .note {
  margin-bottom: 0.5em;
}

.std_sec01 .c-table {
  margin-bottom: 24px;
}

.cervical_sec03 .dl_list_block dd p:first-child {
  margin-bottom: 1em;
}

.compliance_sec01 .ul_list_block {
  margin-bottom: 48px;
}
.compliance_sec01 .ul_list_block li {
  width: calc(50% - 12px);
}
@media only screen and (max-width: 768px) {
  .compliance_sec01 .ul_list_block li {
    width: 100%;
  }
}

.article_wrap {
  padding-bottom: 15rem;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .article_wrap {
    flex-direction: column;
    gap: 60px;
  }
}
.article_wrap .article_list {
  width: 72.91%;
}
.article_wrap .article_list h2 {
  margin-bottom: 36px;
}
.article_wrap .article_list ul li {
  border-bottom: 1px dashed #FA82B4;
}
.article_wrap .article_list ul a {
  display: flex;
  gap: 36px;
  padding: 18px 0;
}
.article_wrap .article_list ul p {
  padding: 18px 0;
}
@media only screen and (max-width: 768px) {
  .article_wrap .article_list {
    width: 100%;
  }
}
.article_wrap .archive_list {
  width: 23.33%;
}
.article_wrap .archive_list p {
  font-size: 24px;
  font-weight: bold;
  padding: 5px 20px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .article_wrap .archive_list p {
    font-size: 20px;
  }
}
.article_wrap .archive_list p.archive_ttl {
  color: #FA82B4;
  background-color: #fff;
}
.article_wrap .archive_list ul {
  padding: 0 24px;
}
.article_wrap .archive_list ul li {
  max-width: 176px;
  margin: 0 auto;
}
.article_wrap .archive_list ul li a {
  font-size: 32px;
  position: relative;
  border-bottom: 1px solid #FA82B4;
  display: block;
  padding: 5px 10px;
  line-height: normal;
}
.article_wrap .archive_list ul li a::before {
  content: "";
  background: url(../images/common/crlArw-wp.png) no-repeat center center/contain;
  width: 30px;
  height: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .article_wrap .archive_list {
    width: 100%;
  }
}

.contact_sec .form_ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 36px;
  color: #FA82B4;
  text-align: center;
}
.contact_sec .form_area {
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(238, 135, 180, 0.1647058824);
  border-radius: 10px;
  padding: 40px 80px;
  margin: 40px 0;
}
.contact_sec .consent_area {
  padding: 28px;
  border-radius: 10px;
  border: 1px solid #FA82B4;
  margin-bottom: 10px;
}
.contact_sec .consent_area .ttl {
  color: #FA82B4;
  font-weight: bold;
  position: relative;
  margin-bottom: 20px;
  padding-left: 20px;
}
.contact_sec .consent_area .ttl::before {
  content: "";
  background: #FA82B4;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: 2px;
  left: 0;
  position: absolute;
}
.contact_sec .consent_area .ttl + p {
  font-size: 14px;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .contact_sec .form_ttl {
    text-align: left;
  }
  .contact_sec .form_area {
    padding: 24px;
  }
  .contact_sec .consent_area {
    padding: 24px;
  }
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .form-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.form-group:nth-of-type(5) {
  margin-bottom: 30px;
  margin-top: 20px;
  display: block;
}
.form-group:nth-of-type(5) .form-label {
  margin-bottom: 15px;
}
.form-group:nth-of-type(5) .form-label + p {
  width: 100%;
}
.form-group:nth-of-type(5) .wpcf7-checkbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 15px;
}
@media only screen and (max-width: 768px) {
  .form-group:nth-of-type(5) .wpcf7-checkbox {
    grid-template-columns: repeat(1, 1fr);
  }
}
.form-group:nth-of-type(6) {
  margin-bottom: 0;
  display: block;
}
.form-group:nth-of-type(6) .form-label {
  margin-bottom: 15px;
}
.form-group:nth-of-type(6) .form-label + p {
  width: 100%;
}
.form-group .form-label {
  font-weight: bold;
}
.form-group .form-label .required {
  color: #FF6464;
}
.form-group .form-label + p {
  width: 69.86%;
}
@media only screen and (max-width: 768px) {
  .form-group .form-label + p {
    width: 100%;
  }
}
.form-group .form-label + p input:not([type=radio]):not([type=checkbox]),
.form-group .form-label + p textarea {
  border: 1px solid #C8C8C8;
  background-color: #F5F5F5;
  padding: 5px 15px;
  border-radius: 5px;
  width: 100%;
}

/* カスタムチェックボックス */
.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}

/* デフォルトのラジオボタン */
input[type=radio],
input[type=checkbox] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のラジオボタン */
.wpcf7-list-item-label::before {
  border: 1px solid #C8C8C8;
  background-color: #F5F5F5;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  width: 1.2em;
}

/* チェック後のラジオボタン */
input[type=radio]:checked + .wpcf7-list-item-label::before,
input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  background-color: #37B9E6; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 5px #fff; /* 中心の色のスタイル */
  border: 1px solid #37B9E6;
}

/* チェックボックスのスタイル */
.wpcf7-acceptance .wpcf7-list-item-label::before {
  border: 1px solid #C8AA82;
}

/* 承諾ボタンの位置調整 */
/* 承諾ボタンの位置調整 */
span.wpcf7-form-control-wrap[data-name=acceptance-335] {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

/* 送信ボタンのスタイル */
.sendBtn {
  width: 400px;
  margin: 0 auto;
  cursor: pointer;
}
.sendBtn input.wpcf7-form-control.wpcf7-submit.has-spinner {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 30px;
  font-weight: bold;
  color: #37B9E6;
}
.sendBtn input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .sendBtn {
    width: 100%;
  }
}/*# sourceMappingURL=page.css.map */