﻿@charset "utf-8";
/* CSS Document */
html {
  scroll-behavior: smooth;
}
.futura {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.futuraM {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.min {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.center {
  text-align: center;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.fontW {
  color: #fff;
}
/*header style*/
header {
  position: fixed;
  /*padding: 3em 0;*/
  width: 100%;
  text-align: center;
  z-index: 1000;
  transition: .3s;
}
header .headBox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 1.4em;
  box-sizing: border-box;
  transition: padding .3s;
  background: #fbfbfb;
  ;
  box-shadow: 0 3px 6px -3px #00000029;
}
header .logotype {
  width: 21%;
}
header nav {
  display: flex;
  align-items: center;
}
header .topContact {
  background-color: #101010;
  border: 1px solid #101010;
  padding: 0 15px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 3.2;
  transition: .3s;
}
header .topContact:hover {
  background-color: #fff;
  color: #101010;
}
/*footer style*/
footer {
  background-color: #1D1D1D;
  padding: 60px 5%;
  margin-top: -30px;
}
footer .footLogo {
  margin: 0 auto 50px;
  display: block;
  width: 115px;
}
footer small {
  color: #fff !important;
  font-size: 0.6rem;
  text-align: center;
  display: block;
  margin: 50px auto 0;
}
footer small a {
  color: #fff !important;
  font-size: 0.6rem;
}
footer .svg-inline--fa {
  margin: auto;
  display: table;
  color: #fff;
  width: 20px;
  height: 20px;
}
footer address {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0;
}
footer .footContact {
  border: 1px solid #fff;
  background-color: #fff;
  padding: 5px 10px;
  color: #1D1D1D;
  font-weight: bold;
}
footer .flexboxSP {
  align-items: flex-end;
}
/*ページネーション*/
.wp-pagenavi {
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  border: 1px solid #6b6b6b !important;
  padding: 7px 15px !important;
  margin: 5px !important;
}
.wp-pagenavi a.nextpostslink, .wp-pagenavi a.previouspostslink {
  border: none !important;
}
.wp-pagenavi span.pages {
  display: none !important;
}
.wp-pagenavi span.current {
  border-color: #6b6b6b !important;
  background-color: #6b6b6b;
  color: #fff !important;
}
.pagerArea {
  margin: 40px auto 80px;
}
.blackTitle {
  background-color: #101010;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 50px;
}
.menu__box {
  display: flex;
  flex-direction: row;
  list-style-type: none;
}
.menu__item {
  display: flex;
  flex-direction: column;
  padding: 0 1em;
  color: #0F1C2E;
  font-size: 13px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
.btn {
  margin-top: 60px;
}
.btn a {
  background-color: #101010;
  color: #FFFFFF;
  display: table;
  font-weight: bold;
  letter-spacing: 1px;
  margin: auto;
  padding: 5px 40px;
  transition: .3s;
  position: relative;
}
.btn a::after {
  background-image: url(../images/arrow.png);
  background-size: contain;
  vertical-align: middle;
  content: '';
  display: inline-block;
  background-repeat: no-repeat;
  position: absolute;
  width: 20px;
  height: 5px;
  top: 40%;
  right: 8%;
  transition: .3s;
}
.btn a:hover::after {
  right: 5%;
}
@media screen and (max-width: 768px) {
  header .headBox {
    padding: 0.5em 1.4em;
  }
  nav nav {
    display: inline;
  }
  .menu__box {
    flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 59px 0 0 0 !important;
    padding: 0 0 50px;
    text-align: center;
    background-color: #ffffffed;
    box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition-duration: 0.5s;
    background-color: #101010db;
  }
  .menu__box li {
    border-bottom: 1px solid #ffffff;
    width: 100%;
    box-sizing: border-box;
    padding: 0 5%;
    text-align: left;
  }
  .menu__box li:last-child {
    border: none;
  }
  .menu__item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    transition-duration: 0.5s;
    font-weight: 700;
  }
  .menu__item img {
    width: 60px;
    margin: 30px auto 0;
    display: block;
  }
  .menu__item:hover {
    background-color: #4f5464;
  }
}
#menu__toggle {
  opacity: 0;
}
#menu__toggle:checked ~ .menu__btn > span {
  transform: rotate(45deg);
}
#menu__toggle:checked ~ .menu__btn > span::before {
  top: 0;
  transform: rotate(0);
  background: #707070;
}
#menu__toggle:checked ~ .menu__btn > span::after {
  top: 0;
  transform: rotate(90deg);
  background: #707070;
}
#menu__toggle:checked ~ .menu__box {
  visibility: visible;
  left: 0;
  margin: 0;
  z-index: 10;
}
.menu__btn {
  transition-duration: 0.25s;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  position: relative;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 11;
}
.menu__btn span {
  display: inline-block;
  position: absolute;
  width: 60%;
  height: 2px;
  background-color: #707070;
  left: 18%;
}
.menu__btn span::before {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #707070;
  content: "";
  top: -8px;
  right: 0;
  transition-duration: 0.25s;
}
.menu__btn span::after {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #707070;
  content: "";
  top: 9px;
  transition-duration: 0.25s;
  left: 0;
}
@media screen and (min-width: 769px) {
  .menu__btn {
    display: none;
  }
  /*伸びる下線PCのみ*/
  .menu__box {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
  }
  .menu__box li {
    margin: 0 10px;
  }
  .menu__box li a {
    position: relative;
  }
  .menu__box li a::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: #0F1C2E;
    transition: all .3s;
    transform: scale(0, 1); /*X方向0、Y方向1*/
    transform-origin: center top; /*上部中央基点*/
  }
  .menu__box li a:hover::after {
    transform: scale(1, 1); /*X方向にスケール拡大*/
  }
}
/*========= ページトップのためのCSS ===============*/
/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #d3d0d0db;
  border-radius: 50px;
  width: 40px;
  height: 40px;
  color: #fff !important;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.7rem;
  transition: all 0.3s;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
