@charset "UTF-8";
/*
Theme Name: tec-info
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;
  font-feature-settings: "palt";
  letter-spacing: 2px;
  margin: 0 auto;
  box-sizing: border-box;
}

h1 {
  font-size: calc(1em + 12px);
  text-shadow: 2px 2px 2px #ccc;
}
h1 img {
  vertical-align: bottom;
}

h2 {
  font-size: 1.8rem;
}

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

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

.container {
  margin: auto;
}

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

.container02 {
  width: 1000px;
}

.container03 {
  width: 920px;
}

@media screen and (min-width: 960px) {
  .header_catchphrase br {
    display: none;
  }
}
/*ローディング画面*/
.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;
  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;
  transform: translateZ(0);
  animation-delay: -0.16s;
}

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

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

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

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

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

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

.contents_table {
  max-width: 960px;
  min-width: 70%;
  border: none;
}
.contents_table th,
.contents_table td {
  border-bottom: 1px solid #000;
  padding: 1.5rem 2rem;
  line-height: 1.7;

}
.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: 0.9rem;
  color: #fff;
  padding: 0.8rem 1rem;
  transition: 0.4s;
  margin: 0;
}
.category:hover,
.post-categories li a:hover {
  background-color: #000;
  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;
  transition: 0.4s;
}
.breadcrumb li a:hover {
  color: #3fa7f3;
  transition: 0.4s;
}
.breadcrumb li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 4px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
  right: -1.2rem;
  bottom: 0.2rem;
}
.breadcrumb li:last-child::before {
  display: none;
}

/*ページャー*/
.page-numbers {
  display: flex;
  justify-content: space-around;
  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;
  transition: 0.4s;
}
.page-numbers li .prev:hover,
.page-numbers li .next:hover {
  background: none;
  color: #3fa7f3;
  transition: 0.4s;
}
.page-numbers li a {
  display: block;
  color: #fff;
  background-color: #002655;
  padding: 0.8rem;
  transition: 0.4s;
}
.page-numbers li a:hover {
  background-color: #3fa7f3;
  transition: 0.4s;
}

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

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

::-webkit-scrollbar-thumb {
  background-color: #000915;
  border-radius: 10px;
  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 {
  transform: rotate(45deg);
}
.header_menu .close-trigger-bar.right {
  transform: rotate(135deg);
}
.header_menu .global-nav {
  width: 50%;
  margin: auto;
  padding-left: 5rem;
}
.header_menu .global-nav_list {
  justify-content: space-around;
}
.header_menu .global-nav_list li {
  padding-top: 1rem;
}
.header_menu .global-nav_list li a {
  color: #fff;
  transition: 0.4s;
}
.header_menu .global-nav_list li a:hover {
  color: #3fa7f3;
  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;
  transition: 0.4s;
}
.header_menu .mini-nav_list li a:hover {
  color: #3fa7f3;
  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/main_visual01.jpg);
}
.header_slider-img02 {
  background-image: url(img/main_visual02.jpg);
}
.header_slider-img03 {
  background-image: url(img/main_visual03.jpg);
}
.header .bg-slider {
  width: 100%;
  height: 100vh;
}
.header_lower-img {
  position: absolute;
  top: 0;
  z-index: -1;
  width: 100%;
}
.header_lower-img img {
  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(63, 167, 243, 0.5);
  bottom: -3vw;
}
.header::after {
  border-top: 7vw solid transparent;
  border-right: 60vw solid rgba(63, 167, 243, 0.3);
  border-bottom: 7vw solid transparent;
  bottom: -7vw;
}

/*
puldown
-------------------------------------*/
li {
  position: relative;
  padding: 5px;
  display: block;
  cursor: pointer;
}

.dropdwn > li {
  margin: 1px;
  display: inline;
}

.dropdwn_menu {
  width: 100%;
  display: none;
  position: absolute;
  margin-left: -5px;
  margin-top: 5px;
  padding: 0;
}

.dropdwn_menu li {
  width: 100%;
}

.dropdwn_menu li a {
  padding: 5px 0;
  margin: -5px 5px -5px -5px;
  display: block;
  color: #fff;
}

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

