@charset "UTF-8";

/* 一時保育 */
.temporary-heading {
  padding-top: 40px;
}

/* イントロ */
.temporary-intro {
  padding: 80px 0 0;
}
.temporary-intro__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}
.temporary-intro__text {
  flex: 0 0 auto;
  max-width: 550px;
  line-height: 2;
}
.temporary-intro__text p + p {
  margin-top: 20px;
}
.temporary-intro__visual {
  flex: 0 0 auto;
  width: 100%;
  max-width: 540px;
}
.temporary-intro__images {
  position: relative;
  width: 100%;
  min-height: 400px;
}
.temporary-intro__img {
  display: block;
  width: 100%;
  max-width: 360px;
  height: auto;
  border-radius: 12px;
}
.temporary-intro__img--top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.temporary-intro__img--bottom {
  position: absolute;
  left: 0;
  top: 160px;
  z-index: 2;
}

@media (max-width: 768px) {
  .temporary-intro {
    padding: 40px 0 0;
  }
  .temporary-intro__inner {
    flex-direction: column;
    gap: 32px;
  }
  .temporary-intro__visual {
    order: -1;
    margin: 0 auto;
    max-width: 380px;
  }
  .temporary-intro__images {
    position: static;
  }
  .temporary-intro__img {
    position: static;
    max-width: 380px;
    width: 100%;
    margin-bottom: 16px;
  }
  .temporary-intro__img--bottom {
    margin-bottom: 0;
  }
  .temporary-intro__text {
    max-width: 100%;
  }
}

/* 利用目的 */
.temporary-purpose{
  position: relative;
  margin-top: 80px;
}
.temporary-purpose__deco{
  position: absolute;
  top: -70px;
  left: 20px;
  width: 80px;
  height: auto;
}
.temporary-purpose__block{
  margin-top: 40px;
}
.temporary-purpose__block:first-of-type{
  margin-bottom: 40px;
}
.temporary-purpose__list{
  display: flex;
  flex-wrap: wrap;
}
.temporary-purpose__item{
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
}
.temporary-purpose__item:nth-child(3n){
  margin-right: 0;
}
.temporary-purpose__lead{
  font-weight: 700;
  color: #1D5900;
  margin: 0 0 4px;
}
.temporary-purpose__item p:last-child{
  margin: 0;
}

@media (max-width:768px){
  .temporary-purpose{
    margin-top: 40px;
  }
  .temporary-purpose__deco{
    width: 50px;
    top: -45px;
    left: inherit;
    right: 20px;
  }
  .temporary-purpose__item{
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .temporary-purpose__item:last-child{
    margin-bottom: 0;
  }
}

/* 対象者 */
.temporary-target{
  position: relative;
  margin-top: 80px;
}
.temporary-target__deco{
  position: absolute;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: auto;
}
.temporary-target p{
  margin-top: 40px;
  line-height: 2;
}

/* 利用時間 */
.temporary-time{
  position: relative;
  margin-top: 80px;
}
.temporary-time__deco{
  position: absolute;
  top: -70px;
  left: 20px;
  width: 80px;
  height: auto;
}
.temporary-time p{
  line-height: 2;
}
.temporary-time p:first-of-type{
  margin-top: 40px;
}

@media (max-width:768px){
  .temporary-target,
  .temporary-time{
    margin-top: 40px;
  }
  .temporary-target__deco,
  .temporary-time__deco{
    width: 50px;
  }
  .temporary-target__deco{
    top: -20px;
    left: 70%;
    transform: translateX(-50%);
  }
  .temporary-time__deco{
    top: -40px;
    left: 10px;
  }
  .temporary-target p,
  .temporary-time p:first-of-type{
    margin-top: 32px;
  }
}

/* 利用・登録について */
.temporary-registration{
  margin-top: 80px;
}
.temporary-registration__text{
  margin-top: 40px;
}
.temporary-registration__text a{
  color: #E39A32;
  font-weight: 700;
}
.temporary-registration__box-wrap{
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
}
.temporary-registration__deco{
  position: absolute;
  top: -40px;
  right: -140px;
  width: 60px;
  height: auto;
}
.temporary-registration__box{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  padding: 20px 30px 40px;
  background: #fff;
  border: 8px solid #934900;
  border-radius: 12px;
}
.temporary-registration__box-title{
  margin: 0 0 20px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  color: #924800;
}
.temporary-registration__list{
  list-style: decimal;
  margin-left: 20px;
}
.temporary-registration__grass{
  display: block;
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  margin: -40px auto 0;
}

@media (max-width:768px){
  .temporary-registration{
    margin-top: 40px;
  }
  .temporary-registration__box-wrap{
    margin-top: 40px;
  }
  .temporary-registration__deco{
    top: -10px;
    right: -10px;
    width: 50px;
    z-index: 2;
  }
  .temporary-registration__box{
    padding: 20px 15px 20px;
    border: 4px solid #934900;
  }
  .temporary-registration__box-title{
    font-size: 20px;
  }
  .temporary-registration__grass{
    margin-top: -20px;
  }
}

/* 利用料金 */
.temporary-fee{
  position: relative;
  margin-top: 80px;
}
.temporary-fee__deco{
  position: absolute;
  width: 80px;
  height: auto;
}
.temporary-fee__deco--left{
  top: -70px;
  left: 15px;
}
.temporary-fee__deco--right{
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.temporary-fee__block{
  margin-top: 40px;
}
.temporary-fee__title{
  margin: 0 0 15px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #1D5900;
}
.temporary-fee__table-wrap{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}
.temporary-fee__table{
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  table-layout: fixed;
}
.temporary-fee__table th,
.temporary-fee__table td{
  padding: 14px;
  border: 1px solid #CCC;
  text-align: center;
  vertical-align: middle;
  line-height: 1.4;
}
.temporary-fee__table th{
  background: #FFFFDD;
  font-weight: 700;
}

.temporary-fee__table td{
  background: #FFF;
}

@media (max-width:768px){
  .temporary-fee{
    margin-top: 60px;
  }
  .temporary-fee__deco{
    width: 60px;
  }
  .temporary-fee__deco--left{
    top: -40px;
    left: 10px;
  }
  .temporary-fee__deco--right{
    top: 55%;
    right: 10px;
  }
  .temporary-fee__table{
    min-width: 800px;
  }
}