#page-top a:hover {
  background: #777;
}
/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  z-index: 1001;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}
/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
/*VIEW MOREボタン*/
.button a {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 400;
  border: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 200px;
  text-align: center;
  padding: 10px 30px;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s;
}
.button a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #333;
  transition: all 0.3s ease;
}
.button a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
@keyframes OutIn-Line {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
  }
  50% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0
  }
  50.1% {
    -webkit-transform: scale3d(0, 1, 1);
    transform: scale3d(0, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }
  100% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0
  }
}
.keyBox {
  aspect-ratio: 1 / 0.37;
  width: 100%;
  background-size: contain;
  /*margin-bottom: 40px;*/
  position: relative;
  margin-bottom: 50px;
}
.keyText {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 52%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}
.keyText h1 {
  color: #fff;
}
.keyText h1 span {
  display: block;
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
}
.contactArea {
  background-image: url("../images/top/bg_beigeSP.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 50px 0;
}
.contactArea h5 {
  font-size: 1.3rem;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 1px solid #101010;
}
.contactArea .contactBox {
  justify-content: space-around;
}
.contactArea .contactBox .telArea, .contactArea .contactBox .mailArea {
  width: 45%;
}
.contactArea .contactBox .icon_contact {
  width: 50px;
  display: block;
  margin: 0 auto 20px;
}
.contactArea .contactBox .contactBold, .contactArea .contactBox .contactBold a {
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.3;
}
.contactArea .contactBox .contactBold span {
  font-size: 0.85rem;
	display: block;
}
@media screen and (max-width: 768px) {
  #wrap {
    width: 100%;
    overflow: hidden;
  }
  #main {
    margin: 59px auto 0;
  }
  .flexboxSP {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .innerSP {
    width: 90%;
    margin: auto;
    display: block;
  }
  .breadcrumbsWrap {
    margin: 0 5% 20px;
  }
  .breadcrumbsWrap span {
    font-size: 0.8rem;
    line-height: 0.5rem;
  }
  .breadcrumbs {
    line-height: 0.5rem;
  }
	.contactArea .contactBox{
	    width: 95%;
    margin: auto;	
	}
	.contactArea .contactBox .telArea, .contactArea .contactBox .mailArea{
		width: 50%;
	}
}
@media screen and (min-width: 769px) {
  .flexboxPC {
    display: flex !important;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
  .innerPC {
    width: 1100px;
    margin: auto;
    display: block;
  }
  header .logotype {
    width: 100px;
  }
  header .topContact {
    font-size: 13px;
    line-height: 2.7;
    height: 35px;
    padding: 0 30px;
  }
  #main {
    margin-top: 60px;
  }
  .btn a {
    width: 250px;
    text-align: center;
    box-sizing: border-box;
  }
  footer {
    margin-top: -50px;
    padding: 60px 10%;
  }
  footer .flexboxPC {
    width: 1100px;
    margin: auto;
    justify-content: space-around;
    align-items: flex-start;
  }
  footer .footLogo {
    margin: 0 auto 60px;
  }
  footer address {
    line-height: 1.9;
    font-size: 0.9rem;
  }
  footer small {
    margin: 70px auto 0;
  }
  footer ul li {
    line-height: 1.9;
  }
  footer ul li a {
    color: #fff;
    letter-spacing: 0;
    line-height: 1.9;
    font-size: 0.9rem;
  }
  footer .footContact {
    margin: 20px 0 0 0;
    display: block;
    box-sizing: border-box;
    height: 35px;
    line-height: 1.5;
    width: 150px;
    text-align: center;
  }
  .blackTitle {
    font-size: 1.55rem;
    width: 1100px;
    margin: auto;
  }
  .keyBox {
    aspect-ratio: 1 / 0.19;
    margin-bottom: 100px;
  }
  .keyText h1 {
    font-size: 1.3rem;
  }
  .keyText h1 span {
    font-size: 3rem;
    line-height: 1;
  }
  .contactArea {
    background-image: url("../images/top/bg_beigePC.png");
    padding: 50px 0 80px;
  }
  .contactArea .contactBox {
    width: 1100px;
    margin: auto;
    justify-content: space-evenly;
    align-items: center;
  }
  .contactArea .contactBox .telArea, .contactArea .contactBox .mailArea {
    width: 300px;
  }
  .contactArea .contactBox .telArea, .contactArea .contactBox .mailArea .flexboxPC {
    justify-content: flex-start;
    align-items: center;
  }
  .contactArea .contactBox .contactBold span {
    display: block;
  }
  .contactArea .contactBox .icon_contact {
    width: 60px;
    margin: 0 40px 0 0;
  }
  .contactArea .contactBox .contactBold, .contactArea .contactBox .contactBold a {
    text-align: left;
  }
}