@charset "UTF-8";
/*
Theme Name: sacretfarm
Theme URI:
Description: HOC tecのinformation等のページです。
Version: 1.1
Author: owndmedia-lab
*/
/*--------------------------------------------------------------
## 共通
--------------------------------------------------------------*/
/* color */
body {
  width: 100%;
  font-size: 16px;
  color: #000;
  font-family: "Noto Serif JP", serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 2px;
  margin: 0 auto;
  background-color: rgba(240, 240, 240, 0.9);
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.8rem;
}

p {
  font-size: 1rem;
  line-height: 2rem;
  margin: 1rem 0;
}

a {
  text-decoration: none;
  color: #002655;
}

.header_lower-img .sp {
  display: none;
}

@media screen and (max-width: 606px) {
  .header_lower-img .pc {
    display: none;
  }
  .header_lower-img .sp {
    display: block;
  }
}
.container {
  margin: auto;
}

.container01 {
  width: calc(100% - 5vw);
}

.container02 {
  width: 1000px;
}

.container03 {
  width: 920px;
}

/*ローディング画面*/
.loader-wrap {
  position: fixed;
  display: grid;
  place-items: center;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  overflow: hidden;
  z-index: 1000;
}

.loader,
.loader:before,
.loader:after {
  background: #ffffff;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}

.loader {
  color: #ffffff;
  text-indent: -9999em;
  margin: 88px auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}

.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.loader:after {
  left: 1.5em;
}

@-webkit-keyframes load1 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%, 80%, 100% {
    -webkit-box-shadow: 0 0;
            box-shadow: 0 0;
    height: 4em;
  }
  40% {
    -webkit-box-shadow: 0 -2em;
            box-shadow: 0 -2em;
    height: 5em;
  }
}
/*ボタンデザイン*/
.btn1 {
  position: relative;
  font-size: 3rem;
  color: #000;
  padding: 0.5rem 2rem 0.8rem;
  border: 1px solid #000;
}
.btn1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  top: -10px;
  right: -10px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn1:hover::before {
  top: 0;
  right: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.more-btn {
  position: relative;
  display: inline-block;
}
.more-btn::before, .more-btn::after {
  position: absolute;
  content: "";
}
.more-btn::before {
  width: 160px;
  height: 2px;
  background-color: #000;
  right: -2rem;
  bottom: -1rem;
}
.more-btn::after {
  width: 15px;
  height: 2px;
  background-color: #000;
  right: -2rem;
  bottom: -0.75rem;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}

/* 三角形の装飾 */
.deco {
  position: relative;
}
.deco::before, .deco::after {
  position: absolute;
  content: "";
}
.deco::before {
  left: 0;
}
.deco::after {
  right: 0;
}

/* その他共通 */
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.contents_table {
  max-width: 960px;
  border: none;
  margin: 0 auto;
}
.contents_table--recruit {
  max-width: 960px;
  border: none;
  margin: 0 auto;
}
.contents_table--recruit th,
.contents_table--recruit td {
  border-bottom: 1px solid #000;
  padding: 1.5rem 2rem;
}
.contents_table--recruit th {
  vertical-align: middle;
}
.contents_table--recruit td {
  text-align: left;
}
.contents_table th,
.contents_table td {
  border-bottom: 1px solid #000;
  padding: 1.5rem 2rem;
}
.contents_table th {
  vertical-align: middle;
}
.contents_table td {
  text-align: left;
}

.bk-img {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 450px;
  width: 100%;
}

.category,
.post-categories li a {
  background-color: #002655;
  font-size: 12px;
  color: #fff;
  padding: 0.1rem 0.3rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0;
}
.category:hover,
.post-categories li a:hover {
  background-color: #000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*パンくずリスト*/
.breadcrumb {
  margin-bottom: 5rem;
}
.breadcrumb li {
  display: inline-block;
  font-size: 0.8rem;
  position: relative;
  margin-right: 2rem;
}
.breadcrumb li a {
  color: #002655;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.breadcrumb li a:hover {
  color: #00698c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.breadcrumb li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -1.2rem;
  bottom: 0.2rem;
}
.breadcrumb li:last-child::before {
  display: none;
}

/*ページャー*/
.page-numbers:is(ul) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: .3rem;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 3rem;
}
.page-numbers li {
  padding: 0;
}
.page-numbers li .current {
  color: #fff;
  background-color: #000;
  padding: 0.8rem;
}
.page-numbers li .prev,
.page-numbers li .next {
  background: none;
  color: #002655;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-numbers li .prev:hover,
.page-numbers li .next:hover {
  background: none;
  color: #00698c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-numbers li a {
  display: block;
  color: #fff;
  background-color: #002655;
  padding: 0.8rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page-numbers li a:hover {
  background-color: #00698c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*スクロールバーデザイン*/
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background-color: #000915;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
}

/*--------------------------------------------------------------
## header.php
--------------------------------------------------------------*/
.header {
  position: relative;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100vh;
}
.header_menu {
  padding-top: 40px;
}
.header_menu .header-branding {
  position: fixed;
  z-index: 100;
}
.header_menu .header-branding_site-title a {
  color: #fff;
}
.header_menu .menu-trigger {
  position: fixed;
  width: 60px;
  height: 60px;
  top: 0;
  right: 0;
  background-color: #fff;
  border: none;
  z-index: 90;
  cursor: pointer;
}
.header_menu .menu-trigger-bar {
  position: absolute;
  width: 30px;
  height: 4px;
  margin: auto;
  left: 0;
  right: 0;
  background-color: #000;
}
.header_menu .menu-trigger-bar.top {
  top: 16px;
}
.header_menu .menu-trigger-bar.middle {
  top: 28px;
}
.header_menu .menu-trigger-bar.bottom {
  top: 40px;
}
.header_menu .close-trigger {
  position: fixed;
  display: none;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  z-index: 110;
  cursor: pointer;
}
.header_menu .close-trigger-bar {
  position: absolute;
  width: 30px;
  height: 4px;
  background-color: #fff;
  margin: auto;
  top: 30px;
  left: 0;
  right: 0;
}
.header_menu .close-trigger-bar.left {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header_menu .close-trigger-bar.right {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.header_menu .global-nav {
  width: 50%;
  margin: auto;
  padding-left: 5rem;
}
.header_menu .global-nav_list {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.header_menu .global-nav_list li {
  padding-top: 1rem;
}
.header_menu .global-nav_list li a {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header_menu .global-nav_list li a:hover {
  color: #00698c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header_menu .mini-nav {
  position: fixed;
  display: grid;
  place-items: center;
  width: 0;
  height: 0;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  z-index: 90;
  overflow-y: scroll;
}
.header_menu .mini-nav_list {
  margin: auto;
  padding: 10%;
  text-align: center;
}
.header_menu .mini-nav_list li {
  padding: 1rem;
}
.header_menu .mini-nav_list li a {
  display: block;
  height: 3rem;
  color: #fff;
  font-size: 1.5rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header_menu .mini-nav_list li a:hover {
  color: #00698c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.header_menu .mini-nav_list li.current a {
  color: #333;
}
.header_catchphrase h2 {
  font-size: 3rem;
  padding-top: 40vh;
  text-align: center;
}
.header_slider {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}
.header_slider div {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
  margin: 0;
  width: 100%;
}
.header_slider-img01 {
  background-image: url(img/top_slider-test.jpg);
}
.header_slider-img02 {
  background-image: url(img/top_slider02.jpg);
}
.header_slider-img03 {
  background-image: url(img/top_slider03.jpg);
}
.header_lower-img {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
}
.header_lower-img img,
.header_lower-img video {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.header::before {
  border-top: 3vw solid transparent;
  border-bottom: 3vw solid transparent;
  border-left: 40vw solid rgba(0, 105, 140, 0.5);
  bottom: -3vw;
}
.header::after {
  border-top: 7vw solid transparent;
  border-right: 60vw solid rgba(0, 105, 140, 0.3);
  border-bottom: 7vw solid transparent;
  bottom: -7vw;
}

/*--------------------------------------------------------------
## main
--------------------------------------------------------------*/
.lower .contents {
  padding: 10rem 0;
}
.lower .contents:last-child {
  padding-bottom: 12rem;
}

/*--------------------------------------------------------------
## toppage
--------------------------------------------------------------*/
.top .contents {
  position: relative;
}
.top .contents_title {
  font-size: 4rem;
  text-align: center;
}
.top .contents01 {
  padding: 10rem 0;
}
.top .contents01 h2 {
  font-size: 2rem;
  line-height: 4rem;
  padding: 0 2rem;
}
.top .contents02 .contents_section {
  position: relative;
  margin-bottom: 30rem;
}
.top .contents02 .contents_section-img {
  max-height: 80vh;
}
.top .contents02 .contents_section-img img {
  width: 100%;
  max-height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.top .contents02 .contents_section-text {
  position: absolute;
  width: 880px;
  min-height: 300px;
  top: 60vh;
  z-index: 10;
}
.top .contents02 .contents_section-text a {
  display: block;
  padding: 6rem 8rem;
  color: #fff;
  min-height: 300px;
}
.top .contents02 .contents_section-text a h2 {
  font-size: 3.5rem;
  margin-bottom: 3rem;
}
.top .contents02 .contents_section-text a .more-btn {
  position: absolute;
  right: 9rem;
  bottom: 6.5rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.top .contents02 .contents_section-text a .more-btn::before, .top .contents02 .contents_section-text a .more-btn::after {
  background-color: #fff;
}
.top .contents02 .contents_section-text a:hover .more-btn {
  right: 6rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.top .contents02 .contents_section:first-child .contents_section-img::before {
  border-right: 20vw solid transparent;
  border-bottom: 4vw solid rgba(0, 0, 0, 0.2);
  bottom: 0;
  z-index: 10;
}
.top .contents02 .contents_section:first-child .contents_section-img::after {
  border-right: 80vw solid rgba(0, 0, 0, 0.2);
  border-bottom: 10vw solid transparent;
  bottom: -10vw;
}
.top .contents02 .contents_section:first-child .contents_section-text {
  background-color: #000915;
  right: 0;
}
.top .contents02 .contents_section:nth-child(2) .contents_section-img::before {
  border-right: 60vw solid transparent;
  border-bottom: 6vw solid rgba(0, 105, 140, 0.3);
  bottom: 0;
  z-index: 10;
}
.top .contents02 .contents_section:nth-child(2) .contents_section-img::after {
  border-bottom: 6vw solid transparent;
  border-top: 2vw solid transparent;
  border-right: 40vw solid rgba(0, 105, 140, 0.5);
  bottom: -6vw;
}
.top .contents02 .contents_section:nth-child(2) .contents_section-text {
  background-color: #333;
}
.top .contents03 {
  padding: 8rem 0 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.top .contents03 .container a {
  display: block;
  min-height: 6rem;
  margin-bottom: 8rem;
}
.top .contents03 .container a .contents_title {
  text-align: left;
  color: #000;
}
.top .contents03 .container a .more-btn {
  position: absolute;
  color: #000;
  left: 30rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.top .contents03 .container a:hover .more-btn {
  left: 35rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.top .contents03 .contents_item .article {
  position: relative;
  width: 50%;
  height: 32vw;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top .contents03 .contents_item .article a {
  display: block;
  height: 32vw;
}
.top .contents03 .contents_item .article a img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  z-index: -1;
}
.top .contents03 .contents_item .article a .article-text {
  display: none;
  color: #fff;
  padding: 5vw;
}
.top .contents03 .contents_item .article a .article-text_title {
  font-size: 3rem;
  padding-top: 10vw;
  line-height: 3.5rem;
}
.top .contents03 .contents_item .article a .article-text_data {
  position: relative;
  margin: 1.2rem 0;
}
.top .contents03 .contents_item .article a .article-text_data::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background-color: #fff;
  bottom: -1rem;
  left: 0;
}
.top .contents03 .contents_item .article:hover {
  background-color: rgba(0, 59, 95, 0.5);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.top .contents03 .contents_item .article:hover a .article-text {
  display: block;
}
.top .contents04 {
  padding: 8rem 0 25rem;
  position: relative;
}
.top .contents04 .contents_title {
  margin-bottom: 10rem;
  text-align: left;
}
.top .contents04 .contents_item .article {
  width: calc(50% - 6vw);
  margin-bottom: 4rem;
}
.top .contents04 .contents_item .article:nth-child(odd) {
  padding: 0 1vw 0 5vw;
}
.top .contents04 .contents_item .article:nth-child(even) {
  padding: 0 5vw 0 1vw;
}
.top .contents04 .contents_item .article .article-text {
  width: calc(100% - 2rem);
  color: #333;
}
.top .contents04 .contents_item .article .article-text_data {
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
  color: #00698c;
}
.top .contents04 .contents_item .article .article-text_title {
  font-size: 1.5rem;
  padding-bottom: 0.5rem;
  color: #002655;
}
.top .contents04 .more-btn {
  position: absolute;
  right: 10vw;
  bottom: 18rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.top .contents04 .more-btn a {
  color: #000;
  display: block;
  width: 200px;
  height: 2rem;
  text-align: right;
}
.top .contents04 .more-btn:hover {
  right: 7vw;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.top .contents04::before {
  border-right: 70vw solid transparent;
  border-bottom: 12vw solid rgba(0, 105, 140, 0.6);
  bottom: 0;
}
.top .contents04::after {
  border-left: 30vw solid transparent;
  border-bottom: 8vw solid rgba(0, 105, 140, 0.4);
  bottom: 0;
}
.top .contents05 {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 8rem 0;
  text-align: center;
}
.top .contents05 .contents_bk {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.top .contents05 .contents_title {
  margin-bottom: 5rem;
}
.top .contents05 p {
  margin-bottom: 8rem;
}
.top .contents05 .btn1 {
  color: #fff;
  border-color: #fff;
}
.top .contents05 .btn1::before {
  border-color: #fff;
}

/*--------------------------------------------------------------
## lowerpage
--------------------------------------------------------------*/
/* 見出し */
.header_pageTitle {
  position: absolute;
  top: 42vh;
}
.header_pageTitle h2 {
  font-size: 4rem;
  padding-left: 10vw;
}
.header_pageTitle h2 span {
  font-size: 2rem;
  display: block;
  margin-top: 2rem;
}

.lower .contents_title {
  font-size: 2rem;
}

/* 投稿内aタグ */
.post_content a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.post_content a:hover {
  color: #00698c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

/*--------------------------------------------------------------
## about.php
--------------------------------------------------------------*/
.about .contents01 {
  background: #fff;
}
.about .contents01 .container {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.about .contents01 .contents_text {
  width: 50%;
}
.about .contents01 .contents_text h3 {
  margin-bottom: 3rem;
}
.about .contents01 .contents_text p {
  padding-right: 5%;
}
.about .contents01 .contents_img {
  width: 50%;
}
.about .contents01 .contents_img img {
  width: 90%;
  text-align: right;
}
.about .contents02 .container {
  background-color: #fff;
  padding: 5rem 0;
}
.about .contents02 h3 {
  text-align: center;
}
.about .contents02 table {
  margin: 5rem auto 1rem;
  word-break: keep-all;
}
.about .contents03 {
  background-color: rgba(0, 0, 0, 0.1);
}
.about .contents03::before {
  border-right: 60vw solid transparent;
  border-bottom: 15vw solid rgba(0, 105, 140, 0.4);
  bottom: 0;
}
.about .contents03::after {
  border-left: 40vw solid transparent;
  border-bottom: 8vw solid rgba(0, 105, 140, 0.2);
  bottom: 0;
}
.about .contents03 h3 {
  text-align: center;
}
.about .contents03 table {
  margin: auto;
  margin-top: 5rem;
}
.about .contents04 {
  background-color: rgba(0, 0, 0, 0.1);
}
.about .contents04 .container {
  background-color: #fff;
  padding: 5rem 0;
}
.about .contents04::before {
  border-right: 50vw solid transparent;
  border-top: 15vw solid rgba(0, 105, 140, 0.2);
  top: 0;
}
.about .contents04::after {
  border-left: 50vw solid transparent;
  border-top: 8vw solid rgba(0, 105, 140, 0.4);
  top: 0;
}
.about .contents04 h3 {
  text-align: center;
}
.about .contents04 table {
  margin: 5rem auto 1rem;
}
.about .contents05 .container {
  background-color: #fff;
  padding: 5rem 0;
}
.about .contents05 h3 {
  text-align: center;
}
.about .contents05 table {
  margin: auto;
  margin-top: 5rem;
}
.about .contents06 {
  background-color: #fff;
}
.about .contents06::before {
  border-right: 60vw solid transparent;
  border-bottom: 15vw solid rgba(0, 105, 140, 0.4);
  bottom: 0;
}
.about .contents06::after {
  border-left: 40vw solid transparent;
  border-bottom: 8vw solid rgba(0, 105, 140, 0.2);
  bottom: 0;
}
.about .img1 {
  background-image: url("img/parallax-background.jpg");
}

/*--------------------------------------------------------------
## facility.php
--------------------------------------------------------------*/
.facility .contents01 {
  background-color: #fff;
}
.facility .contents01 .container {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.facility .contents01 .contents_text {
  width: 50%;
}
.facility .contents01 .contents_text h3 {
  margin-bottom: 3rem;
}
.facility .contents01 .contents_text p {
  padding-right: 5%;
}
.facility .contents01 .contents_img {
  width: 50%;
}
.facility .contents01 .contents_img img {
  width: 90%;
  text-align: right;
}
.facility .contents02 .container {
  background-color: #fff;
  padding: 5rem 0;
}
.facility .contents02 h3 {
  text-align: center;
}
.facility .contents02 table {
  margin: 5rem auto 1rem;
}
.facility .img1 {
  background-image: url("img/parallax-background.jpg");
}
.facility .contents03 {
  padding: 8rem 0 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.facility .contents03::before {
  border-right: 60vw solid transparent;
  border-bottom: 15vw solid rgba(0, 105, 140, 0.4);
  bottom: 0;
}
.facility .contents03::after {
  border-left: 40vw solid transparent;
  border-bottom: 8vw solid rgba(0, 105, 140, 0.2);
  bottom: 0;
}
.facility .contents03 .contents_title {
  margin-bottom: 3rem;
}
.facility .contents03 .container a {
  display: block;
  min-height: 6rem;
  margin-bottom: 8rem;
}
.facility .contents03 .container a .contents_title {
  text-align: left;
  color: #000;
}
.facility .contents03 .container a .more-btn {
  position: absolute;
  color: #000;
  left: 30rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.facility .contents03 .container a:hover .more-btn {
  left: 35rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.facility .contents03 .contents_item .article {
  position: relative;
  width: 20%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.facility .contents03 .contents_item .article span {
  display: block;
  height: 15vw;
}
.facility .contents03 .contents_item .article span img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  left: 0;
  z-index: -1;
}
.facility .contents03 .contents_item .article span .article-text {
  display: none;
  color: #fff;
  text-align: center;
}
.facility .contents03 .contents_item .article span .article-text_title {
  font-size: 1.5rem;
  padding-top: 10vw;
}
.facility .contents03 .contents_item .article:hover {
  background-color: rgba(0, 59, 95, 0.5);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.facility .contents03 .contents_item .article:hover span .article-text {
  display: block;
}

/*--------------------------------------------------------------
## recruit.php
--------------------------------------------------------------*/
.recruit .contents01 {
  background-color: #fff;
}
.recruit .contents01 .contents_title {
  font-size: 1.5rem;
  line-height: 2.8rem;
  text-align: center;
}
.recruit .contents02 .container {
  background-color: #fff;
  padding: 5rem 0;
}
.recruit .contents02 h3 {
  text-align: center;
}
.recruit .contents02 table {
  margin: 5rem auto 1rem;
}
.recruit .contents03 {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 12rem !important;
  text-align: center;
}
.recruit .contents03 p {
  margin-bottom: 8rem;
  font-size: 1.2rem;
  line-height: 2rem;
}
.recruit .contents03::before {
  border-right: 60vw solid transparent;
  border-bottom: 12vw solid rgba(0, 105, 140, 0.3);
  bottom: 0;
}
.recruit .contents03::after {
  border-left: 40vw solid transparent;
  border-bottom: 8vw solid rgba(0, 105, 140, 0.5);
  bottom: 0;
}

/*--------------------------------------------------------------
## owner.php
--------------------------------------------------------------*/
.owner .contents01 .contents_title {
  font-size: 1.5rem;
  line-height: 2.8rem;
  text-align: center;
}
.owner .contents02 {
  padding: 3rem 0 5rem;
}
.owner .contents02 .contents_section {
  position: relative;
  margin-bottom: 18rem;
}
.owner .contents02 .contents_section-text {
  position: absolute;
  color: #fff;
  text-align: left;
  padding: 5rem;
  width: 35vw;
  min-height: 300px;
  bottom: -8rem;
  z-index: 10;
}
.owner .contents02 .contents_section-text h4 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.owner .contents02 .contents_section img {
  width: 60vw;
  height: 39vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.owner .contents02 .contents_section:first-child {
  text-align: right;
}
.owner .contents02 .contents_section:first-child .contents_section-text {
  background-color: #000915;
}
.owner .contents02 .contents_section:first-child::before {
  border-right: 60vw solid transparent;
  border-bottom: 25vw solid rgba(0, 0, 0, 0.2);
  bottom: 0.1vw;
  left: -2.5vw;
}
.owner .contents02 .contents_section:first-child::after {
  border-left: 40vw solid transparent;
  border-top: 5vw solid rgba(0, 0, 0, 0.3);
  bottom: -4.9vw;
  right: -2.5vw;
}
.owner .contents02 .contents_section:nth-child(even) {
  text-align: left;
}
.owner .contents02 .contents_section:nth-child(even) img {
  z-index: 10;
}
.owner .contents02 .contents_section:nth-child(even) .contents_section-text {
  background-color: #333;
  right: 0;
}
.owner .contents02 .contents_section:nth-child(even)::before {
  border-right: 30vw solid transparent;
  border-top: 3vw solid rgba(0, 105, 140, 0.6);
  bottom: -2.9vw;
  left: -2.5vw;
}
.owner .contents02 .contents_section:nth-child(even)::after {
  border-left: 70vw solid transparent;
  border-bottom: 30vw solid rgba(0, 105, 140, 0.3);
  bottom: 0.1vw;
  right: -2.5vw;
}
.owner .contents02 .contents_section:last-child {
  text-align: right;
}
.owner .contents02 .contents_section:last-child .contents_section-text {
  background-color: #002655;
}
.owner .contents02 .contents_section:last-child .contents_section-text .more-btn a {
  color: #fff;
}
.owner .contents02 .contents_section:last-child .contents_section-text .more-btn::before,
.owner .contents02 .contents_section:last-child .contents_section-text .more-btn::after {
  background-color: #fff;
}
.owner .contents02 .contents_section:last-child .contents_section-text .more-btn {
  position: absolute;
  right: 9rem;
  bottom: 6.5rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.owner .contents02 .contents_section:last-child .contents_section-text .more-btn:nth-of-type(1) {
  bottom: 13rem;
}
.owner .contents02 .contents_section:last-child .contents_section-text .more-btn:hover {
  right: 6rem;
}
.owner .contents02 .contents_section:last-child::before {
  border-right: 80vw solid transparent;
  border-bottom: 20vw solid rgba(0, 0, 0, 0.3);
  bottom: 0.1vw;
  left: -2.5vw;
}
.owner .contents02 .contents_section:last-child::after {
  border-left: 20vw solid transparent;
  border-top: 5vw solid rgba(0, 0, 0, 0.2);
  bottom: -4.9vw;
  right: -2.5vw;
}
.owner .contents03 {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 12rem !important;
  text-align: center;
}
.owner .contents03 p {
  margin-bottom: 8rem;
  font-size: 1.2rem;
  line-height: 2rem;
}
.owner .contents03::before {
  border-right: 60vw solid transparent;
  border-bottom: 12vw solid rgba(0, 105, 140, 0.3);
  bottom: 0;
}
.owner .contents03::after {
  border-left: 40vw solid transparent;
  border-bottom: 8vw solid rgba(0, 105, 140, 0.5);
  bottom: 0;
}
.owner .youtube {
  padding-bottom: 60px;
  text-align: center;
}
.owner .youtube iframe {
  display: block;
  margin: 0 auto;
  height: 600px;
  max-width: 900px;
  width: 90%;
}
@media screen and (max-width: 606px) {
  .owner .youtube iframe {
    height: 300px;
  }
}

/*--------------------------------------------------------------
## archive(no sidebar)
--------------------------------------------------------------*/
.articles--archive {
  overflow-x: scroll;
}
.articles .article {
  width: calc(50% - 2rem);
  margin-bottom: 5rem;
}
.articles .article_img {
  position: relative;
  overflow: hidden;
  height: 312px;
}
.articles .article_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.articles .article_img .category {
  position: absolute;
  bottom: 0;
  right: 0;
}
.articles .article_text {
  color: #000;
  padding: 1rem 0.5rem 0;
}
.articles .article_text-title {
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.articles .article_text-date {
  position: relative;
  font-size: 0.8rem;
  color: #002655;
  padding-left: 0.2rem;
  margin-bottom: 2rem;
}
.articles .article_text-date::after {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1px;
  background-color: #000;
  left: 0.2rem;
  bottom: -0.8rem;
}
.articles .article:nth-child(odd) {
  margin-right: 2rem;
}
.articles .article:nth-child(even) {
  margin-left: 2rem;
}
.articles .article a {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.articles .article a:hover .article_img {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.articles .article a:hover .article_img img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.articles .article a:hover .article_text {
  opacity: 0.8;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.archive .contents01 {
  padding-bottom: 0;
}
.archive .contents02,
.archive .contents03 {
  padding: 0;
}

/*--------------------------------------------------------------
## archive-news.php
--------------------------------------------------------------*/
.news .articles .article {
  width: 100%;
  margin: 0;
  padding-bottom: 2rem;
}
.news .articles hr {
  border-top: 1px solid #777;
  width: calc(100% - 2rem);
  margin: 1.2rem auto;
}

/*--------------------------------------------------------------
## single.php(no sidebar)
--------------------------------------------------------------*/
.single .contents01 {
  padding-bottom: 0;
}
.single .contents02 {
  padding-top: 0;
}

.post {
  margin-bottom: 3rem;
}
.post_title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 7rem;
}
.post_img {
  width: 100%;
  margin-bottom: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
.post_data {
  width: calc(100% - 2rem);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: auto;
  margin-bottom: 4rem;
}
.post_data-date {
  position: relative;
  font-size: 0.9rem;
}
.post_data-date::before {
  position: absolute;
  content: "";
  width: 2rem;
  height: 1px;
  background-color: #002655;
  bottom: -1rem;
}
.post_data .category a {
  color: #fff;
  display: block;
}
.post_content {
  padding: 0 1rem;
  line-height: 1.6rem;
}
.post__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.post__imgArea {
  width: 60%;
  max-width: 600px;
}
.post__imgArea img {
  width: 100%;
  height: auto;
}
.post .thumbnail .slick-track {
  -webkit-transform: unset !important;
          transform: unset !important;
}
.post .thumbnail-img {
  opacity: 0.3;
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  width: 33.3333333333% !important;
}
.post .thumbnail .slick-current {
  opacity: 1;
}
.post__txtArea {
  padding-left: clamp(18px, 3vw, 42px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.post__txtArea h4 {
  font-size: clamp(16px, 1.5vw, 21px);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.post__txtArea li a {
  font-size: 12px;
  background: #00698C;
  padding: 0.25rem 0.5rem;
  color: #fff;
}
.post__txtArea p {
  font-size: 14px;
}

/*--------------------------------------------------------------
## footer.php
--------------------------------------------------------------*/
.footer {
  position: relative;
  background-color: #000;
  color: #fff;
  padding: 5rem 0;
  text-align: left;
}
.footer .footer-box {
  width: 50%;
  line-height: 2rem;
}
.footer .footer-box a {
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: underline;
}
.footer .footer-box a:hover {
  color: #00698c;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.footer .footer-box h2 {
  margin-bottom: 200px;
}
.footer .footer-box_text-left {
  width: calc(50% - 2rem);
  padding-right: 2rem;
}
.footer .footer-box_text-right {
  width: 50%;
}
.footer .footer-box_text-right .sns-nav {
  margin: 1rem 0;
}
.footer .footer-box_text-right .sns-nav_list li {
  display: inline-block;
  margin-right: 0.8rem;
  font-size: 1.5rem;
}
.footer .copyright {
  position: absolute;
  bottom: 5rem;
  font-size: 0.8rem;
}

/*--------------------------------------------------------------
## item
--------------------------------------------------------------*/
.item__ttl--facility {
  font-size: clamp(16px, 1.5vw, 21px);
}

/*--------------------------------------------------------------
## list
--------------------------------------------------------------*/
.list--company {
  line-height: 1.8;
}
.list--link {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2;
  line-height: 1.8;
  margin-top: 5rem;
  margin-bottom: 7rem;
}
.list--filter {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.list--filter li a {
  padding: 0.5rem 1rem;
  background: #D8D8D8;
  margin-right: 1px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.list--filter li a:hover {
  background: #00698C;
  color: #fff;
}

/*--------------------------------------------------------------
## form
--------------------------------------------------------------*/
#wpcf7-f28-o1 input[type=text],
#wpcf7-f28-o1 input[type=email],
#wpcf7-f28-o1 input[type=tel],
#wpcf7-f28-o1 textarea {
  width: 100%;
  padding: 3px 7px;
  font-size: 16px;
  line-height: 1.5;
}

/*.wpcf7-form {
  margin: 0 auto;
  width: clamp(300px, 80vw, 650px);
}*/
/*--------------------------------------------------------------
## sidebar
--------------------------------------------------------------*/
.widget-container {
  width: calc(340px - 4rem);
  margin-left: 3rem;
  margin-bottom: 7rem;
}
.widget-container:nth-child(odd) h2::before {
  border-left: 52px solid rgba(0, 0, 0, 0.2);
}
.widget-container:nth-child(even) h2::before {
  border-left: 52px solid rgba(0, 105, 140, 0.5);
}
.widget-container_title {
  position: relative;
  font-size: 1.5rem;
  font-weight: bold;
  border-bottom: 2px solid #000;
  line-height: 3rem;
  padding-left: 0.5rem;
}
.widget-container_title::before {
  position: absolute;
  content: "";
  border-bottom: 52px solid transparent;
  z-index: -1;
  left: 0;
}
.widget-container .searchform {
  padding-top: 0.5rem;
  line-height: 3.2rem;
}
.widget-container .searchform div {
  text-align: center;
}
.widget-container input {
  line-height: 1.8;
  font-size: 16px;
}
.widget-container ul {
  padding: 0.5rem 1rem;
}
.widget-container ul li {
  line-height: 3.2rem;
  border-bottom: 1px solid #000;
}

/*--------------------------------------------------------------
## table
--------------------------------------------------------------*/
.tb {
  width: 100%;
  line-height: 1.8;
}
.tb--race {
  line-height: 1.8;
  background: #fff;
  word-break: keep-all;
}
.tb--archive {
  word-break: keep-all;
  line-height: 1.8;
  font-size: 12px;
  background: #fff;
}

.th--race, .th--archive {
  padding: 0.5rem 0.8rem;
  text-align: center;
  border: 1px solid #D8D8D8;
  background: #00698C;
  color: #fff;
}

.td--race, .td--archive {
  padding: 0.25rem 0.8rem;
  border: 1px solid #D8D8D8;
  vertical-align: middle;
}
.td__img-link--archive {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.td--archive img {
  width: 85px;
}

/*--------------------------------------------------------------
## 2022.6.29  written by YATA
--------------------------------------------------------------*/
.race-scroll-content {
  max-width: 1250px;
  overflow-x: scroll;
}/*# sourceMappingURL=style.css.map */

.archive-pagination {
    width: 100%;
}
