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

共通設定

=========================================================================================*/
/*GOOGLEFONT*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');
h1, h2, h3 {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  color: #3a3227;
}
h4, h5, h6 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
  /*color: #839E1E;*/
}
p, a, li, dt, dd, time, th, td, span, label, input {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #3a3227;
}
/*セクション共通指定GL:E6EEF2:F5F5F5/BR:3F2A22/RE:AE303A/GR:839E1E*/
*, *::before, *::after {
  box-sizing: border-box !important;
}
body {
  background: #d1d1d1 url(/wp-content/uploads/2024/09/img-noise-361x370-1.png) repeat left top/20%;
}
html {
  font-size: 10px;
}
section:not(:last-of-type) {
  padding: clamp(80px, 20vw, 180px) 0 0;
  margin: 0px;
}
section:last-of-type {
  padding: clamp(80px, 20vw, 180px) 0;
  margin: 0px;
}
section.slider {
  padding: 0 0 clamp(20px, 2vw, 40px) 0;
  margin: 0px;
}
p {
  margin-bottom: 0px;
}
.footer-nav-wrap p {
  margin-bottom: 1em;
}
/*背景色ありの場合
section {
  margin-bottom: 0px;
  padding: clamp(80px, 20vw, 180px) 0 clamp(80px, 20vw, 180px);
}*/
a {
  transition: all .3s;
  cursor: pointer;
}
/*ボタンのパターン★*/
.btn01 {
  border: 1px solid #AE303A;
  background-color: #AE303A;
}
/*<a href="/category/column/" class="see-more-btn">一覧を見る
        <div class="arrow active"><span class="arrow__item01"></span><span class="arrow__item02"></span></div>
        </a>*/
