@charset "UTF-8";
/* ==================================================
  web-font
================================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@700&display=swap");
/* ==================================================
  breakpoint & medea query
================================================== */
/* ==================================================
  共通
================================================== */
html {
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.6rem;
  background-color: #fbf7f2;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "verdana", sans-serif;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

img:not([class*=wp-image-]) {
  width: 100%;
  height: auto;
}

.inner {
  width: 95%;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 1099px) {
  .inner {
    width: 90%;
  }
}

.btn_wrapper {
  text-align: center;
}

.btn {
  display: inline-block;
  width: 240px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 2px solid #e1712c;
  background-color: #e1712c;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  border-radius: 5px;
  position: relative;
}
.btn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img//icon/arrow.svg) no-repeat center center/contain;
          mask: url(../img//icon/arrow.svg) no-repeat center center/contain;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn:hover {
  background-color: #fff;
  color: #e1712c;
}
.btn:hover::after {
  background-color: #e1712c;
}

.mt20 {
  margin-top: 20px;
}

.mt40 {
  margin-top: 40px;
}

.sectionTitle_wrapper {
  margin-bottom: 50px;
}

.sectionTitle {
  padding: 1.5rem 2rem;
  position: relative;
  color: #fff;
  background: linear-gradient(-45deg, rgb(219.7, 90.6846808511, 0) 25%, #eb6100 0, #eb6100 50%, rgb(219.7, 90.6846808511, 0) 0, rgb(219.7, 90.6846808511, 0) 75%, #eb6100 0);
  background-size: 20px 20px;
  font-size: 2rem;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.sectionTitle:before, .sectionTitle:after {
  position: absolute;
  width: 100%;
  height: 4px;
  content: "";
}
.sectionTitle:before {
  top: 4px;
  left: 0;
  background: rgb(204.4, 84.3693617021, 0);
}
.sectionTitle:after {
  bottom: 4px;
  left: 0;
  background: rgb(204.4, 84.3693617021, 0);
}

.sectionTitle_line {
  width: 30px;
  height: 2px;
  background-color: #555;
  display: inline-block;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.breadcrumbs {
  margin: 10px 0;
}

.bcn-none {
  display: none;
}

.pageTop {
  height: 200px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .pageTop {
    height: 150px;
  }
}
.pageTop .container {
  position: absolute;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pageTitle {
  font-size: 3rem;
  font-weight: 700;
  position: relative;
  padding: 0 40px;
  line-height: 1;
}
.pageTitle::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: transparent url(../img/icon/pagetitle_icon1.svg) no-repeat center center/contain;
}
.pageTitle::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background: transparent url(../img/icon/pagetitle_icon2.svg) no-repeat center center/contain;
}
@media screen and (max-width: 1099px) {
  .pageTitle {
    font-size: 2rem;
  }
}

.bg_thumbnails {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  /*ブロック要素に変更*/
  height: 100%;
  /*背景画像の高さを指定*/
  width: 100%;
  background-size: cover;
  /*大きさに指定*/
  background-position: center center;
  /*背景として設定する場所を指定*/
}

.is-home .bg_thumbnails {
  background-image: url(../img/news.webp);
}

.bcn-display {
  margin-top: 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 1099px) {
  .bcn-display {
    font-size: 1.2rem;
  }
}

.is-open {
  display: block;
}

.is-close {
  display: none;
}

@media screen and (min-width: 1100px) {
  .is-sp {
    display: none;
  }
}

@media screen and (max-width: 1099px) {
  .is-pc {
    display: none;
  }
}

.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, #efd44f));
  background: linear-gradient(transparent 50%, #efd44f 50%);
  padding: 0 10px;
  display: inline;
}

.is-blue {
  color: dodgerblue;
}

.is-red {
  color: indianred;
}

.sectionSpace {
  padding: 100px 0;
}

.gradient {
  background: -webkit-gradient(linear, left top, right top, from(#103b68), to(#007bc5));
  background: linear-gradient(90deg, #103b68 0%, #007bc5 100%);
  background: -webkit-linear-gradient(0deg, #103b68 0%, #007bc5 100%);
}

.underline {
  text-decoration: underline;
}

.fz18 {
  font-size: 1.8rem;
}

/* ==================================================
  header
================================================== */
header {
  width: 100%;
}
@media screen and (max-width: 1099px) {
  header {
    position: sticky;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
}

.headerBar {
  color: #fff;
  font-size: clamp(1rem, 1vw, 1.2rem);
  text-align: right;
  padding: 5px 10px 5px 0;
}

.headerInner_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.headerInner_left {
  width: 100%;
  height: 100%;
  max-height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1099px) {
  .headerInner_left {
    display: none;
  }
}

.headerInner_right {
  width: 100%;
  height: 100%;
  max-height: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 1099px) {
  .headerInner_right {
    display: none;
  }
}

.headerInner {
  width: 100%;
}
@media screen and (max-width: 1099px) {
  .headerInner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.headerContent {
  width: 1050px;
}
@media screen and (max-width: 1099px) {
  .headerContent {
    width: 100%;
    height: 80px;
    background-color: #fbf7f2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.headerContent_upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-top: 20px;
}
@media screen and (max-width: 1099px) {
  .headerContent_upper {
    height: 80px;
    width: 95%;
    padding-top: 0;
    gap: 0;
  }
}

.headerContent_lower {
  margin-top: 20px;
  padding-bottom: 10px;
}
@media screen and (max-width: 1099px) {
  .headerContent_lower {
    display: none;
  }
}

@media screen and (max-width: 1099px) {
  .headerContent_right.telContact {
    display: none;
  }
}

.telContact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tel_text {
  white-space: nowrap;
  padding: 5px 15px;
  color: #fff;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 700;
}

.tel {
  font-size: 3rem;
  font-weight: 700;
  color: #0069ac;
}

.btn_reserve {
  display: inline-block;
  width: 250px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  border: 2px solid #0069ac;
  background-color: #0069ac;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
  border-radius: 10px;
  position: relative;
}
.btn_reserve::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img//icon/arrow.svg) no-repeat center center/contain;
          mask: url(../img//icon/arrow.svg) no-repeat center center/contain;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.btn_reserve:hover {
  background-color: #fff;
  color: #0069ac;
}
.btn_reserve:hover::after {
  background-color: #0069ac;
}

.headerLogo {
  width: 100%;
}
@media screen and (max-width: 1099px) {
  .headerLogo {
    width: 250px;
  }
}

.headerLogo_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1099px) {
  .headerLogo_item {
    display: none;
  }
}
.headerLogo_item li {
  width: 40px;
  border-radius: 10px;
  overflow: hidden;
}

.headerNav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.headerNav_items li {
  color: #0069ac;
  width: 16.6666666667%;
  text-align: center;
  border-left: 3px dashed #f5cfa8;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
.headerNav_items li:last-child {
  border-right: 3px dashed #f5cfa8;
}
.headerNav_items a {
  width: 100%;
  display: block;
  position: relative;
  padding-top: 50px;
}
.headerNav_items a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  height: 40px;
}
.headerNav_items .icon_home::before {
  background: transparent url(../img//icon/icon_home.webp) no-repeat center center/contain;
}
.headerNav_items .icon_about::before {
  background: transparent url(../img//icon/icon_about.webp) no-repeat center center/contain;
}
.headerNav_items .icon_news::before {
  background: transparent url(../img//icon/icon_news.webp) no-repeat center center/contain;
}
.headerNav_items .icon_medical::before {
  background: transparent url(../img//icon/icon_medical.webp) no-repeat center center/contain;
}
.headerNav_items .icon_recruit::before {
  background: transparent url(../img//icon/icon_recruit.webp) no-repeat center center/contain;
}
.headerNav_items .icon_link::before {
  background: transparent url(../img//icon/icon_link.webp) no-repeat center center/contain;
}

/* ==================================================
  drawer
================================================== */
.drawer-icon {
  width: 40px;
  height: 35px;
  padding: 5px;
  position: relative;
  display: none;
}
@media screen and (max-width: 1099px) {
  .drawer-icon {
    display: block;
    z-index: 300;
  }
}
.drawer-icon::after {
  position: absolute;
  content: "メニュー";
  width: 100%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 1rem;
  text-align: center;
}
.drawer-icon span {
  width: 28px;
  position: absolute;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #333;
  border-radius: 1px;
}
.drawer-icon span:nth-child(1) {
  top: 0;
}
.drawer-icon span:nth-child(2) {
  top: 8px;
}
.drawer-icon span:nth-child(3) {
  top: 16px;
}
.drawer-icon.is-active {
  background-color: #fff;
  width: 50px;
  height: 48px;
  border-radius: 5px;
}
.drawer-icon.is-active::after {
  content: "閉じる";
  color: #0069ac;
}
.drawer-icon.is-active span {
  background-color: #0069ac;
  left: 50%;
}
.drawer-icon.is-active span:nth-child(1) {
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  top: 17px;
}
.drawer-icon.is-active span:nth-child(2) {
  display: none;
}
.drawer-icon.is-active span:nth-child(3) {
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  top: 17px;
}

.is-fixed body {
  overflow: hidden;
}

.drawer-menu {
  background-color: #0069ac;
  height: 100vh;
  width: 100vw;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 200;
  display: none;
}

.drawer-head {
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.drawer-logo {
  width: 200px;
  display: block;
}

.drawer-menu-scroll {
  height: 100vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 0 100px;
  margin-top: 60px;
}

.drawer-menu-content {
  display: block;
  margin: 0 auto;
}
.drawer-menu-content li {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  padding: 15px 0;
  text-align: center;
}

.drawerNav_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}
.drawerNav_items li {
  color: #fff;
  width: 90%;
  margin: 0 auto;
  border-top: 3px dashed #f5cfa8;
  font-weight: 700;
  font-size: 2rem;
  font-family: "Zen Maru Gothic", sans-serif;
}
.drawerNav_items li:last-child {
  border-bottom: 3px dashed #f5cfa8;
}
.drawerNav_items a {
  width: 180px;
  display: block;
  margin: 0 auto;
  position: relative;
  padding: 20px 0 20px 50px;
}
.drawerNav_items a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 40px;
  height: 40px;
}
.drawerNav_items .icon_home::before {
  background: transparent url(../img//icon/icon_home.webp) no-repeat center center/contain;
}
.drawerNav_items .icon_about::before {
  background: transparent url(../img//icon/icon_about.webp) no-repeat center center/contain;
}
.drawerNav_items .icon_news::before {
  background: transparent url(../img//icon/icon_news.webp) no-repeat center center/contain;
}
.drawerNav_items .icon_medical::before {
  background: transparent url(../img//icon/icon_medical.webp) no-repeat center center/contain;
}
.drawerNav_items .icon_recruit::before {
  background: transparent url(../img//icon/icon_recruit.webp) no-repeat center center/contain;
}
.drawerNav_items .icon_link::before {
  background: transparent url(../img//icon/icon_link.webp) no-repeat center center/contain;
}

.drawer_telContact {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.drawer_telContact .tel_text {
  display: inline-block;
  background-color: #fff;
  color: #0069ac;
}
.drawer_telContact .tel {
  color: #fff;
}
.drawer_telContact .tel .tel-icon::before {
  background-color: #fff;
}
.drawer_telContact .btn_reserve {
  background-color: #fff;
  border: 2px solid #e1712c;
  color: #e1712c;
}
.drawer_telContact .btn_reserve::after {
  background-color: #e1712c;
}

/* ===============================================
  top
=============================================== */
.top {
  background: url(../img/ebino_top.webp) no-repeat center 60%/cover;
  padding-bottom: 30%;
  position: relative;
}
@media screen and (max-width: 1099px) {
  .top {
    min-height: 300px;
  }
}

.catchCopy {
  position: absolute;
  font-size: clamp(1.7rem, 2.6vw, 3rem);
  font-weight: 700;
  color: #0069ac;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: block;
  left: 20%;
  display: block;
  text-shadow: 0 0 1px #fff, 0 0 2px #fff, 0 0 3px #fff, 0 0 4px #fff, 0 0 5px #fff, 0 0 6px #fff, 0 0 7px #fff, 0 0 8px #fff, 0 0 9px #fff, 0 0 10px #fff;
}
@media screen and (max-width: 1099px) {
  .catchCopy {
    margin-left: 2.5%;
    left: 2.5%;
    top: 80%;
  }
}

/* ===============================================
  topInfo
=============================================== */
.topInfo {
  padding: 50px 0 100px;
  background: #fff;
}

.topInfoContent {
  display: block;
  padding: 0 50px 40px;
  border: solid 2px #0069ac;
  border-radius: 10px;
  background-color: #fff;
}
.topInfoContent:nth-of-type(n + 2) {
  margin-top: 60px;
}
@media screen and (max-width: 1099px) {
  .topInfoContent {
    padding: 0 20px 30px;
  }
}
.topInfoContent .title {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  padding: 6px 9px;
  line-height: 1;
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  background: #fff;
  border-radius: 10px;
  color: #0069ac;
  font-weight: bold;
  text-align: left;
}
.topInfoContent .title .reserve-icon,
.topInfoContent .title .megahon-icon,
.topInfoContent .title .media-icon,
.topInfoContent .title .examinee-icon {
  display: block;
  width: 100%;
  position: relative;
  padding: 0 0 0 45px;
  overflow-wrap: break-word;
}
.topInfoContent .title .reserve-icon::before,
.topInfoContent .title .megahon-icon::before,
.topInfoContent .title .media-icon::before,
.topInfoContent .title .examinee-icon::before {
  display: block;
  position: absolute;
  content: "";
  background-color: #0069ac;
  left: 0;
}
.topInfoContent .title .reserve-icon::before {
  width: 40px;
  height: 30px;
  -webkit-mask: url(../img/icon/reserve.svg) no-repeat center center/contain;
          mask: url(../img/icon/reserve.svg) no-repeat center center/contain;
}
.topInfoContent .title .examinee-icon::before {
  width: 40px;
  height: 30px;
  -webkit-mask: url(../img/icon/examinee.svg) no-repeat center center/contain;
          mask: url(../img/icon/examinee.svg) no-repeat center center/contain;
}
.topInfoContent .title .megahon-icon::before {
  width: 38px;
  height: 38px;
  -webkit-mask: url(../img/icon/megahon.svg) no-repeat center center/contain;
          mask: url(../img/icon/megahon.svg) no-repeat center center/contain;
}
.topInfoContent .title .media-icon::before {
  width: 35px;
  height: 35px;
  -webkit-mask: url(../img/icon/media.svg) no-repeat center center/contain;
          mask: url(../img/icon/media.svg) no-repeat center center/contain;
}

.gallery_items.examinee_gallery {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 30px;
}
.gallery_items.examinee_gallery .gallery_item img {
  aspect-ratio: 2/3;
}

.topInfoContent_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.topInfoContent_wrapper p {
  font-size: 1.5rem;
  font-weight: 700;
}

.topInfoContent_head {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #7e6a55;
}

.topInfo_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  margin-top: 30px;
}
@media screen and (max-width: 1099px) {
  .topInfo_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.topInfo_left,
.topInfo_right {
  width: 50%;
}
.topInfo_left figure,
.topInfo_right figure {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 3/2;
  max-width: 500px;
  margin-inline: auto;
}
@media screen and (max-width: 1099px) {
  .topInfo_left,
  .topInfo_right {
    width: 100%;
  }
}

.topBijin_img {
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  margin-top: 10px;
}

.topNews_wrapper {
  width: 48%;
}
@media screen and (max-width: 1099px) {
  .topNews_wrapper {
    width: 100%;
  }
}

.openTime_wrapper {
  width: 48%;
}
@media screen and (max-width: 1099px) {
  .openTime_wrapper {
    width: 100%;
    margin-top: 100px;
  }
}

.news_items {
  margin-bottom: 30px;
}

.news_item {
  display: block;
}
.news_item:not(:first-child) {
  margin-top: 20px;
}

.news_date {
  font-weight: 700;
  color: #e1712c;
}

.tableTime_wrapper {
  border-radius: 10px;
  border: 2px solid #e1712c;
  overflow: hidden;
}

.table_time {
  width: 100%;
}
.table_time th,
.table_time td {
  text-align: center;
  vertical-align: middle;
  color: #7e6a55;
}
.table_time th {
  padding: 10px 5px;
  font-weight: 500;
}

.table_head {
  background: #e1712c;
}
.table_head th {
  color: #fff;
}

.table_left {
  width: 40%;
}
@media screen and (max-width: 1099px) {
  .table_left {
    width: 25%;
  }
}

.closeText_wrapper {
  margin-top: 20px;
  font-size: 1.4rem;
}

.facility-standards {
  margin-top: 40px;
}
.facility-standards__list {
  list-style-type: none;
  padding: 1em;
  border: 2px solid #e1712c;
  margin-top: 20px;
}
.facility-standards__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 5px;
  padding: 0.2em;
}
.facility-standards__list li::before {
  display: inline-block;
  width: 12px;
  min-width: 12px;
  height: 7px;
  border-bottom: 3px solid #e1712c;
  border-left: 3px solid #e1712c;
  margin-top: 7px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  content: "";
}

/* ===============================================
  topFeature
=============================================== */
.topFeature_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1099px) {
  .topFeature_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.topFeature_item:not(:first-child) {
  margin-top: 50px;
}
.topFeature_item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 1099px) {
  .topFeature_item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.topFeature_itemLeft {
  width: 48%;
}
@media screen and (max-width: 1099px) {
  .topFeature_itemLeft {
    width: 100%;
  }
  .topFeature_itemLeft figure {
    max-width: 500px;
    margin: 0 auto;
  }
}

.topFeature_itemRight {
  width: 48%;
}
.topFeature_itemRight p {
  margin-top: 20px;
}
@media screen and (max-width: 1099px) {
  .topFeature_itemRight {
    width: 100%;
  }
}

.topFeature_head {
  font-size: 2rem;
  font-weight: 700;
  color: #7e6a55;
}

/* ===============================================
  topGreeting
=============================================== */
.topGreeting {
  background: url(../img/greeting_bg.webp) no-repeat top center/cover;
}

.topGreeting_wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: 2%;
  padding: 50px;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1099px) {
  .topGreeting_wrapper {
    width: 100%;
    margin-left: 0;
    padding: 30px;
  }
}
.topGreeting_wrapper .btn_wrapper {
  margin-top: 30px;
}

.topGreeting_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media screen and (max-width: 1099px) {
  .topGreeting_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.topGreeting_itemLeft {
  width: 48%;
}
@media screen and (max-width: 1099px) {
  .topGreeting_itemLeft {
    width: 100%;
  }
  .topGreeting_itemLeft figure {
    max-width: 500px;
    margin: 0 auto;
  }
}

.topGreeting_itemRight {
  width: 48%;
}
.topGreeting_itemRight p {
  margin-top: 20px;
}
@media screen and (max-width: 1099px) {
  .topGreeting_itemRight {
    width: 100%;
  }
}

/* ===============================================
  topMedical
=============================================== */
.topMedical_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 1099px) {
  .topMedical_items {
    gap: 30px;
  }
}
@media screen and (max-width: 800px) {
  .topMedical_items {
    gap: 15px;
  }
}

.topMedical_item {
  width: calc((100% - 100px) / 3);
  padding: 30px;
  background: #fff;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 1100px) {
  .topMedical_item {
    max-width: 300px;
  }
}
@media screen and (max-width: 800px) {
  .topMedical_item {
    width: calc((100% - 60px) / 2);
    padding: 15px;
  }
}

.topMedical_itemImg {
  width: 50%;
  margin: 10px auto 20px;
}

.topMedical_title {
  text-align: center;
  font-size: 2rem;
  color: #e1712c;
  font-weight: 700;
}
@media screen and (max-width: 1099px) {
  .topMedical_title {
    font-size: 1.6rem;
  }
}

/* ===============================================
  topAccess
=============================================== */
.topAccess {
  background: #fff;
  padding-bottom: 0;
}

.topAccess_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 100px;
}
@media screen and (max-width: 1099px) {
  .topAccess_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.topAccess_left {
  width: 48%;
}
@media screen and (max-width: 1099px) {
  .topAccess_left {
    width: 100%;
  }
}

.topAccess_item:not(:first-child) {
  margin-top: 30px;
}

.topAccess_title {
  font-weight: 700;
  color: #e1712c;
}

.topAccess_right {
  width: 48%;
}
@media screen and (max-width: 1099px) {
  .topAccess_right {
    width: 100%;
    margin-top: 30px;
  }
}

.map {
  width: 100%;
  margin-top: 50px;
}
.map iframe {
  width: 100%;
  height: 400px;
}
@media screen and (max-width: 1099px) {
  .map iframe {
    height: 300px;
  }
}

/* ==================================================
  footer
================================================== */
.footer {
  padding-bottom: 0;
  border-top: 2px solid #e1712c;
}

.footerContent_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .footerContent_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_left {
  width: 48%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1099px) {
  .footer_left {
    width: 100%;
  }
}
.footer_left .telContact {
  margin-top: 20px;
}

.footerLogo {
  margin-bottom: 20px;
}

.footerLink {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 100px;
  font-weight: 700;
  color: #0069ac;
}
@media screen and (max-width: 1099px) {
  .footerLink {
    gap: 50px;
  }
}
.footerLink li {
  position: relative;
  padding-left: 15px;
}
.footerLink li::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img//icon/arrow.svg) no-repeat center center/contain;
          mask: url(../img//icon/arrow.svg) no-repeat center center/contain;
  background-color: #0069ac;
}

.footerLogo_item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
  gap: 20px;
}
.footerLogo_item li {
  width: 50px;
  border-radius: 10px;
  overflow: hidden;
}
.footerLogo_item ol {
  width: 85px;
  border-radius: 7px;
  overflow: hidden;
}

.footer_right {
  width: 48%;
}
@media screen and (max-width: 1099px) {
  .footer_right {
    width: 100%;
    margin-top: 30px;
    font-size: 1.4rem;
  }
  .footer_right table th.table_left {
    font-size: 1.2rem;
  }
}

.footerBottom_wrapper {
  margin-top: 50px;
  padding-block: 20px 100px;
}

.copyright {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .copyright {
    font-size: 1rem;
  }
}

.to-top {
  width: 50px;
  height: 50px;
  position: relative;
  margin-left: auto;
  background-color: #e1712c;
  margin-top: 50px;
}
.to-top::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-mask: url(../img/icon/to-top.svg) no-repeat center center/contain;
          mask: url(../img/icon/to-top.svg) no-repeat center center/contain;
  background-color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 1099px) {
  .to-top::after {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1099px) {
  .to-top {
    width: 40px;
    height: 40px;
  }
}

/* ===============================================
  page-about
=============================================== */
.pageLinkItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 50px;
  gap: 30px;
}
@media screen and (max-width: 1099px) {
  .pageLinkItems {
    gap: 15px;
  }
}
.pageLinkItems li {
  color: #0069ac;
  font-size: 1.4rem;
}
.pageLinkItems a {
  display: inline-block;
  padding: 10px 30px 10px 20px;
  border-radius: 5px;
  border: 2px solid #0069ac;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.pageLinkItems a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/pagelink_icon.svg) no-repeat center center/contain;
          mask: url(../img/icon/pagelink_icon.svg) no-repeat center center/contain;
  background-color: #0069ac;
}
.pageLinkItems a:hover {
  background-color: #0069ac;
  color: #fff;
}
.pageLinkItems a:hover::after {
  background-color: #fff;
}

.overview {
  padding: 150px 0 170px;
}
@media screen and (max-width: 1099px) {
  .overview {
    padding: 100px 0 100px;
  }
}

.overviewContent {
  margin-top: 150px;
}
@media screen and (min-width: 1100px) {
  .overviewContent {
    background-color: #f5cfa8;
  }
}
@media screen and (max-width: 1099px) {
  .overviewContent {
    margin-top: 50px;
  }
}

@media screen and (min-width: 1100px) {
  .overviewContent_wrapper {
    position: relative;
    height: 400px;
  }
  .overviewContent_wrapper figure {
    position: absolute;
    content: "";
    top: -50px;
    left: 0;
    width: 55%;
    z-index: 10;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1099px) {
  .overviewContent_wrapper figure {
    width: 80%;
  }
}

.overviewContent_left {
  width: 55%;
}
@media screen and (max-width: 1099px) {
  .overviewContent_left {
    width: 80%;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1100px) {
  .overviewContent_right {
    width: 50%;
    position: absolute;
    content: "";
    right: 0;
    bottom: -50px;
    background-color: #fff;
    padding: 80px 30px 65px 90px;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  }
}
@media screen and (max-width: 1099px) {
  .overviewContent_right {
    margin-top: 30px;
  }
}

.staff {
  padding: 200px 0 250px;
  background-color: #f5cfa8;
  clip-path: polygon(0 8vw, 100% 0, 100% 100%, 0 calc(100% - 8vw));
}
@media screen and (max-width: 1099px) {
  .staff {
    padding: 150px 0 180px;
  }
}

.staffContent_wrapper {
  margin-top: 100px;
  padding: 80px 50px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1099px) {
  .staffContent_wrapper {
    padding: 50px 30px;
    margin-top: 50px;
  }
}

.staffContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .staffContent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.staffContent_leftItems {
  width: 65%;
}
@media screen and (max-width: 1099px) {
  .staffContent_leftItems {
    width: 100%;
  }
}

.staffContent_leftItem:not(:first-child) {
  margin-top: 20px;
}

.staffContent_head {
  padding-bottom: 5px;
  border-bottom: 1px solid #e1712c;
  font-weight: 700;
  font-size: 2rem;
  color: #e1712c;
  margin-bottom: 10px;
}

.staffContent_rightItem {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .staffContent_rightItem {
    width: 80%;
    margin: 0 auto 30px;
  }
}

.staffTitle_wrapper {
  background-color: #e1712c;
  border-radius: 5px;
}

.staffTitle {
  font-size: 2rem;
  font-weight: 700;
  padding: 10px 0;
  margin-bottom: 50px;
  color: #fff;
  text-align: center;
}

.pdf_items li {
  text-decoration: underline;
}
.pdf_items li:not(:first-child) {
  margin-top: 20px;
}

.pdf-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  background: transparent url(../img/icon/new_window.svg) no-repeat center center/contain;
  vertical-align: baseline;
  margin-left: 5px;
}

.gallery {
  padding: 100px 0;
}

.gallery2 {
  padding: 100px 0;
}
@media screen and (max-width: 1099px) {
  .gallery2 {
    padding: 0 0 100px;
  }
}

.gallery_wrapper {
  margin-top: 50px;
}

.rl-basicgrid-gallery {
  gap: 50px;
}

.rl-gallery-item {
  width: calc((100% - 100px) / 3) !important;
}

.rl-gallery-caption {
  padding: 10px 20px !important;
  background-color: unset !important;
  background-image: -webkit-gradient(linear, left top, right top, from(#4e9ff3), to(#8eefff));
  background-image: linear-gradient(90deg, #4e9ff3, #8eefff);
}

.gallery_items {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3vw;
}

.gallery_item {
  width: calc((100% - 6vw) / 3);
}
.gallery_item img {
  aspect-ratio: 3/2;
}
@media screen and (max-width: 1099px) {
  .gallery_item {
    width: calc((100% - 3vw) / 2);
  }
}
.gallery_item figcaption {
  text-align: center;
  margin-top: 5px;
  font-size: 1.4rem;
}

.certificate {
  margin-top: 20px;
  width: 200px;
}

.facility-standards p {
  margin-bottom: 10px;
}
.facility-standards__table {
  margin-bottom: 30px;
}
.facility-standards__table table {
  background: #fff;
}
.facility-standards__table th,
.facility-standards__table td {
  border: 1px solid #e1712c;
  border-collapse: collapse;
  padding: 10px;
}
@media screen and (max-width: 1099px) {
  .facility-standards__table th,
  .facility-standards__table td {
    display: block;
  }
}
.facility-standards__table th {
  white-space: nowrap;
  font-weight: normal;
  background-color: #f5cfa8;
}
@media screen and (max-width: 1099px) {
  .facility-standards__table th {
    border-bottom: none;
    white-space: normal;
  }
}
.facility-standards__table tr:nth-of-type(n + 2) th {
  border-top: none;
}

.list-wrapper {
  padding: clamp(10px, 2vw, 20px);
  list-style: none;
  background-color: #fff;
}
.list-wrapper > li {
  position: relative;
  padding-left: 12px;
}
.list-wrapper > li::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #0069ac;
  border-radius: 50%;
}

/* ===============================================
  page-medical
=============================================== */
.medicalContents {
  margin: 100px 0;
}
@media screen and (max-width: 1099px) {
  .medicalContents {
    margin: 50px 0;
  }
}

.medicalContent_wrapper {
  padding: 50px 0;
}

.medicalItem_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 50px 0;
}
@media screen and (max-width: 1099px) {
  .medicalItem_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.medicalItem_left {
  width: 65%;
}
@media screen and (max-width: 1099px) {
  .medicalItem_left {
    width: 100%;
  }
}

.medicalItem_head {
  text-align: center;
  padding: 10px 0;
  margin-bottom: 20px;
  background-color: #e1712c;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
}

.medicalItem_right {
  width: 30%;
}
@media screen and (max-width: 1099px) {
  .medicalItem_right {
    margin: 20px auto 50px;
    width: 80%;
  }
}

.medicalTable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}

.table_medical {
  width: 90%;
}
@media screen and (max-width: 1099px) {
  .table_medical {
    width: 100%;
  }
}
.table_medical:not(:first-child) {
  margin-top: 30px;
}
@media screen and (max-width: 1099px) {
  .table_medical {
    margin-top: 30px;
  }
}
.table_medical table,
.table_medical th,
.table_medical td {
  border: 1px solid #e1712c;
  border-collapse: collapse;
}
.table_medical th,
.table_medical td {
  text-align: center;
  vertical-align: middle;
  padding: 20px 10px;
}
@media screen and (max-width: 1099px) {
  .table_medical th,
  .table_medical td {
    padding: 10px 5px;
  }
}
.table_medical th {
  font-weight: 600;
  color: #333;
  width: 30%;
  background-color: rgba(225, 113, 44, 0.2);
}

.medicalItem_detail {
  margin-bottom: 30px;
}

.medicalItem_detailHead {
  font-size: 2rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #e1712c;
  margin-bottom: 10px;
}

.medicalItem_hospital {
  font-size: 2rem;
}

.hospital-icon {
  display: block;
  width: 100%;
  position: relative;
  padding: 0 0 15px 35px;
  overflow-wrap: break-word;
}
.hospital-icon::before {
  display: block;
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  left: 0;
  -webkit-mask: url(../img/icon/hospital.svg) no-repeat center center/contain;
          mask: url(../img/icon/hospital.svg) no-repeat center center/contain;
  background-color: #e1712c;
}
.hospital-icon a {
  position: relative;
  padding-right: 20px;
}
.hospital-icon a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/new_window.svg) no-repeat center center/contain;
          mask: url(../img/icon/new_window.svg) no-repeat center center/contain;
  background-color: #333;
}

.medicalItem_faq {
  margin-top: 20px;
}
.medicalItem_faq span {
  font-weight: 700;
}

.medicalItem_faqbody {
  margin-top: 10px;
}

/* ===============================================
  page-daycare
=============================================== */
.daycareContent {
  padding: 200px 0 150px;
  border-bottom: 4px solid #00bfff;
  -o-border-image: linear-gradient(to right, #4e9ff3, #8eefff);
     border-image: -webkit-gradient(linear, left top, right top, from(#4e9ff3), to(#8eefff));
     border-image: linear-gradient(to right, #4e9ff3, #8eefff);
  border-image-slice: 1;
}
.daycareContent .sectionTitle {
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .daycareContent {
    padding: 100px 0;
  }
}

.daycareFeature {
  background: transparent url(../img//cl_4.webp) no-repeat left top/cover;
}

.daycareTitle_fontSmall {
  font-size: 2rem;
}

.daycareItem_wrapper {
  margin-top: 100px;
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1099px) {
  .daycareItem_wrapper {
    padding: 30px;
    margin-top: 50px;
  }
}

.daycareItem_head {
  text-align: center;
  font-weight: 700;
  padding-bottom: 5px;
  border-bottom: 2px solid #0069ac;
  font-size: 2rem;
  margin-bottom: 40px;
}

.dayCareFeature_bodyWrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dayCareFeature_text {
  position: relative;
  padding: 20px 0 20px 80px;
}
.dayCareFeature_text::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.dcf_text1::before {
  background: transparent url(../img/icon//no1.webp) no-repeat center center/contain;
}

.dcf_text2::before {
  background: transparent url(../img/icon//no2.webp) no-repeat center center/contain;
}

.dcf_text3::before {
  background: transparent url(../img/icon//no3.webp) no-repeat center center/contain;
}

.daycarePoint {
  background: transparent url(../img//cl_11.webp) no-repeat left top/cover;
}

.daycareDetail {
  padding: 100px 0 0;
  border-bottom: unset;
}

.daycareDetailItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 50px 0 100px;
}
@media screen and (max-width: 1099px) {
  .daycareDetailItem {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0 50px;
  }
}

.daycareDetailItem_left {
  width: 280px;
  text-align: right;
  padding-right: 50px;
}
@media screen and (max-width: 1099px) {
  .daycareDetailItem_left {
    padding-right: 0;
    padding-bottom: 20px;
  }
}

.daycareDetailItem_right {
  padding: 20px 0 20px 50px;
  width: 420px;
  border-left: 2px solid #0069ac;
}
@media screen and (max-width: 1099px) {
  .daycareDetailItem_right {
    border-top: 2px solid #0069ac;
    border-left: unset;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px 0 50px;
  }
}

.daycareContact {
  padding: 150px 0;
  background: url(../img/cl_1.webp) no-repeat top center/cover;
}

.daycareContact_wrapper {
  padding: 50px;
  background-color: #fff;
  border-radius: 5px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1099px) {
  .daycareContact_wrapper {
    padding: 30px;
  }
}

.daycareContact_sectionTitle {
  font-size: min(6vw, 3rem);
}

.daycareDetailItem_title {
  font-size: 2.2rem;
}

.daycareTel {
  text-align: center;
  margin-top: 20px;
  font-size: min(7vw, 3rem);
}

.daycareDate table,
.daycareDate th,
.daycareDate td {
  border: 1px solid #333;
  border-collapse: collapse;
}
.daycareDate th,
.daycareDate td {
  padding: 10px 20px;
}
@media screen and (max-width: 1099px) {
  .daycareDate th,
  .daycareDate td {
    padding: 1.5vw 3vw;
  }
}
.daycareDate th {
  background-color: #eef4f7;
}

.daycareSchedule th,
.daycareSchedule td {
  padding: 10px 0;
}
.daycareSchedule th {
  text-align: center;
  display: inline-block;
  margin-right: 50px;
}
@media screen and (max-width: 1099px) {
  .daycareSchedule th {
    margin-right: 30px;
  }
}

/* ===============================================
  page-patient
=============================================== */
.visitor {
  padding: 150px 0;
}
@media screen and (max-width: 1099px) {
  .visitor {
    padding: 100px 0;
  }
}

.visitorContent {
  padding: 100px 0;
  background-color: #7e6a55;
  margin-right: 5%;
  margin-top: 100px;
  border-radius: 0 15px 15px 0;
}
@media screen and (max-width: 1099px) {
  .visitorContent {
    margin-right: 3%;
    padding: 80px 0;
    margin-top: 50px;
  }
}

.visitorContent2 {
  margin-top: 150px;
  margin-right: 0;
  margin-left: 5%;
  border-radius: 15px 0 0 15px;
}
@media screen and (max-width: 1099px) {
  .visitorContent2 {
    margin-left: 3%;
    margin-top: 100px;
  }
}

.visitorContent_wrapper {
  margin-left: 7%;
}
@media screen and (max-width: 1099px) {
  .visitorContent_wrapper {
    margin-left: 3%;
  }
}

.visitorContent_wrapper2 {
  margin-left: 0;
  margin-right: 7%;
}
@media screen and (max-width: 1099px) {
  .visitorContent_wrapper2 {
    margin-right: 3%;
  }
}

.visitorItems {
  margin-top: 100px;
}
@media screen and (max-width: 1099px) {
  .visitorItems {
    margin-top: 50px;
  }
}

.visitorItem_wrapper:not(:first-child) {
  margin-top: 50px;
}

.visitorContent_title {
  text-align: center;
  padding: 10px 0;
  background-color: #0069ac;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
}

.visitorContent_text {
  margin-top: 50px;
}

.visitorItem_head {
  padding: 0 0 5px 20px;
  color: #0069ac;
  font-weight: 700;
  border-bottom: 1px solid #0069ac;
}

.visitorItem_body {
  padding: 10px 0 0 20px;
}

.visitorItemBelongings_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .visitorItemBelongings_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.visitorItem_left {
  width: 65%;
}
@media screen and (max-width: 1099px) {
  .visitorItem_left {
    width: 100%;
  }
}

.visitorItem_right {
  width: 30%;
}
@media screen and (max-width: 1099px) {
  .visitorItem_right {
    width: 80%;
    margin-top: 30px;
  }
}

.belongings_head {
  padding: 10px 0;
  border: 1px solid deepskyblue;
  color: deepskyblue;
}

.belongings_required {
  border: 1px solid orangered;
  color: orangered;
}

.plusImage {
  height: 50px;
  width: 50px;
  padding: 50px 0;
  margin: 50px auto 0;
  background: transparent url(../img/icon/plus-icon.webp) no-repeat center center/contain;
}

.belongings_body {
  margin-top: 20px;
}
.belongings_body li {
  font-size: 1.8rem;
  font-weight: 700;
}

.belongings_bodyText {
  font-size: 1.8rem;
  font-weight: 700;
}

/* ===============================================
  page-recruit
=============================================== */
.recruitMessage,
.recruitVoice {
  padding: 150px 0;
}
@media screen and (max-width: 1099px) {
  .recruitMessage,
  .recruitVoice {
    padding: 50px 0;
  }
}

.recruitMessage .recruitItem_wrapper {
  width: 55%;
  margin: 0 auto;
}
@media screen and (max-width: 1099px) {
  .recruitMessage .recruitItem_wrapper {
    width: 90%;
  }
}

.recruitVoice {
  background-color: #7e6a55;
}

.recruitVoice_item {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1099px) {
  .recruitVoice_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.recruitVoice_left {
  width: 55%;
}
@media screen and (max-width: 1099px) {
  .recruitVoice_left {
    width: 100%;
  }
}

.recruitVoice_right {
  width: 40%;
}
@media screen and (max-width: 1099px) {
  .recruitVoice_right {
    width: 80%;
    margin: 0 auto 30px;
  }
}

.recruitment {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 1099px) {
  .recruitment {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.recruitItems {
  margin-top: 50px;
}

.recruitItem_wrapper:not(:first-child) {
  margin-top: 30px;
}

.recruitItem_headWrapper {
  position: relative;
  cursor: pointer;
}

.option-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.option-icon.is-open .option-icon_bar2 {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.option-icon_bar1 {
  position: absolute;
  width: 16px;
  height: 3px;
  background: #fff;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.option-icon_bar2 {
  position: absolute;
  width: 3px;
  height: 16px;
  background: #fff;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.recruitItem table,
.recruitItem th,
.recruitItem td {
  border: 2px solid #fff;
  border-collapse: collapse;
}
.recruitItem table {
  width: 100%;
  margin-top: 20px;
}
.recruitItem th,
.recruitItem td {
  padding: 15px;
}
.recruitItem th {
  width: 30%;
  background-color: #f5cfa8;
}
.recruitItem td {
  width: 70%;
  background-color: #f8f8f8;
}

.recruitItem_head {
  text-align: center;
  padding: 10px 0;
  background-color: #0069ac;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
}

.recruitBtn_wrapper {
  margin-top: 50px;
}

.recruitBtn_wrapper .title {
  text-align: center;
  padding: 7px 0;
  background-color: #e1712c;
  border-radius: 7px;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 30px;
}

.recruitBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
.recruitBtn img {
  width: 320px;
  border-radius: 30px;
}
.recruitBtn li {
  text-align: center;
}
@media screen and (max-width: 1099px) {
  .recruitBtn {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.recruitTitle_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 20px;
}

.recruitBtn_title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #7e6a55;
}

.recruit_reserve {
  text-align: center;
}

/* ===============================================
  page-news
=============================================== */
.news {
  margin: 100px 0 150px;
}
@media screen and (max-width: 1099px) {
  .news {
    margin: 50px 0 100px;
  }
}

.news-body {
  margin-top: 100px;
}
@media screen and (max-width: 1099px) {
  .news-body {
    margin-top: 50px;
  }
}

.news-content__wrapper {
  padding: 30px 10px;
  margin-top: 0;
}
.news-content__wrapper:not(:first-child) {
  border-top: 1px solid #f5e5d8;
}
@media screen and (max-width: 1099px) {
  .news-content__wrapper {
    padding: 20px 10px;
  }
}

.news-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 1099px) {
  .news-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.news-content:not(:first-child) {
  margin-top: 15px;
}

.news-title {
  margin-left: 10px;
}
@media screen and (max-width: 1099px) {
  .news-title {
    margin-left: 0;
  }
}

.news-date {
  color: #e1712c;
  font-size: 1.4rem;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}
@media screen and (max-width: 1099px) {
  .pagination {
    margin-top: 50px;
  }
}
.pagination .prev {
  padding-left: 37px;
  background-color: #e1712c;
  border-radius: 4px;
  color: #fff;
  width: 82px;
  height: 36px;
  line-height: 36px;
  position: relative;
  text-align: left;
  display: inline-block;
  margin-left: 0;
}
.pagination .prev::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow.svg) no-repeat center center/contain;
          mask: url(../img/icon/arrow.svg) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: 50% 25%;
          transform-origin: 50% 25%;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination .prev:hover::before {
  left: 10px;
}
.pagination .next {
  padding-right: 37px;
  background-color: #e1712c;
  border-radius: 4px;
  color: #fff;
  width: 82px;
  height: 36px;
  line-height: 36px;
  position: relative;
  text-align: right;
  display: inline-block;
  margin-right: 0;
}
.pagination .next::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow.svg) no-repeat center center/contain;
          mask: url(../img/icon/arrow.svg) no-repeat center center/contain;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pagination .next:hover::after {
  right: 10px;
}

.page-numbers {
  width: 34px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  background-color: #fff;
  border: 1px solid #e1712c;
  border-radius: 4px;
  display: inline-block;
  font-size: 14px;
  color: #e1712c;
  margin: 0 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page-numbers:hover {
  background-color: #e1712c;
  color: #fff;
}
.page-numbers.current {
  background-color: #e1712c;
  color: #fff;
  border: 1px solid #e1712c;
}

/* ===============================================
  single
=============================================== */
.single-content {
  margin: 50px 0 150px;
}

.single-title {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #e1712c;
}

.single-body {
  margin: 30px 10px 0;
  line-height: 1.5;
}
.single-body figure {
  margin-top: clamp(20px, 5vw, 50px);
}

.single-pagenation {
  margin-top: 80px;
}
@media screen and (max-width: 1099px) {
  .single-pagenation {
    margin-top: 60px;
  }
}

.pagination-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pagination-single .prev a,
.pagination-single .next a {
  font-size: 14px;
  padding: 8px 16px;
  color: #fff;
  background: #e1712c;
  border-radius: 4px;
}
.pagination-single .prev-single a {
  font-size: 14px;
  padding-left: 38px;
  background-color: #e1712c;
  border-radius: 4px;
  color: #fff;
  width: 90px;
  height: 36px;
  line-height: 36px;
  position: relative;
  display: inline-block;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (max-width: 1099px) {
  .pagination-single .prev-single a {
    width: 80px;
    height: 39px;
    line-height: 39px;
    padding-left: 36px;
  }
}
.pagination-single .prev-single a::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow.svg) no-repeat center center/contain;
          mask: url(../img/icon/arrow.svg) no-repeat center center/contain;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: 50% 25%;
          transform-origin: 50% 25%;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1099px) {
  .pagination-single .prev-single a::before {
    left: 14px;
  }
}
.pagination-single .prev-single a:hover::before {
  left: 10px;
}
.pagination-single .next-single a {
  font-size: 14px;
  padding-right: 38px;
  background-color: #e1712c;
  border-radius: 4px;
  color: #fff;
  width: 90px;
  height: 36px;
  line-height: 36px;
  position: relative;
  display: inline-block;
  text-align: right;
}
@media screen and (max-width: 1099px) {
  .pagination-single .next-single a {
    width: 80px;
    height: 39px;
    line-height: 39px;
    padding-right: 36px;
  }
}
.pagination-single .next-single a::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/arrow.svg) no-repeat center center/contain;
          mask: url(../img/icon/arrow.svg) no-repeat center center/contain;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1099px) {
  .pagination-single .next-single a::after {
    right: 14px;
  }
}
.pagination-single .next-single a:hover::after {
  right: 10px;
}

.lists a {
  width: 90px;
  height: 36px;
  line-height: 36px;
  color: #e1712c;
  border: 1px solid #e1712c;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
  margin: 0 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1099px) {
  .lists a {
    width: 95px;
    height: 41px;
    line-height: 41px;
    margin: 0 12px;
  }
}
.lists a:hover {
  color: #fff;
  background: #e1712c;
}

/* ===============================================
  page-link
=============================================== */
.page-link {
  margin: 100px 0 150px;
}
@media screen and (max-width: 1099px) {
  .page-link {
    margin: 50px 0 100px;
  }
}

.linkContents {
  margin-top: 100px;
}
@media screen and (max-width: 1099px) {
  .linkContents {
    margin-top: 50px;
  }
}

.linkItems_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 1099px) {
  .linkItems_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.linkItems_title {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background-color: #e1712c;
  border-radius: 5px;
  color: #fff;
  font-weight: 700;
}

.linkItems_left {
  width: 50%;
  padding-left: 40px;
}
@media screen and (max-width: 1099px) {
  .linkItems_left {
    width: 100%;
  }
}

.linkItems_right {
  width: 45%;
  text-align: center;
}
.linkItems_right img {
  width: 450px;
}
@media screen and (max-width: 1099px) {
  .linkItems_right {
    width: 100%;
  }
}

/* ==================================================
  404.php
================================================== */
.notFound {
  margin-bottom: 200px;
}

.notFound-wrap {
  text-align: center;
}

.notFound-head {
  font-size: 120px;
  font-weight: 700;
  color: #dff1fd;
  margin-bottom: 60px;
}
.notFound-head span::after {
  content: " ";
}

.notFound-lead {
  font-size: 40px;
  color: #999999;
  margin-bottom: 40px;
}

.notFound-content {
  font-size: 20px;
  line-height: 1.5;
  color: #a8a8a8;
  margin-bottom: 100px;
}

.notFound-btn {
  padding: 20px 60px;
  color: #999999;
  background: #eeeeee;
  font-size: 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.notFound-btn:hover {
  background: #ddd;
}

/* ===============================================
  icon
=============================================== */
.tel-icon {
  position: relative;
  padding-left: 35px;
}
.tel-icon::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-mask: url(../img/icon/phone.svg) no-repeat center center/contain;
          mask: url(../img/icon/phone.svg) no-repeat center center/contain;
  background-color: #0069ac;
}

.header-icon {
  position: relative;
  padding-top: 35px;
}
.header-icon::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.about-icon::after {
  background: transparent url(../img/icon/about-icon.webp) no-repeat center center/contain;
}

.medical-icon::after {
  background: transparent url(../img/icon/naika.webp) no-repeat center center/contain;
}

.daycare-icon::after {
  background: transparent url(../img/icon/feature.webp) no-repeat center center/contain;
}

.shoshin-icon::after {
  background: transparent url(../img/icon/shoshin.webp) no-repeat center center/contain;
}

.recruit-icon::after {
  background: transparent url(../img/icon/staff.webp) no-repeat center center/contain;
}

.news-icon {
  position: relative;
  padding-left: 40px;
}
.news-icon::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: transparent url(../img/icon/loudspeaker-icon.webp) no-repeat center center/contain;
}

.section-title_icon {
  position: relative;
  padding-top: 60px;
}
.section-title_icon::before {
  position: absolute;
  content: "";
  width: 35px;
  height: 35px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/* ===============================================
  ウェブ予約バナー
=============================================== */
.reservation-banner {
  width: 320px;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
@media (width < 768px) {
  .reservation-banner {
    width: 280px;
    bottom: 15px;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}