/*--------------------------------------------------------------
## toppage
--------------------------------------------------------------*/
.top {
  /*
   contents01 concept
  ---------------------------------------------------*/
  /*
   contents02 about+servise
  ---------------------------------------------------*/
  /*
   contents03 blog
  ---------------------------------------------------*/
  /*
   contents04
  ---------------------------------------------------*/
  /*
   contents05 contact
  ---------------------------------------------------*/
}
.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 .service .container02 .more-btn {
  position: absolute;
  right: 10vw;
  bottom: 18rem;
  transition: 0.4s;
}
.top .contents02__text {
  color: #fff;
}
.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--p2 {
  padding: 2rem;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .top .contents02 .contents_section-text--p2 {
    position: static;
  }
}
.top .contents02 .contents_section-text h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #fff;
}
.top .contents02 .contents_section-text .list {
  background-color: #fff;
  margin-bottom: 2rem;
  padding: 2rem 1rem;
  flex: 1 0 auto;
}
.top .contents02 .contents_section-text .list__item + .list__item {
  margin-top: 1.5rem;
}
.top .contents02 .contents_section-text .list__item {
  padding-left: 2rem;
  cursor: default;
}
.top .contents02 .contents_section-text .list__item a {
  display: inline-block;
}
.top .contents02 .contents_section-text .list__item a::before {
  content: ">";
}
.top .contents02 .contents_section-text .more-btn-block a {
  display: block;
  padding: 2rem 0;
  color: #fff;
  min-height: 100px;
}
.top .contents02 .contents_section-text .more-btn-block a .more-btn {
  position: absolute;
  right: 9rem;
  bottom: 6.5rem;
  transition: 0.4s;
}
.top .contents02 .contents_section-text .more-btn-block a .more-btn--position {
  position: absolute;
  left: 26rem;
  bottom: 6.5rem;
  transition: 0.4s;
}
@media screen and (max-width: 640px) {
  .top .contents02 .contents_section-text .more-btn-block a .more-btn--position {
    left: 12rem;
  }
}
.top .contents02 .contents_section-text .more-btn-block a .more-btn--position::before, .top .contents02 .contents_section-text .more-btn-block a .more-btn--position::after {
  background-color: #fff;
}
.top .contents02 .contents_section-text .more-btn-block a .more-btn::before, .top .contents02 .contents_section-text .more-btn-block a .more-btn::after {
  background-color: #fff;
}
.top .contents02 .contents_section-text .more-btn-block a:hover .more-btn {
  right: 6rem;
  transition: 0.4s;
}
.top .contents02 .contents_section-text .more-btn-block a:hover .more-btn--position {
  left: 29rem;
  transition: 0.4s;
}
@media screen and (max-width: 640px) {
  .top .contents02 .contents_section-text .more-btn-block a:hover .more-btn--position {
    left: 16rem;
  }
}
.top .contents02 .contents_section-text--xlg {
  width: 100%;
}
@media screen and (max-width: 769px) {
  .top .contents02 .contents_section-text--xlg {
    position: static;
  }
}
.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(63, 167, 243, 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(63, 167, 243, 0.5);
  bottom: -6vw;
}
.top .contents02 .contents_section:nth-child(2) .contents_section-text {
  background-color: #333;
}
.top .contents02 .contents_section:nth-child(2) .contents_section-text .title_center {
  text-align: center;
  padding-top: 2rem;
}
.top .contents02 .contents_section:nth-child(2) .contents_section-text .flex_container {
  width: 80%;
  margin: 0 auto;
}
.top .contents02 .contents_section:nth-child(2) .contents_section-text .left_contents,
.top .contents02 .contents_section:nth-child(2) .contents_section-text .right_contents {
  padding: 2rem 0;
}
@media screen and (min-width: 960px) {
  .top .contents02 .contents_section:nth-child(2) .contents_section-text .left_contents,
  .top .contents02 .contents_section:nth-child(2) .contents_section-text .right_contents {
    width: 40%;
  }
}
.top .contents02 .contents_section:nth-child(2) .contents_section-text .contents__mintitle {
  font-size: calc(1em + 14px);
}
.top .contents03 {
  padding: 8rem 0 0;
  background-color: rgba(0, 0, 0, 0.1);
}
.top .contents03 .pt2rem {
  padding-top: 2rem;
}
.top .contents03 .container a {
  display: inline-block;
  min-height: 6rem;
  margin-bottom: 8rem;
  padding: 2rem 0;
}
.top .contents03 .container a .contents_title {
  text-align: left;
  color: #000;
}
.top .contents03 .container a .more-btn {
  position: absolute;
  color: #000;
  left: 30rem;
  transition: 0.4s;
}
.top .contents03 .container a:hover .more-btn {
  left: 35rem;
  transition: 0.4s;
}
.top .contents03 .contents_item .article {
  position: relative;
  width: 50%;
  height: 32vw;
  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);
  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: #3fa7f3;
}
.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;
  transition: 0.4s;
}
.top .contents04 .more-btn a {
  color: #000;
  display: block;
  width: 200px;
  height: 2rem;
  text-align: right;
  padding: 1rem 0;
}
.top .contents04 .more-btn:hover {
  right: 7vw;
  transition: 0.4s;
}
.top .contents04::before {
  border-right: 70vw solid transparent;
  border-bottom: 12vw solid rgba(63, 167, 243, 0.6);
  bottom: 0;
}
.top .contents04::after {
  border-left: 30vw solid transparent;
  border-bottom: 8vw solid rgba(63, 167, 243, 0.4);
  bottom: 0;
}
.top .contents05 {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 8rem 0;
  text-align: center;
}
.top .contents05 a {
  color: #fff;
}
.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 {
  transition: 0.4s;
}
.post_content a:hover {
  color: #3fa7f3;
  transition: 0.4s;
}

