@charset "UTF-8";
/* ==================================================
 page-things.css
================================================== */
/* ==================================================
 カラー変数
-------------------------------------------------- */
/* ==================================================
 ブレイクポイント
-------------------------------------------------- */
/* ==================================================
 Animation 関連
-------------------------------------------------- */
/* ==================================================
 フォント
-------------------------------------------------- */
/* --------------------------------------------------
 clamp() フォントサイズ計算関数
	@param $min    - 最小フォントサイズ（px単位の数値）
	@param $max    - 最大フォントサイズ（px単位の数値）
	@param $vp-min - 最小ビューポート幅（デフォルト: 375）
	@param $vp-max - 最大ビューポート幅（デフォルト: 1200）
	@param $root   - ルートフォントサイズ（デフォルト: 16）
-------------------------------------------------- */
/* ==================================================
 体裁
-------------------------------------------------- */
/* ==================================================
 ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 メディアクエリ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 コンテナ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 透明度 ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 ボックスシャドウ ミックスイン
-------------------------------------------------- */
/* --------------------------------------------------
 その他 ミックスイン
-------------------------------------------------- */
@layer page {
  /* ==================================================
   1.0 - 園のご案内
  -------------------------------------------------- */
  .section-title {
    align-items: center;
  }
  .section-title__en {
    font-size: 13px;
  }
  .content-body {
    padding-bottom: 20px;
  }
  /* ------------------------------------------------
   1.1 - イントロダクション
  ------------------------------------------------ */
  .introduction {
    position: relative;
    padding-bottom: clamp(15rem, 3.0681818182rem + 50.9090909091vw, 41.25rem);
  }
  @media (min-width: 600px) {
    .introduction {
      padding-top: 10px;
    }
  }
  .introduction::before {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: clamp(12.5rem, 1.1363636364rem + 48.4848484848vw, 37.5rem);
    background-position: 50% 100%;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
  }
  #nishizono .introduction::before {
    background-image: url(../img/nishizono/bg_content_body.jpg);
  }
  #azuma .introduction::before {
    background-image: url(../img/azuma/bg_content_body.jpg);
  }
  #azuma-club .introduction::before {
    background-image: url(../img/azuma-club/bg_content_body.jpg);
  }
  .introduction__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .introduction__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1025px) {
    .introduction__inner {
      max-width: 1200px;
    }
  }
  @media (min-width: 1281px) {
    .introduction__inner {
      max-width: 1400px;
      padding-inline: 30px;
    }
  }
  .introduction__inner {
    text-align: center;
  }
  .introduction__title {
    margin-bottom: 20px;
  }
  @media (min-width: 1025px) {
    .introduction__title {
      margin-bottom: 40px;
    }
  }
  .introduction__title .section-title__jp {
    font-size: clamp(2rem, 1.4886363636rem + 2.1818181818vw, 3.125rem);
  }
  .introduction__text {
    position: relative;
    max-width: 600px;
    margin-inline: auto;
    text-align: center;
    line-height: 1.85;
  }
  .introduction__text p:not(:first-child) {
    margin-top: 2em;
  }
  .introduction__text span {
    display: inline-block;
  }
  .introduction__text br {
    display: none;
  }
  @media (min-width: 600px) {
    .introduction__text br {
      display: block;
    }
  }
  /* ------------------------------------------------
   1.2 - 園での過ごし方
  ------------------------------------------------ */
  .things {
    position: relative;
    margin-top: -75px;
    padding-block: 50px 0;
    background-color: #FFF7F1;
    border-top-left-radius: clamp(5rem, 3.4375rem + 6.6666666667vw, 8.4375rem);
    border-top-right-radius: clamp(5rem, 3.4375rem + 6.6666666667vw, 8.4375rem);
  }
  @media (min-width: 520px) {
    .things {
      margin-top: -90px;
    }
  }
  @media (min-width: 600px) {
    .things {
      margin-top: -115px;
    }
  }
  @media (min-width: 1025px) {
    .things {
      margin-top: -140px;
      padding-block: 75px 15px;
    }
  }
  .things__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .things__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1025px) {
    .things__inner {
      padding-inline: 0;
    }
  }
  .things__header {
    margin-bottom: 50px;
    text-align: center;
  }
  .things__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .things__title .section-title__jp {
    font-size: clamp(1.5rem, 1.2443181818rem + 1.0909090909vw, 2.0625rem);
  }
  .things__list {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.875rem, 1.3068181818rem + 2.4242424242vw, 3.125rem);
    margin-bottom: 40px;
  }
  @media (min-width: 600px) {
    .things__list {
      grid-template-columns: repeat(2, 1fr);
      margin-bottom: 60px;
    }
  }
  @media (min-width: 1025px) {
    .things__list {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  .things__list::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #FFF7F1;
    content: "";
  }
  .things__item {
    position: relative;
    padding-bottom: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
  }
  .things__item::after {
    position: absolute;
    right: -30px;
    bottom: 0;
    left: -30px;
    height: 1px;
    background-color: #E3DACC;
    content: "";
  }
  .things__img-wrap {
    position: relative;
    aspect-ratio: 5/4;
    overflow: hidden;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  .things__img-wrap figcaption {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    padding: 1em;
    border-bottom-right-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    background-color: rgba(255, 255, 255, 0.8);
    font-size: clamp(1.0625rem, 1.0340909091rem + 0.1212121212vw, 1.125rem);
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: 600;
    line-height: 1.64;
    letter-spacing: -0.05em;
    writing-mode: vertical-rl;
  }
  .things__img-wrap figcaption.small {
    padding-bottom: 0.25em;
    font-size: clamp(1.0625rem, 1.0482954545rem + 0.0606060606vw, 1.09375rem);
  }
  .things__img-wrap figcaption.right {
    right: 0;
    left: unset;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  .things__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  .things__headline {
    margin-block: 0.75em 0.5em;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1.25rem, 1.1363636364rem + 0.4848484848vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
  }
  @media (min-width: 600px) {
    .things__headline {
      margin-block: 1em 0.75em;
    }
  }
  .things__text {
    line-height: 1.85;
  }
  /* ------------------------------------------------
   1.2 - 施設概要 ／ 保育時間と料金
  ------------------------------------------------ */
  .overview {
    padding-block: 40px;
    border-bottom: 1px solid #E3DACC;
  }
  @media (min-width: 600px) {
    .overview {
      padding-block: 60px;
    }
  }
  .overview__inner {
    width: 100%;
    max-width: 980px;
    margin-inline: auto;
    padding-inline: 20px;
  }
  @media (min-width: 600px) {
    .overview__inner {
      padding-inline: 24px;
    }
  }
  @media (min-width: 1025px) {
    .overview__inner {
      padding-inline: 0;
    }
  }
  .overview__header {
    margin-bottom: 40px;
  }
  .overview__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .overview__title .section-title__jp {
    font-size: clamp(1.5rem, 1.2443181818rem + 1.0909090909vw, 2.0625rem);
  }
  .overview__text {
    position: relative;
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: clamp(0.875rem, 0.8181818182rem + 0.2424242424vw, 1rem);
    text-align: center;
    line-height: 1.85;
    letter-spacing: 0.05em;
  }
  @media (min-width: 600px) {
    .overview__text {
      margin-bottom: 60px;
    }
  }
  .overview__text p:not(:first-child) {
    margin-top: 1em;
  }
  .overview__text span {
    display: inline-block;
  }
  .overview__text br {
    display: none;
  }
  @media (min-width: 600px) {
    .overview__text br {
      display: block;
    }
  }
  .map-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-left: 2em;
    border-bottom: 1px solid #3A3123;
    transition: all 0.3s ease;
  }
  .map-link:hover {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -ms-filter: "alpha(opacity=70)";
    border-bottom-color: transparent;
  }
  .map-link::after {
    display: inline-block;
    width: 12px;
    height: 12px;
    border: solid #3A3123;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    content: "";
  }
  .anchor--tel {
    font-size: clamp(1.25rem, 1.1363636364rem + 0.4848484848vw, 1.5rem);
    font-weight: 600;
    border-bottom: 1px solid #EA932A;
    color: #EA932A;
    transition: all 0.3s ease;
  }
  .anchor--tel:hover {
    border-color: transparent;
  }
  /* 1.2.1 - 表組み
  ------------------------------------------------ */
  .cert-table__wrapper {
    position: relative;
    margin-bottom: 40px;
  }
  @media (min-width: 600px) {
    .cert-table__wrapper {
      margin-bottom: 60px;
    }
  }
  @media (max-width: 947px) {
    .cert-table__wrapper::before, .cert-table__wrapper::after {
      position: relative;
      display: block;
      margin-block: 1em;
      color: #7C766D;
      font-size: 0.9em;
      content: "▼ 横スクロールできます";
    }
    .cert-table__wrapper::after {
      content: "▲ 横スクロールできます";
    }
  }
  .cert-table-container {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }
  .cert-table {
    display: flex;
    flex-direction: column;
    min-width: 860px;
  }
  @media (min-width: 600px) {
    .cert-table {
      min-width: 900px;
    }
  }
  @media (min-width: 1025px) {
    .cert-table {
      min-width: 930px;
    }
  }
  .cert-table__row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 1fr;
    gap: 10px;
  }
  .cert-table__row:not(:last-child) {
    border-bottom: 1px solid #EA932A;
  }
  @media (min-width: 600px) {
    .cert-table__row {
      grid-template-columns: 120px 1fr 1fr 1fr;
      gap: 15px;
    }
  }
  @media (min-width: 1025px) {
    .cert-table__row {
      grid-template-columns: 150px 1fr 1fr 1fr;
      gap: 20px;
    }
  }
  .cert-table__row--head .cert-table__label {
    background-color: #FFFCFA;
  }
  .cert-table__label {
    position: sticky;
    left: 0;
    z-index: 10;
    display: flex;
    padding-block: 15px 20px;
    background-color: #FFFCFA;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1rem, 0.8863636364rem + 0.4848484848vw, 1.25rem);
    font-weight: 600;
    line-height: 1.2;
  }
  @media (min-width: 1025px) {
    .cert-table__label {
      padding-block: 20px 25px;
    }
  }
  .cert-table__column {
    padding: 20px 15px 20px;
    border-top-left-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    border-top-right-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    background-color: #F9E2CB;
  }
  @media (min-width: 1025px) {
    .cert-table__column {
      padding: 30px 20px 25px;
    }
  }
  .cert-table__title {
    margin-bottom: 15px;
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: clamp(1.125rem, 0.9545454545rem + 0.7272727273vw, 1.5rem);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
  }
  @media (min-width: 1025px) {
    .cert-table__title {
      margin-bottom: 25px;
    }
  }
  .cert-table__desc {
    font-size: clamp(0.8125rem, 0.7840909091rem + 0.1212121212vw, 0.875rem);
    line-height: 1.85;
  }
  .cert-table__cell {
    padding: 15px 15px 20px;
    background-color: #F9E2CB;
    font-size: clamp(0.8125rem, 0.7840909091rem + 0.1212121212vw, 0.875rem);
    line-height: 1.64;
  }
  @media (min-width: 1025px) {
    .cert-table__cell {
      padding: 20px 20px 25px;
    }
  }
  .cert-table__cell .list--marker > li {
    line-height: 1.64;
  }
  .cert-table__cell .list--marker > li::before {
    top: clamp(0.25rem, 0.2215909091rem + 0.1212121212vw, 0.3125rem);
  }
  .cert-table__cell p + ul,
  .cert-table__cell p + p,
  .cert-table__cell ul + p {
    margin-top: 0.25em;
  }
  .cert-table__row:last-child .cert-table__cell {
    padding-bottom: 60px;
    border-bottom-left-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
    border-bottom-right-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  @media (min-width: 1025px) {
    .cert-table__row:last-child .cert-table__cell {
      padding-bottom: 80px;
    }
  }
  /* ------------------------------------------------
   1.3 - スライド
  ------------------------------------------------ */
  .slider {
    display: flex;
    flex-direction: column;
    gap: clamp(1.875rem, 1.5909090909rem + 1.2121212121vw, 2.5rem);
    padding-block: clamp(3.75rem, 2.6136363636rem + 4.8484848485vw, 6.25rem) clamp(2.5rem, 1.9318181818rem + 2.4242424242vw, 3.75rem);
  }
  .slider-wrapper {
    overflow: hidden;
    display: flex;
    gap: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
  }
  .slider-wrapper:hover .slider-list {
    animation-play-state: paused;
  }
  .slider-list {
    display: flex;
    gap: clamp(1.25rem, 0.9659090909rem + 1.2121212121vw, 1.875rem);
  }
  .slider-list.right-to-left {
    animation: infinity-scroll-left 95s infinite linear 0.5s both;
  }
  .slider-list.left-to-right {
    animation: infinity-scroll-right 95s infinite linear 0.5s both;
  }
  .slider-list__item {
    width: 50vw;
  }
  @media (min-width: 600px) {
    .slider-list__item {
      width: 33.3333333333vw;
    }
  }
  @media (min-width: 1025px) {
    .slider-list__item {
      width: 25vw;
    }
  }
  @media (min-width: 1281px) {
    .slider-list__item {
      width: 20vw;
    }
  }
  .slider-list__item > img {
    width: 100%;
    border-radius: clamp(0.625rem, 0.3409090909rem + 1.2121212121vw, 1.25rem);
  }
  @keyframes infinity-scroll-left {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  @keyframes infinity-scroll-right {
    from {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(0);
    }
  }
  _:-ms-lang(x)::-ms-backdrop,
  .slider {
    display: -ms-grid;
    overflow: hidden;
  }
}

/*# sourceMappingURL=page-facilities.css.map */
