@charset "UTF-8";

:root {
  --primary: #30c8a8;
  --secondary: #fbfaef;
  --tertiary: #fa9785;
}

/* Logo */
.u-logo {
  display: flex;
  align-items: center;
  color: #313131;
  font-size: 30px;
  font-size: 3rem;
  font-weight: 500;
  padding-left: 2.2em;
  position: relative;
}
.u-logo:before {
  content: "\e907";
  color: #210074;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  font-size: 54px;
  font-size: 5.4rem;
  line-height: 1;
}
.u-logo_name {
  display: block;
  line-height: 1.2;
}
.u-logo_name_small {
  display: block;
  line-height: 1;
  font-size: 18px;
  font-size: 1.8rem;
}
@media only screen and (max-width: 1200px) {
  .u-logo {
    font-size: 2rem;
  }
  .u-logo:before {
    font-size: 4rem;
  }
  .u-logo_name_small {
    font-size: 1.6rem;
  }
}
/*==================================
Header
==================================*/
.l-header_inr {
  justify-content: space-between;
}
.l-header_logo a {
  display: block;
  text-decoration: none;
}
.l-header_utility_call {
  margin-left: 2em;
}
.l-header_utility_call a {
  display: block;
  color: #313131;
  font-weight: 500;
  background: #f57554;
  border-radius: 30px;
  padding: 8px 2em;
  text-decoration: none;
}
.l-header_utility_call_icon {
  margin-right: 10px;
}
@media only screen and (max-width: 1200px) {
  .l-header_utility_call {
    margin-top: 40px;
    margin-left: 0;
  }
}

/*==================================
Arrow
==================================*/
.arrow {
  position: relative;
}
.arrow::before,
.arrow::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
}
.arrow1-1::before {
  right: 30px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #313131;
  border-right: 2px solid #313131;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/*ボタンの形状*/
.float2 {
  outline: none;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1), 0 0 40px rgba(128, 128, 128, 0.1);
  /*アニメーションの設定*/
  transition: all 0.3s;
}

/*hoverをしたらボックスの影が拡がり色が濃くなる*/
.float2:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.2), 0 0 50px rgba(128, 128, 128, 0.1);
  border-color: transparent;
}

/*==================================
MainVisual
==================================*/
.p-mainVisual {
  height: calc(680px + 200px);
  background: url(/assets/images/bg_main.png) no-repeat top center;
  display: flex;
  align-items: flex-end;
}

.p-mainVisual_inr {
  width: 1530px;
  margin: 0 auto;
}
.p-mainVisual_image {
  display: flex;
  align-items: flex-end;
}

.p-mainVisual_detail {
  width: 860px;
  margin-left: 60px;
}
.p-mainVisual_detail_ttl {
  font-size: 50px;
  font-size: 5rem;
  font-weight: 500;
}
.p-mainVisual_detail_text {
  font-size: 20px;
  font-size: 2rem;
  font-weight: 500;
  margin-top: 100px;
}

.p-mainVisual_menuList {
  display: flex;
}
.p-mainVisual_menuList_item {
  width: 200px;
  height: 200px;
}
.p-mainVisual_menuList_item:not(:first-of-type) {
  margin-left: 20px;
}
.p-mainVisual_menuList_item a {
  display: block;
  color: #313131;
  font-weight: 500;
  text-align: center;
  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  padding: 10px;
}
.p-mainVisual_menuList_item a > img {
  width: 80px;
  height: 80px;
}
.p-mainVisual_menuList_item a > span {
  display: block;
  margin-top: 10px;
}