.see-more-btn {
  height: 60px;
  position: relative;
  text-decoration: none;
  outline: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  transition: all .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: #AE303A;
  border-radius: 30px;
  overflow: hidden;
}
.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__item01 {
  transform: translateX(400%);
  transition: all .3s ease-in-out;
}
.see-more-btn:hover .arrow__item02 {
  transform: translateX(0);
  transition: all .3s ease-in-out 0.1s;
}
#breadcrumbs {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .btn01.btn01:hover {
    color: #AE303A;
    border: 1px solid #AE303A;
  }
  .btn01.btn01:hover .btn-arrow {
    fill: #AE303A;
  }
}
/*TOPボタン*/
#page-top {
  right: 10px;
  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, .com-box02-img.com-box02-img img, .com-box03-img.com-box03-img img {
  height: auto;
  aspect-ratio: 3 / 2 !important;
  border-radius: 20px
}
/*news-list*/
.info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info .news-list01 {
  flex: 1;
  margin-bottom: 10em;
}
.news-list02 {
  margin-bottom: 10em;
  flex: 1;
}
.news-list03 li .news-img img {
  height: auto;
}
/*com-box02*/
.com-box02-list.com-box02-list {
  gap: 3em 3em;
}
.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: 1em;
}
.com-box02-head.com-box02-head {
  margin-bottom: 0.2em;
  /*color: #004f74;
  background-color: #ffffff;*/
  border-radius: 20px;
}
.com-box02-txt {
  flex: 1;
}
/*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: #036654;
  background-color: #ffffff;
  border-radius: 20px;
}
/*.com-box03-list {
  gap: 60px 40px;
  position: relative;
  z-index: 2;
}
.com-box03-list::after {
  display: block;
  content: "";
  width: 30%;
}
*/
/*com-list01*/
.com-list01.com-list01.flex {
  gap: 6em 2em;
}
.com-list01.com-list01 li {
  background-color: transparent;
  width: 30%;
  padding: 0px;
  margin-top: 2em;
  margin-bottom: 0px
}
.com-list01-nm.com-list01-nm {
  /*color: #839E1E;*/
  font-family: transparent;
  left: 0px;
  font-size: 50px;
}
.com-list01-txt.com-list01-txt {
  font-size: 16px;
  font-weight: 500;
}
.com-list01-head.com-list01-head {
  /*color: #046654;
  background-color: #ffffff;*/
  margin: 2em 0 1em;
}
.com-list01-icon.com-list01-icon img {
  width: 50%;
  height: auto;
}
/*com-flow02*/
.com-flow02-list.com-flow02-list li {
  /*width: 30%;*/
  margin-bottom: 0px;
}
/*.com-flow02-arrow.com-flow02-arrow {
  left: -11%;
}*/
.com-flow02-icon.com-flow02-icon img {
  height: auto;
  width: 60%;
  margin: 0 auto;
}
.com-flow02-txt.com-flow02-txt.com-flow02-txt.com-flow02-txt {
  background-color: transparent;
  color: #3a3227;
  border-radius: 15px;
  font-size: 16px;
  text-align: left;
}
/*com-timeline02*/
.com-timeline02-list.com-timeline02-list {
  margin-bottom: 0px;
}
/*com-interview02*/
.com-interview02-name.com-interview02-name {
  margin-bottom: 1.5em;
}
.com-interview02-position.com-interview02-position {
  margin-bottom: 1.5em;
}
.com-interview02-img.com-interview02-img img {
  aspect-ratio: 2 / 3;
  height: auto;
}
/*タブメニュー*/
/*タブ
 <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 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.tab-list.tab-list-add {
  justify-content: flex-start;

}
.tab-item4 {
  margin-right: 1.3%;
}

.tab-item {
  width: 48%;
  padding: 10px 0;
  background-color: #b2b2b2;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 15px;
  border: 2px solid #b2b2b2;
}
.tab-item2,.tab-item4 {
  width: 32%;
  padding: 10px 0;
  background-color: #b2b2b2;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 15px;
  border: 2px solid #b2b2b2;
}

.tab-item3-wrap .tab-item3 {
  width: 32%;
  padding: 10px 0;
  background-color: #b2b2b2;
  color: #ffffff;
  text-align: center;
  border: 2px solid #b2b2b2;
}

.tab-item3-wrap .tab-item3:hover,
.tab-item3-wrap .tab-item3.is-active {
  border: 2px solid #3a3227;
}


/*PC以外ホバー禁止*/
@media(hover: hover) {
  .tab-item:hover, .tab-item2:hover,.tab-item4:hover {
    color: #ffffff;
    background-color: #839E1E;
    border-radius: 15px;
    border: 2px solid #839E1E;
  }
}
.tab-item.is-active, .tab-item2.is-active,.tab-item4.is-active {
  color: #ffffff;
  background-color: #839E1E;
  border-radius: 15px;
  border: 2px solid #839E1E;
}
/* パネル */
.panel-item, .panel-item2,.panel-item5,.panel-item4 {
  display: none;
  width: 100%;
  border-radius: 20px;
  margin-top: 4rem;
  padding: 4rem;
  background: #d1d1d1 url(/wp-content/uploads/2024/09/img-noise-361x370-1.png) repeat left top / 20%;
}
.panel-item.is-active, .panel-item2.is-active, .panel-item4.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: #AE303A;
}
#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-wrap.flex.sns-icon-wrap.flex .line {
  display: none;
}
.line-icon path {
  fill: #3a3227 !important;
}
/*テーブルの調整*/
/*縦長*/
table.tablepress {
  border: none;
}
.tablepress > * + tbody > * > *, .tablepress > tbody > * ~ * > *, .tablepress > tfoot > * > * {
  border-top: none !important;
}
table tbody tr:not(:first-child) {
  border-top: 1px solid #545454 !important;
}
.tablepress tbody td.column-1 {
  background-color: transparent;
  color: #545454;
}
.tablepress tbody td.column-2 {
  background-color: transparent;
  color: #545454;
}
.tablepress-table-name, .tablepress-table-description {
  display: none !important;
}
.tablepress-table-description.tablepress-table-description {
  display: none;
}
/*横長*/
body.home table.tablepress.tablepress-id-2 {
  border: none !important;
}
body.home .tablepress-id-2 th, body.home .tablepress-id-2 td {
  width: 16% !important;
}
body.home .tablepress-id-2 th:not(:last-child), body.home .tablepress-id-2 td:not(:last-child) {
  border-right: 1px solid #ffffff !important;
}
body.home .tablepress-id-2 th:last-child, body.home .tablepress-id-2 td:last-child {
  border-right: none !important;
}
body.home table.tablepress.tablepress-id-2 tbody td, body.home table.tablepress.tablepress-id-2 tbody td.column-1 {
  color: #004f74 !important;
  background-color: #ffffff !important;
  text-align: center !important;
}
body.home .tablepress-id-2 td:not(:last-child) {
  border-right: 1px solid #141c39 !important;
}
body.home table.tablepress.tablepress-id-2 thead th {
  background-color: #141c39 !important;
}
/*iflameの調整*/
iframe.youtube-content {
  width: 90%;
  height: auto;
  text-align: center;
  aspect-ratio: 16 / 9;
}
iframe.g-map {
  width: 100%;
  height: auto;
  aspect-ratio: 19 / 7;
}
.youtube-area {
  text-align: center;
}
/*下層タイトル*/
.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;
}
/*=========ブロックあしらいバリエーション=========*/
/*ーシャドウー*/
.or-shadow {
  box-shadow: 15px 15px 0px 0px rgba(236, 127, 56, 1);
  border-radius: 20px;
}
/*ーポラロイド風ー*/
.photo04 {
  display: inline-block;
  padding: 1px;
  box-shadow: 5px 5px 10px #0000003b;
}
.photo04 img {
  padding: 10px 10px 30px;
  background: #fff;
}
/*ー円形トリミングー*/
.photo06 img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 100px;
}
/*ーアーチトリミングー*/
.arch-img img, .arch-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 {
  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: #216d00;
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
  padding-top: 0.5em;
  position: relative;
  z-index: 1;
}
.head-icon {
  width: clamp(60px, 8vw, 160px);
  padding-bottom: 1em;
}
.head-icon img {
  width: 100%;
}
/*大タイトル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;
}
.title_design-op span {
  position: relative;
  z-index: 2;
}
.title_design-op::before {
  font-family: "Homemade Apple", cursive;
  font-style: normal;
  font-weight: 700;
  content: attr(data-en);
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 1);
  text-shadow: 3px 3px 12px rgba(0, 0, 0, 0.2);
  font-size: 100px;
  z-index: -1;
  white-space: nowrap;
}
/*ースラッシュタイトルー*/
.slash-title {
  color: #3a3227;
  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: #3a3227;
}
.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;
}
.font-or {
  color: #e89922;
}
.linear {
  display: inline;
  background: linear-gradient(transparent 60%, #ffec51 30%);
}
.under-line {
  display: inline;
  background-position: left -100% center;
  padding-bottom: 0.6em;
  background-size: 200% 0.6em;
  background-repeat: repeat-x;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 102) 50%);
}
/*クラス指定*/
.margin-auto {
  margin-inline: auto;
}
.text-center {
  text-align: center;
}
.align-center {
  align-items: 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-3ten5em {
  margin-bottom: 3.5em;
}
.mb-short {
  margin-bottom: clamp(40px, 4vw, 80px);
}
.mb-mid {
  margin-bottom: clamp(60px, 6vw, 100px);
}
.mb-large {
  margin-bottom: clamp(80px, 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%;
}
.width75 {
  width: 75%;
}
.width80 {
  width: 80%;
}
.flex1 {
  flex: 1;
}
/*========<!-- ヘッダー　-->========*/
/*ヘッダー固定*/
/*JSを使いfixedクラスが付与された際の設定*/
.header-menu.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  animation: slide 0.5s ease-in-out;
  z-index: 999;
  background-color: #004f74;
}
.header-menu.header-fixed > li {
  padding: 20px 0 20px;
}
@keyframes slide {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.fa-regular, .far {
  font-weight: 700;
  font-size: 3rem;
}
/*.flex.g-nav-tel-pc-wrap {
	flex-direction: column;
	align-items: center;
	margin-right: auto;
}*/
.company-name {
  letter-spacing: 0.8em;
  font-size: 1.8rem;
}
.header-box01.header-box01 .g-nav-tel-pc img {
  max-width: 200px;
}
.g-sub-nav02 .g-sub-nav-list.flex li:not(:last-child) a {
  border: none;
  background-color: transparent;
  padding: 0px;
}
.fa-brands.fa-line {
  font-size: 3rem;
}
.g-sub-nav02 .g-sub-nav-list.flex {
  align-items: center;
}
/*========<!-- 追従ナビ　-->========*/
.sticky-nav {
  display: block;
  position: fixed;
  z-index: 2;
  bottom: 90px;
  right: 0;
}
.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: #e2678b;
  border-radius: 10px 0 0 10px;
  color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 600;
  border: 3px solid #fff;
  border-right: none;
  letter-spacing: 0.1em;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .sticky-nav .g-sub-nav-list a:hover {
    color: #e2678b;
    background-color: #ffffff;
    border: 3px solid #e2678b;
    border-right: none;
  }
  .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: #e2678b !important;
  }
}
/*========<!-- お問い合わせ　-->========*/
/*送信ボタン*/
input[type="submit"], input[type="button"] {
  width: 60%;
  border-radius: 50px;
  transition: all 0.3s;
  background: #AE303A !important;
  border: 1px solid #AE303A !important;
}
input[type="submit"]:hover, input[type="button"]:hover {
  color: #AE303A !important;
  background: #fff !important;
}
input[type="text"], textarea, input[type="email"], input[type="tel"], input[type="radio"] {
  background-color: #ffffff;
}
.required {
  color: #38505e;
  background-color: #ffffff;
}
table.contact-form01 {
  border-collapse: separate;
  border-spacing: 0px 1px;
  margin-bottom: 8em;
}
table.contact-form01 th {
  border-right: #fff 1px solid;
  color: #fff;
  background: #3a3227;
}
table.contact-form01.contact-form01 th:not(:last-of-type) {
  border-bottom: 1px solid #fff;
}
table.contact-form01 tbody tr:first-child th, table.contact-form01 tbody tr:first-child td {
  line-height: 2.5;
}
table.contact-form01 td {
  border-left: #fff 1px solid;
  font-size: 11px;
  background: #d1d1d1 url(/wp-content/uploads/2024/09/img-noise-361x370-1.png) repeat left top / 20%;
}
table.contact-form01.contact-form01 td:not(:last-of-type) {
  border-bottom: #fff 1px solid;
}
.wpcf7-list-item-label {
  font-size: 1.6rem;
}
.privacy-check {
  margin-bottom: 6em;
}
.privacy-check a {
  color: #50bbfd;
}
/*========<!-- フッター　-->========*/
.footer {
  background-color: transparent;
}
.footer-logo {
  width: 50%;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 5px dotted #3a3227;
  margin-bottom: 40px;
}
.footer-address {
  text-align: center;
}
.footer-address p, .footer-address a, .footer-menu a {
  color: #3a3227 !important;
}
.sns-icon-title p, .sns-sub-nav li a, .sns-icon-title span, .copyright p {
  color: #3a3227 !important;
}
.footer-menu-title {
  background-color: #3a3227;
  color: #ffffff;
}
.footer-menu > li > a {
  border-bottom: 1px dashed #3a3227;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 0 15px;
  }
  .footer-menu a {
    color: #3a3227 !important;
  }
}
/*GOTOP回転アニメーション*/
#page-top img {
  animation: 20s linear infinite rotation;
}
@keyframes rotation {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*go-top三角*/
.triangle {
  background: #ffffff;
  height: calc(tan(60deg)* 40px / 2);
  width: 40px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: fixed;
  bottom: 51px;
  right: 50px;
  z-index: 2;
}
/*========================================================================================

HOME

=========================================================================================*/
/*========<!-- home-section01 お知らせ -->========*/
.bg-circle {
  background-color: #ffffff;
  background: #ffffff url(/wp-content/uploads/2024/09/img-noise-361x370-4.png) repeat left top/20%;
  width: 65vw;
  height: 40vw;
  border-radius: 50%;
  margin: auto;
  padding-top: 6%;
}
.bg-white {
  background: #ffffff url(/wp-content/uploads/2024/09/img-noise-361x370-4.png) repeat left top/20%;
  margin-top: -25vw;
}
/*背景切り抜き画像*/
.title_mask {
  display: block;
  font-size: clamp(4rem, 1.091rem + 14.55vw, 12rem);
  font-weight: 700;
  background: url(/wp-content/uploads/2024/09/30401177_m.jpg) no-repeat 40% 20% / 100%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-align: center;
  line-height: 1;
}
/*カードバナー*/
.card-bnr {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5;
  margin-inline: auto;
}
.card-bnr img {
  height: auto;
  transition: transform .3s ease;
  position: absolute;
  bottom: -80%;
}
.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);
  bottom: 0;
  content: '';
  height: auto;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity .6s ease;
  width: 100%;
  z-index: 1;
}
.card-bnr:hover::before {
  opacity: 0;
}
/*縦タイトル*/
.flex.Subtitle {
  justify-content: flex-start;
  gap: 3em;
}
.vertical-Ttl_en {
  display: block;
  font-size: clamp(2rem, 0.545rem + 7.27vw, 6rem);
  writing-mode: vertical-rl;
  line-height: 1;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
.vertical-Ttl_ja {
  font-size: clamp(1.4rem, 1.182rem + 1.09vw, 2rem);
  writing-mode: vertical-rl;
  line-height: 1;
  padding-top: 1em;
  font-weight: 700;
  border-top: solid 80px #3a3227;
  width: 3px;
  display: flex;
  align-items: center;
}
.news-list02 li .news-cat a {
  background-color: #839E1E;
  border: 1px solid #839E1E;
}
.btn01.vo {
  border: 1px solid #AE303A;
  background-color: #AE303A;
}
.btn.vo {
  max-width: 470px;
}
#sb_instagram .sbi_photo img {
  border-radius: 20px;
}
#sb_instagram #sbi_images {
  gap: 3em;
}
/*画像のループ*/
.scroll-infinity {
  margin: 0 calc(50% - 50vw) clamp(80px, 20vw, 180px);
  width: 100vw;
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list {
  display: flex;
  padding: 0
}
.scroll-infinity__item {
  width: calc(100vw / 5);
}
.scroll-infinity__item > img {
  width: 100%;
  object-fit: cover;
}
.scroll-infinity__list--right {
  animation: infinity-scroll-right 80s infinite linear 0.5s both;
}
.scroll-infinity__item:nth-of-type(odd) {
  width: calc(100vw / 5);
  margin-top: 5em;
}
@keyframes infinity-scroll-right {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/*文字ループ*/
div.loop {
  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: #d1d1d1;
  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%);
  }
}
/*========================================================================================

法人理念・ご挨拶/greeting

=========================================================================================*/
/*========<!-- greeting-section01 法人理念 -->========*/
#breadcrumbs {
  background: #ffffff url(/wp-content/uploads/2024/09/img-noise-361x370-4.png) repeat left top/20% !important;
}
main {
  background: #ffffff url(/wp-content/uploads/2024/09/img-noise-361x370-4.png) repeat left top/20%;
  overflow: hidden;
}
.home main {
  background: #d1d1d1 url(/wp-content/uploads/2024/09/img-noise-361x370-1.png) repeat left top / 20%;
}
.catch-a {
  font-size: 5rem;
  font-weight: 700;
}
/*========<!-- greeting-section02 ご挨拶 -->========*/
.catch-b {
  font-size: 3rem;
  font-weight: 700;
}
.flex.greeting-txt {
  flex-direction: column;
  justify-content: space-between;
}
.flex.greeting-txt .lead-txt {
  flex: 1;
}
.flex.greeting-txt .name {
  font-size: 2rem;
  font-weight: 700;
  text-align: right;
}
/*========================================================================================

ふくろうの家について/about

=========================================================================================*/
/*========<!-- about-section01 ６つのサポート体制 -->========*/
.com-list01.com-list01::before {
  content: none;
}
/*========<!-- about-section02 ふくろうの家のお仕事 -->========*/
.about-section02 .tab-item.is-active, .about-section02 .tab-item2.is-active,.about-section02 .tab-item4.is-active {
  background-color: #AE303A;
  border: 2px solid #AE303A;
}
@media(hover: hover) {
  .about-section02 .tab-item:hover, .about-section02 .tab-item2:hover,.about-section02 .tab-item4:hover {
    color: #ffffff;
    background-color: #AE303A;
    border: 2px solid #AE303A;
  }
}
.com-box02-list.com-box02-list:after {
  content: "";
  display: block;
  width: 30%;
  height: 0;
}
.about-section02 .com-box02-head {
  color: #AE303A;
  font-weight: 700;
  background-color: transparent;
  text-align: left;
  padding-left: 0px;
}
/*========<!-- about-section03 １日の流れ -->========*/
/*========<!-- about-section04 ご利用者様の声 -->========*/
.com-interview02-img.com-interview02-img img {
  border-radius: 100vw
}
.com-interview02-position.com-interview02-position {
  border-radius: 100px;
}
.com-interview02-list.com-interview02-list > li {
  width: 30%;
  margin-bottom: 0px;
}
.flex.com-interview02-list {
  gap: 5em 1em;
}
/*========================================================================================

各施設紹介/facility

=========================================================================================*/
.com-box01-img.com-box01-img img {
  border-radius: 100vw 100vw 0 0;
}
/*========================================================================================

ご利用の流れ/guide

=========================================================================================*/
/*========<!-- guide-section01 ご利用の流れ -->========*/
.width1300 {
  max-width: 1300px;
}
@media screen and (max-width: 1300px) {
  .width1300 {
    padding: 0 15px;
  }
}
/*========<!-- guide-section02 お問合せ -->========*/
.guide-section02 .flex.ver-mid {
  align-items: center;
}
section.guide-section02 {
  padding: clamp(40px, 10vw, 80px) 0;
  margin-bottom: clamp(80px, 20vw, 180px);
}
.guide-section02 {
  background-image: url(/wp-content/uploads/2025/01/riyouonagare-cotact.jpg);
  background-image: url(/wp-content/uploads/2025/01/riyouonagare-cotact.jpg);
  background-position: center;
  background-size: cover;
  background-color: rgba(0, 0, 0, 0.3);
  background-blend-mode: overlay;
  background-repeat: no-repeat;
}
.guide-section02 h4, .guide-section02 span:not(.vertical-Ttl_ja):not(.vertical-Ttl_en):not(.sp-inline-block) {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}
.guide-section02 span.sp-inline-block {
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}
.guide-section02 .contact_tel span.sp-inline-block {
  font-size: 2.4rem;
}
.guide-section02 span.vertical-Ttl_en, .guide-section02 span.vertical-Ttl_ja {
  color: #ffffff;
}
.guide-section02 span.vertical-Ttl_ja {
  border-top: solid 80px #ffffff;
}
.guide-section02 p.txt {
  font-size: 1.6rem;
  color: #fff;
}
.guide-section02 a.cv-tel {
  font-size: 3rem;
  color: #fff;
}
.guide-section02 .fa-solid.fa-phone, .guide-section02 .fa-brands.fa-line, .guide-section02 .fa-solid.fa-envelope {
  font-size: 3rem;
}
.cv-btn {
  font-size: 1.6rem;
  padding: 5px 15px;
  border-radius: 30px;
  text-align: center;
  margin-left: 15px;
  border: solid 2px #AE303A;
  background-color: #AE303A;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 600;
}
.cv-btn:hover {
  border: solid 2px #AE303A;
  background-color: #ffffff;
  color: #AE303A;
}
.cv-btn:hover span {
  color: #AE303A;
}
.border-rt {
  padding-right: 1em;
  border-right: 2px solid #ffffff;
}
.guide-section02 a {
  padding-left: 1em;
}
/*========================================================================================

求人情報

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

法人概要

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

お問い合わせ

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

商品紹介・販売

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



/* 20241015追加 */
p.greeting-txt {
    margin-bottom: 20px;
}

