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

共通設定

=========================================================================================*/
/*GOOGLEFONT*/
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Zen+Kaku+Gothic+New:wght@500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@300;400;500;700;900&display=swap');
p, a, li, dt, dd, time, h1, h2, h3, h4, h5, h6, th, td, span, label, input {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
}
/*セクション共通指定*ベースcolor:NV#004f74 ,GE#036654, MI#7fffd4, PI#ee82ee */
*, *::before, *::after {
  box-sizing: border-box !important;
}
body {
  background-color: #004f74;
}
html {
  font-size: 10px;
}
p {
  margin-bottom: 0px;
}
.footer-nav-wrap p {
  margin-bottom: 1em;
}
/*背景色ありの場合*/
section {
  padding: clamp(60px, 20vw, 140px) 0 clamp(40px, 12vw, 80px);
  margin-bottom: 0px;
}
section.slider {
  padding-bottom: clamp(40px, 12vw, 80px);
}
section.home-section07 {
  padding: clamp(60px, 20vw, 140px) 0 clamp(80px, 20vw, 140px);
}
a {
  transition: all .3s;
  cursor: pointer;
}
/*ボタンのパターン★*/
.btn01 {
  border: 1px solid #ee82ee;
  background-color: #ee82ee;
}
.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: #e68a00;
  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:hover {
    color: #ee82ee !important;
    border: 1px solid #ee82ee !important;
  }
  .btn01:hover .btn-arrow {
    fill: #ee82ee !important;
  }
}
/*TOPボタン*/
#page-top {
  right: 10px;
  bottom: 10px;
}
#page-top img {
  max-height: 80px;
  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;
}
/*タブメニュー*/
/*タブ*/
.tab-list {
  display: flex;
  justify-content: space-between;
}
.tab-item {
  width: 50%;
  padding: 10px 0;
  background: #1d2644 url(/wp-content/uploads/2024/08/gr-bg@2x-100.jpg) repeat left bottom / 60%;
  color: #ffffff;
  text-align: center;
  font-size: 2.0rem;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 20px 20px 0 0;
}
/*PC以外ホバー禁止*/
@media(hover: hover) {
  .tab-item:hover {
    color: #E9AB40;
    background: #fffae9 url(/wp-content/uploads/2024/08/cr-bg@2x-8.png) repeat left top / 60%;
  }
}
.tab-item.is-active {
  color: #E9AB40;
  background: #fffae9 url(/wp-content/uploads/2024/08/cr-bg@2x-8.png) repeat left top / 60%;
  border-radius: 20px 20px 0 0;
}
/* パネル */
.panel-item {
  display: none;
  width: 100%;
  border-radius: 0 0 20px 20px;
  padding: 7rem 4rem;
  background: #fffae9 url(/wp-content/uploads/2024/08/cr-bg@2x-8.png) repeat left top/30%;
}
.panel-item.is-active {
  display: block;
  animation: panel-show .9s ease-in-out forwards;
}
/* パネル切り替えのアニメーション */
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*=====デフォルトフィードの調整=====*/
.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;
}
/*news-list02*/
.info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.info .news-list01 {
  flex: 1;
  margin-bottom: 6em;
}
.news-list02 {
  margin-bottom: 10em;
  flex: 1;
}
/*news-list03*/
.news-list03 li .news-img img {
  height: auto;
}
/*com-box02*/
.com-box02-list li {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 5vw;
}
.com-box02-img.com-box02-img {
  margin-bottom: 2em;
}
.com-box02-head.com-box02-head {
  margin-bottom: 1em;
  color: #004f74;
  background-color: #ffffff;
  border-radius: 20px;
}
.com-box02-txt {
  flex: 1;
}
.com-box02-img img {
  height: auto;
  aspect-ratio: 3 / 2;
}
/*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-timeline02*/
.com-timeline02-list.com-timeline02-list {
  margin-bottom: 0px;
}
/*com-list01*/
.com-list01.com-list01 li {
  background-color: transparent;
  width: 22%;
  padding: 0px;
  margin-top: 2em;
}
.com-list01-nm.com-list01-nm {
  color: #7fffd4;
  font-family: transparent;
  left: 0px;
  font-size: 50px;
}
.com-list01-txt.com-list01-txt {
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}
.com-list01-head.com-list01-head {
  color: #046654;
  background-color: #ffffff;
  margin: 2em 0 2em;
}
.com-list01-icon.com-list01-icon {
  margin-top: 2em;
}
.com-list01-icon.com-list01-icon img {
  width: 60%;
  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: 50%;
  margin: 0 auto 2em;
}
.com-flow02-head.com-flow02-head h3 {
  color: #7fffd4;
  margin: 1em 0 1.5em;
}
.com-flow02-txt.com-flow02-txt.com-flow02-txt.com-flow02-txt {
  background-color: #ffffff;
  color: #004f74;
  border-radius: 15px;
  font-size: 16px;
  text-align: left;
}
/*インスタグラム色変更*/
#sb_instagram #sbi_load .sbi_load_btn {
  color: #ffffff !important;
  background-color: #ee82ee;
}
#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;
}
#sbi_images#sbi_images {
  gap: 3vw !important;
}
/*テーブルの調整*/
/*縦長*/
body.home table.tablepress {
  border: none;
}
body.home .tablepress > * + tbody > * > *, .tablepress > tbody > * ~ * > *, .tablepress > tfoot > * > * {
  border-top: none !important;
}
body.home table tbody tr:not(:first-child) {
  border-top: 1px solid #ffffff !important;
}
body.home .tablepress tbody td {
  padding: 25px 15px !important;
}
body.home .tablepress tbody td.column-1 {
  background-color: transparent;
  color: #7fffd4;
  font-size: 1.8rem;
}
body.home .tablepress tbody td.column-2 {
  background-color: transparent;
  color: #ffffff;
  font-size: 1.8rem;
}
body.home .tablepress-table-name, body.home .tablepress-table-description {
  display: none !important;
}
body.home .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;
  line-height: 1;
}
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: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
iframe.g-map {
  width: 100%;
  height: auto;
  aspect-ratio: 19 / 7;
}
/*下層タイトル*/
.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;
}
/*見出しバリエーション*/
/*大タイトル*/
.title_design-op {
  font-family: "Josefin Sans", sans-serif;
  font-optical-sizing: auto;
  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-bottom: 80px;*/
  margin-bottom: clamp(80px, 10vw, 120px);
}
.title_design-op span {
  position: relative;
  z-index: 2;
}
.title_design-op::before {
  font-family: "Josefin Sans", sans-serif;
  font-style: normal;
  font-weight: 500;
  content: attr(data-en);
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #7fffd4 /*#ee82ee*/ ;
  font-size: 180px;
  z-index: 1;
  white-space: nowrap;
  letter-spacing: -5px;
}
/*ースラッシュタイトルー*/
.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.636rem + 1.82vw, 3rem);
}
.slash-title::before, .slash-title::after {
  content: '';
  border-radius: 50px;
  width: 3px;
  height: 40px;
  background-color: #ffffff;
}
.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: #ffffff;
  margin-bottom: 2em;
}
.line-title::before, .line-title::after {
  background-color: #ffffff;
  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.8rem, 1.364rem + 2.18vw, 3rem);
  line-height: 2;
  font-weight: 700;
}
.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;
}
.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(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);
}
.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;
}
.aspect19-7, img.aspect19-7 {
  aspect-ratio: 19 / 7;
}
/*内包の余白０*/
.width1200 .width1200, .width1200 .width900 {
  padding: 0px;
}
/*ボックス幅*/
.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.fa-envelope {
  font-size: 3.0rem;
}
/*========<!-- ヘッダー　-->========*/
.header-content02 {
  background: url(/wp-content/uploads/2024/08/curtain-8.png) repeat-x left top/50%;
}
.header-menu {
  background-color: transparent;
}
.header-menu > li a {
  padding: 0 20px;
}
.flex.tel-mail {
  align-items: center;
}
.g-nav-tel-pc {
  width: 70%;
}
/*ヘッダー固定*/
/*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%);
  }
}
/*========<!-- お問い合わせ　-->========*/
/*送信ボタン*/
input[type="submit"], input[type="button"] {
  width: 60%;
  border-radius: 50px;
  transition: all 0.3s;
  background: #ee82ee !important;
  border: 1px solid #ee82ee !important;
}
input[type="submit"]:hover, input[type="button"]:hover {
  color: #fd9e50 !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: #0a362c 1px solid;
  color: #fff;
  background: #1d2644 url(/wp-content/uploads/2024/08/gr-bg@2x-100.jpg) repeat left bottom / 60%;
}
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: #e2f6e6 1px solid;
  font-size: 11px;
  background: #e2f6e6;
}
table.contact-form01.contact-form01 td:not(:last-of-type) {
  border-bottom: #fff 1px solid;
}
.wpcf7-list-item-label {
  font-size: 1.6rem;
  color: #0a362c;
}
.privacy-check {
  margin-bottom: 6em;
}
.privacy-check .wpcf7-list-item-label {
  color: #ffffff;
}
.privacy-check a {
  color: #50bbfd;
}
/*========<!-- フッター　-->========*/
.footer {
  background: url(/wp-content/uploads/2024/08/curtain-8.png) repeat-x left top / 50%, url(/wp-content/uploads/2024/08/footer1@2x-8-1.png) no-repeat left bottom / 20%, url(/wp-content/uploads/2024/08/footer2@2x-8-1.png) no-repeat 86% 99% / 17%;
}
.footer-logo {
  width: 50%;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 5px dotted #ffffff;
  margin-bottom: 40px;
}
.footer .flex {
  justify-content: center;
}
.footer-address p, .footer-address a, .footer-menu a, .sns-icon-title p, .sns-sub-nav li a, .copyright p, .sns-icon-title span {
  color: #ffffff !important;
}
.footer-menu-title {
  background-color: #ffffff;
  color: #004f74;
}
.footer-menu > li > a {
  border-bottom: 1px dashed #ffffff;
}
.footer-address {
  text-align: center;
}
.sns-icon-wrap.flex .line {
  background-color: #ffffff !important;
}
@media screen and (max-width: 1024px) {
  .footer-menu a {
    color: #ffffff !important;
  }
}
@media screen and (max-width: 660px) {
  #page-top img {
    max-height: 60px;
  }
}
/*========================================================================================

HOME

=========================================================================================*/
/*========<!-- トップスライダー　-->========*/
.slider {
  position: relative;
  z-index: -1;
}
.slider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/wp-content/uploads/2024/08/slider-cover@1.5x-8.png) no-repeat center bottom/98%;
  bottom: 0%;
  left: 0%;
  z-index: 1;
}
.slider::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/wp-content/uploads/2024/08/clous1@1.5x-8.png) no-repeat right top / 32%;
  top: 0%;
  right: 6%;
  z-index: 1;
}
/*スライダーの形状*/
div#n2-ss-2 .n2-ss-slider-2 {
  border-radius: 100vw !important;
}
/*=====全階層共通背景色柄余白の指定=====*/
section:nth-of-type(even) {
  margin-top: -10px;
}
section.slider {
  background-color: #004f74;
}
section.home-section01 {
  background-image: url(/wp-content/uploads/2024/08/object-ye@2x-8.png), url(/wp-content/uploads/2024/08/usagi@2x-8-1.png), url(/wp-content/uploads/2024/08/flower2@2x-8.png), url(/wp-content/uploads/2024/08/2flower.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 18%, 11%, 10%, 10%;
  background-position: 13% 2%, 85% 5%, 10% 100%, 85% 48%;
  background-color: #046654;
}
section.home-section02 {
  background-image: url(/wp-content/uploads/2024/08/object-ye@2x-8.png), url(/wp-content/uploads/2024/08/kuma@2x-8-1.png), url(/wp-content/uploads/2024/08/stump@2x-8.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 18%, 17%, 7%;
  background-position: 7% 2%, 96% 1%, 3% 100%;
  background-color: #004f74;
}
section.home-section03 {
  background-image: url(/wp-content/uploads/2024/08/object-ye@2x-8.png), url(/wp-content/uploads/2024/08/tree1@1.5x-8.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 18%, 24%;
  background-position: 7% 1%, 98% 1%;
  background-color: #046654;
}
section.home-section04 {
  background-image: url(/wp-content/uploads/2024/08/object-ye@2x-8.png), url(/wp-content/uploads/2024/08/risu_1@2x-8.png), url(/wp-content/uploads/2024/08/house@2x-8.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 18%, 15%, 7%;
  background-position: 7% 2%, 88% 3%, 10% 98%;
  background-color: #004f74;
}
section.home-section05 {
  background-image: url(/wp-content/uploads/2024/08/object-ye@2x-8.png), url(/wp-content/uploads/2024/08/shika@2x-8.png), url(/wp-content/uploads/2024/08/flower2@2x-8.png);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 18%, 20%, 10%;
  background-position: 7% 1%, 92% 1%, 3% 100%;
  background-color: #046654;
}
section.home-section06 {
  background-image: url(/wp-content/uploads/2024/08/object-ye@2x-8.png), url(/wp-content/uploads/2024/08/fukurou@2x-8-1.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 18%, 11%;
  background-position: 7% 2%, 88% 6%;
  background-color: #004f74;
}
section.home-section07 {
  background-image: url(/wp-content/uploads/2024/08/object-ye@2x-8.png), url(/wp-content/uploads/2024/08/object-ye@2x-8.png);
  background-repeat: no-repeat, no-repeat;
  background-size: 18%, 18%;
  background-position: 7% 2%, 92% 2%;
  background-color: #046654;
}
/*========<!-- home-section01 お知らせ->========*/
.width1100 {
  max-width: 1100px;
  margin-inline: auto;
}
@media screen and (max-width: 1100px) {
  .width1100 {
    padding: 0 15px;
    ;
  }
}
.home-section01 .slash-title {
  margin-bottom: 0px;
}
.home-section img {
  border-radius: 15px;
  height: auto;
}
.home-section .arch-img, .home-section .arch-img img {
  border-radius: 100vw 100vw 0 0;
}
.font-lead {
  font-size: 1.8rem;
  line-height: 3;
}
#sb_instagram {
  width: 90%;
}
/*========<!-- home-section02 ごあいさつ-->========*/
.home-section02 p {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 500;
  font-style: normal;
}
/*========<!-- home-section03 活動紹介->========*/
.title02-a {
  padding: 10px 15px;
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
  border-radius: 50px;
  margin-bottom: 3em;
  background: #1d2644 url(/wp-content/uploads/2024/08/gr-bg@2x-100.jpg) repeat left bottom/30%;
  color: #ffffff;
}
.title02-b {
  padding: 10px 15px;
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
  border-radius: 50px;
  margin-bottom: 3em;
  background: #1d2644 url(/wp-content/uploads/2024/08/nv-bg@2x-100.jpg) repeat left bottom/30%;
  color: #ffffff;
}
.com-box03-list {
  gap: 60px 40px;
  position: relative;
  z-index: 2;
}
.com-box03-list::after {
  display: block;
  content: "";
  width: 30%;
}
.com-box03-list::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/wp-content/uploads/2024/08/kitsune.png) no-repeat right bottom/15%;
  right: 5%;
  bottom: 5%;
  z-index: 1;
}
/*========<!-- home-section04 利用案内-->========*/
/*========<!-- home-section05 採用情報-->========*/
.tab-panel-a .tab.is-active, .tab-panel-a .tab:hover {
  background: #fffae9 url(/wp-content/uploads/2024/08/cr-bg@2x-8.png) repeat left top / 100%;
}
.tab-panel-a .tab {
  background: #1d2644 url(/wp-content/uploads/2024/08/gr-bg@2x-100.jpg) repeat left bottom / 100%;
  color: #ffffff;
}
.home-section04 li.tab.tab {
  font-size: 1.8rem;
}
.recruit-feed01 > li {
  background: #fffae9 url(/wp-content/uploads/2024/08/cr-bg@2x-8.png) repeat left top / 30%;
}
.recruit-feed01 .time-cat time, .recruit-feed01 .time-cat span, .recruit-feed01 .recruit-sub.flex li {
  color: #0a362c;
}
 .recruit-feed01 .recruit-sub.flex li span {
  color: #ffffff;
}
/*========<!-- home-section06 施設概要-->========*/
/*========<!-- home-section07 お問い合わせ-->========*/

/* 20241028追加 */
.job-table td {
    color: #004F74;
    background: #E4F3FF;
	border-left: 2px solid #d1dee8;
}

.tab-panel-a .tab-group {
  display: flex;
  justify-content: center;
  gap: 5rem;
}