/*--------------------------------------------------------------
## about.php
--------------------------------------------------------------*/
.about .contents01 .container {
  align-items: center;
}
.about .contents01 .contents_text {
  width: 50%;
}
.about .contents01 .contents_text h3 {
  margin-bottom: 3rem;
}
.about .contents01 .contents_text h4 {
  font-size: calc(1em + 8px);
  color: rgb(184, 42, 42);
}
.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 {
  background-color: rgba(0, 0, 0, 0.1);
  padding-top: 12rem;
  padding-bottom: 20rem;
}
.about .contents02 .container {
  background-color: #fff;
  padding: 5rem 0;
}
.about .contents02 .mb4 {
  margin-bottom: 4rem;
}
.about .contents02 h3 {
  text-align: center;
}
.about .contents02 table {
  margin: 5rem auto 1rem;
}
.about .contents02::before {
  border-right: 60vw solid transparent;
  border-bottom: 15vw solid rgba(63, 167, 243, 0.4);
  bottom: 0;
}
.about .contents02::after {
  border-left: 40vw solid transparent;
  border-bottom: 8vw solid rgba(63, 167, 243, 0.2);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .about .contents02 .mb2 {
    margin-bottom: 2rem;
  }
}
.about .contents02 .olex__item a {
  display: inline-block;
}
.about .img1 {
  background-image: url("img/about-bk.jpg");
}
.about .map-container figcaption {
  padding-bottom: 2rem;
  font-size: calc(1em + 4px);
}
.about figure {
  width: 80%;
  margin: 6rem auto 6rem auto;
}
.about figure iframe {
  width: 100%;
}
.about .contents03::before {
  border-right: 50vw solid transparent;
  border-top: 15vw solid rgba(63, 167, 243, 0.2);
  top: 0;
}
.about .contents03::after {
  border-left: 50vw solid transparent;
  border-top: 8vw solid rgba(63, 167, 243, 0.4);
  top: 0;
}
.about .contents03 table {
  margin: auto;
  margin-top: 5rem;
}
.about .child-container {
  width: 80%;
  margin: 0 auto;
}
.about .child-container .list__item {
  color: rgb(133, 129, 129);
  cursor: default;
}
.about .child-container .list__item a {
  display: inline-block;
}
.about .list {
  text-align: center;
}
@media screen and (max-width: 960px) {
  .about .list {
    padding: 0 2rem 4rem 2rem;
  }
}
.about .list--pt2 {
  padding-top: 2rem;
}
.about .list__item {
  padding-top: 2rem;
}
.about .list__item a {
  color: rgb(133, 129, 129);
}
.about .list__item a::before {
  content: ">";
}

