@charset "utf-8";
/*+++++++++++++++++++++++++++++++++++++++++
  　トップページ
  　font-page.php
*+++++++++++++++++++++++++++++++++++++++++*/
.nowrap {
  white-space: nowrap;
}
/* ---- more ---- */
.topMore {
  padding-left: 20px;
  position: relative;
  font-size: 12px;
  font-weight: var(--fw-bold);
}
.topMore::after {
  content: "";
  background-image: url(../images/icon/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 12px;
  height: 6px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .topMore {
    padding-left: 17px;
    font-size: 13px;
  }
}
/* ---- <hr> ---- */
.topline {
  margin: 0 auto;
  max-width: min(calc(100vw - 60px), 1038px);
  height: 2px;
  background: linear-gradient(90deg, rgba(157,191,255,1) 0%, rgba(221,159,161,1) 100%);
  border: none;
}
/* ---- 共通ヘッダー ---- */
.top_sectionHeader {
  margin-top: 75px;
  position: relative;
}
.top_sectionHeader_title {
  position: absolute;
  bottom: -2px;
  left: 0;
  background: var(--white);
  height: 80px;
  line-height: 80px;
  padding-right: 60px;
  border-top-right-radius: 15px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
  min-width: 300px;
  text-align: right;
}
.top_sectionHeader_title::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 78px;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .top_sectionHeader {
    margin-top: 32px;
  }
  .top_sectionHeader img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
  }
  .top_sectionHeader_title {
    height: 42px;
    line-height: 42px;
    padding-right: 30px;
    /* border-top-right-radius: 15px; */
    font-size: 12px;
    min-width: 181px;
  }
  .top_sectionHeader_title::before {
    width: 25px;
    height: 25px;
    left: 37px;
  }
}

/*  firstView
----------------------------------------- */
.firstView {
  position: relative;
}

