@charset "UTF-8";
.c-buttonCommon, .c-button02, .c-button01, .c-buttonApply, .c-buttonFix {
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0 30px;
  margin: 0 auto;
  height: 40px;
  cursor: pointer;
  transition: all 0.3s;
}
.c-buttonApply, .c-buttonFix {
  background-color: #E88D6A;
  border: 1px solid #E88D6A;
  color: #fff;
  position: fixed;
  width: 309px;
  height: 56px;
  border-radius: 120px;
  letter-spacing: 0.29em;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  transition: all 0.3s;
}
.c-buttonApply::after, .c-buttonFix::after {
  content: url("/assets/img/icon/icon_chevron02.svg");
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
}
.c-buttonApply:hover, .c-buttonFix:hover {
  background-color: #fff;
  color: #E88D6A;
}
.c-buttonApply:hover::after, .c-buttonFix:hover::after {
  content: url("/assets/img/icon/icon_chevron01.svg");
}
.c-buttonFix {
  opacity: 0;
  visibility: hidden;
}
.c-buttonFix.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-buttonTop {
  background-color: #E88D6A;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: fixed;
  bottom: 84px;
  right: 16px;
  cursor: pointer;
  border: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.c-buttonTop::after {
  content: "";
  background-image: url("/assets/img/icon/icon_chevron02.svg");
  background-repeat: no-repeat;
  position: absolute;
  transform: rotate(-90deg);
  top: 12px;
  left: 15px;
  height: 13px;
  width: 10px;
  background-size: contain;
  vertical-align: middle;
}
.c-buttonTop.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-buttonTop:hover {
  background-color: #D8EBEE;
}
.c-button01 {
  background-color: #E88D6A;
  color: #fff;
}
.c-button02 {
  background-color: #fff;
  color: #585556;
}

.c-linkExternal01 {
  color: #9E9B9C;
  font-size: 11px;
  line-height: 1.63;
  text-decoration: underline;
  position: relative;
  transition: all 0.3s;
}
.c-linkExternal01:hover {
  color: #E88D6A;
}
.c-linkExternal01::after {
  content: url("/assets/img/icon/icon_link02.svg");
  width: 10px;
  height: 10px;
  position: absolute;
  right: -20px;
  top: 1px;
}

.c-listNotice01__item, .c-listNotice02__item {
  position: relative;
  padding: 0 0 0 12px;
  color: #9E9B9C;
  font-size: 10px;
  line-height: 1.5;
}
.c-listNotice01__item:before, .c-listNotice02__item:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 1px;
}
.c-listNotice02 {
  counter-reset: listnum;
}
.c-listNotice02__item {
  padding: 0 0 0 18px;
  counter-increment: listnum;
  content: counter(listnum);
}
.c-listNotice02__item:before {
  content: "※" counter(listnum);
  position: absolute;
  left: 0;
  top: 1px;
}

.c-textNotice01 {
  color: #9E9B9C;
  font-size: 10px;
  letter-spacing: 0.05em;
  line-height: 2.2;
}

.c-title01 {
  font-family: "futura-pt", sans-serif;
  color: #E88D6A;
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.29em;
  line-height: 1;
  margin: 0 auto 5px;
  text-align: center;
  text-transform: uppercase;
}
.c-title02 {
  font-family: "Noto Sans JP", serif;
  color: #9E9B9C;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.16em;
  margin: 0 auto 17px;
  text-align: center;
}

html {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
}

body.is-fixed {
  overflow-y: hidden;
}

p, h1, h2, h3, h4, h5, h6 {
  color: #585556;
  font-family: "Noto Sans JP", serif;
}

/* http://meyerweb.com/eric/tools/css/reset/
  v5.0.2 | 20191019
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

/* HTML5 hidden-attribute fix for newer browsers */
*[hidden] {
  display: none;
}

body {
  line-height: 1;
}

menu, ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

.l-footer {
  background-color: #FFFCFB;
  padding: 0 0 40px;
}
.l-footer__inner {
  max-width: 358px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.l-footer__list {
  margin: 0 auto 58px;
}
.l-footer__link {
  color: #978884;
  font-size: 11px;
  letter-spacing: 0.27em;
  font-weight: 300;
  line-height: 2.1;
  transition: all 0.3s;
}
.l-footer__link:hover {
  color: #E88D6A;
}
.l-footer__follow {
  color: #E88D6A;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto 16px;
  text-align: center;
  letter-spacing: 0.29em;
}
.l-footer__sns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 70px;
  gap: 0 15px;
}
.l-footer__sns-item {
  transition: all 0.3s;
}
.l-footer__sns-item:hover {
  opacity: 0.8;
}
.l-footer__sns-item:first-child {
  text-align: right;
}
.l-footer__sns-item img {
  width: 60px;
  height: 60px;
}
.l-footer__copy {
  font-family: "futura-pt", sans-serif;
  font-size: 10px;
  letter-spacing: 0.19em;
  text-align: center;
  color: #E88D6A;
}

