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

共通設定

=========================================================================================*/
/*GOOGLEFONT*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #333333;
}
h2 {
  color: #0095d9;
}
p, a, li, dt, dd, time, th, td, span, label, input {
  /*font-family: "Noto Sans JP", serif;*/
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #333333;
}
*, *::before, *::after {
  box-sizing: border-box !important;
}
section {
  margin: 0px;
  padding: clamp(100px, 22vw, 220px) 0 clamp(80px, 20vw, 180px);
}
section.home-section06 {
  padding: clamp(100px, 22vw, 220px) 0 clamp(80px, 18vw, 160px);
  background-color: #061d3e;
}
.footer-nav-wrap p {
  margin-bottom: 1em;
}
a {
  transition: all .3s;
  cursor: pointer;
}
main {
  overflow: hidden;
}
/*ボタンのパターン★*/
.btn01 {
  border: 1px solid #c1c1c1;
  background-color: #c1c1c1;
}
/*see more*/
/*<a href="/category/column/" class="see-more-btn">see more
    <span class="arrow active"><span class="arrow__item01"></span><span class="arrow__item02"></span></span>
    </a>*/
.see-more-btn {
  height: 40px;
  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;
  /*color: #0095d9;*/
}
.see-more-btn .arrow {
  width: 40px;
  height: 40px;
  position: relative;
  display: grid;
  place-items: center;
  background-color: #333333;
  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;
}
/*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: 60px;
  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 {
  height: auto;
  aspect-ratio: 1 / 1 !important;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
/*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: 0em;
  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-menu01-img.com-menu01-img img {
  aspect-ratio: 3/2;
}
/*com-box01*は別見本/
/*com-box02*/
.com-box02-list.com-box02-list {
  gap: 10em 1em;
}
.com-box02-list.com-box02-list li {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 0;
}
.com-box02-txt {
  flex: 1;
}
.com-box02-head.com-box02-head {
  font-size: 2.4rem;
}
.com-box02-img.com-box02-img img {
  filter: brightness(60%);
}
/* 最後のコンテンツを左寄せにする指定 */
.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-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;
  margin-bottom: 0px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  padding: 2.5em 1.5em;
}
.com-list01-nm.com-list01-nm {
  color: #333333;
  font-family: "Noto Serif JP", serif;
  left: 25px;
  font-size: 40px;
  top: 5px;
}
.com-list01-txt.com-list01-txt {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
}
.com-list01-head.com-list01-head {
  margin: 0.8em 0;
  border-radius: 0px;
  color: #333333;
  background-color: transparent;
}
h3.com-list01-head {
  font-size: 2rem;
}
.com-list01-icon.com-list01-icon img {
  width: 40%;
  height: 120px;
  object-fit: contain;
}
/*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: #216d00;
  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-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 {
  width: 48%;
  padding: 10px 0;
  background: #1276ad url(/wp-content/uploads/2024/11/bu-base@1.5x-8.png) repeat left top / 30%;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  transition: .3s ease-in-out;
  border-radius: 15px 15px 0 0;
}
.tab-item2 {
  width: 30%;
  padding: 10px 0;
  background: #1276ad url(/wp-content/uploads/2024/11/bu-base@1.5x-8.png) repeat left top / 30%;
  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 url(/wp-content/uploads/2024/11/ye-base@2x-8.png) repeat left 5%/110%;
  }
}
.tab-item.is-active, .tab-item2.is-active {
  background: #f4bd19 url(/wp-content/uploads/2024/11/ye-base@2x-8.png) repeat left 5%/110%;
}
/* パネル */
.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: #333333 !important;
}
/*テーブルの調整*/
table.tablepress {
  border: none !important;
}
table.tablepress tbody td.column-1 {
  width: 30% !important;
  color: #ffffff !important;
  background-color: transparent !important;
}
table.tablepress tbody td.column-2 {
  width: 70% !important;
  color: #ffffff !important;
  background-color: transparent !important;
}
table.tablepress tbody td.column-2 a {
  color: #ffffff !important;
}
table.tablepress tbody th:not(:last-child) {
  border-right: 1px solid #ffffff !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 #ffffff !important;
}
table.tablepress tbody tr:last-of-type td {
  border-bottom: 1px solid #ffffff;
}
.tablepress-table-description.tablepress-table-description, .tablepress-table-name {
  display: none;
}
/*テーブル個別対応*/
/*table.tablepress.tablepress-id-4 tbody td.column-1 {
  width: 30% !important;
  color: #333333 !important;
}
table.tablepress.tablepress-id-4 tbody td.column-2 {
  width: 30% !important;
  color: #333333 !important;
}
table.tablepress.tablepress-id-4 tbody td.column-3 {
  width: 30% !important;
  color: #333333 !important;
}*/
/*iflameの調整*/
iframe.youtube-content {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}
iframe.g-map {
  width: 100%;
  height: auto;
  aspect-ratio: 19 / 7;
}
.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;
}
/*=========ブロックあしらいバリエーション=========*/
/*カードバナー
<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;
}
/*大タイトル2
<h2 class="title_design-op fadeUpTrigger fadeUp" data-en="news">お知らせ</h2>*/
.title_design-op {
  font-size: clamp(2.4rem, 1.818rem + 2.91vw, 4rem);
  position: relative;
  padding: 0 0 100px 0;
  text-align: center;
  font-weight: 600;
}
.title_design-op span {
  position: relative;
}
.title_design-op::before {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.4rem;
  white-space: nowrap;
  border-bottom: 2px solid;
  line-height: 2;
  font-weight: 600;
}
.title_design-op::after {
  content: attr(data-en);
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
  white-space: nowrap;
}
.home-section01 .title_design-op::before {
  content: "01";
  /*left: 0%;*/
}
.home-section01 .title_design-op::after {
  /*left: 0%;*/
}
.home-section02 .title_design-op::before {
  content: "02";
  /*left: 0%;*/
}
.home-section02 .title_design-op::after {
  /*left: 0%;*/
}
.home-section03 .title_design-op::before {
  content: "03";
}
.home-section04 .title_design-op::before {
  content: "04";
  /*left: 0%;*/
}
.home-section05 .title_design-op::before {
  content: "05";
  /*left: 0%;*/
}
.home-section05 .title_design-op::after {
  /*left: 0%;*/
}
.home-section06 .title_design-op::before {
  content: "06";
}
/*ー横棒タイトルー*/
.line-title {
  align-items: center;
  display: flex;
  justify-content: center;
  font-size: clamp(2rem, 1.636rem + 1.82vw, 3rem);
  font-weight: 500;
  color: #333333;
  margin-bottom: clamp(40px, 6vw, 100px);
}
.line-title::before, .line-title::after {
  background-color: #333333;
  border-radius: 5px;
  content: "";
  height: 2px;
  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%);
}
/*クラス指定*/
.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(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;
}
.aspect4-5, img.aspect4-5 {
  aspect-ratio: 4 / 5;
}
.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;
}
.header-menu.header-menu {
  background-color: inherit;
}
.header-menu.header-menu > li a {
  font-size: 1.6rem;
  padding: 40px 30px 0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
}
.header-menu > li a {
  border-right: none;
}
.header-box01.header-box01 .logo {
  max-width: 360px;
}
.header-content02.header-content02 {
  padding: 20px;
  background-color: #efefef;
}
.header-box01.header-box01, .g-sub-nav02.g-sub-nav02 .g-sub-nav-list.flex {
  margin-bottom: 0px;
}
.menu-header-menu-container.menu-header-menu-container {
  position: absolute;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.g-sub-nav02.g-sub-nav02 .g-sub-nav-list.flex a {
  font-size: 1.4rem;
  display: block;
  padding: 5px 25px;
  border-radius: 0px;
  text-align: center;
  margin-left: 15px;
  border: solid 2px #0095d9;
  background-color: #0095d9;
}
.g-sub-nav02.g-sub-nav02 .g-sub-nav-list.flex a:hover {
  color: #0095d9;
  background-color: #ffffff;
}
/*========<!-- お問い合わせ -->========*/
/*送信ボタン*/
input[type="submit"], input[type="button"] {
  width: 60%;
  transition: all 0.3s;
  color: #0095d9 !important;
  background: #ffffff !important;
  font-weight: 500;
}
input[type="submit"]:hover, input[type="button"]:hover {
  background: #0095d9 !important;
  color: #ffffff !important;
}
input[type="text"], textarea, input[type="email"], input[type="tel"], input[type="radio"] {
  background-color: #ffffff;
}
.required {
  color: #333333;
  background-color: #ffffff;
}
table.contact-form01 {
  border-collapse: separate;
  border-spacing: 0px 1px;
  margin-bottom: 8em;
}
table.contact-form01 th {
  color: #ffffff;
  background: transparent;
}
table.contact-form01 th {
  border-bottom: 0.5px solid #ffffff; /*!!!!!!!!!!!!!!*/
}
table.contact-form01.contact-form01 th:not(:last-of-type) {
  border-bottom: 0.5px solid #ffffff;
}
table.contact-form01 tbody tr:first-child th, table.contact-form01 tbody tr:first-child td {
  line-height: 2.5;
  border-top: 0.5px solid #ffffff;
}
table.contact-form01 td {
  border-bottom: 0.5px solid #ffffff;
}
table.contact-form01 td {
  border-left: #ffffff 0.5px solid;
  font-size: 11px;
  background: transparent;
}
table.contact-form01.contact-form01 td:not(:last-of-type) {
  border-bottom: 0.5px solid #ffffff;
}
.wpcf7-list-item-label {
  font-size: 1.6rem;
}
.privacy-check {
  margin-bottom: 6em;
}
.privacy-check a {
  color: #50bbfd;
}
.contact-form01 th span {
  color: #757576;
}
input[type="radio"]:checked:before {
  background: #0095d9;
}
.contact-form01 th, label span {
  font-weight: 400;
  color: #ffffff;
}
/*========<!-- フッター -->========*/
.footer {
  background: #efefef;
}
.footer-nav-wrap p {
  display: none;
}
.footer-logo {
  width: 70%;
  margin: 0 auto 40px;
  padding-bottom: 40px;
  border-bottom: 1px dotted #333333;
  margin-bottom: 40px;
}
.footer-address p, .footer-address a, .footer-menu a {
  color: #333333 !important;
}
.sns-icon-title p, .sns-sub-nav li a, .sns-icon-title span, .copyright p {
  color: #333333 !important;
}
.footer-menu > li > a {
  border-bottom: 1px dashed #333333;
}
@media screen and (max-width: 1024px) {
  .footer-menu a {
    color: #333333 !important;
  }
}
.footer-logo-address {
  width: 500px;
  /* text-align: center; */
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer-inner.footer-inner {
  margin: 0 auto 0px;
}
.kv-img {
  margin-bottom: 2em;
}
/*========================================================================================

あしらい

=========================================================================================*/
.home-section01, .home-section03 {
  background: url(/wp-content/uploads/2025/01/network_.png) no-repeat left top/80%;
}
/*========================================================================================

最新ニュース

=========================================================================================*/
.column {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.news-list02.news-list02 li .news-img img {
  border-radius: 0px;
}
.news-list02.news-list02 li .news-cat a {
  border-radius: 0px;
  background-color: #0095d9;
  border: 1px solid #0095d9;
}
.news-list02.news-list02 li .news-cat a:hover {
    background-color: #fff;
    color: #0095d9;
}
.news-list02.news-list02 li:not(:last-of-type) {
  border-bottom: 1px solid #333333;
}
/*========================================================================================

ご挨拶

=========================================================================================*/
section.home-section02 {
  background-color: #efefef;
}
/*スライドショー*/
.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;
}
.slide-img img {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
/*========================================================================================

事業紹介

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

採用情報

=========================================================================================*/
section.home-section04 {
  background-color: #efefef;
}
.recruit-feed01.recruit-feed01 > li, .recruit-feed01.recruit-feed01 .recruit-img img {
  border-radius: 0px;
}
.home-section04 .width40 img {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.home-section04 .width55 {
  background: url(/wp-content/uploads/2025/01/message@2x.png) no-repeat center 80%/ 80%;
}
/*========================================================================================

会社概要

=========================================================================================*/
/*パララックス背景*/
.parallax_content {
  /*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, 3, 30, 0.7), rgba(0, 3, 30, 0.7)), url(/wp-content/uploads/2025/01/31583563_m.jpg);
  position: relative;
}
.parallax_content h2, .home-section05 .title_design-op::before, .home-section05 .title_design-op::after {
  color: #ffffff;
}
/*画像ループ*/
.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%);
  }
}
.recruit-feed01 > li, .tab-panel-a .tab {
  background-color: transparent;
  border-radius: 0px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.recruit-feed01 > li {
  background-color: #ffffff;
}
.tab-panel-a .tab.is-active, .tab-panel-a .tab:hover {
  background-color: #ffffff;
  color: #333333;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
.tab-panel-a .tab {
  margin: 0;
}
.tab-panel-a .tab-group {
  justify-content: space-between;
}
/*========================================================================================

お問い合わせ

=========================================================================================*/
.home-section06 h2, .home-section06 .title_design-op::before, .home-section06 .title_design-op::after {
  color: #ffffff;
}
.contact_info {
  width: 80%;
  margin-inline: auto;
  padding: 4em;
  background: #000522;
  text-align: center;
}
.contact_info p {
  margin-bottom: 1em;
}
.contact_info p, .contact_info a {
  color: #ffffff;
  text-align: center;
  font-size: 1.8rem;
}
/* 下層ヘッダーのシャドウの位置調整 */
p.sub-header-txt.sub-header-txt {
  margin-bottom: 0px;
}