/*--------------------------------------------------------------
## service.php
--------------------------------------------------------------*/
.service .img1 {
  background-image: url("img/about-bk.jpg");
}
.service li {
  cursor: default;
}
.service .contents01 .contents_title {
  font-size: calc(1em + 4px);
  line-height: 2.8rem;
}
@media screen and (max-width: 559px) {
  .service .contents01 .contents_title {
    font-size: calc(1em + 4px);
  }
}
.service .contents02 {
  padding: 3rem 0 5rem;
}
.service .contents02 .contents_subtitle {
  font-size: calc(1em + 20px);
  text-align: center;
  line-height: 2.8rem;
  padding-bottom: 4rem;
}
@media screen and (max-width: 559px) {
  .service .contents02 .contents_subtitle {
    font-size: calc(1em + 14px);
  }
}
.service .contents02 .contents_section {
  position: relative;
  margin-bottom: 18rem;
}
.service .contents02 .contents_section-text {
  position: absolute;
  color: #fff;
  text-align: left;
  padding: 5rem;
  width: 35vw;
  min-height: 300px;
  bottom: -8rem;
  z-index: 10;
}
@media screen and (min-width: 960px) and (max-width: 1299px) {
  .service .contents02 .contents_section-text--oa {
    top: 20vw;
    height: 350px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1299px) {
  .service .contents02 .contents_section-text--led {
    top: 15vw;
    height: 300px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1024px) {
  .service .contents02 .contents_section-text--clean {
    top: 25vw;
    height: 270px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1024px) {
  .service .contents02 .contents_section-text--remodel {
    top: 25vw;
    height: 290px;
  }
}
@media screen and (min-width: 960px) and (max-width: 1024px) {
  .service .contents02 .contents_section-text--infra {
    top: 30vw;
    height: 330px;
  }
}
.service .contents02 .contents_section-text h4 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
.service .contents02 .contents_section-text .p2 {
  padding-bottom: 2rem;
}
.service .contents02 .contents_section img {
  width: 60vw;
  height: 39vw;
  -o-object-fit: cover;
     object-fit: cover;
}
.service .contents02 .contents_section:first-child {
  text-align: right;
}
.service .contents02 .contents_section:first-child .contents_section-text {
  background-color: #000915;
}
.service .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;
}
.service .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;
}
.service .contents02 .contents_section:nth-child(even) {
  text-align: left;
}
.service .contents02 .contents_section:nth-child(even) img {
  z-index: 10;
}
.service .contents02 .contents_section:nth-child(even) .contents_section-text {
  background-color: #333;
  right: 0;
}
.service .contents02 .contents_section:nth-child(even)::before {
  border-right: 30vw solid transparent;
  border-top: 3vw solid rgba(63, 167, 243, 0.6);
  bottom: -2.9vw;
  left: -2.5vw;
}
.service .contents02 .contents_section:nth-child(even)::after {
  border-left: 70vw solid transparent;
  border-bottom: 30vw solid rgba(63, 167, 243, 0.3);
  bottom: 0.1vw;
  right: -2.5vw;
}
.service .contents02 .contents_section:last-child .contents_section-text {
  background-color: #002655;
}
.service .contents02 .contents_section:last-child::before {
  left: -2.5vw;
}
.service .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;
}
.service .pg2 {
  padding-left: 2rem;
}
.service .contents03 {
  background-color: rgba(0, 0, 0, 0.1);
  padding-bottom: 12rem !important;
  text-align: center;
}
.service .contents03 p {
  margin-bottom: 8rem;
  font-size: 1.2rem;
  line-height: 2rem;
}
.service .contents03::before {
  border-right: 60vw solid transparent;
  border-bottom: 12vw solid rgba(63, 167, 243, 0.3);
  bottom: 0;
}
.service .contents03::after {
  border-left: 40vw solid transparent;
  border-bottom: 8vw solid rgba(63, 167, 243, 0.5);
  bottom: 0;
}