/*  mv
----------------------------------------- */
.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
.mv__img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: all 3s ease;
  width: 100%;
  height: 100vh;
}
.mv__img.show {
  opacity: 1;
}
.mv__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*  NEWS
----------------------------------------- */
.topNews {
  padding: 20px 40px;
  background-color: var(--white);
  max-width: 665px;
  display: flex;
  flex-direction: row;
  gap: 31px;
}
.topNews_titleBox {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  gap: 2px;
  padding-right: 30px;
  border-right: 1px solid var(--black);
}
.topNews_title {
  font-size: 15px;
  font-weight: var(--fw-bold);
}
.topNews_topMore {
  font-size: 10px;
}
.topNews_topMore::after {
  width: 13px;
}
.topNews_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background-color: var(--white);
}
.topNews_list a {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 8px;
}
.topNews_dateBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  gap: 8px;
}
.topNews_date {
  font-size: 14px;
  min-width: 66px;
}
.topNews_date_pickup{
  font-size: 12px;
}
.topNews_category {
  margin-top: -1px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 14px;
  border-radius: 999svh;
  font-weight: var(--fw-bold);
  font-size: 8px;
}
.topNews_category-01 { background-color: var(--category01); }
.topNews_category-02 { background-color: var(--category02); }
.topNews_category-03 { background-color: var(--category03); }
.topNews_category-04 { background-color: var(--category04); }
.topNews_category-05 { background-color: var(--category05); }
.topNews_category-06 { background-color: var(--category06); }
.topNews_category-07 { background-color: var(--category06); }
.topNews_category-08 { background-color: var(--category06); }
.topNews_category-09 { background-color: var(--category06); }
.topNews_category-10 { background-color: var(--category06); }
.topNews_name {
  font-size: 13px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

@media (min-width: 769px) {
  .topNews {
    position: absolute;
    left: 0;
    bottom: 0;
    border-top-right-radius: 10px;
  }
}
@media (max-width: 768px) {
  .topNews {
    margin-top: -34px;
    padding: 0;
    flex-direction: column;
    gap: 0;
    background-color: transparent;
  }
  .topNews_titleBox {
    gap: 5px;
    padding-right: 10px;
    border-right: 0;
  }
  .topNews_title {
    padding-left: 6px;
    display: grid;
    place-items: center;
    width: 88px;
    height: 34px;
    font-size: 14px;
    font-weight: var(--fw-bold);
    background-color: var(--white);
    border-top-right-radius: 10px;
  }
  .topNews_btnbox {
    margin-bottom: 31px;
    padding: 0 25px;
    display: flex;
    justify-content: flex-end;
  }
  .topNews_topMore {
    font-size: 13px;
  }
  .topNews_topMore::after {
    width: 15px;
    height: 7px;
  }
  .topNews_list {
    padding: 13px 25px 24px;
    gap: 12px;
  }
  .topNews_list a {
    grid-template-columns: 78px 1fr;
    gap: 13px;
  }
  .topNews_dateBox {
    flex-direction: column;
    gap: 1px;
  }
  .topNews_date,
  .topNews_date_pickup {
    font-size: 10px;
    min-width: auto;
  }
  .topNews_category {
    margin-top: 2px;
    width: 78px;
    height: 13px;
    font-size: 9px;
    font-weight: var(--fw-medium);
  }
  .topNews_name {
    font-size: 12px;
  }
}

/*  リンクボタン
----------------------------------------- */
/* ---- [SP]WEB予約/お問い合わせ ---- */
@media (max-width: 768px) {
  .menu_btnBox {
    border-top: 1px solid var(--black);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .menu_btnBox_btn {
    height: 72px;
    display: grid;
    place-items: center;
    font-weight: var(--fw-bold);
  }
  .menu_btnBox_btn > span {
    position: relative;
  }
  .menu_btnBox_btn > span::after {
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .menu_btnBox_btn-reserve {
    background-color: #8F174B;
    color: var(--white);
  }
  .menu_btnBox_btn-reserve > span {
    padding-left: 36px;
  }
  .menu_btnBox_btn-reserve > span::after {
    background-image: url(../images/icon/icon-calendar.svg);
    width: 27px;
    height: 21px;
  }
  .menu_btnBox_btn-contact {
    background-color: #F7F7F7;
  }
  .menu_btnBox_btn-contact > span {
    padding-left: 25px;
  }
  .menu_btnBox_btn-contact > span::after {
    background-image: url(../images/icon/icon-tel.svg);
    width: 17px;
    height: 19px;
  }
}

/* ---- メニュー ---- */
.menu_area {
  margin-top: 70px;
  margin-bottom: 146px;
  display: grid;
  grid-template-columns: 1fr 194px;
  gap: 31px;
}
.menu_list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 31px;
}
.menu_list_btn {
  padding: 20px 5px 28px;
  width: 178px;
  aspect-ratio: 1 / 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
  background: var(--white);
  box-shadow: var(--box-shadow);
  text-align: center;
  font-size: 14px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
}
.menu_list_btn::after {
  content: "";
  background-image: url(../images/icon/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 23px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 10px;
  height: 6px;
}
.menu_list_btn > img {
  height: 40px;
  width: 100%;
  object-fit: contain;
}
.menu_list_btn > span {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.menu_btnlist {
  display: flex;
  flex-wrap: wrap;
}
.menu_btnlist li {
  flex-shrink: 0;
}
.menu_btnlist_btn {
  width: 195px;
  height: 47px;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  border-radius: 9999svh;
  text-align: center;
  font-size: 12px;
  font-weight: var(--fw-bold);
}
.menu_btnlist_btn::after {
  content: "";
  background-image: url(../images/icon/icon-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 6px;
}
/* 左 */
.menu_area-l .menu_btnlist {
  margin-top: 40px;
  flex-direction: row;
  gap: 30px;
}
/* 右 */
.menu_area-r .menu_btnlist {
  flex-direction: column;
  gap: 26px;
}
/* 恩賜財団母子愛育会 */
.menu_btn_other {
  margin: 34px auto 0;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
}
.menu_btn_other > img {
  max-width: 89px;
}
.menu_btn_other > a {
  padding: 10px 0;
  display: block;
  width: 100%;
  background: #95C9D8;
  border-radius: 9999svh;
  text-align: center;
  color: var(--white);
  font-size: 14px;
  font-weight: var(--fw-bold);
  letter-spacing: 0.05em;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .menu_area {
    margin-top: 48px;
    margin-bottom: 45px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .menu_list {
    padding: 25px 15px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    position: relative;
  }
  .menu_list::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 44%;
    max-width: 125px;
    height: 100%;
    background: linear-gradient(90deg, rgba(228,238,230,1) 0%, rgba(250,219,203,1) 100%);
    z-index: -1;
  }
  .menu_list_btn > img {
    width: 40px;
  }
  .menu_list li {
    width: 100%;
    max-width: 400px;
  }
  .menu_list_btn {
    padding: 10px 40px 10px 20px;
    flex-direction: row;
    width: 100%;
    height: 50px;
    gap: 10px;
    font-size: 16px;
  }
  .menu_list_btn > span {
    width: calc(100% - 40px - 15px);
  }
  .menu_list_btn::after {
    bottom: 50%;
    left: auto;
    right: 27px;
    transform: translateY(50%);
  }

  .menu_btnlist {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
  }
  .menu_btnlist::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 32%;
    height: 100%;
    background: linear-gradient(90deg, rgba(208,255,255,1) 0%, rgba(229,237,229,1) 100%);
    z-index: -1;
  }
  .menu_btnlist li {
    width: 100%;
    max-width: 263px;
  }
  .menu_btnlist_btn {
    flex-direction: row;
    width: 100%;
    height: 50px;
    font-size: 15px;
  }

  .menu_area-r {
    position: relative;
  }
  .menu_area-r::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 32%;
    height: 100%;
    background: linear-gradient(90deg, rgba(208,255,255,1) 0%, rgba(229,237,229,1) 100%);
    z-index: -1;
  }
  .menu_area-l .menu_btnlist {
    padding-top: 25px;
    margin-top: 0;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  .menu_area-r .menu_btnlist {
    padding-top: 15px;
    padding-bottom: 15px;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  /* 恩賜財団母子愛育会 */
  .menu_btn_other {
    margin-top: 0;
    margin-bottom: 25px;
    padding: 13px;
    max-width: 263px;
    gap: 8px;
  }
  .menu_btn_other > img {
    max-width: 107px;
  }
  .menu_btn_other > a {
    position: relative;
  }
  .menu_btn_other > a::after {
    content: "";
    background-image: url(../images/icon/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    display: block;
    width: 10px;
    height: 6px;
  }
}

/*  あたらしい愛を、あなたと育む。
----------------------------------------- */
.thought {
  padding: 160px 15px 200px;
  display: inline-flex;
  justify-content: center;
  width: 100%;
  position: relative;
}
.thought::before, .thought::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
.thought::before {
  left: 0;
  background: var(--gradation-mix);
  z-index: -2;
}
.thought::after {
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../images/top/thought/bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.thought_box {
  margin-left: 30px;
  max-width: 734px;
  font-family: var(--ff--serif);
  font-weight: var(--fw-medium);
}
.thought_title {
  font-size: 37px;
  letter-spacing: 0.1em;
}
.thought_text {
  margin-top: 43px;
  font-size: 17px;
  line-height: 3;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .thought {
    padding: 62px 15px 96px;
    display: inline-flex;
    justify-content: center;
    width: 100%;
  }
  .thought::after {
    background-size: contain;
    background-position: top;
  }
  .thought_box {
    margin-left: 7px;
    max-width: 640px;
  }
  .thought_title {
    font-size: 23px;
    letter-spacing: 0;
  }
  .thought_text {
    margin-top: 30px;
    font-size: 14px;
    line-height: 2.14;
  }
}

/*  愛育病院の特長
----------------------------------------- */
.topFeature .top_sectionHeader {
  top: -80px;
  margin-top: 0;
}
.topFeature .top_sectionHeader_title::before {
  background-image: url(../images/icon/icon-menu01.svg);
  left: 27px;
}
/* -- 愛育病院の特長 -- */
.topFeature_list {
  margin: 80px auto 60px;
  padding: 0 15px;
  max-width: calc(1240px + 30px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.topFeature_list li {
  width: 100%;
}
.topFeature_list_area {
  display: grid;
  width: 100%;
}
.topFeature_img {
  display: flex;
  align-items: center;
}
.topFeature_img > span {
  position: relative;
}
.topFeature_img img {
  width: 100%;
}
.topFeature_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.topFeature_text dl {
  font-family: var(--ff--serif);
}
.topFeature_text dt {
  font-size: 20px;
  font-weight: var(--fw-medium);
  line-height: 1.7;
  letter-spacing: 0.034em;
}
.topFeature_text dd {
  margin-top: 25px;
  font-size: 15px;
  font-weight: var(--fw-medium);
  line-height: 2.0;
  letter-spacing: 0.05em;
  word-break: keep-all;
}
@media (max-width: 980px) {
  /* 改行の位置調整 */
  .topFeature_md {
    display: none;
  }
  .topFeature_text dd {
    word-break: initial;
  }
}
.topFeature_attention {
  font-family: var(--ff--serif);
  font-size: 12px;
  color: #8894DA;
}

/* 4つ目 */
.topFeature_list li:nth-of-type(4) .topFeature_text .topMore {
  width: fit-content;
}
.topFeature_list li:nth-of-type(4) .topFeature_logo {
  margin-top: -15px;
  text-align: right;
}
.topFeature_list li:nth-of-type(4) .topFeature_logo img {
  max-width: 191px;
  width: 100%;
}

@media (min-width: 769px) {
  .topFeature_list {
    column-gap: 6%;
  }
  .topFeature_img img {
    max-width: 560px;
  }
  .topFeature_img > span::after {
    content: "";
    height: auto;
    aspect-ratio: 1 / 1;
    position: absolute;
    z-index: -1;
    opacity: 0.63;
  }
  /* 半分 */
  .topFeature_list li.half {
    width: 47%;
  }
  .topFeature_list li.half .topFeature_textbox {
    padding-top: 54px;
    padding-left: 5%;
  }

  /* 1つ目 */
  .topFeature_list li:nth-of-type(1) .topFeature_list_area {
    padding-bottom: 35px;
    grid-template-columns: 52% 43%;
    gap: 5%;
  }
  .topFeature_list li:nth-of-type(1) .topFeature_text dd {
    max-width: 361px;
  }
  .topFeature_list li:nth-of-type(1) .topFeature_img {
    padding-left: 13%;
    text-align: right;
  }
  .topFeature_list li:nth-of-type(1) .topFeature_img > span::after {
    width: 43%;
    aspect-ratio: 17 / 19;
    background: linear-gradient(90deg, rgba(187, 255, 255, 1) 0%, rgba(159, 177, 212, 1) 100%);
    bottom: -35px;
    left: -13%;
  }
  /* 2つ目 */
  .topFeature_list li:nth-of-type(2) .topFeature_list_area {
    padding-bottom: 60px;
    margin-top: 25px;
    grid-template-columns: 40% 53%;
    gap: 7%;
  }
  .topFeature_list li:nth-of-type(2) .topFeature_textbox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .topFeature_list li:nth-of-type(2) .topFeature_text dl {
    width: fit-content;
  }
  .topFeature_list li:nth-of-type(2) .topFeature_text dd {
    max-width: 361px;
  }
  .topFeature_list li:nth-of-type(2) .topFeature_img {
    padding-right: 15%;
  }
  .topFeature_list li:nth-of-type(2) .topFeature_img > span::after {
    width: 37%;
    background: linear-gradient(90deg, rgba(255, 157, 155, 0.4) 0%, rgba(227, 118, 134, 1) 70%);
    bottom: -60px;
    right: -15%;
  }
  /* 3つ目 */
  .topFeature_list li:nth-of-type(3) .topFeature_list_area {
    padding-bottom: 30px;
    grid-template-columns: 61% 37%;
    gap: 2%;
  }
  .topFeature_list li:nth-of-type(3) .topFeature_text dd {
    max-width: 350px;
  }
  .topFeature_list li:nth-of-type(3) .topFeature_img {
    padding-left: 11%;
    padding-right: 15%;
  }
  .topFeature_list li:nth-of-type(3) .topFeature_img > span::after {
    width: 37%;
    background: linear-gradient(90deg, rgba(255, 255, 132, 0.4) 0%, rgba(193, 152, 74, 1) 100%);
    bottom: -30px;
    right: -15%;
    opacity: 0.5;
  }
  /* 4つ目 */
  .topFeature_list li:nth-of-type(4) .topFeature_list_area {
    padding-bottom: 60px;
    margin-top: 60px;
    grid-template-columns: 46% 48%;
    gap: 6%;
  }
  .topFeature_list li:nth-of-type(4) .topFeature_textbox {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .topFeature_list li:nth-of-type(4) .topFeature_text {
    padding-right: 10%;
    width: fit-content;
  }
  .topFeature_list li:nth-of-type(4) .topFeature_text dd {
    max-width: 379px;
  }
  .topFeature_list li:nth-of-type(4) .topFeature_img {
    padding-right: 5%;
  }
  .topFeature_list li:nth-of-type(4) .topFeature_img > span::after {
    width: 47%;
    background: linear-gradient(90deg, rgba(228, 214, 222, 1) 0%, rgba(200, 136, 179, 1) 100%);
    bottom: -60px;
    right: -5%;
  }
}
@media (max-width: 768px) {
  .topFeature .top_sectionHeader {
    top: 0;
  }
  .topFeature .top_sectionHeader_title {
    min-width: 201px;
  }
  .topFeature .top_sectionHeader_title::before {
    left: 20px;
  }

  .topFeature_list {
    margin-top: 0;
    margin-bottom: 45px;
    padding: 52px 38px 0;
    gap: 45px;
  }
  .topFeature_list_area {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .topFeature_list .topFeature_sptitle {
    order: 1;
  }
  .topFeature_list .topFeature_img {
    order: 2;
  }
  .topFeature_list .topFeature_textbox {
    order: 3;
  }
  .topFeature_spbox {
    position: relative;
  }
  .topFeature_sptitle {
    font-family: var(--ff--serif);
    font-weight: var(--fw-medium);
    font-size: 18px;
    line-height: 1.6;
  }
  .topFeature_splogo {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .topFeature_splogo img {
    max-width: 98px;
    width: 100%;
  }
  .topFeature_text {
    gap: 15px;
  }
  .topFeature_text dd {
    margin-top: 0;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.7;
  }
  .topFeature_attention {
    font-size: 10px;
  }
  /* 4つ目 */
  .topFeature_list li:nth-of-type(4) .topFeature_textbox {
    position: relative;
  }
}

/* -- 他のリンク -- */
.topFeature_otherlist {
  margin: 60px auto 0;
  max-width: 660px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.topFeature_otherlist a {
  padding: 10px;
  position: relative;
  display: grid;
  grid-template-columns: 52% 48%;
  place-items: center;
  box-shadow: var(--box-shadow);
}
.topFeature_otherlist a::after {
  content: "";
  display: block;
  width: 13px;
  height: 7px;
  background-image: url(../images/icon/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 27px;
  right: 75px;
}
.topFeature_otherlist a > span {
  margin-top: -10px;
  text-align: center;
  font-family: var(--ff--serif);
  font-size: 15px;
  letter-spacing: 0.12em;
}
.topFeature_otherlist a > img {
  width: 100%;
  height: auto;
  aspect-ratio: 160 / 113;
  object-fit: cover;
}
@media (max-width: 768px) {
  .topFeature_otherlist {
    margin-top: 35px;
    padding: 0 33px;
    max-width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .topFeature_otherlist a {
    padding: 9px;
    grid-template-columns: 51% 49%;
    font-size: 13px;
    max-width: 400px;
    margin: 0 auto;
  }
  .topFeature_otherlist a::after {
    width: 10px;
    height: 5px;
    bottom: 15px;
    right: 24%;
  }
  .topFeature_otherlist a > img {
    aspect-ratio: 305 / 158;
  }
}

/*  フロアのご案内
----------------------------------------- */
.topfloor .top_sectionHeader_title::before {
  background-image: url(../images/top/topfloor/icon-topfloor.svg);
  width: 36px;
  height: 20px;
}
.topfloor_area {
  margin: 110px auto 100px;
  padding: 0 35px 0 60px;
  max-width: min(calc(100vw - 60px), 1038px);
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 65px;
}
.topfloor_list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.topfloor_list dl {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.topfloor_list dt {
  width: 40px;
  height: 40px;
  border: 1px solid var(--black);
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: var(--fw-medium);
}
.topfloor_list dd {
  width: calc(100% - 56px);
  font-size: 15px;
}

.topfloor_otherlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 26px;
  column-gap: 60px;
}
.topfloor_otherlist p {
  margin-top: 10px;
  font-size: 14px;
}
.topfloor_otherlist img {
  width: 100%;
}

@media (max-width: 768px) {
  .topfloor .top_sectionHeader_title::before {
    width: 25px;
    height: 14px;
  }

  .topfloor_area {
    margin: 60px auto 24px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .topfloor_list {
    gap: 11px;
  }
  .topfloor_list li.space {
    height: 10px;
  }
  .topfloor_list dt {
    width: 35px;
    height: 35px;
    font-size: 11px;
  }
  .topfloor_list dd {
    width: calc(100% - 41px);
    font-size: 11px;
  }

  .topfloor_otherlist {
    row-gap: 12px;
    column-gap: 20px;
  }
  .topfloor_otherlist p {
    font-size: 10px;
  }
}


/* -- アクセス・周辺環境 -- */
.access {
  margin: 60px auto 100px;
  max-width: min(calc(100vw - 60px), 1038px);
}
.access_title {
  padding-left: 45px;
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
  font-size: 17px;
}
.access_title::after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url(../images/icon/icon-menu02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.access_inner {
  margin: 0 auto;
  max-width: 964px;
}

.access_head {
  margin-top: 82px;
  display: grid;
  grid-template-columns: 1fr 362px;
  gap: 60px;
  align-items: center;
}
.access_head_cnt {
  font-family: var(--ff--serif);
}
.access_head_cnt dt {
  font-size: 20px;
  letter-spacing: 0.034em;
  font-weight: var(--fw-medium);
}
.access_head_cnt dd {
  margin-top: 35px;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.access_map {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 27% 1fr;
  gap: 48px;
}
.access_map_img {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.access_map_img dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.access_map_img dt {
  font-size: 12px;
  font-weight: var(--fw-medium);
}
.access_map_gmap {
  position: relative;
  padding-bottom: 61.5%;
  height: 0;
  overflow: hidden;
}
.access_map_gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access_map_gmap_text {
  margin-top: 10px;
  font-size: 12px;
}

.access_list {
  margin-top: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 54px;
}
.access_list dl {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  position: relative;
}
.access_list dl ~ dl {
  margin-top: 40px;
}
.access_list dt {
  padding-left: 48px;
  position: relative;
  height: 42px;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: var(--fw-bold);
}
.access_list dt::after {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  background-image: url(../images/icon/icon-menu02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -3px;
  transform: translateY(-50%);
}
.access_list dt.--train::after {
  background-image: url(../images/top/access/icon-train.svg);
}
.access_list dt.--car::after {
  background-image: url(../images/top/access/icon-car.svg);
}
.access_list dt.--bus::after {
  background-image: url(../images/top/access/icon-bus.svg);
}
.access_list dt.--bicycle::after {
  background-image: url(../images/top/access/icon-bicycle.svg);
}
.access_list dd {
  font-size: 13px;
  line-height: 1.8;
}
/* バス */
.access_list--bus_link {
  font-size: 13px;
  font-weight: var(--fw-medium);
  color: #8F174B;
  position: absolute;
  top: calc(50% - 11px);
  right: 0;
}

@media (max-width: 768px) {
  .access {
    margin-top: 60px;
  }
  .access_title {
    padding-left: 36px;
    height: 31px;
    font-size: 12px;
  }
  .access_title::after {
    width: 31px;
    height: 31px;
  }

  .access_head {
    margin-top: 25px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .access_head_cnt dt {
    margin-top: 0;
    font-size: 16px;
    letter-spacing: 0.05em;

  }
  .access_head_cnt dd {
    margin-top: 0;
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .access_map {
    margin-top: 37px;
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .access_map_img {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .access_map_img dt {
    font-size: 10px;
  }

  .access_list {
    margin-top: 35px;
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .access_list dl {
    gap: 12px;
  }
  .access_list dl ~ dl {
    margin-top: 27px;
  }
  .access_list dt {
    padding-left: 38px;
    height: 33px;
    font-size: 14px;
  }
  .access_list dt::after {
    width: 33px;
    height: 33px;
  }
  .access_list dd {
    font-size: 12px;
  }
  /* バス */
  .access_list--bus_link {
    font-size: 12px;
  }
}

/*  よくあるご質問
----------------------------------------- */
.topfaq .top_sectionHeader_title::before {
  background-image: url(../images/icon/icon-menu09.svg);
}
.topfaq_inner {
  margin: 114px auto 20px;
  padding: 0 35px;
  max-width: calc(980px + 35px);
}
.topfaq_list {
  margin: 0 auto;
  max-width: 786px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.topfaq_list a {
  padding-left: 41px;
  position: relative;
  display: block;
  font-size: 19px;
}
.topfaq_list a::before {
  content: "Q.";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 21px;
  font-weight: var(--fw-bold);
  color: #C47C8A;
}
.topfaq_btnbox {
  margin-top: 84px;
  text-align: right;
}
.topfaq .topMore {
  padding-left: 27px;
  font-size: 19px;
}
.topfaq .topMore::after {
  width: 20px;
  height: 9px;
}
@media (max-width: 768px) {
  .topfaq_inner {
    margin: 40px auto 13px;
  }
  .topfaq_list a {
    padding-left: 24px;
    font-size: 14px;
  }
  .topfaq_list a::before {
    font-size: 14px;
  }
  .topfaq_btnbox {
    margin-top: 49px;
  }
  .topfaq .topMore {
    padding-left: 16px;
    font-size: 12px;
  }
  .topfaq .topMore::after {
    width: 13px;
    height: 12px;
    transform: translateY(-13%);
  }
}

/*  お問い合わせ
----------------------------------------- */
.contact {
  padding-top: 144px;
  display: grid;
  place-content: center;
  text-align: center;
  font-size: 14px;
}
.contact .contact_title {
  margin-bottom: 15px;
  font-size: 17px;
  letter-spacing: 0.1em;
  font-weight: var(--fw-bold);
}
.contact_list {
  margin: 22px auto 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact_list li {
  display: grid;
  grid-template-columns: 69px 1fr;
  align-content: center;
  gap: 6px;
}
.contact_list_tab {
  width: 69px;
  height: 36px;
  border: 1px solid var(--black);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 10px;
  line-height: 1.3;
}
.contact_list li a {
  padding-left: 24px;
  position: relative;
  height: 36px;
  font-size: 25px;
  font-weight: var(--fw-bold);
}
.contact_list li a::before {
  content: "";
  display: block;
  width: 21px;
  height: 21px;
  background-image: url(../images/icon/icon-tel.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.contact_other {
  margin-top: 20px;
  text-align: center;
}
.contact_other a {
  color: var(--text-link);
  cursor: pointer;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .contact {
    padding-top: 53px;
    font-size: 13px;
  }
  .contact .contact_title {
    margin-bottom: 19px;
    font-size: 13px;
  }
  .contact_list {
    margin: 18px auto 15px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .contact_list li {
    grid-template-columns: 65px 1fr;
    gap: 11px;
  }
  .contact_list_tab {
    width: 65px;
    height: 35px;
  }
  .contact_list li a {
    padding-left: 24px;
    height: 35px;
    font-size: 23px;
  }
  .contact_other {
    margin-top: 12px;
  }
}

/*  母子愛育会施設
----------------------------------------- */
.facility {
  margin-top: 137px;
}
.facility_title {
  width: 300px;
  height: 55px;
  background-color: #F0F0F0;
  border-top-right-radius: 10px;
  text-align: center;
  line-height: 55px;
  font-size: 17px;
}
.facility_box {
  padding: 40px 35px;
  background-color: #F0F0F0;
}
.facility_list {
  margin: 0 auto;
  max-width: 1030px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 27px;
}
.facility_list li {
  width: 100%;
}
.facility_list a {
  padding: 18px 45px 18px 21px;
  display: grid;
  place-items: center;
  position: relative;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  height: 82px;
}
.facility_list a::after {
  content: "";
  display: block;
  width: 13px;
  height: 6px;
  background-image: url(../images/icon/icon-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
}
.facility_list__youchien {
  max-width: 100px;
}
.facility_list__aiiku {
  max-width: 138px;
}
@media (max-width: 768px) {
  .facility {
    margin-top: 42px;
  }
  .facility_title {
    width: 200px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
  }
  .facility_box {
    padding: 45px 30px;
  }
  .facility_list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .facility_list a {
    max-width: 400px;
    margin: 0 auto;
    padding: 15px 45px 15px 22px;
    height: 66px;
  }
  .facility_list a::after {
    width: 10px;
    height: 5px;
  }
}


/*  newsカテゴリー背景色
----------------------------------------- */
.news_cat_color01{
  background-color: #BDEEF5;
}
.news_cat_color02{
  background-color: #AEC3EA;
}
.news_cat_color03{
  background-color: #6FDCA6;
}
.news_cat_color04{
  background-color: #B4D681;
}
.news_cat_color05{
  background-color: #EAE68E;
}
.news_cat_color06{
  background-color: #FFC977;
}
.news_cat_color07{
  background-color: #FFD2D8;
}
.news_cat_color08{
  background-color: #FFB3AF;
}
.news_cat_color09{
  background-color: #DFB0D5;
}
.news_cat_color10{
  background-color: #DCAAAA;
}