.l-header {
  padding: 16px 0;
  position: fixed;
  width: 100%;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
.l-header__inner {
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
.l-header__logo {
  width: 153px;
}
.l-header__toggle {
  position: absolute;
  right: 16px;
  top: 0;
  cursor: pointer;
  width: 25px;
  height: 25px;
  z-index: 15;
}
.l-header__toggle span {
  cursor: pointer;
  display: block;
  width: 25px;
  height: 1px;
  background-color: #585556;
}
.l-header__toggle span:nth-child(2) {
  margin: 8px auto 0;
}
.l-header__toggle span:nth-child(3) {
  margin: 8px auto 0;
}
.l-header__toggle.is-active span:nth-child(1) {
  display: none;
}
.l-header__toggle.is-active span:nth-child(2) {
  transform: rotate(45deg);
  margin-top: 10px;
}
.l-header__toggle.is-active span:nth-child(3) {
  transform: rotate(-45deg);
  margin: 0;
}
.l-header-content {
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 8;
  background-color: #fff;
  background-image: url("/assets/img/mv/bg01.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.3s;
}
.l-header-content__inner {
  padding: 0 16px;
  width: 100%;
  overflow-y: scroll;
}
.l-header-content__list {
  margin: 100px auto 160px;
}
.l-header-content__item:not(:last-child) {
  border-bottom: 1px solid #F0F2F2;
}
.l-header-content__link {
  padding: 18px 18px 18px 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.l-header-content__link-icon {
  width: 7px;
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
}
.l-header-content__link-name {
  font-size: 25px;
  letter-spacing: 0.2em;
  color: #585556;
  font-weight: 300;
  line-height: 1.28;
  margin: 0 auto 1px;
  width: 100%;
  font-family: "futura-pt", sans-serif;
}
.l-header-content__link-name-ja {
  font-size: 12px;
  letter-spacing: 0.23em;
  color: #9E9B9C;
  line-height: 1.17;
}
.l-header-content__button {
  height: 66px;
  font-size: 17px;
  background-color: #E88D6A;
  color: #fff;
  border-radius: 140px;
  letter-spacing: 0.29em;
  margin: 0 auto 57px;
  position: relative;
  bottom: unset;
  left: unset;
  transform: unset;
  z-index: unset;
}
.l-header-content__other {
  margin: 0 auto 55px;
}
.l-header-content__other-title {
  color: #E88D6A;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.29em;
  margin: 0 auto 13px;
}
.l-header-content__other .other-item {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 94px;
  width: 100%;
  position: relative;
  transition: all 0.3s;
}
.l-header-content__other .other-item:hover {
  opacity: 0.8;
}
.l-header-content__other .other-item:first-child {
  margin: 0 auto 8px;
}
.l-header-content__other .other-banner:first-child {
  width: 173px;
}
.l-header-content__other .other-banner:last-child {
  width: 217px;
}
.l-header-content__other .other-icon {
  color: #E88D6A;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 12px;
  height: 12px;
}
.l-header-content__sns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 52px;
  gap: 0 15px;
}
.l-header-content__sns-item {
  transition: all 0.3s;
}
.l-header-content__sns-item:hover {
  opacity: 0.8;
}
.l-header-content__sns-item:first-child {
  text-align: right;
}
.l-header-content__sns-item img {
  width: 60px;
  height: 60px;
}
.l-header-content__follow {
  color: #E88D6A;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 400;
  margin: 0 auto 16px;
  text-align: center;
  letter-spacing: 0.29em;
}
.l-header-content.is-visible {
  display: flex;
  opacity: 1;
  visibility: visible;
}

.l-top {
  margin: 0 auto;
  /* 対象となる保険について */
  /* ライフステージ */
  /* FAQ */
  /* Contact */
  /* 保険株式会社 */
  /* OTHER SERVICE */
}
.l-top__main {
  margin: 0 auto;
}
.l-top__inner, .l-top .other__inner, .l-top .company__inner, .l-top .contact__inner, .l-top .faq__inner, .l-top .lifestage__inner, .l-top .point__inner, .l-top .plan__inner, .l-top .about__inner, .l-top .mv__inner {
  max-width: 358px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.l-top__overlay {
  display: none;
}
.l-top__overlay.is-visible {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.l-top .mv {
  padding: 80px 0 88px;
  background-image: url("/assets/img/mv/bg01.png");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.l-top .mv__index {
  width: 390px;
  margin: 0 auto;
  position: relative;
}
.l-top .mv__index01 {
  color: #585556;
  font-size: 27px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.29em;
  margin: 0 auto 27px;
}
.l-top .mv__index02 {
  color: #585556;
  font-size: 15px;
  background-color: #fff;
  letter-spacing: 0.21em;
  font-weight: 400;
  height: 19px;
}
.l-top .mv__index02:first-child {
  margin: 0 auto 7px;
  display: inline-block;
}
.l-top .mv__indexWrap {
  position: absolute;
  left: 16px;
  bottom: 56px;
}
.l-top .mv__img {
  height: 446px;
  border-radius: 40px 0 0 0;
  display: block;
  margin-left: auto;
}
.l-top .about {
  padding: 60px 0 40px;
}
.l-top .about__text {
  color: #585556;
  font-size: 13px;
  line-height: 2.07;
  text-align: center;
  letter-spacing: 0.1em;
  margin: 0 auto 40px;
  font-weight: 400;
}
.l-top .about .foryou__title {
  display: flex;
  align-items: center;
  color: #E88D6A;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.23em;
  margin: 0 0 12px;
  text-align: left;
  gap: 0 10px;
  justify-content: flex-start;
}
.l-top .about .foryou__title-ja {
  font-family: "Noto Sans JP", serif;
  color: #9E9B9C;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.12em;
}
.l-top .about .foryou__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 8px;
  text-align: center;
}
.l-top .about .foryou__item {
  display: grid;
  place-content: center;
  place-items: center;
  border: 1px solid #D8EBEE;
  border-radius: 18px;
  color: #585556;
  background-color: #fff;
  font-size: 12px;
  letter-spacing: 0.02em;
  min-width: 100px;
  min-height: 100px;
  padding: 5px;
  line-height: 1.5;
}
.l-top .plan {
  background-color: #F9F9F9;
  padding: 60px 0 107px;
}
.l-top .plan__text {
  color: #585556;
  font-size: 14px;
  letter-spacing: 0.01em;
  margin: 0 auto 15px;
  text-align: center;
}
.l-top .plan__age {
  display: grid;
  margin: 0 auto 25px;
  text-align: center;
}
.l-top .plan__input {
  border: none;
  background-color: #fff;
  width: 52px;
  height: 28ox;
  border-radius: 4px;
  color: #585556;
  font-size: 18px;
  padding: 1px 10px;
  font-weight: 700;
  margin: 0 10px;
  text-align: right;
}
.l-top .plan .c-button01 {
  border: 1px solid #E88D6A;
  margin: 0 auto 28px;
  transition: all 0.3s;
}
.l-top .plan .c-button01:hover {
  color: #E88D6A;
  background-color: #fff;
}
.l-top .plan .c-button02 {
  width: 292px;
  letter-spacing: 0.15em;
  position: relative;
  transition: all 0.3s;
}
.l-top .plan .c-button02:hover {
  background-color: #E88D6A;
  color: #fff;
}
.l-top .plan .c-button02:hover span {
  background-color: #fff;
}
.l-top .plan .c-button02 span {
  background-color: #585556;
  width: 14px;
  height: 1px;
  position: absolute;
}
.l-top .plan .c-button02 span:nth-child(1) {
  right: 16px;
}
.l-top .plan .c-button02 span:nth-child(2) {
  transform: rotate(90deg);
  right: 16px;
}
.l-top .plan__error {
  font-size: 10px;
  text-align: center;
  margin: 10px auto 0;
  color: #585556;
  letter-spacing: 0.1em;
}
.l-top .plan__list {
  display: grid;
  gap: 0 16px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 20px;
}
.l-top .plan__item {
  border-radius: 4px;
}
.l-top .plan__standard, .l-top .plan__light {
  background-color: #E88D6A;
  border-radius: 4px 4px 0 0;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 700;
  padding: 8px 25px;
  text-align: center;
}
.l-top .plan__light {
  background-color: #D8EBEE;
}
.l-top .plan__content {
  background-color: #fff;
  padding: 10px 12px;
}
.l-top .plan__content .price01, .l-top .plan__content .price02 {
  text-align: center;
  color: #585556;
  font-weight: 700;
  line-height: 1.19;
}
.l-top .plan__content .price01 {
  font-size: 32px;
  margin: 0 0 16px 0;
}
.l-top .plan__content .price02 {
  font-size: 26px;
}
.l-top .plan__content .per {
  color: #585556;
  margin: 0 0 0 8px;
  font-size: 15px;
}
.l-top .plan__content .benefit {
  color: #9E9B9C;
  font-size: 12px;
  letter-spacing: 0.02;
  margin: 0 auto 3px;
}
.l-top .plan .modal {
  display: none;
  position: relative;
}
.l-top .plan .modal.is-visible {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 16px;
}
.l-top .plan .modal__toggle {
  position: fixed;
  right: 16px;
  top: 16px;
  cursor: pointer;
  width: 35px;
  height: 35px;
  z-index: 15;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.l-top .plan .modal__toggle:hover {
  background-color: #E88D6A;
}
.l-top .plan .modal__toggle:hover span {
  background-color: #fff;
}
.l-top .plan .modal__toggle span {
  cursor: pointer;
  display: block;
  width: 25px;
  height: 1px;
  background-color: #585556;
  position: absolute;
  top: 17px;
  right: 5px;
}
.l-top .plan .modal__toggle span:nth-child(1) {
  transform: rotate(45deg);
}
.l-top .plan .modal__toggle span:nth-child(2) {
  transform: rotate(-45deg);
}
.l-top .plan .modal__wrap {
  overflow-y: scroll;
  position: fixed;
  top: 63px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  height: 90%;
  width: 100%;
}
.l-top .plan .modal-content {
  padding: 24px 16px 56px;
  margin: 0 16px;
  background-color: #FEF6EF;
  border-radius: 4px;
}
.l-top .plan .modal-content__title {
  text-align: center;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 auto 14px;
}
.l-top .plan .modal-content__table {
  margin: 0 auto 16px;
  width: 100%;
  border-collapse: collapse;
  border-top: 2px solid #FFFCFB;
}
.l-top .plan .modal-content__table tr {
  width: 100%;
  border: 2px solid #FFFCFB;
}
.l-top .plan .modal-content__table tr:nth-child(2) th:nth-child(2) {
  border-right: 2px solid #FFFCFB;
  text-align: left;
  line-height: 1.23;
}
.l-top .plan .modal-content__table tr:nth-child(3) th:nth-child(1), .l-top .plan .modal-content__table tr:nth-child(4) th:nth-child(1), .l-top .plan .modal-content__table tr:nth-child(5) th:nth-child(1) {
  border-right: 2px solid #FFFCFB;
  text-align: left;
  line-height: 1.23;
}
.l-top .plan .modal-content__table tr:nth-child(6) th, .l-top .plan .modal-content__table tr:nth-child(7) th, .l-top .plan .modal-content__table tr:nth-child(8) th {
  border-right: 2px solid #FFFCFB;
  text-align: left;
  line-height: 1.23;
  vertical-align: middle;
}
.l-top .plan .modal-content__table th {
  color: #585556;
  font-size: 13px;
  background-color: #fff;
  padding: 11px;
  letter-spacing: 0.1em;
  font-weight: 400;
  border-radius: 4px 4px 0 0;
}
.l-top .plan .modal-content__table th.standard, .l-top .plan .modal-content__table th.light {
  color: #fff;
  font-weight: bold;
}
.l-top .plan .modal-content__table th.standard {
  background-color: #E88D6A;
}
.l-top .plan .modal-content__table th.light {
  background-color: #D8EBEE;
}
.l-top .plan .modal-content__table th.vertical {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.l-top .plan .modal-content__table th span {
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.l-top .plan .modal-content__table td {
  color: #585556;
  background-color: #fff;
  padding: 11px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: right;
  vertical-align: middle;
}
.l-top .plan .modal-content__table td:nth-of-type(1) {
  border-right: 2px solid #FFFCFB;
}
.l-top .plan .modal-content__table td.text-center {
  text-align: center;
  font-weight: 400;
}
.l-top .plan .modal-content__table td span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.l-top .plan .modal-content__table td .text-notice {
  font-size: 10px;
  color: #9E9B9C;
  line-height: 1.2;
  margin: 1px auto 0;
}
.l-top .plan .modal-content__table tr:nth-child(7) td:nth-of-type(1) {
  border-right: none;
}
.l-top .plan .modal-content__text01 {
  color: #585556;
  font-size: 13px;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin: 0 auto 13px;
}
.l-top .plan .modal-content__text01 span {
  font-weight: 300;
  font-size: 10px;
}
.l-top .plan .modal-content__text02 {
  color: #585556;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 300;
  line-height: 1.58;
}
.l-top .plan .modal-content .c-listNotice02 {
  margin: 0 auto 52px;
}
.l-top .point {
  padding: 88px 0 66px;
}
.l-top .point__list {
  margin: 42px auto 0;
}
.l-top .point__item {
  margin: 0 auto 40px;
  position: relative;
}
.l-top .point__item:last-child {
  margin-bottom: 0;
}
.l-top .point__number {
  color: #D8EBEE;
  font-size: 28px;
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  position: absolute;
  left: 0;
  top: -12px;
}
.l-top .point__index {
  color: #E88D6A;
  font-family: "futura-pt", sans-serif;
  font-size: 15px;
  letter-spacing: 0.29em;
  margin: 0 auto 8px;
  font-weight: 400;
  text-align: center;
}
.l-top .point__text {
  color: #585556;
  font-size: 13px;
  line-height: 1.7;
  letter-spacing: 0.29em;
  text-align: center;
  font-weight: 300;
}
.l-top .point__img {
  width: 100%;
  border-radius: 8px;
  margin: 0 auto 18px;
}
.l-top .service {
  background-color: #FEF6EF;
  padding: 75px 0 66px;
}
.l-top .service .treatment {
  margin: 0 auto 60px;
}
.l-top .service .treatment__index, .l-top .service .general__index, .l-top .service .fertility__index, .l-top .service .surgery__index {
  font-size: 15px;
  text-align: center;
  letter-spacing: 0.29em;
  margin: 0 auto 21px;
  font-weight: 400;
}
.l-top .service .treatment__list {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto 14px;
}
.l-top .service .treatment__item {
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  padding: 35px 10px;
}
.l-top .service .treatment__img {
  height: 80px;
  margin: 0 auto 12px;
}
.l-top .service .treatment__name {
  font-size: 13px;
  letter-spacing: 0.2em;
  width: 100%;
}
.l-top .service .surgery {
  margin: 0 auto 58px;
}
.l-top .service .surgery__list {
  display: grid;
  gap: 6px 0;
  margin: 0 auto 12px;
}
.l-top .service .surgery__item {
  border: 1px solid #E88D6A;
  border-radius: 4px;
  background-color: #fff;
  color: #585556;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  letter-spacing: 0.2em;
  padding: 8px;
  line-height: 1.35;
}
.l-top .service .fertility {
  margin: 0 auto 55px;
}
.l-top .service .fertility__text {
  color: #585556;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.18em;
  line-height: 1.67;
  margin: 0 auto 20px;
  text-align: center;
}
.l-top .service .fertility__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 6px;
  margin: 0 auto 6px;
}
.l-top .service .fertility__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  color: #585556;
  background-color: #fff;
  border: 1px solid #D8EBEE;
  border-radius: 4px;
  padding: 8px 10px;
}
.l-top .service .fertility__item:first-child {
  max-height: 49px;
}
.l-top .service .fertility__item span {
  font-size: 10px;
  color: #9E9B9C;
  letter-spacing: 0.1em;
  line-height: 1;
  width: 100%;
  text-align: center;
}
.l-top .service .general {
  margin: 0 auto;
}
.l-top .service .general__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 6px;
  margin: 0 auto 12px;
}
.l-top .service .general__item {
  font-size: 13px;
  letter-spacing: 0;
  line-height: 1.7;
  color: #585556;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}
.l-top .lifestage {
  padding: 60px 0 100px;
  background-color: #F9F9F9;
}
.l-top .lifestage .c-title01, .l-top .lifestage .c-title02 {
  text-align: left;
}
.l-top .lifestage .c-title02 {
  margin: 0 auto 40px;
}
.l-top .lifestage__text01 {
  color: #585556;
  margin: 0 auto 8px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.61;
  font-size: 13px;
}
.l-top .lifestage__text02 {
  color: #E88D6A;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  line-height: 1.77;
  margin: 0 auto 13px;
}
.l-top .lifestage__table {
  width: 100%;
}
.l-top .lifestage__table tr {
  display: grid;
  grid-template-columns: 100px 252px;
  gap: 6px;
  margin: 0 auto 7px;
  color: #585556;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
}
.l-top .lifestage__table th {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-top .lifestage__table td {
  background-color: #fff;
  border-radius: 5px;
  padding: 10px 20px;
  line-height: 1.46;
}
.l-top .lifestage__table td span {
  font-weight: 400;
  font-size: 11px;
}
.l-top .faq {
  padding: 67px 0 80px;
  background-color: #FFFCFB;
}
.l-top .faq__list {
  display: grid;
  gap: 8px 0;
}
.l-top .faq__box {
  background-color: #fff;
  color: #585556;
  border-radius: 16px;
  padding: 12px 60px 12px 12px;
  display: grid;
  grid-template-columns: 28px 1fr 21px;
  align-items: center;
  gap: 8px 12px;
  position: relative;
  transition: all 0.3s;
}
.l-top .faq__box:hover {
  background-color: #F9F9F9;
}
.l-top .faq__q {
  background-color: #E88D6A;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: "futura-pt", sans-serif;
}
.l-top .faq__text {
  font-size: 12px;
  letter-spacing: 0.21em;
  color: #585556;
  line-height: 1.2;
}
.l-top .faq .c-button01 {
  margin: 32px auto 0;
  width: 270px;
  transition: all 0.3s;
  border: 1px solid #E88D6A;
}
.l-top .faq .c-button01:hover {
  background-color: #fff;
  color: #E88D6A;
}
.l-top .faq__icon {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
}
.l-top .contact {
  padding: 60px 0 44px;
}
.l-top .contact__icon {
  width: 18px;
  height: 18px;
  margin: 0 13px 0 0;
}
.l-top .contact__egg {
  margin: 0 auto 17px;
  width: 48px;
  display: block;
}
.l-top .contact__index {
  font-family: "futura-pt", sans-serif;
  color: #D8EBEE;
  font-size: 28px;
  letter-spacing: 0.22em;
  line-height: 1.63;
  margin: 0 auto 19px;
  font-weight: 400;
  text-align: center;
}
.l-top .contact__text01, .l-top .contact__text02 {
  text-align: center;
}
.l-top .contact__text01 {
  color: #E88D6A;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.32em;
  line-height: 2;
}
.l-top .contact__text02 {
  color: #9E9B9C;
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1.83;
  margin: 0 auto 18px;
}
.l-top .contact .c-button01 {
  margin: 0 auto;
  width: 270px;
  font-family: "futura-pt", sans-serif;
  font-size: 15px;
  letter-spacing: 0.15em;
  font-weight: 400;
  border: 1px solid #E88D6A;
  transition: all 0.3s;
}
.l-top .contact .c-button01:hover {
  background-color: #fff;
  color: #E88D6A;
}
.l-top .company {
  background-color: #D8EBEE;
  padding: 52px 0 47px;
}
.l-top .company__wrap {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 184px;
  margin: 0 auto 7px;
}
.l-top .company__logo {
  width: 109px;
}
.l-top .company__name {
  color: #585556;
  font-size: 13px;
  letter-spacing: 0.21em;
  line-height: 2.15;
  margin: 0 auto 12px;
  font-weight: 300;
  text-align: center;
}
.l-top .company__text01, .l-top .company__text02, .l-top .company__text03, .l-top .company__text04, .l-top .company__text05 {
  color: #585556;
}
.l-top .company__text01 {
  font-size: 11px;
  line-height: 1.63;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0 auto 15px;
}
.l-top .company__text02 {
  font-size: 11px;
  line-height: 1.63;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.l-top .company__text03 {
  font-size: 11px;
  line-height: 2.1;
  font-weight: 500;
  letter-spacing: 0.27em;
}
.l-top .company__text04 {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.l-top .company__link {
  color: #585556;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.l-top .other {
  padding: 46px 0 54px;
  background-color: #FFFCFB;
}
.l-top .other__title {
  color: #E88D6A;
  font-family: "futura-pt", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.29em;
  margin: 0 auto 13px;
}
.l-top .other__item {
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 94px;
  width: 100%;
  position: relative;
  transition: all 0.3s;
}
.l-top .other__item:hover {
  opacity: 0.8;
}
.l-top .other__item:first-child {
  margin: 0 auto 8px;
}
.l-top .other__banner:first-child {
  width: 173px;
}
.l-top .other__banner:last-child {
  width: 217px;
}
.l-top .other__icon {
  color: #E88D6A;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 12px;
  width: 12px;
  height: 12px;
}