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

共通設定

=========================================================================================*/
/*GOOGLEFONT*/
@import url('https://fonts.googleapis.com/css2?family=Caveat+Brush&family=Pacifico&family=Zen+Maru+Gothic:wght@500;700&display=swap');
p, a, li, dt, dd, time, h1, h2, h3, h4, h5, h6, th, td, span, label, input {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
  color: #5c4b33;
}
*, *::before, *::after {
  box-sizing: border-box !important;
}
.home main {
  background: #ffef8e url(/wp-content/uploads/2025/02/img-noise-300x300-3.png) repeat left top/20%;
}
:root {
  --main: #5c4b33;
}
.home section {
  padding: clamp(120px, 28vw, 280px) 0 clamp(120px, 28vw, 280px);
  margin: 0px;
}
section {
  padding: 180px 0px 0px;
}
section:last-of-type {
  padding: 180px 0px 180px;
}
.home section:nth-of-type(even) {
  padding: clamp(80px, 18vw, 160px) 0 clamp(80px, 18vw, 160px);
  margin: 0px;
}
.home section.slider {
  padding: clamp(50px, 6vw, 80px) 0 clamp(100px, 30vw, 350px);
  margin: 0px;
}
.footer {
  padding: clamp(60px, 20vw, 140px) 0 0;
  margin: 0px;
}
.home .footer {
  padding: clamp(100px, 22vw, 220px) 0 0;
  margin: 0px;
}
.footer-nav-wrap p {
  margin-bottom: 1em;
}
a {
  transition: all .3s;
  cursor: pointer;
}
/*ボタンのパターン★*/
.btn01 {
  border: 1px solid #c1c1c1;
  background-color: #c1c1c1;
}
/*======see more：右にスライド======*/
.see-more-btn {
  height: 60px;
  position: relative;
  text-decoration: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  font-size: 1.8rem;
  font-weight: 700;
  color: #d67e00;
  margin-top: auto;
}
.parents-link .see-more-btn {
  color: #ffffff;
  margin-top: auto;
  background-color: #5c4b33;
  border-radius: 100px;
  padding: 1em;
  font-size: 1.4rem;
}
/* 丸のスタイル */
.see-more-btn .arrow {
  width: 50px;
  height: 50px;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #d67e00;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
.parents-link .see-more-btn .arrow {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
}
/* 矢印のスタイル */
.see-more-btn .arrow span {
  margin-left: 7px;
  clip-path: polygon(20% 0, 60% 50%, 20% 100%, 0% 100%, 40% 50%, 0% 0%);
  height: 14px;
  aspect-ratio: 1;
  background-color: #ffffff;
}
.parents-link .see-more-btn .arrow span {
  background-color: #5c4b33;
}
/* ホバー時に矢印を動かさない */
.see-more-btn .arrow__item02 {
  position: absolute;
  transform: translateX(-400%);
}
/* ★ ここで丸全体がスライド */
.see-more-btn:hover .arrow {
  transform: translateX(10px);
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .btn01.btn01:hover {
    color: #c1c1c1;
    border: 1px solid #c1c1c1;
  }
  .btn01.btn01:hover .btn-arrow {
    fill: #c1c1c1;
  }
}
/*TOPボタン*/
#page-top {
  right: 5px;
  bottom: 5px;
}
#page-top img {
  max-height: 120px;
  transition: all 0.3s;
}
/*ふわっと出現*/
/*下から*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*左から*/
.fadeLeft {
  animation-name: fadeLeftAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*右から*/
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/*はじめに透過0を指定*/
.fadeInTrigger, .fadeUpTrigger, .fadeDownTrigger, .fadeLeftTrigger, .fadeRightTrigger {
  opacity: 0;
}
/*=====デフォルトフィードの調整=====*/
.news-img.news-img img, .news-list02 li .news-img.news-img img, .com-box02-img.com-box02-img img, .com-box03-img.com-box03-img img, .com-interview01-img.com-interview01-img img, .com-interview02-img.com-interview02-img img, .com-menu01-img.com-menu01-img img {
  height: auto;
  aspect-ratio: 3 / 2 !important;
}
/*news-list*/
.info.info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info.info .news-list01 {
  flex: 1;
  margin-bottom: 10em;
}
.news-list02.news-list02 {
  margin-bottom: 10em;
  flex: 1;
}
.news-list03.news-list03 li .news-img img {
  height: auto;
}
/*com-menu01*/
.flex.com-menu01-list.com-menu01-list {
  gap: 5em 2em;
}
.com-menu01-list.com-menu01-list li {
  margin-bottom: 0px;
  width: 47%;
}
.com-menu01-list.com-menu01-list::after {
  content: none;
}
/*com-box01*は別見本/
/*com-box02*/
.com-box02-list.com-box02-list {
  gap: 5em 1em;
}
.com-box02-list.com-box02-list li {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.com-box02-img.com-box02-img {
  margin-bottom: 2em;
}
.com-box02-img.com-box02-img img {
  border-radius: 40px;
}
.com-box02-head.com-box02-head {
  margin-bottom: 1em;
  color: #5c4b33;
  background-color: #f7cd69;
  border-radius: 20px;
}
.com-box02-txt {
  flex: 1;
}
/* 最後のコンテンツを左寄せにする指定 */
.com-box02-list.com-box02-list .flexbox:after {
  content: "";
  display: block;
  width: 32%; /*.boxに指定した幅*/
  height: 0;
}
/*com-box03*/
.com-box03-list.com-box03-list li {
  width: 30%;
}
.com-box03-img.com-box03-img {
  margin-bottom: 2em;
}
.com-box03-head.com-box03-head {
  margin-bottom: 1em;
  color: #ffffff;
  background-color: #216d00;
  border-radius: 20px;
  font-weight: 700;
}
.com-box03-list.com-box03-list {
  gap: 4em 2em;
  /*position: relative;
  z-index: 2;*/
}
/*左寄せのために疑似要素で調整
.com-box03-list::after {
  display: block;
  content: "";
  width: 30%;
}*/
/*com-list01*/
/*不要な疑似要素を消す*/
.com-list01.com-list01::before {
  content: none;
}
.com-list01.com-list01.flex {
  gap: 5em 2em;
}
.com-list01.com-list01 li {
  background-color: transparent;
  width: 22%;
  padding: 0px;
  margin-bottom: 0px;
}
.com-list01-nm.com-list01-nm {
  color: #216d00;
  font-family: transparent;
  left: 0px;
  font-size: 50px;
}
.com-list01-txt.com-list01-txt {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
}
.com-list01-head.com-list01-head {
  color: #ffffff;
  background-color: #216d00;
  margin: 2em 0 2em;
}
.com-list01-icon.com-list01-icon img {
  width: 60%;
  height: auto;
}
/*com-list02*/
/*com-list03*/
.com-list03.com-list03 > li {
  width: 45%;
  margin-bottom: 40px;
}
.com-list03-sub.com-list03-sub {
  display: none;
}
.com-list03.com-list03 > li {
  margin-bottom: 0px;
  display: flex;
  gap: 2em;
}
.com-list03.com-list03 > li > div.com-list03-img {
  width: 60%;
}
.com-list03.com-list03 > li > div.com-list03-content {
  width: 40%;
}
.flex.com-list03.com-list03 {
  gap: 5vw 2vw;
}
.com-list03-content.com-list03-content {
  margin-top: 0px;
}
/*com-flow01*/
.com-flow01-box.com-flow01-box {
  background-color: #d5d5d5;
}
.com-flow01-box.com-flow01-box::before {
  border-top: 25px solid #d5d5d5;
}
.com-flow01-box.com-flow01-box:last-of-type {
  padding: 0px;
}
.com-flow01-icon.com-flow01-icon img {
  height: 150px;
}
/*com-flow02*/
.com-flow02-list.com-flow02-list li {
  /*width: 30%;*/
  margin-bottom: 0px;
}
.com-flow02-icon.com-flow02-icon img {
  height: auto;
  width: 60%;
  margin: 0 auto;
}
.com-flow02-txt.com-flow02-txt {
  background-color: transparent;
  color: #3a3227;
  border-radius: 15px;
  font-size: 16px;
  text-align: left;
}
.com-flow02-head.com-flow02-head h3 {
  color: #d67e00;
  margin-top: 0.5em;
}
/*com-timeline01*/
.com-timeline01-list.com-timeline01-list {
  margin-bottom: 0px;
}
.com-timeline01-time.com-timeline01-time {
  color: #e9ab40;
  border-bottom: 3px solid #e9ab40;
}
.com-timeline01-head.com-timeline01-head {
  color: #e9ab40;
}
/*com-timeline02*/
.com-timeline02-list.com-timeline02-list {
  margin-bottom: 0px;
}
/*com-interview01*/
/*com-interview02*/
.com-interview02-position.com-interview02-position {
  background-color: #f6ce69;
  color: #5c4b33;
  border-radius: 100px;
}
.com-interview02-list.com-interview02-list > li {
  width: 30%;
  margin-bottom: 0px;
}
.flex.com-interview02-list {
  gap: 5em 1em;
}
.com-interview01-q {
  margin-top: 10px;
}
.com-interview01-a {
  margin-top: 10px;
}
.com-interview02-img.com-interview02-img img {
  aspect-ratio: 1 / 1 !important;
  border-radius: 100% 100% 0 0;
}
/*Q&A*/
.com-faq01-q.com-faq01-q {
  padding-bottom: 1em;
}
.com-faq01-a {
  margin-top: 1em;
}
/*タブメニュー*/
/*タブ
<div class="width90 fadeUpTrigger">
      <!--タブ-->
      <div class="tab-wrap">
        <ul class="tab-list">
          <li class="tab-item is-active">平日</li>
          <li class="tab-item">祝・休日</li>
        </ul>
      </div>
      <!--タブ内コンテンツ-->
      <ul class="panel-list">
        <!--タブを切り替えて表示するコンテンツ1-->
        <li class="panel-item tab-area is-active">
          <div class="table-wrap02">[myphp file="/export/com-timeline01" id="1618"]</div>
        </li>
        <!--タブを切り替えて表示するコンテンツ2-->
        <li class="panel-item tab-area">
          <div class="table-wrap02">[myphp file="/export/com-timeline02" id="1857"]</div>
        </li>
      </ul>
    </div>*/
.tab-list, .tab-list2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tab-item, .tab-item2 {
  /* width: 48%;*/
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 15px;
  position: relative; /* `::before` のために `relative` を指定 */
  background: #ffffff;
  box-shadow: 6px 6px 0px 0px #f6ce69;
  width: 400px;
  height: 70px;
  overflow: hidden; /* 影がはみ出ないようにする */
  display: flex;
  align-items: center;
  justify-content: center;
}
li.tab-item, li.tab-item2 {
  font-size: 2rem;
}
.tab-item::before, .tab-item2::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 15px;
  border: 3px dotted #f6ce69;
  pointer-events: none; /* クリック制御 */
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .tab-item:hover, .tab-item2:hover {
    transform: translateY(-5px); /* 浮き上がるアニメーション */
    background: #f6ce69;
    box-shadow: 6px 6px 0px 0px rgb(214, 126, 0);
  }
  .tab-item:hover::before, .tab-item2:hover::before {
    border: 3px dotted #ffffff;
  }
}
.tab-item.is-active, .tab-item2.is-active {
  background: #f6ce69;
  box-shadow: 6px 6px 0px 0px rgb(214, 126, 0);
}
.tab-item.is-active::before, .tab-item2.is-active::before {
  border: 3px dotted #ffffff;
}
/* パネル */
.panel-item, .panel-item2 {
  display: none;
  width: 100%;
  padding: 4rem 0 0;
}
.panel-item.is-active, .panel-item2.is-active {
  display: block;
  animation: panel-show .9s ease-in-out forwards;
}
/* パネル切り替えのアニメーション */
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*インスタグラム色変更*/
#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a /*, span.sbi_btn_text*/ {
  color: #ffffff !important;
  background-color: #544936;
}
#sb_instagram #sbi_load .sbi_load_btn, #sb_instagram .sbi_follow_btn a, span.sbi_btn_text {
  color: #ffffff !important;
}
#sb_instagram #sbi_load .sbi_follow_btn.sbi_custom span {
  color: #ffffff !important;
}
#sb_instagram #sbi_images {
  padding: 0 0 80px;
}
.sns-icon-title p, .sns-sub-nav li a, .sns-icon-title span, .copyright p {
  color: #5c4b33 !important;
}
.sns-icon-wrap.flex.sns-icon-wrap.flex .line {
  display: none;
}
.line-icon path {
  fill: #5c4b33 !important;
}
.mobile-sns-sub-nav .line-icon path {
  fill: #ffffff !important;
}
/*テーブルの調整*/
table.tablepress {
  border: none !important;
}
table.tablepress tbody td.column-1 {
  width: 30% !important;
  color: #d67e00 !important;
  background-color: transparent !important;
}
table.tablepress tbody td.column-2 {
  width: 70% !important;
  color: #5c4b33 !important;
  background-color: transparent !important;
}
table.tablepress tbody th:not(:last-child) {
  border-right: 1px solid #d67e00 !important;
}
table.tablepress tbody td {
  border-left: none !important;
}
table.tablepress tbody th, table.tablepress tbody td {
  text-align: left !important;
}
.tablepress-table-description.tablepress-table-description, .tablepress-table-name {
  display: none;
}
.tablepress > :where(thead) + tbody > * > *, .tablepress > tbody > * ~ * > * {
  border-top: 1px solid #5c4b33 !important;
}
/*iflameの調整*/
iframe.youtube-content {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
iframe.g-map {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}
.youtube-area {
  text-align: center;
}
/*=========下層=========*/
#breadcrumbs {
  padding-bottom: 10px !important;
  margin-bottom: 0px !important;
  background-color: #fffbde;
  background-image: linear-gradient(-90deg, #fff 50%, transparent 50%);
  background-size: 14px 14px;
}
.page-template-page-fullwidth main {
  background-color: #fffbde;
  background-image:
    linear-gradient(-90deg, #fff 50%, transparent 50%);
  background-size: 14px 14px;
}
/*下層タイトル*/
.sub-header-txt {
  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*=========ブロックあしらいバリエーション=========*/
/*スライドショー
<ul class="slide-img-wrap width30 fadeRightTrigger">
          <li class="slide-img"><img src="/wp-content/uploads/2024/09/corina-rainer-f8QKOhRaaFw-unsplash.jpg" alt="" class="aspect2-3" loading="lazy" width="1920" height="1280"></li>
          <li class="slide-img"><img src="/wp-content/uploads/2024/09/pawel-janiak-dxFi8Ea670E-unsplash.jpg" alt="" class="aspect2-3" loading="lazy" width="1920" height="1280"></li>
          <li class="slide-img"><img src="/wp-content/uploads/2024/09/alina-kovalchuk-sVKNd73HhI8-unsplash.jpg" alt="" class="aspect2-3" loading="lazy" width="1920" height="1159"></li>
        </ul>*/
/*スライドショー*/
.slide-img-wrap {
  position: relative;
  z-index: 0;
}
.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity;
  transition-delay: 0.5s;
  z-index: 0;
}
.slide-img.isCurrent {
  z-index: 1;
  position: relative;
  opacity: 1;
  transition-delay: 0s;
}
/*カードバナー
<div class="card-bnr mb-xlarge fadeUpTrigger"><img src="/wp-content/uploads/2024/09/4182392_m.jpg" alt=""><a class="fadeUpTrigger" href="#">ご利用者様専用ページはこちら<i class="fa-solid fa-arrow-right" style="color: #ffffff;"></i></a></div>*/
.card-bnr {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-inline: auto;
  aspect-ratio: 3 / 2;
}
.card-bnr img {
  height: auto;
  transition: transform .3s ease;
  position: absolute;
  aspect-ratio: 3 / 2;
}
.card-bnr:hover img {
  transform: scale(1.1);
}
.card-bnr a {
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
  align-items: center;
  bottom: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 80%; /* テキストを横幅いっぱいにならないようにする */
  margin-inline: auto;
  z-index: 2;
}
.card-bnr::before {
  background: rgba(0, 0, 0, .5); /* マスクの色(黒の50%) */
  bottom: 0;
  content: '';
  height: auto;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .6s ease;
  width: 100%;
  z-index: 1;
  aspect-ratio: 3 / 2;
}
.card-bnr:hover::before {
  opacity: 0;
}
/*パララックス背景
<div class="parallax_box">
  <div class="parallax_content">CONTENT1</div>
</div>*/
.parallax_content {
  padding: 10vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url(/wp-content/uploads/2024/10/24641443_m-3.jpg);
  position: relative;
}
/*画像ループ
<div class="scroll-infinity mb-xlarge">
  <div class="scroll-infinity__wrap">
    <ul class="scroll-infinity__list scroll-infinity__list--right">
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/4182533_s.jpg" class="aspect1-1" alt="ひらがなの練習" width="640" height="480"></li>
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/4052445_m-e1725419297566.jpg" class="aspect1-1" alt="工作" width="640" height="627"></li>
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/29307013_s.jpg" class="aspect1-1" alt="折り紙で遊ぶ子供" width="640" height="480"></li>
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/3785064_s.jpg" class="aspect1-1" alt="宿題をする小学生" width="640" height="480"></li>
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/23422309_s.jpg" class="aspect1-1" alt="絵の具遊び" width="640" height="427"></li>
    </ul>
    <ul class="scroll-infinity__list scroll-infinity__list--right">
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/4182533_s.jpg" class="aspect1-1" alt="ひらがなの練習" width="640" height="480"></li>
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/4052445_m-e1725419297566.jpg" class="aspect1-1" alt="工作" width="640" height="627"></li>
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/29307013_s.jpg" class="aspect1-1" alt="折り紙で遊ぶ子供" width="640" height="480"></li>
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/3785064_s.jpg" class="aspect1-1" alt="宿題をする小学生" width="640" height="480"></li>
      <li class="scroll-infinity__item"><img src="/wp-content/uploads/2024/09/23422309_s.jpg" class="aspect1-1" alt="絵の具遊び" width="640" height="427"></li>
    </ul>
  </div>
</div>*/
.scroll-infinity {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  padding: 0
}
.scroll-infinity__item {
  width: calc(100vw / 4);
}
.scroll-infinity__item > img {
  width: 100%;
  object-fit: cover;
}
.scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*文字ループ
<div class="loop fadeUpTrigger">
    <div class="loop_wrap">
      <div class="loop_text1">kiraneko&nbsp;<i class="fa-solid fa-cat" style="color: #ffffff;"></i>&nbsp;mike&nbsp;</div>
      <div class="loop_text2">kiraneko&nbsp;<i class="fa-solid fa-cat" style="color: #ffffff;"></i>&nbsp;mike&nbsp;</div>
    </div>
  </div>*/
div.loop {
  padding-top: clamp(80px, 20vw, 180px);
  overflow: hidden;
}
.loop_wrap {
  display: flex;
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.loop_wrap div {
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 120px;
  overflow: hidden;
  color: /*#0093ce;*/ #ffffff;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
.loop_wrap div:nth-child(odd) {
  animation: loop 120s -60s linear infinite;
}
.loop_wrap div:nth-child(even) {
  animation: loop2 120s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*ーアーチトリミングー*/
.arch-img img {
  border-radius: 100vw 100vw 0 0;
}
/*見出しバリエーション*/
/*TOPタイトル*/
/*大タイトル1
<h2 class="title-head fadeUpTrigger"><span class="head-icon block margin-auto"><img src="/wp-content/uploads/2024/08/head-bird@3x-8.png" class="" alt="鳥とクローバー" loading="lazy" width="369" height="238"></span><span class="title-ja">コンセプト</span><span class="title-en">concept</span></h2>*/
.title-head {
  margin-bottom: clamp(40px, 8vw, 100px);
  text-align: center;
}
.title-head span.title-ja {
  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
  color: #5c4b33;
  letter-spacing: .1em;
  font-weight: 700;
  position: relative;
  z-index: 0;
}
.title-head span.title-ja::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 110px;
  background: url(/wp-content/uploads/2024/08/title-under@2.5x-8.png) no-repeat center bottom/100%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 100%;
  z-index: -1;
}
.title-head span.title-en {
  font-weight: 700;
  font-style: normal;
  display: block;
  text-align: center;
  font-size: clamp(1.6rem, 1.309rem + 1.45vw, 2.4rem);
  color: #d67e00;
  padding-top: 1.5em;
  position: relative;
  z-index: 1;
}
.head-icon {
  width: clamp(60px, 8vw, 160px);
  padding-bottom: 1em;
}
.head-icon img {
  width: 100%;
  margin-bottom: 1em;
}
/*大タイトル2
<h2 class="title_design-op fadeUpTrigger fadeUp" data-en="news">お知らせ</h2>*/
.title_design-op {
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
  position: relative;
  padding: 50px 0 0 0;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  margin: 0 auto;
}
.title_design-op span {
  position: relative;
  z-index: 2;
}
.title_design-op::before {
  font-style: normal;
  font-weight: 700;
  content: attr(data-en);
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #f6ce69;
  /*text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.2);*/
  font-size: 60px;
  z-index: -1;
  white-space: nowrap;
}
/*大タイトル３
<div class="flex">
    <h3 class="width15 Subtitle flex fadeUpTrigger"><span class="vertical-Ttl_en">Instagram</span><span class="vertical-Ttl_ja">インスタグラム</span></h3>
    <div class="width80"></div>*/
.vertical-Ttl_en {
  display: block;
  font-size: clamp(1.6rem, 1.309rem + 1.45vw, 2.4rem);
  color: #d67e00;
  writing-mode: vertical-rl;
  line-height: 1;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.vertical-Ttl_ja {
  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
  color: #5c4b33;
  writing-mode: vertical-rl;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.flex.Subtitle {
  justify-content: flex-start;
  gap: 1.5em;
}
/*.home-section03 .flex.Subtitle, .home-section05 .flex.Subtitle {
  justify-content: flex-end;
}*/
/*ースラッシュタイトルー*/
.slash-title {
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto 2em;
  font-size: clamp(2rem, 1.855rem + 0.73vw, 2.4rem) !important;
}
.slash-title::before, .slash-title::after {
  content: '';
  border-radius: 50px;
  width: 3px;
  height: 40px;
  background-color: #ec7f38;
}
.slash-title::before {
  margin-right: 30px;
  transform: rotate(-35deg)
}
.slash-title:after {
  margin-left: 30px;
  transform: rotate(35deg)
}
/*ー横棒タイトルー*/
.line-title {
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
  font-weight: 700;
  color: #5796de;
}
.line-title::before, .line-title::after {
  background-color: #5796de;
  border-radius: 5px;
  content: "";
  height: 3px;
  width: 80px;
}
.line-title::before {
  margin-right: 15px;
}
.line-title::after {
  margin-left: 15px;
}
/*ーサイズ・文字色・下線ー*/
.lead-txt {
  font-size: clamp(1.6rem, 1.527rem + 0.36vw, 1.8rem);
  line-height: 2.5;
  font-weight: 500;
  text-align: left;
  width: 90%;
  margin: auto;
  padding: 4em;
  background-color: #ffffff;
  border-radius: 60px;
  box-shadow: inset 0 0 10px 15px #fffacd;
}
.font-or {
  color: #e89922;
}
.linear {
  display: inline;
  background: linear-gradient(transparent 60%, #ffec51 30%);
}
/*クラス指定*/
.margin-auto {
  margin-inline: auto;
}
.text-center {
  text-align: center;
}
.none {
  display: none;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.flex.reverse {
  flex-direction: row-reverse;
}
.com-box01-txt-inner p.bold {
  font-weight: 700;
  font-size: 2rem;
}
.ex-bold {
  font-weight: 700;
}
.radius20 {
  border-radius: 20px;
}
.radius40 {
  border-radius: 40px;
}
.radius60 {
  border-radius: 60px;
}
.mb-ten5em {
  margin-bottom: 0.5em;
}
.mb-1em {
  margin-bottom: 1em;
}
.mb-2em {
  margin-bottom: 2em;
}
.mb-3em {
  margin-bottom: 3em;
}
.mb-4em {
  margin-bottom: 4em;
}
.mb-short {
  margin-bottom: clamp(20px, 4vw, 80px);
}
.mb-mid {
  margin-bottom: clamp(40px, 6vw, 100px);
}
.mb-large {
  margin-bottom: clamp(60px, 10vw, 120px);
}
.mb-xlarge {
  margin-bottom: clamp(80px, 20vw, 180px);
}
.aspect1-1, img.aspect1-1 {
  aspect-ratio: 1 / 1;
}
.aspect3-2, img.aspect3-2 {
  aspect-ratio: 3 / 2;
}
.aspect2-1, img.aspect2-1 {
  aspect-ratio: 2 / 1;
}
.aspect2-3, img.aspect2-3 {
  aspect-ratio: 2 / 3;
}
.aspect3-4, img.aspect3-4 {
  aspect-ratio: 3 / 4;
}
.aspect19-7, img.aspect19-7 {
  aspect-ratio: 19 / 7;
}
/*内包の余白０*/
.width1200 .width1200, .width1200 .width900 {
  padding: 0px;
}
/*ボックス幅*/
.width15 {
  width: 15%;
}
.width20 {
  width: 20%;
}
.width23 {
  width: 23%;
}
.width25 {
  width: 25%;
}
.width28 {
  width: 28%;
}
.width30 {
  width: 30%;
}
.width32 {
  width: 32%;
}
.width40 {
  width: 40%;
}
.width45 {
  width: 45%;
}
.width48 {
  width: 48%;
}
.width50 {
  width: 50%;
}
.width55 {
  width: 55%;
}
.width60 {
  width: 60%;
}
.width65 {
  width: 65%;
}
.width70 {
  width: 70%;
}
.width80 {
  width: 80%;
}
.width85 {
  width: 85%;
}
.width100 {
  width: 100%;
}
.flex1 {
  flex: 1;
}
/*========<!-- ヘッダー　-->========*/
/* ヘッダー固定 */
/*<div class="header-placeholder"></div>←ヘッダーphp*/
/* ヘッダーの高さを補填するためのダミー要素 */
.header-placeholder {
  display: none;
  height: 0;
}
/* 固定されたヘッダーのスタイル
.header-menu.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #fff2e6 url(/wp-content/uploads/2024/11/bg_paper.png) repeat left top / 100%;
  animation: slide-in 0.3s ease-in-out;
}
.header-menu.header-fixed > li {
  padding: 20px 0 20px;
}*/
/* 固定時のアニメーション
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}*/
header {
  background: #ffffff url(/wp-content/uploads/2025/02/circle-flag@4x-8のコピー.png) repeat-x left top/12%;
}
.g-menu-a-list.g-menu-a-list > li {
  width: calc(100% / 8);
}
.home .header-content.header-content {
  padding: 60px 0 0;
}
.header-content.header-content {
  padding: 60px 0 30px;
}
.fa-regular, .far {
  font-weight: 700;
  font-size: 3rem;
}
.g-nav-tel-pc {
  margin-right: 2em;
}
.header-box01.header-box01 .g-nav-tel-pc img {
  max-width: 200px;
}
.g-menu-wrap {
  width: 80%;
}
/*========<!-- 追従ナビ　
<nav class="sticky-nav">
  <div class="g-sub-nav-list fadeUpTrigger fadeUp"><a href="/"><i class="fa-solid fa-envelope" style="color: #ffffff;"></i>採用エントリーはこちらから&nbsp;<i class="fa-solid fa-arrow-right" style="color: #ffffff;"></i></a></div>
</nav>-->========*/
.sticky-nav {
  display: block;
  position: fixed;
  z-index: 2;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.sticky-nav .g-sub-nav-list a {
  display: block;
  writing-mode: vertical-rl;
  width: 70px;
  font-size: 1.8rem;
  padding: 15px;
  text-align: center;
  margin-left: 0;
  background-color: #ffffff;
  border-radius: 10px 0 0 10px;
  color: #00B900;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 600;
  border: 3px solid #00B900;
  border-right: none;
  letter-spacing: 0.1em;
}
.line-link.line-link .flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.line-link.line-link .flex img {
  width: 100%;
  max-width: 50px;
}
.header-inner.flex.flex {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .sticky-nav .g-sub-nav-list a:hover {
    color: #ffffff;
    background-color: #00B900;
  }
  .sticky-nav .g-sub-nav-list a:hover i.fa-solid.fa-envelope, .sticky-nav .g-sub-nav-list a:hover i.fa-solid.fa-arrow-right {
    color: #ffffff !important;
  }
}
/*========<!-- フッター　-->========*/
.footer {
  background: url(/wp-content/uploads/2025/02/deer-1.png) no-repeat 0.5% 92%/10.5%, url(/wp-content/uploads/2025/03/hari@2x-8.png) no-repeat 26% 93%/ 6%, url(/wp-content/uploads/2025/03/usagi_1@2x-8.png) no-repeat 36% 93%/5%, url(/wp-content/uploads/2025/03/kusarisu-8.png) no-repeat 87% 96%/20%, url(/wp-content/uploads/2025/03/cloud2@2x-8.png) no-repeat 5% 10%/30%, url(/wp-content/uploads/2025/03/cloud1@2x-8.png) no-repeat 92% 15%/10%, url(/wp-content/uploads/2025/02/img-noise-300x300-3.png) repeat left top / 20%;
}
.home .footer {
  background: url(/wp-content/uploads/2025/02/deer-1.png) no-repeat 0.5% 92%/10.5%, url(/wp-content/uploads/2025/03/hari@2x-8.png) no-repeat 26% 93%/ 6%, url(/wp-content/uploads/2025/03/usagi_1@2x-8.png) no-repeat 36% 93%/5%, url(/wp-content/uploads/2025/03/kusarisu-8.png) no-repeat 87% 96%/20%, url(/wp-content/uploads/2025/03/cloud2@2x-8.png) no-repeat 5% 15%/30%, url(/wp-content/uploads/2025/03/cloud1@2x-8.png) no-repeat 92% 25%/10%, url(/wp-content/uploads/2025/02/wave2-8.png) no-repeat left top/100%, url(/wp-content/uploads/2025/02/img-noise-300x300-3.png) repeat left top / 20%;
  margin-top: -1%;
}
.footer-logo {
  width: 70%;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 5px dotted #5c4b33;
  margin-bottom: 40px;
}
.footer-address p, .footer-address a, .footer-menu a {
  color: #5c4b33 !important;
}
.sns-icon-title p, .sns-sub-nav li a, .sns-icon-title span, .copyright p {
  color: #5c4b33 !important;
}
.footer-menu-title {
  background-color: #5c4b33;
  color: #ffffff;
}
.footer-menu > li > a {
  border-bottom: 1px dashed #5c4b33;
}
.footer-logo-address {
  width: 500px;
  /* text-align: center; */
  display: flex;
  align-items: center;
  flex-direction: column;
}
.copyright p {
  margin-bottom: 0;
  padding-bottom: 2em;
}
/*========================================================================================

HOME

=========================================================================================*/
/*=====全階層共通背景色柄余白の指定=====*/
.home section:nth-of-type(odd) {
  background: url(/wp-content/uploads/2025/03/cloud2@2x-8.png) no-repeat 5% 15%/30%, url(/wp-content/uploads/2025/03/cloud1@2x-8.png) no-repeat 92% 25%/10%, url(/wp-content/uploads/2025/02/wave2-8.png) no-repeat left -1% / 100%, url(/wp-content/uploads/2025/02/wave1-8.png) no-repeat left bottom / 100%;
}
.page-template-page-fullwidth section {
  background: url(/wp-content/uploads/2025/03/cloud2@2x-8.png) no-repeat 5% 3%/30%, url(/wp-content/uploads/2025/03/cloud1@2x-8.png) no-repeat 92% 6%/10%;
}
.home section:nth-of-type(odd).slider {
  background: url(/wp-content/uploads/2025/03/cloud2@2x-8.png) no-repeat -1% 15%/25%, url(/wp-content/uploads/2025/02/wave2-8.png) no-repeat left -1% / 100%, url(/wp-content/uploads/2025/02/wave1-8.png) no-repeat left bottom / 100%;
}
.home section.home-section02 {
  background: url(/wp-content/uploads/2025/03/cloud2@2x-8.png) no-repeat 5% 15%/30%, url(/wp-content/uploads/2025/03/cloud1@2x-8.png) no-repeat 82% 18%/12%, url(/wp-content/uploads/2025/02/wave2-8.png) no-repeat left -1%/100%, url(/wp-content/uploads/2025/02/wave1-8.png) no-repeat left bottom/100%;
}
.home section:nth-of-type(even):not(.slider) {
  margin-top: -1%;
  margin-bottom: -1%;
}
.home section:nth-of-type(even) {
  background-color: #ffffff;
}
.home-section01 .deco1 {
  transform: translateX(-7%);
}
.home-section03 .deco3 {
  transform: translateX(-32%);
}
.home-section04 .deco4 {
  transform: translateX(-12%);
}
.home-section05 .deco5 {
  transform: translateX(-30%);
}
/*========<!-- トップスライダー -->========*/
.slider {
  position: relative;
  z-index: 0;
}
.n2-ss-align.n2-ss-align-visible.n2-ss-align-visible {
  width: 75vw !important;
  margin-left: auto;
}
div#n2-ss-2 .n2-ss-slider-2 {
  border-radius: 100px 0 0 100px !important;
}
.slider::before {
  content: "「手ぶら保育」でらくらく登園。\A着替えも、オムツも、シーツも\A全部保育園にお任せで、忘れ物の心配もなし！";
  position: absolute;
  height: 100%;
  top: 28%;
  left: 4%;
  z-index: 2;
  writing-mode: vertical-rl; /* 縦書き */
  white-space: pre; /* 改行を有効にする */
  font-family: "Zen Maru Gothic", serif;
  color: #5c4b33;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width:1800px) {
  .slider::before {
    top: 24%;
    left: 4%;
    font-size: 5.5rem;
  }
}
.slider::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/wp-content/uploads/2025/02/bird-icon.png) no-repeat 6% 17%/8%, url(/wp-content/uploads/2025/02/footer-tree@2x-8-1.png) no-repeat 3% 82%/23%, url(/wp-content/uploads/2025/03/hari@2x-8.png) no-repeat 36% 87%/8.5%, url(/wp-content/uploads/2025/03/kusarisu-8.png) no-repeat 92% 90%/25%;
  bottom: 0%;
  left: 0%;
  z-index: 1;
}
/* 下層ヘッダーのシャドウの位置調整 */
p.sub-header-txt.sub-header-txt {
  margin-bottom: 0px;
}
h1.logo.logo {
  width: 250px;
}
/*========<!-- home-section01 -->========*/
.news-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-list01.news-list01 li:not(:last-of-type) {
  border-bottom: 1px solid #5c4b33;
}
.title02 {
  background: #ffef8e url(/wp-content/uploads/2025/02/img-noise-300x300-3.png) repeat left top / 60%;
  border: dotted 3px #d67e00;
  border-radius: 10px;
  color: #5c4b33;
  box-shadow: 5px 5px 0px 0px rgba(189, 164, 115, 0.7);
}
.bnr {
  background: #ffef8e url(/wp-content/uploads/2025/02/img-noise-300x300-3.png)
}
.bnr p.width50 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5em;
  /*color: #ffffff;*/
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0;
}
.bnr img {
  border-radius: 0 60px 60px 0;
  height: 100%;
}
.title02.mb-short {
  margin-bottom: clamp(20px, 4vw, 80px);
}
/*========<!-- home-section02 -->========*/
/*========<!-- home-section03 -->========*/
/*========<!-- home-section04 -->========*/
/*========<!-- home-section05 -->========*/
/*========================================================================================

about

=========================================================================================*/
.about-section .lead-txt {
  padding: 6em 4em 7em;
  background-color: #ffffff;
  background-image:
    url(/wp-content/uploads/2025/03/kusarisu-8.png), url(/wp-content/uploads/2025/02/butterfly-icon.png);
  background-repeat: no-repeat, no-repeat;
  background-position: 99% 95%, 4% 6%;
  background-size: 30%, 8%;
}
/*========================================================================================

important

=========================================================================================*/
.important-section01 .lead-txt {
  padding: 4em;
  background-color: #ffffff;
  background-image: url(/wp-content/uploads/2025/03/hari@2x-8.png), url(/wp-content/uploads/2025/02/deer-1.png);
  background-repeat: no-repeat, no-repeat;
  background-position: 21% 18%, 85% 63%;
  background-size: 8%, 12%;
}
.heading5 {
  position: relative;
  font-size: 3rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
  color: #d67e00;
}
.heading5::before {
  content: attr(data-number);
  display: block;
  margin-bottom: 20px;
  color: #d67e00;
  font-size: 3rem;
  font-weight: 700;
}
.heading5::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 15px;
  border-radius: 100px;
  background-color: #d67e00;
}
.important-section02 .lead-txt {
  padding: 6em 4em 4em;
  background-image: url(/wp-content/uploads/2025/03/flower-icon.png);
  background-repeat: no-repeat;
  background-position: center 10%;
  background-size: 6%;
}
/*========================================================================================

life

=========================================================================================*/
.life-section table.tablepress tbody td.column-1 {
  width: 33% !important;
  color: #5c4b33 !important;
}
.life-section table.tablepress tbody td.column-2 {
  width: 33% !important;
  color: #5c4b33 !important;
  background-color: #f6ce69 !important;
  font-size: 2.2rem;
  font-weight: 700;
  border-top: 1px solid #ffffff !important;
}
/*.life-section .tablepress > :where(thead) + tbody > * > *, .life-section .tablepress > tbody > * ~ * > *:not(.column-2) {
  border-top: 1px solid #ffffff !important;
}*/
.life-section .tablepress > :where(thead) + tbody > * > *, .life-section .tablepress > tbody > * ~ * > * {
  border-top: 1px solid #f6ce69 !important;
}
.life-section table.tablepress tbody td.column-3 {
  width: 33% !important;
  color: #5c4b33 !important;
}
.life-section table.tablepress tbody tr {
  height: 80px !important;
}
.life-section table.tablepress thead th {
  border-right: none;
  height: 80px;
}
.life-section table.tablepress thead .row-1 th {
  height: 100px;
  padding-top: 20px;
}
.life-section table.tablepress tbody th, .life-section table.tablepress tbody td {
  text-align: center !important;
  vertical-align: middle;
}
.life-section .tab-item2 {
  width: 540px;
}
.life-section .panel-item2 {
  padding: 8rem 0 0;
}
.life-section table.tablepress thead th {
  color: #5c4b33 !important;
  background-color: transparent;
  font-size: 2.8rem;
  font-weight: 500;
}
.life-section table.tablepress thead th.column-2 {
  color: #5c4b33 !important;
  background-color: #f6ce69 !important;
}
.panel-item2 .table-wrap {
  position: relative;
  z-index: 0;
  padding: 0 4em;
  background-color: #ffffff !important;
  box-shadow: inset 0 0 10px 15px #f6ce69;
  border-radius: 60px;
}
.panel-item2 .table-wrap::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("/wp-content/uploads/2025/02/footer-tree@2x-8-1.png") no-repeat 11% 95% / 20%, url("/wp-content/uploads/2025/03/kusarisu-8.png") no-repeat 93% 95% / 25%, url("/wp-content/uploads/2025/02/ladybug-icon.png") no-repeat 67% 61% / 6%, url("/wp-content/uploads/2025/02/butterfly-icon.png") no-repeat 32% 18% / 7%;
  pointer-events: none;
}
.com-list03-ttl.com-list03-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  background-color: #ffffff;
  margin-bottom: 0;
  position: absolute;
  right: 0px;
  top: 0px;
  left: auto;
  bottom: auto;
  padding: 10px 15px;
  writing-mode: vertical-rl;
  border-radius: 0 15px;
  color: #5a4b33;
}
/*========================================================================================

guide

=========================================================================================*/
.guide-section01 .lead-txt {
  padding: 7em 4em 2em;
  background-image:
    url(/wp-content/uploads/2025/02/bird-icon.png);
  background-repeat: no-repeat;
  background-position: center 30%;
  background-size: 8%;
  text-align: center;
}
.guide-section02 table.tablepress tbody td.column-1, .guide-section02 table.tablepress tbody td.column-2, .guide-section02 table.tablepress tbody td.column-3, .guide-section02 table.tablepress tbody td.column-4, .guide-section02 table.tablepress tbody td.column-5 {
  width: 20% !important;
}
.guide-section02 table.tablepress tbody td {
  text-align: center !important;
}
.guide-section02 table.tablepress tbody td.column-1 {
  text-align: left !important;
}
.guide-section02 table.tablepress tbody .row-1 td {
  color: #d67e00 !important;
}
table.tablepress tbody td.column-2 {
  width: 70% !important;
  color: #5c4b33 !important;
  background-color: transparent !important;
}
table.tablepress tbody td.column-3 {
  color: #5c4b33 !important;
}
table.tablepress tbody th:not(:last-child) {
  border-right: 1px solid #d67e00 !important;
}
table.tablepress tbody td {
  border-left: none !important;
}
table.tablepress tbody th, table.tablepress tbody td {
  text-align: left !important;
}
.tablepress-table-description.tablepress-table-description, .tablepress-table-name {
  display: none;
}
.tablepress > :where(thead) + tbody > * > *, .tablepress > tbody > * ~ * > * {
  border-top: 1px solid #5c4b33 !important;
}
.shadow-box {
  background-color: #ffffff;
  padding: 2em;
  border-radius: 40px;
  box-shadow: inset 0 0 10px 15px #fffacd;
}
.guide-section03 .bg-wh:first-of-type {
  position: relative;
}
.guide-section03 .bg-wh:first-of-type:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  z-index: 1;
  background: url(/wp-content/uploads/2025/03/usagi_1@2x-8.png) no-repeat left bottom/12%, url(/wp-content/uploads/2025/03/hari@2x-8.png) no-repeat right bottom/15%;
  pointer-events: none;
}
/*========================================================================================

 reruit

=========================================================================================*/
.recruit-section01 .lead-txt {
  padding: 6em 4em 4em;
  background-image: url(/wp-content/uploads/2025/02/clover-icon.png);
  background-repeat: no-repeat;
  background-position: center 10%;
  background-size: 7%;
}
.tab-panel-a .tab {
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 15px;
  position: relative;
  background: #ffffff;
  box-shadow: 6px 6px 0px 0px #f6ce69;
  width: 520px;
  height: 70px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-panel-a .tab:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 15px;
  border: 3px dotted #f6ce69;
  pointer-events: none;
}
.tab-panel-a .tab-group {
  justify-content: space-between;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .tab-panel-a .tab:hover {
    transform: translateY(-5px); /* 浮き上がるアニメーション */
    background: #f6ce69;
    box-shadow: 6px 6px 0px 0px rgb(214, 126, 0);
  }
  .tab-panel-a .tab:hover::before {
    border: 3px dotted #ffffff;
  }
}
.tab-panel-a .tab.is-active {
  background: #f6ce69;
  box-shadow: 6px 6px 0px 0px rgb(214, 126, 0);
}
.tab-panel-a .tab.is-active::before {
  border: 3px dotted #ffffff;
}
.recruit-feed01 > li {
  background-color: #ffffff;
}
/*========================================================================================

 overview

=========================================================================================*/
.overview-section01 .col-47 {
  position: relative;
  z-index: 0;
}
.overview-section01 .col-47:first-of-type::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("/wp-content/uploads/2025/03/kusarisu-8.png") no-repeat right bottom / 50%;
}
/*========================================================================================

 contact

=========================================================================================*/
.contact-section .shadow-box.col-47 {
  padding: 4em;
  text-align: center;
}
.contact-section .shadow-box.col-47 a {
  font-size: 2.4rem;
  font-weight: 700;
}
.contact-section .copy {
  font-size: 1.8rem;
}
.tel-name {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 1em;
  border-bottom: dotted 4px;
}
.contact-section .shadow-box {
  box-shadow: inset 0 0 10px 15px #f6ce69;
}
table.contact-form01 {
  border-collapse: separate;
  border-spacing: 0px 1px;
  margin-bottom: 8em;
}
table.contact-form01 th {
  color: #555555;
  background: transparent;
}
table.contact-form01 th {
  border-bottom: 1px solid #5c4b33; /*!!!!!!!!!!!!!!*/
}
table.contact-form01.contact-form01 th:not(:last-of-type) {
  border-bottom: 1px solid #5c4b33;
}
table.contact-form01 tbody tr:first-child th, table.contact-form01 tbody tr:first-child td {
  line-height: 2.5;
  border-top: 1px solid #5c4b33;
}
table.contact-form01 td {
  border-bottom: 1px solid #5c4b33;
  border-left: #5c4b33 1px solid;
  font-size: 11px;
  background: transparent;
}
table.contact-form01.contact-form01 td:not(:last-of-type) {
  border-bottom: 2px solid #5c4b33;
}
.wpcf7-list-item-label {
  font-size: 1.6rem;
}
.privacy-check {
  margin-bottom: 6em;
}
.privacy-check a {
  color: #50bbfd;
}
/*送信ボタン*/
input[type="submit"], input[type="button"] {
  border: none !important;
}
input[type="text"], textarea, input[type="email"], input[type="tel"] {
  background-color: #dedede;
}
input[type="submit"], input[type="button"] {
  padding: 10px 0;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 100px;
  position: relative;
  background: #fdf4a1;
  box-shadow: 6px 6px 0px 0px #f6ce69;
  width: 600px;
  height: 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main);
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  input[type="submit"]:hover, input[type="button"]:hover {
    transform: translateY(-5px); /* 浮き上がるアニメーション */
    background: #f6ce69;
    box-shadow: 6px 6px 0px 0px rgb(214, 126, 0);
  }
}
.single-info-wrap img {
  width: auto!important;
  max-width: 100%;
}

#tablepress-2 tbody td.column-2 {
  width: 35%!important;
}

#tablepress-2 tbody td.column-3 {
  width: 35%!important;
}

#tablepress-2-description {
  display: block;
  background-color: rgba(0, 0, 0, 0);
  text-align: left;
  line-height: 1.5em;
  font-size: 1.4rem;
  width: calc(100% - 100px);
  margin: 0 auto;
}

@media screen and (max-width:1024px) {

#tablepress-2-description {
margin: 0 auto 60px;
width: 100%;
}

}

@media screen and (max-width:820px) {

#tablepress-2-description {
margin: 0 auto 10vw;
width: 100%;
}

}