@media only screen and (max-width: 1200px) {
  .p-mainVisual {
    height: auto;
    background-size: contain;
  }
  .p-mainVisual_inr {
    width: 90%;
    margin: 60px auto 0;
  }
  .p-mainVisual_image {
    width: 70%;
  }
  .p-mainVisual_detail {
    width: 100%;
    margin-left: 0;
  }
  .p-mainVisual_detail_text {
    margin-top: 20px;
  }
  .p-mainVisual_menuList {
    width: 100%;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .p-mainVisual_menuList_item {
    width: 100%;
    height: auto;
  }
  .p-mainVisual_menuList_item:not(:first-of-type) {
    margin-left: 0;
    margin-top: 20px;
  }
  .p-mainVisual_menuList_item a {
    flex-direction: row;
    justify-content: flex-start;
    padding: 20px;
  }
  .p-mainVisual_menuList_item a > span {
    margin-top: 0;
  }
  .p-mainVisual_menuList_item a > img {
    width: 40px;
    height: 40px;
    margin-right: 20px;
  }
}

@media only screen and (max-width: 768px) {
  .p-mainVisual_detail_ttl {
    margin-top: 20px;
    font-size: 2.2rem;
  }
  .p-mainVisual_detail_text {
    font-size: 1.6rem;
  }
}

/*==================================
TOP - nursery
==================================*/
.c-nersary_bg {
  background: url(/assets/images/bg_nersary.jpg) no-repeat top center;
}
.c-nursery {
  padding-top: 360px;
}

.c-nursery_ttl {
  width: 320px;
  margin-top: 80px;
}

.c-nurseryList {
  width: 100%;
  max-width: 700px;
  margin-left: 180px;
}
.c-nurseryList_item a {
  width: 100%;
  background: #fff;
  border-radius: 50px;
  padding: 10px 40px;
  text-decoration: none;
  color: #313131;

  display: flex;
  align-items: center;
}
.c-nurseryList_item:not(:first-of-type) {
  margin-top: 20px;
}

.c-nursery_icon {
  font-size: 40px;
  font-size: 4rem;
}

.c-nurseryList_item_ttl {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  margin-left: 1em;
  width: 100%;
}
.c-nurseryList_item_ttl_small {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1200px) {
  .c-nursery_ttl {
    width: 100%;
    max-width: 700px;
    margin: 60px auto;
  }
  .c-nurseryList {
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
  }
  .c-nurseryList_item a {
    padding: 10px 20px;
  }
  .c-nurseryList_item_ttl {
    font-size: 1.8rem;
    margin-left: 0.5em;
  }
  .c-nurseryList_item_ttl_small {
    font-size: 1.4rem;
  }
}

/*==================================
TOP - business
==================================*/
.c-business_def {
  padding: 20px 0;
}
.c-business_def:not(:first-of-type) {
  border-top: 1px solid;
}

.c-business_head {
  width: 40%;
}
.c-business_body {
  width: 70%;
}

.c-business_icon {
  font-size: 42px;
  font-size: 4.2rem;
}

.c-business_head_ttl {
  font-size: 28px;
  font-size: 2.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding-left: 52px;
}
.c-business_head_ttl:before {
  content: "\e903";
  color: #30c8a8;
  font-size: 42px;
  font-size: 4.2rem;
  line-height: 1;

  position: absolute;
  left: 0;
}
.c-business_head_ttl > a {
  text-decoration: none;
}

.c-bizList_item {
  padding-left: 26px;
}

.c-bizList_item:not(:first-of-type) {
  margin-top: 10px;
}

.c-bizList_item:before {
  content: "\e900";
  color: #f96d4a;

  position: absolute;
  left: 0;
}

@media only screen and (max-width: 1200px) {
  /* .c-business {
    width: 100%;
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
  } */
  .c-business_head,
  .c-business_body {
    width: 100%;
  }
  .c-business_body {
    margin-top: 20px;
  }
  .c-business_icon {
    font-size: 3.6rem;
  }
  .c-business_head_ttl {
    font-size: 2.4rem;
  }
}

/*==================================
TOP - Public
==================================*/
.c-publicList {
  justify-content: space-between;
}
.c-publicList_item > a {
  display: inline-block;
  text-decoration: none;
}
.c-publicList_item {
  width: calc(100% / 3 - 20px);
  max-width: 560px;
}
.c-publicList_item_tmb img {
  border-radius: 20px;
}
.c-publicList_item_ttl {
  color: #313131;
  font-size: 22px;
  font-size: 2.2rem;
  margin-top: 10px;
}
.c-publicList_item_ttl_small {
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
}

@media only screen and (max-width: 1200px) {
  .c-publicList_item {
    width: 100%;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
  .c-publicList_item:not(:first-of-type) {
    margin-top: 20px;
  }
  .c-publicList_item_ttl {
    margin-top: 5px;
  }
}

/* Ugutan */
.p-ugutan {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding: 80px;
  justify-content: space-between;
}
.p-ugutan_img {
  width: 100%;
  max-width: 420px;
}

.p-ugutan_def {
  width: 100%;
  max-width: 530px;
  margin-left: 90px;
}

@media only screen and (max-width: 1200px) {
  .p-ugutan {
    padding: 40px;
  }
  .p-ugutan figure {
    text-align: center;
  }
  .p-ugutan_def {
    margin: 40px auto 0;
  }
}

/* Information */
.p-info {
  justify-content: space-between;
}
.p-info > div {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.p-info_inr {
  padding: 30px;
}

.fb-container {
  width: 500px;
}

@media only screen and (max-width: 1200px) {
  .p-info > div:not(:first-of-type) {
    margin-top: 60px;
  }
  .fb-container {
    width: 100%;
    max-width: 500px;
  }
}
.p-insta_img {
  width: 100%;
  max-width: 148px;
}

/*==================================
TOP - Banner
==================================*/
.p-bannerList {
  flex-wrap: wrap;
  justify-content: space-between;
  text-align: center;
}
.p-bannerList:after {
  content: "";
  display: block;
  width: calc(100% / 3 - 20px);
}
.p-bannerList_item {
  width: calc(100% / 3 - 20px);
}
.p-bannerList_item:nth-child(n + 4) {
  margin-top: 20px;
}

@media only screen and (max-width: 1200px) {
  .p-bannerList_item {
    width: 100%;
    max-width: 530px;
    margin: 0 auto;
  }
  .p-bannerList_item:nth-child(n + 2) {
    margin-top: 20px;
  }
}

/*==================================
TOP - Contact
==================================*/
.c-contact_bg {
  background: url(/assets/images/bg_contact.png) no-repeat bottom center;
  padding-top: 60px;
  padding-bottom: 200px;
}

.c-contactTtl {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
}
.c-contact_icon {
  margin-right: 10px;
}

.c-contactList_item:not(:first-of-type) {
  margin-top: 20px;
}
.c-contactList_item_num {
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-contactList_item_num > span {
  font-size: 22px;
  font-size: 2.2rem;
  margin-right: 1em;
}
.c-contactList_item_num a {
  font-size: 48px;
  font-size: 4.8rem;
  font-weight: 500;
}

/* 看板 */
.c-contact_plate {
  width: 600px;
  margin: 0 auto;
  background: #fff;
  border-radius: 10px;
  border: 6px solid var(--primary);
  position: relative;
  padding: 20px;
}
.c-contact_plate:before,
.c-contact_plate:after {
  content: "";
  width: 15px;
  height: 80px;
  position: absolute;
  top: -66px;
  background-color: #30c8a8;
  border-radius: 0 0 10px 10px;
  /* box-shadow: inset 0px -1px 1px rgba(0, 0, 0, 0.5), 0 0 5px rgba(0, 0, 0, 0.5); */
  color: var(--primary);
}
.c-contact_plate:before {
  left: 100px;
}
.c-contact_plate:after {
  right: 100px;
}

@media only screen and (max-width: 768px) {
  .c-contact_bg {
    background-size: 180%;
    padding-bottom: 100px;
  }
  .c-contactTtl {
    font-size: 2.2rem;
  }
  .c-contact_icon {
    font-size: 2.2rem;
  }
  .c-contact_plate {
    width: 100%;
    padding: 10px;
  }
  .c-contact_plate:before {
    left: 30px;
  }
  .c-contact_plate:after {
    right: 30px;
  }
  .c-contactList_item_num {
    flex-direction: column;
  }
  .c-contactList_item_num > span {
    font-size: 1.8rem;
    margin-right: 0;
  }
  .c-contactList_item_num a {
    font-size: 3.8rem;
  }
}

/*==================================
Button
==================================*/
.c-btn01 {
  text-align: center;
  margin-top: 20px;
}
.c-btn01 a {
  display: inline-block;
  text-decoration: none;
  background: #fff;
  border-radius: 30px;
  padding: 10px;
  width: 100%;
  max-width: 500px;
  color: #313131;
  font-weight: 500;

  border: 2px solid var(--primary);
}
.c-btn01 a:hover {
  background: var(--primary);
}

.c-btn01.c-btn__fb a {
  border: 2px solid #3b5998;
}
.c-btn01.c-btn__fb a:hover {
  background: #3b5998;
  color: #fff;
}
.c-btn01.c-btn__ig a {
  border: 2px solid #f57554;
}
.c-btn01.c-btn__ig a:hover {
  background: #f57554;
}

/*==================================
News
==================================*/
/* TopPage */
.c-newsList--hFix {
  height: 800px;
  overflow-y: auto;
  margin-bottom: 0;
  background: #fcfcfc;
}
@media only screen and (max-width: 768px) {
  .c-newsList--hFix {
    height: 420px;
  }
}

.c-newsFrame {
  border-top: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
}
.c-newsList_item {
  padding: 20px;
}
.c-newsList_item:not(:first-of-type) {
  border-top: 2px dashed #ccc;
}
.c-newsList_item:last-of-type {
  margin-bottom: 0;
}
.c-newsList_item_head {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
}
.c-newsList_item_head > :not(:first-child) {
  margin-left: 1em;
}
.c-newsList_item_date {
  font-size: 16px;
  font-size: 1.6rem;
}
.c-newsList_item_body a {
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .c-newsList_item_date {
    font-size: 1.4rem;
  }
}

/* ICON - Category */
.c-label {
  display: inline-block;
  background: var(--primary);
  border-radius: 12px;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 1em;
  min-width: 100px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .c-label {
    font-size: 1.2rem;
  }
}

/* ICON - New */
.c-label01 {
  display: inline-block;
  background: #e71240;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0 1em;
  margin-left: 1em;
  text-align: center;
}
/* pager */
.c-paging {
}
.c-paging_list {
  display: flex;
  justify-content: center;
  text-align: center;
}
.c-paging_list li:not(:first-of-type) {
  margin-left: 6px;
}
.c-paging_list li a {
  display: block;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary);
  color: #333;
  text-decoration: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-weight: 500;
  border-radius: 50%;
}
.c-paging_list li a.is-current,
.c-paging_list li a:hover {
  background: var(--primary);
}

/* No Date */
.c-nodateList_item {
  position: relative;
  padding: 30px 30px 30px 60px;
}
.c-nodateList_item:not(:first-of-type) {
  border-top: 2px dashed #ccc;
}
.c-nodateList_item:before,
.c-nodateList_item:after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
  content: "";
}
.c-nodateList_item:before {
  width: 18px;
  height: 18px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background: var(--primary);
}
.c-nodateList_item:after {
  left: calc(20px + 7px);
  box-sizing: border-box;
  width: 4px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 6px solid #fff;
}
@media screen and (max-width: 768px) {
  .c-nodateList_item {
    padding: 20px 20px 20px 40px;
  }
}

/*==================================
TOP - Title
==================================*/
.p-secTtl_birds {
  display: inline-block;
  position: relative;
  padding: 0 120px;
}
.p-secTtl_birds:before,
.p-secTtl_birds:after {
  display: inline-block;
  width: 90px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.p-secTtl_birds:before {
  content: url(/assets/images/birds-left.svg);
  left: 0;
}
.p-secTtl_birds:after {
  content: url(/assets/images/birds-right.svg);
  right: 0;
}
@media only screen and (max-width: 768px) {
  .p-secTtl_birds {
    padding: 0 80px;
  }
  .p-secTtl_birds:before,
  .p-secTtl_birds:after {
    width: 60px;
  }
}

.p-secTtl01 {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-secTtl01 {
    font-size: 2.8rem;
  }
}

.p-secTtl02 {
  font-size: 30px;
  font-size: 3rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-secTtl02 {
    font-size: 2rem;
  }
}

/*==================================
Page - Title
==================================*/
.c-pageTtl {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.c-pageTtl:before {
  position: absolute;
  bottom: -20px;
  left: calc(50% - 50px);
  width: 100px;
  height: 5px;
  content: "";
  border-radius: 3px;
  background: var(--primary);
}

@media screen and (max-width: 1200px) {
  .c-pageTtl {
    font-size: 2.6rem;
  }
}

/*==================================
Page - Childcare
==================================*/
.c-childcare {
  background: var(--secondary);
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 0 10px #ccc;
}
.c-childcare > div {
  flex: 1;
}

.c-childcare_illust {
  padding-bottom: 80px;
  position: relative;
}
.c-childcare_illust img {
  border-radius: 30px;
}
.c-childcare_illust:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
}

.c-childcare_info {
  margin-left: 40px;
  position: relative;
}
.c-childcare_icon {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  font-size: 46px;
  font-size: 4.6rem;
  line-height: 1;
}
.c-childcareTtl {
  font-size: 32px;
  font-size: 3.2rem;
  font-weight: 500;
}
.c-childcareTtl_small {
  display: block;
  font-size: 20px;
  font-size: 2rem;
}
.c-childcare_info_def dl {
  display: flex;
}
.c-childcare_info_def dl:first-of-type {
  margin-top: 20px;
}
.c-childcare_info_def dl:not(:first-of-type) {
  margin-top: 20px;
}
.c-childcare_info_def dl dt {
  width: 6em;
}
.c-childcare_info_def_ttl {
  display: inline-block;
  width: 100%;
  background: #ccc;
  padding: 0 1em;
  border-radius: 20px;
  text-align: center;
  font-weight: 500;
}
.c-childcare_info_def dl dd {
  margin-left: 1em;
}

.c-childcare_more {
  width: 380px;
  margin-left: auto;
  margin-right: -30px;
}
.c-childcare_more a {
  display: block;
  border-radius: 30px 0 0 30px;
  padding: 16px 2em;

  color: #313131;
  font-weight: 500;
  text-decoration: none;
}

@media screen and (max-width: 1200px) {
  .c-childcare {
    padding: 20px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }
  .c-childcare_illust {
    padding-bottom: 40px;
  }
  .c-childcare_illust:before {
    width: 80px;
  }
  .c-childcare_info {
    margin-top: 20px;
    margin-left: 0;
  }

  .c-childcareTtl {
    font-size: 2.4rem;
  }
  .c-childcareTtl_small {
    font-size: 1.4rem;
  }
  .c-childcare_more {
    width: 90%;
    margin-right: -20px;
  }
}

@media screen and (max-width: 768px) {
  .c-childcare_info_def dl {
    flex-direction: column;
  }
  .c-childcare_info_def dl dd {
    margin-left: 0;
  }
}

/* Color */
.c-childcare_support .c-childcare_icon {
  color: #ffafac;
}
.c-childcare_support .c-childcare_info_def_ttl,
.c-childcare_support .c-childcare_more a {
  background: #ffafac;
}
.c-childcare_support .c-childcare_illust:before {
  content: url(/assets/images/child01.svg);
}

.c-childcare_tanpopo .c-childcare_icon {
  color: #ffd900;
}
.c-childcare_tanpopo .c-childcare_info_def_ttl,
.c-childcare_tanpopo .c-childcare_more a {
  background: #ffd900;
}
.c-childcare_tanpopo .c-childcare_illust:before {
  content: url(/assets/images/child02.svg);
}

.c-childcare_himawari .c-childcare_icon {
  color: #ffd900;
}
.c-childcare_himawari .c-childcare_info_def_ttl,
.c-childcare_himawari .c-childcare_more a {
  background: #ffb400;
}
.c-childcare_himawari .c-childcare_illust:before {
  content: url(/assets/images/child03.svg);
}

.c-childcare_ouchi .c-childcare_icon {
  color: #c8e100;
}
.c-childcare_ouchi .c-childcare_info_def_ttl,
.c-childcare_ouchi .c-childcare_more a {
  background: #c8e100;
}
.c-childcare_ouchi .c-childcare_illust:before {
  content: url(/assets/images/child04.svg);
}

/*==================================
Page - Public
==================================*/
.c-tabList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: -10px;
  margin-left: -20px;
}
.c-tabList_item {
  width: 9em;
  text-align: center;
  margin-top: 10px;
}
.c-tabList_item {
  margin-left: 20px;
}

.c-tabList_item a {
  display: block;
  color: #313131;
  font-weight: 500;
  background: #fff;
  text-decoration: none;
  border: 2px solid var(--primary);
  border-radius: 10px;
  padding: 6px 1em;
}
.c-tabList_item a:hover,
.c-tabList_item a.is-active {
  background: var(--primary);
}

@media only screen and (max-width: 768px) {
  .c-tabList_item a {
    padding: 3px 1em;
  }
}

/*250401*/
.p-banner a {
  display: inline-block;
  max-width: 700px;
}