/*--------------------------------------------------------------
## policy.php プライバシーポリシー
--------------------------------------------------------------*/
.policy .contents_title {
  margin-bottom: 3rem;
}
.policy .wrapper {
  margin-bottom: 4rem;
}

/*--------------------------------------------------------------
## manual.php
--------------------------------------------------------------*/
.manual .contents_text-title {
  font-size: 1.5rem;
  position: relative;
  margin: 4rem 0 2rem;
  padding: 1rem 0.3rem 1rem;
}

.manual .contents_text-title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background-image: linear-gradient(to right, #002655 0%, transparent 100%);
}

.manual h4 {
  position: relative;
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  margin: 3rem 3rem 2rem;
  color: #3fa7f3;
}

.manual h4::before,
.manual h4::after {
  position: absolute;
  content: "";
  background-color: #3fa7f3;
  height: 2px;
  width: 2rem;
  top: 0.5rem;
}

.manual h4::before {
  left: -3rem;
}

.manual h4::after {
  right: -3rem;
}

.manual h5 {
  font-size: 1.1rem;
  margin: 2rem 0 1rem;
  color: #002655;
}

.manual table {
  width: 100%;
  margin: 1rem 0 2rem;
}

.manual th,
.manual td {
  border: 1px solid #000;
  padding: 1rem;
}

.manual th {
  background-color: rgba(0, 0, 0, 0.1);
}

.manual tr td:first-child {
  width: 47%;
}

.manual tr td:nth-child(2) {
  text-align: center;
}

.manual tr td:last-child {
  width: 40%;
}

.manual .img1 {
  background-image: url("img/about-bk.jpg");
}

.manual ul {
  padding: 1rem 0;
}

.manual li {
  margin: 0.8rem 0;
}

/* ローディングアニメーション */
.manual_loader {
  display: grid;
  place-items: center;
  top: 0;
  height: 200px;
  background-color: #000;
  margin: 1rem 0;
}

/*--------------------------------------------------------------
## archive(no sidebar)
--------------------------------------------------------------*/
.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;
  transition: 0.4s;
}
.articles .article_img .category {
  position: absolute;
  bottom: 0;
  right: 0;
}
.articles .article_text {
  color: #000;
  padding: 1.5rem 0.5rem 0;
}
.articles .article_text-title {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  line-height: 2.2rem;
}
.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 {
  transition: 0.4s;
}
.articles .article a:hover .article_img {
  opacity: 0.8;
  transition: 0.4s;
}
.articles .article a:hover .article_img img {
  transform: scale(1.1);
  transition: 0.4s;
}
.articles .article a:hover .article_text {
  opacity: 0.8;
  transition: 0.4s;
}

.archive .contents01 {
  padding-bottom: 15rem !important;
}
.archive .contents01::before {
  border-right: 40vw solid transparent;
  border-bottom: 8vw solid rgba(63, 167, 243, 0.3);
  bottom: 0;
}
.archive .contents01::after {
  border-left: 60vw solid transparent;
  border-bottom: 15vw solid rgba(63, 167, 243, 0.5);
  bottom: 0;
  z-index: -1;
}

/*--------------------------------------------------------------
## 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);
  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;
}

/*--------------------------------------------------------------
## sidebar
--------------------------------------------------------------*/
.widget-container {
  width: calc(340px - 4rem);
  margin-left: 4rem;
}
.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 span {
  font-size: 0.9rem;
  font-weight: normal;
  padding-left: 0.5rem;
}
.widget-container_title::before {
  position: absolute;
  content: "";
  border-bottom: 52px solid transparent;
  z-index: -1;
  left: 0;
}
.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(63, 167, 243, 0.5);
}
.widget-container ul {
  padding: 0.5rem 1rem 7rem;
}
.widget-container ul li {
  line-height: 3.2rem;
  border-bottom: 1px solid #000;
}
.widget-container ul li a {
  display: block;
  color: #000;
  transition: 0.3s;
}
.widget-container ul li a:hover {
  color: #002655;
  transition: 0.3s;
}

