@charset "utf-8";

body {
	font-family: "fot-tsukuardgothic-std", sans-serif;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  z-index: 999;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo a {
  display: block;
  font-size: 25px;
  color: #163060;
  font-weight: 700;
}
.header-logo a small {
  display: block;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.2px;
}

main.front-page {
  background: #FFF4F4 url(../images/top_bg01.png) 50% 0 / 100% auto no-repeat;
  overflow: hidden;
}
.menu-wrap {
  display: flex;
  gap: 0 20px;
}
.menu-btn .btn {
  display: flex;
  height: 72px;
  padding: 8px 50px;
  font-size: 25px;
  font-weight: 600;
  color: #163060;
  background: #FFF;
  border: 2px solid #163060;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
}
.hamburger {
  position: relative;
  width: 98px;
  height: 72px;
  background: #163060;
  border-radius: 50px;
  z-index: 2;
}
.hamburger span {
  position: absolute;
  top: 36px;
  left: 34px;
  width: 31px;
  height: 4px;
  background: #FFF;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}
.hamburger span:first-child {
  top: 26px;
}
.hamburger span:last-child {
  top: 46px;
}
.hamburger.active span:nth-child(2) {
  height: 0;
}
.hamburger.active span:first-child {
  top: 36px;
  transform: rotate(35deg);
}
.hamburger.active span:last-child {
  top: 36px;
  transform: rotate(-35deg);
}
.hamburger.active {
  background: #233C69;
}
.hamburger-menu {
  position: fixed;
  display: none;
  top: 10px;
  right: 20px;
  width: 100%;
  max-width: 690px;
  height: 100vh;
  padding: 80px;
  font-weight: 700;
  text-align: center;
  color: #FFF;
  background: #233C69 url(../images/hamburger_bg.png) 50% 50% / cover no-repeat;
  border-radius: 30px;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hamburger-menu::-webkit-scrollbar {
  display: none;
}
.hamburger-menu ul li {
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.2;
}
.menu-inner-btns {
  display: flex;
  margin-bottom: 64px;
  gap: 0 24px;
  justify-content: center;
}
.awa-btn {
  display: flex;
  width: 244px;
  height: 184px;
  font-size: 25px;
  color: #FFF;
  background: url(../images/btn_bg01.png) 50% 50% / 100% 100% no-repeat;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
.awa-btn.awa-pink {
  background: url(../images/btn_bg02.png) 50% 50% / 100% 100% no-repeat;
}
.menu-logo {
  display: block;
  margin-bottom: 22px;
  text-align: center;
}
.menu-logo a {
  font-size: 25px;
}
.menu-logo small {
  display: block;
  margin-top: 1px;
  font-size: 16px;
  letter-spacing: 0.4px;
}
.menu-sns {
  display: flex;
  justify-content: center;
}
.sns-btn {
  display: flex;
  height: 50px;
  padding: 5px 20px;
  font-size: 16px;
  color: #FFF;
  background: #F89F9F;
  border-radius: 50px;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

@media screen and (min-width: 1480px) {
  header {
    padding: 10px 106px;
  }
  .hamburger-menu {
    right: 106px;
  }
}

@media screen and (max-width: 767px) {
  header {
    padding: 14px 10px;
  }
  .menu-wrap > .menu-btn {
    display: none;
  }
  .header-logo a {
    font-size: 18px;
    letter-spacing: 0.3px;
  }
  .header-logo a small {
    font-size: 12px;
    letter-spacing: 0;
  }
  .hamburger {
    width: 60px;
    height: 42px;
  }
  .hamburger span {
    top: 19px;
    left: 21px;
    width: 19px;
    height: 3px;
  }
  .hamburger span:first-child {
    top: 12px;
  }
  .hamburger span:last-child {
    top: 26px;
  }
  .hamburger.active span:first-child,
  .hamburger.active span:last-child {
    top: 19px;
  }
  .hamburger-menu {
    top: 0;
    right: 0;
    padding: 80px 20px;
    border-radius: 0;
  }
  .hamburger-menu ul li {
    margin-bottom: 28px;
    font-size: 16px;
  }
  .menu-inner-btns {
    margin-bottom: 40px;
    gap: 0 10px;
  }
  .awa-btn {
    width: 100%;
    height: 120px;
    font-size: 18px;
    font-weight: 700;
  }
  .menu-logo a {
    font-size: 20px;
  }
  .menu-logo small {
    font-size: 13px;
    letter-spacing: 0;
  }
  .sns-btn {
    font-size: 14px;
  }
}

.footer-content {
  padding: 121px 40px 196px;
  margin-bottom: -144px;
  font-size: 30px;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 600;
  color: #FFF;
  background: url(../images/footer_bg01.png) 50% 50% / cover no-repeat;
}
.footer-btns {
  display: flex;
  margin-top: 80px;
  justify-content: center;
  gap: 0 64px;
}
.footer-menu-wrap {
  position: relative;
  padding: 224px 40px 58px;
  background: url(../images/footer_bg02.png) 50% 50% / 100% 100% no-repeat;
  z-index: 1;
}
.footer-menu-inner {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  gap: 0 24px;
}
.footer-logo {
  display: block;
  margin-bottom: 22px;
  font-size: 25px;
  font-weight: 800;
}
.footer-logo small {
  display: block;
  margin-top: 1px;
  font-size: 16px;
  letter-spacing: 0.3px;
}
.footer-logo-wrap .sns-btn {
  font-weight: 700;
  gap: 0 14px;
}
.footer-menu-list ul {
  display: flex;
  margin-bottom: 24px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2px;
  gap: 40px;
  justify-content: flex-end;
}
.footer-menu-list ul li a {
  display: flex;
  align-items: center;
  gap: 0 7px;
}
.copyright {
  padding: 24px;
  margin-top: -1px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 2px;
  background: #FFCAC9;
}

@media screen and (max-width: 1380px) and (min-width: 768px) {
  .footer-menu-wrap {
    background-size: auto 100%;
  }
  .footer-menu-list ul {
    margin-bottom: 10px;
    font-size: 15px;
    gap: 0 20px;
    flex-wrap: wrap;
  }
  .footer-logo {
    font-size: 20px;
    white-space: nowrap;
  }
  .footer-logo small {
    font-size: 12.7px;
  }
  .footer-logo-wrap .sns-btn {
    font-size: 13px;
  }
  .footer-logo-wrap .sns-btn span {
    width: 20px;
  }
  .footer-logo-wrap .sns-btn {
    font-size: 13px;
    letter-spacing: -1px;
    gap: 0 10px;
  }
  .copyright {
    padding: 12px;
    font-size: 11px;
  }
}

@media screen and (max-width: 767px) {
  .footer-content {
    padding: 60px 15px 76px;
    margin-bottom: -64px;
    background-image: url(../images/footer_bg01_sp.png);
  }
  .footer-content > p {
    display: block;
    font-size: 18px;
  }
  .footer-btns {
    max-width: 100%;
    margin: 120px auto 30px;
    gap: 14px;
  }
  .footer-btns .awa-btn {
    font-size: 15px;
  }
  .footer-menu-wrap {
    padding: 94px 15px 28px;
    background-image: url(../images/footer_bg02_sp.png);
  }
  .footer-menu-inner {
    flex-direction: column-reverse;
    justify-content: center;
  }
  .footer-menu-list ul {
    display: block;
    margin-bottom: 48px;
    font-size: 15px;
  }
  .footer-menu-list ul.pc {
    display: none;
  }
  .footer-menu-list ul li a {
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
  }
  .footer-logo {
    margin-bottom: 13px;
    font-size: 17px;
    text-align: center;
  }
  .footer-logo small {
    margin-top: 2px;
    font-size: 11px;
    letter-spacing: 0.1px;
  }
  .footer-logo-wrap .sns-btn {
    max-width: 220px;
    padding: 6px 15px;
    margin: 0 auto 20px;
    font-size: 15px;
    gap: 0 7px;
    letter-spacing: -2.2px;
  }
  .footer-logo-wrap .sns-btn span {
    display: block;
    width: 18px;
    min-width: 18px;
    font-size: 0;
  }
  .copyright {
    padding: 8px;
    font-size: 8px;
    letter-spacing: 0;
  }
  .footer-logo-wrap .footer-menu-list ul {
    display: flex;
    margin: 0;
    font-size: 10px;
    justify-content: center;
    letter-spacing: 1px;
    gap: 0 11px;
  }
  .footer-logo-wrap .footer-menu-list ul a {
    margin-bottom: 0;
    gap: 0 4px;
  }
  .footer-logo-wrap .footer-menu-list ul a svg {
    width: 10px;
  }
}

.kv-area {
  display: flex;
  max-width: 1480px;
  padding: 120px 40px;
  margin: 0 auto;
  align-items: center;
}
.kv-title {
  padding-bottom: 160px;
  font-size: 48px;
  font-weight: 700;
  color: #163060;
  white-space: nowrap;
}
.kv-title small {
  display: block;
  font-size: 30px;
}
.kv-title span {
  color: #F89191;
}
.kv-img {
  width: 100%;
  margin-right: -7vw;
  margin-left: -5vw;
  text-align: right;
}

.content1 {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1.8;
}
.f-sec-title {
  display: block;
  margin-bottom: 32px;
  font-size: 0;
}
.f-about {
  margin-bottom: 146px;
}
.f-about-content {
  display: flex;
  margin-bottom: 56px;
  align-items: flex-start;
}
.f-about-txt {
  width: 50%;
}
.f-about-txt .f-title {
  margin-bottom: 44px;
}
.f-about-txt .f-txt .c-pink {
  line-height: 2;
}
.f-about-youtube {
  position: relative;
  width: 50%;
}
.f-about-youtube iframe {
  position: absolute;
  top: 0;
  left: 50px;
  width: calc(100% - 50px);
  height: 100%;
}
.f-about-youtube::before {
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 52%;
}
.content-btn {
  display: flex;
  justify-content: center;
}
.c-pink {
  color: #E87474;
}

.f-features {
  margin-bottom: 190px;
}
.f-features .f-sec-title {
  text-align: center;
}
.f-title {
  font-size: 30px;
  font-weight: 700;
}
.f-features .f-title {
  margin-bottom: 106px;
  text-align: center;
}
.f-features-inner {
  display: flex;
  margin-bottom: 114px;
}
.f-features-slide-wrap {
  position: relative;
  width: 50%;
}
.f-features-content {
  width: 50%;
  padding-left: 40px;
  font-weight: bold;
}
.f-features-title {
  margin-bottom: 20px;
}
.f-features-title span {
  display: inline-block;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 30px;
  line-height: 1;
  color: #E87474;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 5px;
}
.f-features-title span:first-child {
  padding-left: 0;
}
.f-features-slide-wrap .swiper {
  border-radius: 20px;
  overflow: hidden;
}
.f-features-slide-wrap .swiper-slide img {
  width: 100%;
  height: 26vw;
  max-height: 380px;
  object-fit: cover;
}
.f-features-slide-wrap .swiper.slider-thumbnail {
  width: 50%;
  margin: 0 -9px 0 0;
  border-radius: 0;
}
.f-features-slide-wrap .slider-thumbnail .swiper-slide img {
  height: 6.5vw;
  max-height: 94px;
  border-radius: 15px;
}
.f-features-slide-wrap .slider-thumbnail .swiper-slide {
  padding: 0 9px;
}
.f-features-slide-wrap .swiper-under-wrap {
  display: flex;
  margin-top: 24px;
  justify-content: space-between;
  align-items: center;
}
.f-features-slide-wrap .swiper-controller {
  display: flex;
  width: 50%;
  max-width: 188px;
  align-items: center;
  gap: 0 24px;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after,
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: none;
}
.f-features-slide-wrap .swiper-button-next, 
.f-features-slide-wrap .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 62px;
  height: 48px;
  margin: 0;
}
.f-features-slide-wrap .swiper-button-next {
  order: 2;
}
.f-features-slide-wrap .swiper-pagination {
  position: relative;
  left: auto;
  bottom: auto;
  width: auto;
  order: 1;
}
.f-features-slide-wrap .swiper-pagination span {
  display: block;
}
.f-features-slide-wrap .swiper-pagination span:first-child {
  border-bottom: 1px solid;
}

.content2 {
  padding: 0 40px 258px;
  background: url(../images/top_bg02.png) 50% 8% / 100% auto no-repeat;
}
.f-staff {
  max-width: 1400px;
  margin: 0 auto 124px;
}
.f-staff .f-sec-title {
  font-size: 0;
  text-align: center;
}
.f-staff .f-title {
  margin-bottom: 126px;
  text-align: center;
}
.f-staff-list {
  display: flex;
  margin-bottom: 70px;
  justify-content: center;
  gap: 0 8px;
}

.f-faq {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  gap: 0 120px;
}
.f-faq-rt {
  white-space: nowrap;
}
.f-faq-main {
  width: 100%;
}
.faq-item {
  margin-bottom: 20px;
  background: #FFF;
  border: 2px solid #FFF;
  border-radius: 26px;
  overflow: hidden;
}
.faq-item.active {
  border: 1px solid #FFF4F4;
}
.faq-q,
.faq-a-inner {
  display: flex;
  padding: 20px 34px;
  font-size: 20px;
  font-weight: 700;
  align-items: center;
  gap: 0 20px;
}
.faq-q {
  background: #FFF4F4;
  border-radius: 26px;
}
.faq-a {
  display: none;
}
.faq-icon {
  min-width: 26px;
}

@media screen and (max-width: 980px) and (min-width: 768px) {
  .kv-title {
    position: relative;
    font-size: 28px;
    z-index: 1;
  }
  .kv-title span {
    font-size: 36px;
  }
  .kv-img {
    margin-left: -42vw;
  }
  .f-about-content {
    display: block;
  }
  .f-about-txt {
    width: 100%;
  }
  .f-about-youtube {
    width: 100%;
    max-width: 480px;
    margin: 40px auto 0;
  }
  .f-about-youtube iframe {
    left: 0;
    width: 100%;
  }

  .f-features-inner {
    display: block;
  }
  .f-features-slide-wrap {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 30px;
  }
  .f-features-content {
    width: 100%;
    padding: 0;
  }

  .f-features-slide-wrap .swiper-slide img {
    height: 37vw;
  }
  .f-features-slide-wrap .slider-thumbnail .swiper-slide img {
    height: 8vw;
  }

  .f-faq {
    gap: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  main.front-page {
    background-image: url(../images/top_bg01_sp.png);
  }

  .kv-area {
    position: relative;
    padding: 140px 0 120px 44px;
  }
  .kv-img {
    width: 100%;
    min-width: 449px;
    margin: 0;
  }
  .kv-title {
    position: absolute;
    top: 202px;
    left: 10px;
    padding: 0;
    margin: 0;
    font-size: 24px;
    letter-spacing: 2px;
  }
  .kv-title span {
    font-size: 30px;
  }
  .kv-title small {
    margin-top: 34px;
    font-size: 15px;
  }

  .content1 {
    padding: 0 25px;
    font-size: 13px;
  }
  .f-sec-title {
    margin-bottom: 16px;
  }
  .f-about-content {
    display: block;
    margin-bottom: 35px;
  }
  .f-about-txt {
    width: 100%;
    margin-bottom: 35px;
  }
  .f-title {
    margin-bottom: 34px;
    font-size: 20px;
  }
  .f-txt .c-pink {
    font-size: 15px;
  }
  .content-btn .awa-btn {
    width: 136px;
    height: 102px;
    font-size: 15px;
  }
  .f-about {
    margin-bottom: 90px;
  }
  .f-about-txt .f-title {
    margin-bottom: 34px;
  }
  .f-about-youtube {
    width: 100%;
  }
  .f-about-youtube::before {
    padding-top: 56%;
  }
  .f-about-youtube iframe {
    left: 0;
    width: 100%;
  }

  .f-features .f-sec-title {
    display: flex;
    justify-content: center;
  }
  .f-features .f-title {
    margin-bottom: 70px;
  }
  .f-features-inner {
    display: block;
    margin-bottom: 52px;
  }
  .f-features-slide-wrap {
    width: 100%;
    margin-bottom: 18px;
  }
  .f-features-content {
    width: 100%;
    padding: 0;
  }
  .f-features-title span {
    padding: 8px 6px;
    margin-bottom: 4px;
    font-size: 20px;
  }
  .f-features-content > p {
    font-size: 13px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.7px;
  }
  .f-features {
    margin-bottom: 0;
  }

  .f-features-slide-wrap .swiper-under-wrap {
    margin: 0;
  }
  .f-features-slide-wrap .slider-thumbnail {
    display: none;
  }
  .f-features-slide-wrap .swiper-button-next,
  .f-features-slide-wrap .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 30px;
    transform: translateY(-50%);
  }
  .f-features-slide-wrap .swiper-button-prev {
    left: -20px;
  }
  .f-features-slide-wrap .swiper-button-next {
    right: -20px;
  }
  .f-features-slide-wrap .swiper-pagination {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 2px 4px 0 7px;
    background: #FFF4F4;
    border-radius: 10px 0 20px 0;
  }
  .f-features-slide-wrap .swiper-slide img {
    height: 50vw;
  }

  .content2 {
    padding: 156px 25px 113px;
    background: url(../images/top_bg02_sp.png) 50% 90px / cover no-repeat;
  }
  .f-staff .f-sec-title {
    display: flex;
    justify-content: center;
  }
  .f-staff .f-title {
    margin-bottom: 64px;
  }
  .f-staff-list {
    display: block;
    margin-bottom: 68px;
  }
  .f-staff-item:first-child {
    margin-bottom: 6px;
  }
  .f-staff-item:nth-child(2) {
    margin-bottom: 32px;
  }
  .f-staff-list img {
    margin: 0 auto;
  }

  .f-faq {
    display: block;
  }
  .f-faq-rt {
    text-align: center;
  }
  .f-faq-rt .f-sec-title {
    display: flex;
    margin-bottom: 13px;
    justify-content: center;
  }
  .faq-item {
    margin-bottom: 14px;
    border: 3px solid #FFF;
    /*box-shadow: 0 -3px 0 #fff,3px 0 0 #fff,0 3px 0 #fff,-3px 0 0 #fff;*/
    border-radius: 15px;
  }
  .faq-item.active {
    border: 2px solid #FFF4F4;
  }
  .faq-q,
  .faq-a-inner {
    padding: 20px 13px;
    font-size: 15px;
    letter-spacing: 1px;
    gap: 0 18px;
  }
  .faq-q {
    border-radius: 15px;
  }
  .faq-icon {
    display: block;
    width: 18px;
    min-width: 18px;
    font-size: 0;
  }
  .faq-a-inner {
    padding: 11px 13px 20px;
  }
}

/*====================================================*/
/*====================================================*/

.not-found-content {
  padding: 280px 40px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  background: url(../images/page_bg01.png) 50% 50% / 100% auto no-repeat;
}
.not-found-title {
  display: block;
  font-size: 40px;
  font-weight: 800;
  color: #E87474;
}
.not-found > p {
  display: block;
  margin: 32px 0 48px;
}

@media screen and (max-width: 767px) {
  .not-found-content {
    padding: 160px 25px 120px;
    font-size: 15px;
    line-height: 2;
    background-image: url(../images/page_bg01_sp.png);
  }
  .not-found-title {
    font-size: 28px;
  }
  .not-found > p {
    margin: 18px 0 48px;
  }
}

/*====================================================*/
/*====================================================*/

.page-kv {
  position: relative;
}
.page-kv-img {
  font-size: 0;
}
.page-kv-img img {
  width: 100%;
  min-height: 560px;
  max-height: 640px;
  object-fit: cover;
}
.page-title {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  max-width: 1480px;
  padding: 0 40px;
  font-size: 48px;
  letter-spacing: 3px;
  text-align: left;
  color: #FFF;
  transform: translateX(-50%) translateY(-50%);
}
.page-content {
  position: relative;
  padding: 190px 0 160px;
  margin-top: -156px;
  background: url(../images/page_bg02.png) 50% 0 / cover no-repeat;
  z-index: 1;
}
.page-item {
  position: relative;
  z-index: 1;
}
.page-item-title {
  margin-bottom: 95px;
  text-align: center;
}
.page-wrap {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}
.dt-title {
  position: relative;
  padding-left: 24px;
  margin-bottom: 54px;
  font-size: 30px;
}
.dt-title::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 11px;
  height: 11px;
  background: #E87474;
  border-radius: 50%;
}
.daycare-list {
  padding: 0 94px;
  margin-bottom: 90px;
}
.daycare-item {
  display: flex;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 3px dotted #D1C7C7;
  align-items: flex-start;
  gap: 0 64px;
}
.daycare-img-wrap {
  width: 39%;
  min-width: 39%;
}
.daycare-img {
  border-radius: 20px;
  overflow: hidden;
}
.daycare-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.daycare-info {
  width: 100%;
}
.daycare-name {
  display: block;
  margin: 20px 0 42px;
  font-size: 25px;
  color: #E87474;
  font-weight: 700;
}
.daycare-detail {
  margin-bottom: 80px;
}
.daycare-detail dl {
  display: flex;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  gap: 0 36px;
}
.daycare-detail dl dt {
  width: 60px;
  min-width: 60px;
  font-weight: 600;
}
.daycare-btns {
  display: flex;
  justify-content: flex-end;
  font-size: 20px;
  font-weight: 600;
  color: #163060;
  gap: 0 26px;
}
.line-btn,
input[type="submit"] {
  display: block;
  padding: 13px 48px;
  font-size: 20px;
  font-weight: 700;
  color: #163060;
  background: #FFF;
  border: 2px solid #163060;
  border-radius: 50px;
}
.item-daycare {
  margin-bottom: 180px;
}
.page-content::before {
  content: "";
  position: absolute;
  top: 944px;
  left: 0;
  width: 100%;
  height: calc(100% - 944px);
  background: url(../images/page_bg01.png) 50% 0 / 100% auto repeat-y;
}

@media screen and (min-width: 1200px) {
  .page-content {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 1380px) and (min-width: 768px) {
  .page-title {
    font-size: 40px;
  }
  .daycare-list {
    padding: 0;
  }
  .daycare-item {
    gap: 0 24px;
  }
  .daycare-detail {
    margin-bottom: 40px;
  }
  .daycare-detail dl {
    font-size: 16px;
    line-height: 1.5;
    gap: 0 16px;
  }
  .daycare-btns {
    display: block;
  }
  .daycare-btns .line-btn {
    margin-bottom: 12px;
    font-size: 16px;
    text-align: center;
  }
  .item-daycare {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .page-kv-img img {
    max-height: none;
    min-height: 414px;
  }
  .page-title {
    top: 55%;
    padding: 0 10px;
    font-size: 25px;
  }
  .page-item-title .f-sec-title img {
    margin: 0 auto;
  }
  .page-content {
    padding: 62px 0 108px;
    margin-top: -55px;
    background: url(../images/page_bg02_sp.png) 50% 0 / 100% auto no-repeat;
  }
  .page-item-title {
    margin-bottom: 80px;
  }
  .page-wrap {
    padding: 0 25px;
  }
  .dt-title {
    padding-left: 13px;
    margin-bottom: 50px;
    font-size: 20px;
  }
  .dt-title::before {
    top: 14px;
    width: 7px;
    height: 7px;
  }
  .daycare-list {
    padding: 0;
    margin-bottom: 0;
  }
  .daycare-item {
    display: block;
    padding-bottom: 38px;
    margin-bottom: 38px;
  }
  .daycare-item:last-child {
    margin-bottom: 0;
  }
  .daycare-img-wrap {
    width: 100%;
    min-width: auto;
    margin-bottom: 20px;
  }
  .daycare-name {
    margin: 0 0 20px;
    font-size: 20px;
  }
  .daycare-detail {
    margin-bottom: 38px;
  }
  .daycare-detail dl {
    font-size: 15px;
    gap: 0 17px;
  }
  .daycare-detail dl dt {
    width: 45px;
    min-width: 45px;
  }
  .daycare-btns {
    display: block;
    max-width: 183px;
    margin: 0 auto;
    font-size: 15px;
  }
  .line-btn,
  input[type="submit"] {
    width: 100%;
    margin-bottom: 14px;
    padding: 18px 20px;
    font-size: 15px;
    text-align: center;
    line-height: 1;
  }
  .daycare-btns .line-btn:last-child {
    margin-bottom: 0;
  }
  .item-daycare {
    margin-bottom: 0;
  }

  .page-content::before {
    top: 751px;
    height: calc(100% - 751px);
    background-image: url(../images/page_bg01_sp.png);
  }
}

.about-title {
  display: block;
  margin-bottom: 40px;
  font-size: 30px;
}
.about-sub-title {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 700;
}
.about-txt {
  margin-bottom: 66px;
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
.about-img-list {
  display: flex;
  margin-bottom: 130px;
  gap: 0 22px;
}
.about-detail dl {
  padding: 74px 0 64px;
  font-size: 20px;
  font-weight: 700;
  line-height: 2.1;
  border-bottom: 3px dotted #D1C7C7;
}
.about-detail dl dt {
  margin-bottom: 64px;
  font-size: 30px;
  line-height: 1;
}
.page-item.about-item {
  margin-bottom: 140px;
}
.page-item.about-features-item {
  margin-bottom: 202px;
}
.about-support-item .page-item-title {
  margin-bottom: 254px;
}
.support-list {
  display: flex;
  margin-bottom: -185px;
  flex-wrap: wrap;
  justify-content: center;
}
.support-item {
  position: relative;
  width: 31.5%;
  margin-right: 2%;
  margin-bottom: 185px;
  padding: 90px 50px 70px;
  font-size: 18px;
  color: #4B3E3E;
  font-weight: 600;
  line-height: 2.2;
  background: #ffefef;
  border-radius: 20px;
  filter: drop-shadow( 1px  0 0 #ffefef) drop-shadow(-1px  0 0 #ffefef) drop-shadow( 0  1px 0 #ffefef) drop-shadow( 0 -1px 0 #ffefef);;
}
.support-icon {
  position: absolute;
  top: -16px;
  left: 50%;
  width: 208px;
  height: 208px;
  padding: 32px;
  background: #ffefef;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.support-title {
  margin-bottom: 40px;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
}
.support-item:nth-child(3n),
.support-item:last-child {
  margin-right: 0;
}
.ideal-content {
  padding: 88px 0 182px;
  background: #FFF4F4;
}
.ideal-content .page-item-title {
  margin-bottom: 108px;
}
.ideal-list {
  display: flex;
  gap: 0 30px;
}
.ideal-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.ideal-img {
  position: relative;
}
.ideal-img::before {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -1px;
  right: -1px;
  height: 64.3%;
  max-height: 261px;
  background: url(../images/img_overlay.png) 0 100% / auto 100% repeat-x;
}
.ideal-t {
  position: absolute;
  display: flex;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 38.9%;
  max-height: 158px;
  font-size: 20px;
  text-align: center;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 980px) and (min-width: 768px) {
  .support-item,
  .support-item:nth-child(3n) {
    width: 49%;
    padding: 80px 30px 64px;
    margin-right: 2%;
  }
  .support-item:nth-child(2n) {
    margin-right: 0;
  }
  .support-icon {
    width: 190px;
    height: 190px;
    padding: 28px;
  }
  .ideal-content .page-item-title {
    margin-bottom: 80px;
  }
  .ideal-list {
    gap: 0 10px;
  }
  .ideal-t {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .about-title {
    margin-bottom: 34px;
    font-size: 20px;
  }
  .about-sub-title {
    font-size: 15px;
    margin-bottom: 36px;
  }
  .about-txt {
    margin-bottom: 36px;
    font-size: 15px;
  }
  .about-img-list {
    padding: 0 25px 5px;
    margin: 0 -25px 100px;
    gap: 0 12px;
    overflow-x: auto;
  }
  .about-img-item {
    min-width: 231px;
  }

  .about-detail dl {
    padding: 43px 0;
    font-size: 15px;
  }
  .about-detail dl dt {
    margin-bottom: 32px;
    font-size: 20px;
  }
  .page-item.about-item {
    margin-bottom: 150px;
  }
  .page-item.about-features-item {
    margin-bottom: 124px;
  }

  .about-support-item .page-item-title {
    margin-bottom: 193px;
  }
  .support-list {
    margin: 0;
    gap: 128px 0;
  }
  .support-item,
  .support-item:nth-child(3n),
  .support-item:last-child {
    width: 100%;
    min-height: 250px;
    padding: 70px 36px 36px;
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
  }
  .support-icon {
    top: -12px;
    width: 154px;
    height: 154px;
    padding: 26px;
  }
  .support-title {
    margin-bottom: 34px;
    font-size: 19px;
    letter-spacing: 2px;
  }

  .ideal-content {
    padding: 52px 0 120px;
  }
  .ideal-content .page-item-title {
    margin-bottom: 80px;
  }
  .ideal-list {
    display: block;
  }
  .ideal-item {
    margin-bottom: 25px;
  }
  .ideal-img::before {
    min-height: 190px;
  }
  .ideal-t {
    min-height: 106px;
    font-size: 15px;
    line-height: 1.4;
  }
}

.search-form {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto 100px;
}
.search-inner {
  padding: 30px;
  margin-bottom: 30px;
  font-size: 20px;
  color: #163060;
  font-weight: 600;
  line-height: 1.4;
  background: #FDF1F1;
  border-radius: 10px;
}
.search-title {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.2;
  color: #4B3E3E;
}
.search-items {
  display: flex;
  gap: 12px 36px;
}
.search-items.lock {
  pointer-events: none;
}
.search-items label span {
  position: relative;
  padding-left: 30px;
}
.search-items label span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #163060;
  border-radius: 3px;
}
.search-items label span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 12px;
  height: 12px;
  background: url(../images/check.png) 50% 50% / contain no-repeat;
  transform: scale(0);
}
.search-items label input:checked + span::after {
  transform: scale(1);
}
.search-info {
  font-size: 30px;
  font-weight: 700;
}

.page-recruitment .daycare-name {
  margin-bottom: 23px;
}
.daycare-list.hode {
  display: none;
}
.daycare-load {
  display: none;
}
.daycare-load.active {
  display: block;
  padding: 20px 0 200px;
  font-size: 24px;
  text-align: center;
  font-weight: 700;
}
.daycare-detail table {
  width: 100%;
}
.daycare-detail table th {
  padding: 23px 0;
  font-size: 20px;
  text-align: left;
  color: #163060;
  white-space: nowrap;
  vertical-align: top;
  border-bottom: 1px solid #E2E2E2;
}
.daycare-detail table td {
  padding: 23px 0 15px 54px;
  font-size: 20px;
  font-weight: 600;
  vertical-align: top;
  border-bottom: 1px solid #E2E2E2;
}
.daycare-detail table td small {
  display: block;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 2px;
}
.daycare-detail table tr:last-child th,
.daycare-detail table tr:last-child td {
  border: none;
}
.daycare-detail table td .google-link {
  display: block;
  color: #E87474;
  text-decoration: underline;
}
.daycare-tags {
  margin-top: 18px;
}
.daycare-tags ul {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.daycare-tags ul li {
  padding: 10px 14px;
  font-size: 15px;
  line-height: 1;
  color: #E87474;
  border: 1px solid #E87474;
  border-radius: 40px;
  white-space: nowrap;
}

.detail-content {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}
.detail-title {
  margin-bottom: 95px;
  font-size: 30px;
  color: #E87474;
}
.detail-inner {
  padding: 0 90px;
}
.detail-top {
  padding-bottom: 38px;
  margin-bottom: 66px;
  border-bottom: 3px dotted #D1C7C7;
}
.detail-gallery {
  position: relative;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.detail-gallery-list .the-gallery {
  width: 30%;
  max-width: 395px;
}
.the-gallery img {
  width: 100%;
  border-radius: 20px;
}
.detail-gallery-sp {
  position: relative;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}
.detail-introduction {
  margin-top: 36px;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 600;
}
.detail-introduction h3 {
  margin-bottom: 34px;
  font-size: 25px;
  line-height: 1.8;
}
.detail-introduction strong {
  color: #E87474;
}
.detail-inner-title {
  margin-bottom: 38px;
  text-align: center;
}
.detail-main .daycare-detail {
  margin-bottom: 104px;
}
.daycare-other-info {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  color: #163060;
}
.detail-btn {
  display: flex;
  margin-bottom: 30px;
  justify-content: center;
}
.detail-btn a {
  display: flex;
  width: 100%;
  max-width: 324px;
  height: 82px;
  font-size: 25px;
  letter-spacing: 2px;
  color: #FFF;
  background: #163060;
  border-radius: 80px;
  align-items: center;
  justify-content: center;
}
.contact-box {
  width: 100%;
  max-width: 525px;
  padding: 32px;
  margin: 28px auto 0;
  background: #EAECF1;
  border-radius: 20px;
}
.contact-box dl {
  display: flex;
  margin-bottom: 10px;
  justify-content: center;
}
.contact-box dl:last-child {
  margin-bottom: 0;
}

.detail-gallery-sp .swiper-under-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.detail-gallery-sp .swiper-controller {
  display: flex;
  width: 50%;
  max-width: 188px;
  align-items: center;
  gap: 0 24px;
}
.detail-gallery-sp .swiper-button-next, 
.detail-gallery-sp .swiper-button-prev {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 62px;
  height: 48px;
  margin: 0;
}
.detail-gallery-sp .swiper-button-next {
  order: 2;
}
.detail-gallery-sp .swiper-pagination {
  position: relative;
  left: auto;
  bottom: auto;
  width: auto;
  order: 1;
}
.detail-gallery-sp .swiper-pagination span {
  display: block;
}
.detail-gallery-sp .swiper-pagination span:first-child {
  border-bottom: 1px solid;
}

@media screen and (max-width: 980px) and (min-width: 768px) {
  .search-items {
    flex-wrap: wrap;
  }
  .detail-inner {
    padding: 0 20px;
  }
  .daycare-other-info {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .search-form {
    padding: 0 10px;
    margin-bottom: 76px;
  }
  .search-inner {
    padding: 20px 15px;
    margin-bottom: 26px;
  }
  .search-title {
    font-size: 20px;
  }
  .search-items {
    display: block;
  }
  .search-items label {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }
  .search-items label:last-child {
    margin-bottom: 0;
  }
  .search-items label span {
    padding-left: 23px;
    font-size: 15px;
  }
  .search-items label span::before {
    top: -2px;
    width: 16px;
    height: 16px;
  }
  .search-items label span::after {
    top: 2px;
    left: 4px;
  }
  .daycare-img-wrap {
    margin-bottom: 14px;
  }
  .search-info {
    padding: 0 15px;
    font-size: 20px;
  }
  .daycare-tags {
    margin-top: 14px;
  }
  .daycare-tags ul {
    gap: 5px;
  }
  .daycare-tags ul li {
    padding: 7px 12px;
    font-size: 12px;
  }
  .page-recruitment .daycare-name {
    margin-bottom: 4px;
    line-height: 1.2;
  }
  .daycare-detail table th {
    font-size: 15px;
  }
  .daycare-detail table td {
    padding-left: 26px;
    font-size: 15px;
  }
  .daycare-detail table td small {
    font-size: 12px;
  }
  .daycare-detail {
    margin-bottom: 16px;
  }

  .detail-content {
    padding: 0 25px;
  }
  .detail-title {
    margin-bottom: 38px;
    font-size: 20px;
    line-height: 1.1;
  }
  .detail-inner {
    padding: 0;
  }
  .detail-gallery-sp {
    height: auto;
    pointer-events: auto;
    overflow: inherit;
  }
  .detail-gallery {
    border-radius: 15px;
    overflow: hidden;
  }
  .detail-gallery-sp .swiper-button-next,
  .detail-gallery-sp .swiper-button-prev {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 30px;
    transform: translateY(-50%);
  }
  .detail-gallery-sp .swiper-button-prev {
    left: -20px;
  }
  .detail-gallery-sp .swiper-button-next {
    right: -20px;
  }
  .detail-gallery-sp .swiper-pagination {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 2px 4px 0 7px;
    background: #FFF4F4;
    border-radius: 10px 0 20px 0;
  }

  .detail-introduction {
    margin-top: 30px;
    font-size: 15px;
    line-height: 1.8;
  }
  .detail-introduction h3 {
    font-size: 18px;
  }
  .detail-top {
    padding-bottom: 30px;
    margin-bottom: 70px;
  }
  .detail-inner-title {
    margin-bottom: 50px;
    font-size: 20px;
  }
  .detail-main .daycare-detail table th {
    display: block;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: none;
  }
  .detail-main .daycare-detail table td {
    display: block;
    width: 100%;
    padding: 0 0 23px;
    border-top: none;
  }
  .detail-main .daycare-detail {
    margin-bottom: 63px;
  }
  .daycare-other-info {
    font-size: 15px;
  }
  .detail-btn {
    margin-bottom: 43px;
  }
  .detail-btn a {
    max-width: 183px;
    height: 50px;
    font-size: 15px;
  }
  .contact-box {
    padding: 26px 16px;
    margin-top: 30px;
  }
}

.page-contact .page-content::before {
  content: none;
}
.item-contact-form {
  max-width: 1480px;
  padding: 0 40px;
  margin: 0 auto;
}
.form-inner .point {
  display: block;
  margin-bottom: 100px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 2px;
}
.must {
  color: #ED4545;
}
.form-table {
  padding: 0 90px;
}
.form-inner-title {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}
input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"],
input[type="password"],
select,
textarea {
  width: 100%;
  max-width: 448px;
  height: 42px;
  padding: 0 16px;
  background: #FEF4F4;
  border-radius: 5px;
}
textarea {
  max-width: 100%;
  height: 434px;
  padding: 12px 16px;
}
.item-select {
  position: relative;
  max-width: 448px;
}
.item-select::after {
  content: "▼";
  position: absolute;
  top: 50%;
  right: 15px;
  font-size: 12px;
  line-height: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
.form-table-item:not(:last-child) {
  margin-bottom: 18px;
}
.item-qualification label span {
  position: relative;
  padding-left: 30px;
}
.item-qualification label span::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #4B3E3E;
  border-radius: 3px;
}
.item-qualification label span::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 6px;
  width: 12px;
  height: 12px;
  background: url(../images/check_b.png) 50% 50% / contain no-repeat;
  transform: scale(0);
}
.item-qualification label input:checked + span::after {
  transform: scale(1);
}
.form-btns {
  display: flex;
  gap: 30px;
  justify-content: center;
}
input[type="submit"] {
  width: 100%;
  max-width: 325px;
}
.thanks-txt {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.thanks-btn {
  display: flex;
  margin-top: 138px;
  justify-content: center;
}
.thanks-btn .line-btn {
  width: 100%;
  max-width: 325px;
  text-align: center;
}
.mw_wp_form_confirm .item-select::after {
  content: none;
}

@media screen and (max-width: 980px) and (min-width: 768px) {
  .form-table {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .item-contact-form {
    padding: 0 25px;
  }
  .thanks-txt {
    font-size: 15px;
  }
  .thanks-btn {
    margin-top: 48px;
  }
  .form-inner .point {
    margin-bottom: 48px;
    font-size: 15px;
    letter-spacing: 1px;
  }
  .form-table {
    padding: 0;
  }
  .form-table.daycare-detail table th {
    display: block;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: none;
  }
  .form-table.daycare-detail table td {
    display: block;
    width: 100%;
    padding: 0 0 23px;
    border-top: none;
  }
  .item-qualification label:last-child {
    margin-bottom: 0;
  }
  .item-qualification label span {
    padding-left: 23px;
    font-size: 15px;
  }
  .item-qualification label span::before {
    top: -2px;
    width: 16px;
    height: 16px;
  }
  .item-qualification label span::after {
    top: 2px;
    left: 4px;
  }
  .form-btns {
    margin: 40px 0 0;
    gap: 15px;
  }
}

@media screen and (max-width: 1640px) and (min-width: 768px) {
  .kv-area,
  .content1,
  .page-wrap,
  .search-form,
  .item-contact-form {
    max-width: 1240px;
  }
  .f-staff,
  .f-faq {
    max-width: 1160px;
  }
}

.staff-img {
  width: 33%;
  min-width: 33%;
}
.staff-info {
  padding-top: 94px;
  font-size: 20px;
  font-weight: 700;
}
.staff-title {
  margin-bottom: 20px;
  font-size: 30px;
  color: #E87474;
  line-height: 1.4;
}
.staff-name {
  display: block;
  margin-bottom: 26px;
  font-size: 25px;
  color: #E87474;
}
.staff-info .daycare-btns {
  margin-top: 88px;
}
.staff-info .daycare-btns .line-btn {
  width: 100%;
  max-width: 243px;
  text-align: center;
  line-height: 1.3;
}

.staff-top {
  display: flex;
  margin-bottom: 70px;
  align-items: flex-start;
  gap: 0 50px;
}
.staff-top .staff-info {
  padding-top: 64px;
}
.staff-top .staff-title {
  font-size: 30px;
}
.staff-top .staff-img {
  width: 35%;
  min-width: 35%;
}
.staff-interview {
  margin-bottom: 120px;
}
.staff-interview-item {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 2.5px;
}
.staff-interview-q {
  margin-bottom: 20px;
  font-size: 25px;
  color: #E87474;
}
.staff-interview .daycare-item {
  padding-bottom: 70px;
  margin-bottom: 70px;
}
.detail-btn a.line-btn {
  color: #163060;
  background: #FFF;
}

@media screen and (max-width: 980px) and (min-width: 768px) {
  .staff-info {
    padding-top: 56px;
  }
  .staff-img {
    width: 45%;
    min-width: 45%;
  }
  .staff-title {
    font-size: 30px;
  }
  .staff-info .daycare-btns .line-btn {
    margin-left: auto;
  }

  .staff-top .staff-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .staff-img {
    width: 100%;
  }
  .staff-info {
    padding-top: 30px;
    font-size: 15px;
  }
  .staff-title {
    margin-bottom: 20px;
    font-size: 20px;
  }
  .staff-name {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .staff-info .daycare-btns {
    margin-top: 32px;
  }

  .staff-top {
    display: block;
    margin-bottom: 48px;
  }
  .staff-top .staff-img {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .staff-top .staff-info {
    padding: 24px 0 0;
  }
  .staff-top .staff-title {
    font-size: 20px;
  }
  .staff-interview {
    margin-bottom: 64px;
  }
  .staff-interview .daycare-item {
    padding-bottom: 38px;
    margin-bottom: 38px;
  }
  .staff-interview-item {
    font-size: 15px;
  }
  .staff-interview-q {
    font-size: 18px;
  }
}

@media screen and (max-width: 1480px) and (min-width: 768px) {
  .about-txt,
  .about-detail dl,
  .support-item,
  .content1,
  .daycare-detail dl,
  .line-btn,
  input[type="submit"],
  .daycare-detail table th,
  .daycare-detail table td {
    font-size: 16px;
  }
  .support-title {
    font-size: 25px;
  }
  .daycare-name {
    font-size: 20px;
  }
  .detail-introduction {
    font-size: 18px;
  }
}

.movie-list .movie-img {
  max-width: 240px;
  border-radius: 10px;
  overflow: hidden;
}
.movie-list .daycare-item {
  align-items: center;
}
.detail__video {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto 30px;
  overflow: hidden;
}
.detail__video::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 64%;
}
.detail__video iframe,
.detail__video video,
.detail__video img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.movie-info {
  max-width: 640px;
  margin: 0 auto 80px;
}