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

共通設定

=========================================================================================*/
/*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: #545454;
}
*, *::before, *::after {
  box-sizing: border-box !important;
}
body {
  background: url(/wp-content/uploads/2025/05/22584528-new.jpg) no-repeat left top/100%;
}
section {
  padding: clamp(40px, 16vw, 140px) 0 clamp(40px, 16vw, 140px);
  margin: 0px;
}
section:nth-of-type(even) {
  padding: clamp(80px, 24vw, 220px) 0 clamp(80px, 24vw, 220px);
}
section.home-section01 {
  padding: clamp(60px, 20vw, 180px) 0 clamp(80px, 24vw, 220px);
  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;
}
/* 丸のスタイル */
.see-more-btn .arrow {
  width: 60px;
  height: 60px;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #ffb73a;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
/* 矢印のスタイル */
.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: #fff;
}
/* ホバー時に矢印を動かさない */
.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: 10px;
  bottom: 10px;
}
#page-top img {
  max-height: 100px;
  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;
  border-radius: 20px;
}
/*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;
}
.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;
  border-radius: 20px;
}
.com-box02-head.com-box02-head {
  margin-bottom: 1em;
  color: #ffffff;
  background-color: #11ebf9;
  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: #11ebf9;
  border-radius: 20px;
  font-weight: 700;
}
.com-box03-list.com-box03-list {
  gap: 4em 2em;
  /*position: relative;
  z-index: 2;*/
}
/*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: #11ebf9;
  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: #11ebf9;
  margin: 2em 0 2em;
}
.com-list01-icon.com-list01-icon img {
  width: 100%;
  border-radius: 20px;
  aspect-ratio: 3/2;
  height: auto;
}
/*com-list02*/
/*com-list03*/
.com-list03.com-list03 > li {
  width: 47%;
  margin-bottom: 40px;
}
.com-list03-sub.com-list03-sub {
  display: none;
}
.com-list03.com-list03 > li {
  margin-bottom: 0px;
}
.flex.com-list03.com-list03 {
  gap: 5vw 2vw;
}
/*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: #11ebf9;
  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: #b64e4e;
  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-interview01-img.com-interview01-img img {
  aspect-ratio: 3 / 2 !important;
  border-radius: 20px;
}
.com-interview01-position {
  border-radius: 20px;
}
/*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 {
  width: 30%;
  padding: 10px 0;
  background: #cccccc;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 15px;
}
.tab-item2 {
  width: 30%;
  padding: 10px 0;
  background: #545454;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 15px 15px 0 0;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .tab-item:hover, .tab-item2:hover {
    background: #f4bd19;
  }
}
.tab-item.is-active, .tab-item2.is-active {
  background: #ffb73b;
}
/* パネル */
.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: #3a3227 !important;
}
.sns-icon-wrap.flex.sns-icon-wrap.flex .line {
  display: none;
}
.line-icon path {
  fill: #3a3227 !important;
}
/*テーブルの調整*/
table.tablepress {
  border: none !important;
}
table.tablepress tbody td.column-1 {
  width: 30% !important;
  color: #545454 !important;
  background-color: transparent !important;
}
table.tablepress tbody td.column-2 {
  width: 70% !important;
  color: #333333 !important;
  background-color: transparent !important;
}
table.tablepress tbody th:not(:last-child) {
  border-right: 1px solid #11ebf9 !important;
}
table.tablepress tbody td {
  border-left: none !important;
}
table.tablepress tbody th, table.tablepress tbody td {
  text-align: left !important;
}
table.tablepress > * + tbody > * > *, table.tablepress > tbody > * ~ * > *, table.tablepress > tfoot > * > * {
  border-top: 1px solid #11ebf9 !important;
}
table.tablepress tbody tr:last-of-type td {
  border-bottom: 1px solid #11ebf9;
}
.tablepress-table-description.tablepress-table-description, .tablepress-table-name {
  display: none;
}
/*iflameの調整*/
iframe.youtube-content {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
iframe.g-map {
  width: 100%;
  height: auto;
  aspect-ratio: 5 / 4;
}
.youtube-area {
  text-align: center;
}
/*=========下層=========*/
#breadcrumbs {
  padding-bottom: 0px !important;
  margin-bottom: clamp(80px, 18vw, 160px) !important;
}
/*下層タイトル*/
.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;
}
/*=========ブロックあしらいバリエーション=========*/
/*ーアーチトリミングー*/
.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(20px, 5vw, 60px);
  text-align: center;
}
.title-head span.title-ja {
  color: #545454;
  font-size: clamp(2rem, 1.273rem + 3.64vw, 4rem);
  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-family: "Homemade Apple", cursive;*/
  font-weight: 400;
  font-style: normal;
  display: block;
  text-align: center;
  color: #18EBF9;
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
  padding-top: 0.5em;
  position: relative;
  z-index: 1;
}
.head-icon {
  width: clamp(100px, 30vw, 400px);
  padding-bottom: 1em;
}
.head-icon img {
  width: 100%;
}
/*クラス指定*/
.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;
}
.bold {
  font-weight: 500;
}
.ex-bold {
  font-weight: 700;
}
.radius20 {
  border-radius: 20px;
}
.radius40 {
  border-radius: 40px;
}
.mb-ten5em {
  margin-bottom: 0.5em;
}
.mb-1em {
  margin-bottom: 1em;
}
.mb-2em {
  margin-bottom: 2em;
}
.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);
}
.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%;
}
.flex1 {
  flex: 1;
}
/*========<!-- ヘッダー　-->========*/
.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;
}
.menu-header-menu-container {
  margin-bottom: 2em;
}
/*========<!-- お問い合わせ -->========*/
/*送信ボタン*/
input[type="submit"], input[type="button"] {
  width: 60%;
  border-radius: 50px;
  transition: all 0.3s;
  border: 1px solid var(--main) !important;
}
input[type="submit"]:hover, input[type="button"]:hover {
  color: var(--main) !important;
  background: #fff !important;
}
input[type="text"], textarea, input[type="email"], input[type="tel"], input[type="radio"] {
  background-color: #dedede;
}
.required {
  color: #ffffff;
  background-color: #545454;
}
table.contact-form01 {
  border-collapse: separate;
  border-spacing: 0px 1px;
  margin-bottom: 8em;
}
table.contact-form01 th {
  border-right: 1px solid #ffffff;
  color: #545454;
  background: transparent;
}
table.contact-form01 th {
  border-bottom: 1px solid #11ebf9;
}
table.contact-form01.contact-form01 th:not(:last-of-type) {
  border-bottom: 1px solid #11ebf9;
}
table.contact-form01 tbody tr:first-child th, table.contact-form01 tbody tr:first-child td {
  line-height: 2.5;
  border-top: 1px solid #11ebf9;
}
table.contact-form01 td {
  border-bottom: 1px solid #11ebf9;
}
table.contact-form01 td {
  border-left: #11ebf9 1px solid;
  font-size: 11px;
  background: transparent;
}
table.contact-form01.contact-form01 td:not(:last-of-type) {
  border-bottom: 1px solid #11ebf9;
}
.wpcf7-list-item-label {
  font-size: 1.6rem;
}
.privacy-check {
  margin-bottom: 6em;
}
.privacy-check a {
  color: #50bbfd;
}
/*========<!-- フッター　-->========*/
.footer {
  background: url(/wp-content/uploads/2025/05/flowers2@2x-8.png) no-repeat center top/90%;
}
.footer-logo {
  width: 30%;
  margin: 0 auto 20px;
  padding-bottom: 20px;
  border-bottom: 5px dotted #11ebf9;
  margin-bottom: 40px;
}
.footer-address p, .footer-address a, .footer-menu a {
  color: #545454 !important;
}
.sns-icon-title p, .sns-sub-nav li a, .sns-icon-title span, .copyright p {
  color: #545454 !important;
}
.footer-menu-title {
  background-color: #11ebf9;
  color: #fff;
}
.footer-menu > li > a {
  border-bottom: 1px dashed #11ebf9;
}
.footer-logo-address {
  width: 500px;
  /* text-align: center; */
  display: flex;
  align-items: center;
  flex-direction: column;
}
/*========================================================================================

HOME

=========================================================================================*/
/*=====全階層共通背景色柄余白の指定=====*/
.shapedividers_com-6165 {
  overflow: hidden;
  position: relative;
}
.shapedividers_com-6165::before {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 130px;
  background-position: 50% bottom;
  transform: rotateY(180deg);
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23c6feff"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23c6feff"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23c6feff"/></svg>');
  pointer-events: none;
}
.shapedividers_com-6165::before {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: -1;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 130px;
  background-position: 50% bottom;
  transform: rotateY(180deg);
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.67c-3.07-.55-9.27.41-16.15 0-6.87-.4-13.74-.58-19.13.1v.4h35.28z" fill="%23c6feff"/><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" opacity=".5" fill="%23c6feff"/><path d="M35.28.31c-2.57.84-7.68.3-11.8.43-4.1.12-6.85.61-9.57.28C11.18.69 8.3-.16 5.3.02 2.3.22.57.85 0 .87v1.2h35.28z" opacity=".5" fill="%23c6feff"/></svg>');
  pointer-events: none;
}
.shapedividers_com-6165.home-section01::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url("/wp-content/uploads/2025/05/under-oka-8.png") no-repeat center -1px/ 105%;
  pointer-events: none;
}
@media (min-width:2100px) {
  .shapedividers_com-6165::before {
    background-size: 100% calc(2vw + 130px);
  }
}
.shapedividers_com-9289 {
  overflow: hidden;
  position: relative;
}
.shapedividers_com-9289::after {
  content: '';
  font-family: 'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw;
  background-size: 100% 130px;
  background-position: 50% 0%;
  transform: rotateY(180deg);
  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23c6feff"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23c6feff"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23c6feff"/></svg>');
}
@media (min-width:2100px) {
  .shapedividers_com-9289::after {
    background-size: 100% calc(2vw + 130px);
  }
}
.bg-sx {
  background-color: #c6feff;
  position: relative;
}
.bg-sx::after {
  content: "";
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url(/wp-content/uploads/2025/05/tree2.png) no-repeat right bottom / 18%;
  pointer-events: none;
}
.decoration1 {
  background: url(/wp-content/uploads/2025/05/bird-tree_1@3x-8.png) no-repeat right 2%/25%, url(/wp-content/uploads/2025/05/tree@3x-8.png) no-repeat left 2%/25%;
  position: relative;
  z-index: 1;
}
.decoration2 {
  background: url(/wp-content/uploads/2025/05/gold-wind2@3x-8.png) no-repeat left 5%/25%, url(/wp-content/uploads/2025/05/gold-wind1@3x-8.png) no-repeat right 5%/25%;
  position: relative;
  z-index: 1;
}
.home-section:nth-of-type(even) .decoration1::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("/wp-content/uploads/2025/05/tree1.png") no-repeat left bottom / 20%;
  pointer-events: none;
}
.home-section.home-section01 .decoration1::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("/wp-content/uploads/2025/05/windleaf@2x-8.png") no-repeat 90% 50% / 25%, url("/wp-content/uploads/2025/05/tree1.png") no-repeat -5% 100% / 20%;
  pointer-events: none;
}
.home-section.home-section03 .decoration1::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("/wp-content/uploads/2025/05/ponpon@2x-8.png") no-repeat 5% bottom / 30%;
  pointer-events: none;
}
.home-section.home-section05 .decoration1::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: 0;
  bottom: 0;
  background: url("/wp-content/uploads/2025/05/windleaf@2x-8.png") no-repeat 95% 50% / 25%, url("/wp-content/uploads/2025/05/ponpon@2x-8.png") no-repeat 5% 70% / 30%;
  pointer-events: none;
}
/*========<!-- トップスライダー　-->========*/
.slider {
  position: relative;
  z-index: 0;
}
div#n2-ss-2 .n2-ss-slider-2 {
  border-radius: 100vw 100vw 0px 0px !important;
}
.slider::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/wp-content/uploads/2025/05/FORESTS-8.png) no-repeat center bottom/105%;
  bottom: 0%;
  left: 0%;
  z-index: 1;
}
/* 下層ヘッダーのシャドウの位置調整 */
p.sub-header-txt.sub-header-txt {
  margin-bottom: 0px;
}
/*========<!-- home-section01 -->========*/
/*========<!-- home-section02 -->========*/
/*========<!-- home-section03 -->========*/
/*========<!-- home-section04 -->========*/
/*========<!-- home-section05 -->========*/
/*========<!-- home-section06 -->========*/
/*========<!-- home-section07 -->========*/


/*20250612:情報公開エリア追加*/

.list-pdf {
  display: flex;
  justify-content: flex-start;
  flex-wrap:wrap;
}

.list-pdf li {
  width: 48%;
  margin: 1%;
}

.list-pdf a {
  display: flex;
  background-color: var(--main);
  padding:20px;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  border-radius:5px;
}

.list-pdf a .fas {
  margin-left: 10px;
  color:#545454;
}
@media screen and (max-width: 700px) {
  .list-pdf li {
    width: 80%;
    margin: 0 auto 24px;
  }