.recruit-single-time time{display: none;}

p.cultivation-txt {
    background: #fff;
    padding: 20px;
    margin-bottom: 40px;
    border-radius: 10px;
	line-height: 2;
}

/* 20241111追加 */
.tab-item2,
.tab-item4 {
  width: 19%;
}

/* 20241113追加 */
.creative-wrap {
    background: #fff;
    padding: 20px;
    margin-bottom: 0px;
    border-radius: 10px;
	line-height: 2;
}
.creative-title {
    color: #FAFAFA;
    font-weight: bold;
}

p.creative_title {
    color: #AE303A;
	font-size: 18px;
}

.creative_text {
	font-size: 16px;
}

.com-box02-list.com-box02-list {
  gap: 3em 1em;
}

/* 20241202追加 */
.policy-wrapper span.dream-word {
    font-size: 6.5rem;
    color: #AE303A;
}
.header-box02 .logo img {
  max-width: 220px;
}
.footer-logo {
  padding-bottom: 10px;
}
/* 20250220追加 */
.header-box02.header-box02 .logo {
  width: 20%;
}
.header-menu.header-menu > li {
  padding: 10px 0px 10px;
}
/* 20250314追加 */
.online-item.online-item .btn01:hover {
  color: #AE303A;
}
.online-item.online-item .btn01:hover .fa-solid, .online-item.online-item .btn01:hover .fas {
  color: #AE303A !important;
}