/*--------------------------------------------------------------
## archive(sidebar)
--------------------------------------------------------------*/
.archive.with-sidebar .contents01 {
  padding-bottom: 0 !important;
}
.archive.with-sidebar .contents02 {
  padding-top: 0;
  padding-bottom: 15rem;
}
.archive.with-sidebar .contents02 .container .articles {
  position: relative;
  width: calc(100% - 340px);
}
.archive.with-sidebar .contents02 .container .articles .article {
  width: calc(50% - 2rem);
}
.archive.with-sidebar .contents02 .container .articles .article_img {
  height: 210.5px;
}
.archive.with-sidebar .contents02 .container .articles .box_page-numbers {
  position: absolute;
  bottom: -3rem;
  width: 100%;
}
.archive.with-sidebar .contents02::before {
  border-right: 40vw solid transparent;
  border-bottom: 8vw solid rgba(63, 167, 243, 0.3);
  bottom: 0;
}
.archive.with-sidebar .contents02::after {
  border-left: 60vw solid transparent;
  border-bottom: 15vw solid rgba(63, 167, 243, 0.5);
  bottom: 0;
  z-index: -1;
}

/*--------------------------------------------------------------
## single.php(sidebar)
--------------------------------------------------------------*/
.single.with-sidebar .contents02 {
  padding-bottom: 15rem;
}
.single.with-sidebar .contents02 .container .post {
  width: calc(100% - 340px - 2rem);
  padding-right: 2rem;
}
.single.with-sidebar .contents02 .container .post_img {
  height: 424px;
}
.single.with-sidebar .contents02::before {
  border-right: 40vw solid transparent;
  border-bottom: 8vw solid rgba(63, 167, 243, 0.3);
  bottom: 0;
}
.single.with-sidebar .contents02::after {
  border-left: 60vw solid transparent;
  border-bottom: 15vw solid rgba(63, 167, 243, 0.5);
  bottom: 0;
}

/*--------------------------------------------------------------
## footer.php
--------------------------------------------------------------*/
.footer {
  background-color: #000;
  color: #fff;
  padding: 5rem 0 2rem 0;
  text-align: left;
}
.footer .space {
  margin: 16px 0 32px 0;
}
.footer .img-inner {
  width: 20%;
  margin: 0 auto 2rem auto;
}
@media screen and (max-width: 959px) {
  .footer .img-inner {
    width: 50%;
  }
}
.footer img {
  width: 100%;
}
@media screen and (min-width: 560px) and (max-width: 959px) {
  .footer .olex {
    display: block;
  }
}
@media screen and (min-width: 560px) and (max-width: 959px) {
  .footer .olex__item {
    width: 100%;
  }
}
.footer .container {
  width: 90%;
  margin: 0 auto 3rem auto;
  justify-content: center;
}
.footer .footer-box {
  width: 32%;
  line-height: 2rem;
}
@media screen and (max-width: 1200px) {
  .footer .footer-box {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width: 560px) and (max-width: 959px) {
  .footer .footer-box {
    width: 100%;
  }
}
.footer .footer-box .mt2 {
  margin-top: 2rem;
}
.footer .footer-box a {
  color: #fff;
  transition: 0.4s;
}
.footer .footer-box a:hover {
  color: #3fa7f3;
  transition: 0.4s;
}
.footer .footer-box .footer-box_text {
  flex: 1 0 auto;
}
.footer .footer-box h2 {
  margin-bottom: 20px;
  font-size: calc(1em + 6px);
}
.footer .copyright {
  font-size: 0.8rem;
  text-align: center;
}
.footer .localNav .list__item {
  font-size: calc(1em - 4px);
}
.footer .localNav .list__item a {
  color: #fff;
}
.footer .localNav .list__item + .list__item {
  padding-left: 2rem;
}
@media screen and (max-width: 959px) {
  .footer .localNav {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */