/*
Theme Name: 株式会社蓮翔組
Description: 株式会社蓮翔組の公式ホームページ
Author: shuto
*/
/*-------------------------基本情報-------------------------*/
*{
  font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","游ゴシック","Yu Gothic","YuMincho","Yu Mincho",serif,"ヒラギノ明朝 Pro","Hiragino Mincho Pro","メイリオ",Meiryo,sans-serif;
  color: rgb(0, 0, 0);
  box-sizing: border-box;
}
.main{
  width: 100%;
  overflow-x: hidden;
}
a{
  text-decoration: none;
  color: rgb(0, 0, 0);
}
a:link{color: rgb(0, 0, 0);}
a:visited{color: rgb(0, 0, 0);}
a:hover{
  color: rgba(0, 0, 0, 0.7);
  text-decoration: underline;
}
h1{
  font-size: 24px;
}
h2{
  font-size: 22px;
}
h3{
  font-size: 20px;
}
h4{
  font-size: 18px;
}
h5{
  font-size: 16px;
}
h6{
  font-size: 14px;
}
p{
  font-size: 14px;
}
li{
  list-style: none;
}

@media screen and (max-width:830px){
  h1{
    font-size: 22px;
  }
  h2{
    font-size: 20px;
  }
  h3{
    font-size: 18px;
  }
}
@media screen and (max-width:550px){
  h1{
    font-size: 18px;
  }
  h2{
    font-size: 16px;
  }
  h3{
    font-size: 14px;
  }
  h4{
    font-size: 14px;
  }
  h5{
    font-size: 14px;
  }
}

/*-------------------------header-------------------------*/
header{
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 40px;
  position: fixed;
  z-index: 9999;
  top: 0;
  background-color: #fff;
}
.header-logo img{
  height: 70px;
  margin-right: 20px;
}
.header-logo h1{
  display: flex;
  align-items: center;
}
.header-right{
  width: 77%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-li{
  display: flex;
  justify-content: flex-end;
  padding-right: 50px;
}
.header-li h5{
  padding-left: 50px;
  letter-spacing: 2px;
}
.header-contact{
  text-align: center;
  margin-right: 30px;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  letter-spacing: 2px;
}
.header-contact:hover {
  letter-spacing: 5px;
}
.header-contact h5{
  width: 144px;
  line-height: 60px;
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
}
@media screen and (max-width:1200px){
  .header-right{
    display: none;
  }
}
@media screen and (max-width:600px){
  header{
    height: 70px;
  }
  .header-logo img{
    height: 50px;
  }
}
@media screen and (max-width:400px){
  header{
    padding-left: 20px;
  }
}

/*-------------------------ハンバーガー-------------------------*/
.hamburger{
  display: none;
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background-color: rgb(0, 0, 0);
  cursor: pointer;
}
.hamburger span{
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  left: 25px;
  background: rgb(255, 255, 255);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1){
  top: 38.5px;
}
.hamburger span:nth-child(2){
  top: 49.5px;
}
.hamburger span:nth-child(3){
  top: 60.5px;
}
/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1){
  top: 50px;
  left: 25px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3){
  top: 50px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav.globalMenuSp{
  padding-top: 3em;
  overflow: scroll;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  color: #fff;
  background: rgb(0, 0, 0);
  text-align: center;
  width: 100%;
  height: 100%;
  display: none;
}
nav.globalMenuSp ul li{
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child{
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :rgba(255, 255, 255, 0.7);
}
nav.globalMenuSp ul li a{
  display: block;
  color: #fff;
  padding: 2em 0;
  text-decoration :none;
}
nav.globalMenuSp ul li a:hover{
  color: #000000;
}
@media screen and (max-width:1200px){
  .hamburger{
    display: block;
  }
}
@media screen and (max-width:600px){
  .hamburger{
    width: 70px;
    height: 70px;
  }
  .hamburger span{
    width: 40px;
    height: 2px;
    left: 15px;
  }
  .hamburger span:nth-child(1){
    top: 23.5px;
  }
  .hamburger span:nth-child(2){
    top: 34.5px;
  }
  .hamburger span:nth-child(3){
    top: 45.5px;
  }
  .hamburger.active span:nth-child(1){
    top: 35px;
    left: 15px;
  }
  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3){
    top: 35px;
  }
}

/*-------------------------top-slide-------------------------*/
.top{
  width: 100%;
  height: 100vh;
  position: relative;
}
.background{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 10;
  opacity: 0.8;
}
.background img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-slide{
  width: 100%;
}
.slide-img img{
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100vh;
}
.sliders img{
  transform-origin: center;
  transform: scale(1.1);
  transition: 5s ease-out;
}
.sliders .slick-active img{
  transform: scale(1.0);
}
.top-sp{
  display: none!important;
}
@media screen and (max-width:600px) {
  .top-sp{
    display: inline!important;
  }
  .top-pc{
    display: none!important;
  }
}
/*-------------------------TOPのTEXT-------------------------*/
.video-text {
  position: absolute;
  bottom: 45%;
  left: 12%;
  transform: translateY(50%);
  -webkit-transform: translateY(50%);
  -moz-transform: translateY(50%);
  -ms-transform: translateY(50%);
  -o-transform: translateY(50%);
  z-index: 20;
}
.video-text * {
  color: rgb(255, 255, 255);
  font-weight: bold;
}
.video-text br {
  display: none;
}
.v-tx1 {
  font-size: 40px;
  margin-left: 4px;
}
.video-text::after {
  content: "";
  width: 100%;
  height: 4px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  bottom: -20px;
  animation: fadein 3s forwards;
  -webkit-animation: fadein 3s forwards;
  opacity: 0;
}
.video-button {
  position: absolute;
  bottom: 25%;
  left: 12%;
  display: flex;
  text-align: center;
  z-index: 999;
}
.video-button a {
  width: 320px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 32px;
}
.video-button a:nth-child(1) {
  color: #000;
  background-color: #F7F7F7;
}
.video-button a:nth-child(2) {
  color: #fff;
  background-color: #910A83;
  margin-left: 20px;
}
@keyframes fadein {
  0% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (max-width:850px){
  .video-text {
    white-space: nowrap;
    left: 50%;
    transform: translate(-50%, 25%);
    -webkit-transform: translate(-50%, 25%);
    -moz-transform: translate(-50%, 25%);
    -ms-transform: translate(-50%, 25%);
    -o-transform: translate(-50%, 25%);
  }
  .v-tx1 {
    font-size: 30px;
  }
  .video-text::after {
    animation: fadein 2s forwards;
    -webkit-animation: fadein 2s forwards;
  }
  .video-button {
    flex-direction: column;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
  }
  .video-button a:nth-child(2) {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width:600px){
  .video-text br {
    display: block;
  }
}

/*-------------------------トップページタイトル共通-------------------------*/
.top-title{
  width: 100%;
  margin-top: 200px;
  margin-bottom: 80px;
  text-align: center;
}
.top-title p{
  font-weight: bold;
}
.top-title p:first-child{
  margin-bottom: 20px;
  font-size: 50px;
  font-family: "Renner*";
  font-weight: 500;
}
@media screen and (max-width:600px){
  .top-title {
    text-align: left;
    width: 90%;
    margin: auto;
    margin-top: 100px;
    margin-bottom: 50px;
  }
  .top-title p:first-child{
    font-size: 40px;
    margin-bottom: 10px;
  }
}

/*-------------------------お知らせ-------------------------*/
.news{
  width: 80%;
  margin: 80px auto 0;
}
.news-li{
  border-bottom: 1px dotted rgb(153, 153, 153);
  padding: 10px;
  line-height: 2;
  margin-bottom: 20px;
}
.news-margin {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto 100px;
  text-align: right;
}
@media screen and (max-width:800px){
  .news{
    width: 90%;
    margin: 40px auto 0;
  }
}

/*-------------------------大カテ-------------------------*/
.top-service{
  width: 100%;
  margin-bottom: 150px;
  display: flex;
}
.top-service-left{
  width: 50%;
}
.top-service-left img{
  width: 100%;
}
.top-service-right{
  padding-left: 80px;
  padding-top: 30px;
}
.box-title{
  background-color: rgb(0, 0, 0);
  height: 40px;
  text-align: center;
  display: inline-block;
  padding: 0 20px;
}
.box-title p{
  line-height: 40px;
  color: rgb(255, 255, 255);
  font-size: 20px;
  font-weight: bold;
  font-family: "Renner*";
  font-weight: 500;
}
.top-service-title{
  line-height: 1.5;
  margin-top: 50px;
}
.top-service-title p{
  font-size: 24px;
  font-weight: bold;
}
.top-service-text{
  line-height: 1.5;
  margin-top: 30px;
}
.top-service-text p{
  font-size: 16px;
  margin-bottom: 20px;
}
@media screen and (max-width:1300px){
  .top-service{
    flex-direction: column;
  }
  .top-service-left{
    width: 100%;
    max-width: 600px;
    margin: auto;
  }
  .top-service-right{
    padding-left: 0;
    padding-top: 0;
    width: 90%;
    max-width: 600px;
    margin: auto;
  }
  .box-title{
    margin-top: 20px;
  }
  .top-service-title{
    margin-top: 20px;
    font-size: 20px;
  }
  .top-service-text br{
    display: none;
  }
}
@media screen and (max-width:600px){
  .top-service-left img {
    width: 102%;
  }
  .top-service{
    margin-bottom: 100px;
  }
  .top-service-title{
    font-size: 16px;
  }
  .top-service-title br{
    display: block;
  }
  .top-service-text{
    text-align: justify;
    margin-top: 20px;
  }
  .top-service-text p{
    font-size: 14px;
  }
}

/*-------------------------施工事例 list-------------------------*/
.ex-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ex-li{
  margin-bottom: 50px;
  position: relative;
}
.ex-li-img{
  transition: 0.5s all;
}
.ex-li-img img,.ex-li-back img{
  width: 500px;
}
.ex-li-back{
  position: absolute;
  top: -12px;
  left: 12px;
  z-index: -1;
}
.ex-link{
  margin-top: 16px;
  display: inline-block;
  margin-left: 15px;
  cursor: pointer;
  margin-bottom: 20px;
}
.ex-link span{
  font-size: 20px;
  font-weight: 400;
  margin-left: 40px;
}
.ex-link a{
  text-decoration: none;
}
.ex-li-text{
  line-height: 1.5;
}
@media screen and (max-width:800px){
  .ex-li-img img,.ex-li-back img{
    width: 100%;
  }
  .ex-li{
    flex-basis: 70%;
  }
}
@media screen and (max-width:550px){
  .ex-li{
    flex-basis: 90%;
  }
  .ex-li span{
    font-size: 14px;
  }
}
/*-------------------------施工事例 動く矢印-------------------------*/
.arrow{
  position: relative;
  top: 10px;
  -webkit-animation: move 1s infinite;
  animation: move 1s infinite;
}
.arrow::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 1px;
  background: #910A83;
}
.arrow::after{
  content: "";
  display: block;
  position: absolute;
  top: -7.3px;
  left: 16.5px;
  width: 5px;
  height: 5px;
  border: 1px solid;
  border-color: transparent transparent #910A83 transparent;
  transform: rotate(45deg);
}
@-webkit-keyframes move {
  0% {
    -webkit-transform: translate(0, 0);
  }
  20% {
    -webkit-transform: translate(10px, 0);
  }
  40% {
    -webkit-transform: translate(0, 0);
  }
}
@keyframes move {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(10px, 0);
  }
  40% {
    transform: translate(0, 0);
  }
}

/*-------------------------採用-------------------------*/
.recruit{
  position: relative;
}
.recruit-img{
  position: absolute;
  top: 35px;
  right: 0;
  width: 50%;
  max-width: 720px;
}
.recruit-img img{
  height: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: left;
}
.recruit-box{
  background-color: #000000;
  width: 100%;
  max-width: 1152px;
  margin: auto;
  padding-top: 35px;
  padding-bottom: 73px;
  padding-left: 85px;
  margin-bottom: 30px;
}
.recruit-title{
  line-height: 1.48;
  margin-top: 33.5px;
  margin-left: 8px;
  margin-bottom: 25px;
}
.recruit-title p{
  color: rgb(255, 255, 255);
  font-size: 24px;
  font-weight: 600;
}
.recruit-text{
  line-height: 2.2;
  text-align: justify;
  max-width: 400px;
  border-top: 2px solid rgb(255, 255, 255);
  padding-top: 23px;
}
.recruit-text p{
  color: rgb(255, 255, 255);
  font-weight: 400;
}
@media screen and (max-width:1000px){
  .recruit-img{
    display: none;
  }
  .recruit-box{
    padding-left: 0;
  }
  .recruit-title{
    width: 80%;
    margin: auto;
    max-width: 600px;
    margin-top: 33.5px;
    margin-bottom: 25px;
    text-align: center;
  }
  .recruit-text{
    width: 80%;
    margin: auto;
    max-width: 600px;
  }
}
@media screen and (max-width:600px){
  .recruit-title{
    width: 90%;
  }
  .recruit-text{
    width: 90%;
  }
}
@media screen and (max-width:450px){
  .recruit-title p{
    font-size: 22px;
  }
  .recruit-title br{
    display: block;
  }
  .recruit-title{
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .recruit-box{
    padding-top: 30px;
    padding-bottom: 50px;
  }
}
/*-------------------------クリックボタン-------------------------*/
.button-box{
  text-align: center;
}
.button-box a{
  text-decoration: none;
}
.button{
  display: inline-block;
  width: 90%;
  max-width: 350px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  border: 1px solid;
  border-radius: 30px;
  overflow: hidden;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
}
.button::before{
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}
.button,
.button::before{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .5s;
  transition: all .5s;
}
.button:hover span{
  color: rgb(255, 255, 255);
  text-decoration: none;
}
.button:hover::before{
  top: 0;
  left: 0;
  background-color: #000000;
}
.button-right{
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.button:hover .fa-chevron-right{
  color: rgb(255, 255, 255);
}
/*-------------------------リクルートボタン-------------------------*/
.button-re{
  position: relative;
  top: 0;
  left: -300px;
  margin-bottom: 200px;
}
@media screen and (max-width:1000px){
  .button-re{
    position: unset;
  }
}
@media screen and (max-width:450px){
  .button-re{
    margin-bottom: 150px;
  }
}

/*-------------------------ガイド-------------------------*/
.menu-title{
  text-align: center;
}
.menu-title p{
  font-family: roboto, sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 42px;
  color: #000000;
  margin-bottom: 18px;
}
.menu-title span{
  color: #000000;
  font-weight: 600;
}
@media screen and (max-width:500px){
  .menu-title span{
    font-size: 14px;
  }
  .menu-title p {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
/*-------------------------パーツ-------------------------*/
.guide{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 200px;
}
.guide-left,.guide-right{
  flex-basis: 47.2%;
  padding-top: 45px;
  padding-bottom: 20px;
}
.guide-button-com,.guide-button-con{
  width: 270px;
  height: 54px;
  text-align: center;
  margin: auto;
  margin-top: 50px;
}
.guide-button-com a,.guide-button-con a{
  text-decoration: none;
}
.guide-button-com span,.guide-button-con span{
  display: block;
  line-height: 54px;
  font-weight: 600;
}
.guide-left{
  background-color: #910A83;
}
.guide-button-com span{
  background-color: rgb(255, 255, 255);
  color: #910A83;
}
.guide-right{
  background-color: rgba(176, 190, 197, 0.15);
}
.guide-button-con span{
  background-color: #910A83;
  color: rgb(255, 255, 255);
}
@media screen and (max-width:700px){
  .guide{
    flex-direction: column;
  }
  .guide-left,.guide-right{
    width: 100%;
  }
  .guide-button-com,.guide-button-con{
    margin-top: 30px;
  }
}
/*-------------------------フッター上の文字設定-------------------------*/
.guide-title-com p,.guide-title-com span{
  color: rgb(255, 255, 255);
}
.guide-title-con p{
  position: relative;
}
.guide-title-con p::after{
  content:"";
  width: 160px;
  height: 10px;
  background-color: #F15B55;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: -1;
}
/*-------------------------フッター上の斜め区切り-------------------------*/
.guide-left,.guide-right{
  position: relative;
}
.guide-left{
  z-index: 99;
}
.guide-left::after{
  content: "";
  position: absolute;
  top: 0;
  right: -80px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: #910A83 transparent transparent transparent;
  border-width: 245px 80px 0 0;
}
.guide-right::before{
  content: "";
  position: absolute;
  top: 0;
  left: -80px;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent transparent rgba(176, 190, 197, 0.15);
  border-width: 245px 0 0 80px;
  transform:scaleX(-1);
}
.diagonal{
  display: none;
}
@media screen and (min-width:1441px){
  .diagonal{
    display: block;
    flex-basis: 5.6%;
    height: 245px;
    background-image:linear-gradient(-18deg, #910A83 50%, rgba(176, 190, 197, 0.15) 50%);
    background-image:-webkit-linear-gradient(-18deg, #910A83 50%, rgba(176, 190, 197, 0.15) 50%);
    background-image:-moz-linear-gradient(-18deg, #910A83 50%, rgba(176, 190, 197, 0.15) 50%);
  }
  .guide-left::after{
    border-color: transparent transparent transparent transparent;
  }
  .guide-right::before{
    border-color: transparent transparent transparent transparent;
  }
}
/*-------------------------フッター上のボタンホバー-------------------------*/
.guide-button span{
  display: inline-block;
  width: 270px;
  height: 54px;
  line-height: 54px;
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.guide-button span::before{
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
  top: 0;
  left: -100%;
  width: 270px;
  height: 52px;
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
}
.guide-button-con span::before{
  border-top: 1px solid #910A83;
  border-bottom: 1px solid #910A83;
}
.guide-button span,
.guide-button span::before,
.guide-button:hover span{
  -webkit-transition: all .5s;
  transition: all .5s;
}
.guide-button-com span:hover{
  color: rgb(255, 255, 255);
  position: relative;
  z-index: 999;
}
.guide-button-com span:hover::before{
  top: 0;
  left: 0;
  background-color: #910A83;
  border-top: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
}
.guide-button-con span:hover{
  color: #910A83;
  position: relative;
  z-index: 999;
}
.guide-button-con span:hover::before{
  top: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  border-top: 1px solid #910A83;
  border-bottom: 1px solid #910A83;
}

/*-------------------------フッター-------------------------*/
footer{
  background-color: rgb(0, 0, 0);
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer p{
  color: rgb(255, 255, 255);
}

/*-------------------------サブページtop共通-------------------------*/
.subpage-top{
  margin-top: 140px;
  margin-bottom: 56px;
  padding-left: 5%;
}
.subpage-title{
  display: inline-block;
  padding: 0 40px;
  text-align: center;
  background-color: rgb(0, 0, 0);
}
.subpage-title p{
  color: rgb(255, 255, 255);
  font-size: 60px;
  font-family: "Renner*";
  line-height: 100px;
}
.subpage-subtitle{
  display: flex;
  align-items: center;
  margin-left: 14%;
  margin-bottom: 150px;
}
.subpage-subtitle::after {
  border-top: 1px solid;
  content: "";
  width: 20px; /* 線の長さ */
  margin-left: 1em; /* 文字の左隣 */
}
.subpage-subtitle::before {
  border-top: 1px solid;
  content: "";
  width: 20px; /* 線の長さ */
  margin-right: 1em; /* 文字の左隣 */
}
@media screen and (max-width:600px){
  .subpage-top{
    margin-top: 70px;
    margin-bottom: 20px;
  }
  .subpage-title{
    padding: 0 20px;
  }
  .subpage-title p{
    font-size: 32px;
    line-height: 40px;
  }
  .subpage-subtitle{
    margin-left: 7%;
    margin-bottom: 40px;
  }
}

/*-------------------------会社概要ページ-------------------------*/
.company{
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 100px;
}
.company-message{
  width: 90%;
  margin: auto;
  text-align: center;
  margin-bottom: 150px;
}
.company-message p{
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.company-title h3{
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}
.company-title h3::before{
  content: "";
  width: 5px;
  height: 30px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.double h3::before{
  height: 60px;
}
@media screen and (max-width:1000px){
  .company-title{
    width: 90%;
    margin: auto;
  }
}
@media screen and (max-width:600px){
  .company-message{
    text-align: justify;
  }
  .company-message p{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .company-message br{
    display: none;
  }
}
/*-------------------------会社概要list-------------------------*/
.company-detail{
  width: 100%;
  max-width: 900px;
  margin: auto;
  margin-top: 65px;
  margin-bottom: 105px;
}
.company-list{
  padding: 20px;
  display: flex;
  border-bottom: 0.25px solid #707070;
}
.last{
  border: none;
}
.list-left{
  flex-basis: 30%;
}
.list-right{
  flex-basis: 70%;
}
.list-right p{
  font-size: 18px;
}
.li-ma{
  margin-bottom: 15px;
}
.back{
  width: 90%;
  margin: auto;
  text-align: right;
  margin-bottom: 300px;
}
@media screen and (max-width:600px){
  .company-list{
    flex-direction: column;
  }
  .list-left{
    margin-bottom: 20px;
  }
}
@media screen and (max-width:550px){
  .list-right p{
    font-size: 14px;
  }
  .list-left{
    margin-bottom: 10px;
  }
  .company-list{
    text-align: center;
    padding: 10px;
  }
  .company-detail{
    margin-top: 25px;
  }
  .back{
    margin-bottom: 150px;
  }
}

/*-------------------------ボタン-------------------------*/
.sponsor-all{
  width: 370px;
  height: 60px;
  margin: auto;
}
.sponsor-button{
  background-color: rgb(0, 0, 0);
  text-align: center;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}
.sponsor-button:hover {
  letter-spacing: 1px;
}
.sponsor-button p{
  line-height: 60px;
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width:370px){
  .sponsor-all{
    width: 320px;
  }
  .sponsor-button p{
    font-size: 16px;
  }
}

/*-------------------------お問い合わせ-------------------------*/
/*-------------------------お問い合わせフォーム-------------------------*/
.contact-text{
  width: 100%;
  max-width: 800px;
  margin: auto;
  margin-bottom: 50px;
  background-color: red;
  line-height: 1.5;
  padding: 20px;
}
.contact-text p{
  color: #fff;
}
.contact-box{
  background-color: #F5F5F5;
  width: 100%;
  max-width: 800px;
  margin: auto;
  padding-top: 100px;
  padding-bottom: 50px;
}
.contact-form{
  width: 95%;
  max-width: 600px;
  margin: auto;
}
.form-text{
  background-color: #000000;
  display: inline-block;
  margin-bottom: 10px;
  padding: 0 25px;
}
.form-text p{
  color: rgb(255, 255, 255);
  font-size: 16px;
  font-weight: 300;
  line-height: 27px;
}
.form-text span{
  color: red;
  font-size: 14px;
}
.form-box{
  width: 100%;
  margin: auto;
  margin-bottom: 50px;
}
.form-textbox{
  width: 100%;
  margin: auto;
  margin-bottom: 50px;
}
.form-box input{
  width: 100%;
  max-width: 100%;
  height: 100%;
  font-size: 16px;
  background-color: rgb(255, 255, 255);
  border: none;
  box-sizing: border-box;
  padding-right:0px;
}
.form-textbox textarea{
  width: 100%;
  max-width: 100%;
  height: 100%;
  font-size: 16px;
  background-color: rgb(255, 255, 255);
  border: none;
  padding-right:0px;
  box-sizing: border-box;
}
.send-button{
  background-color: #000000;
  width: 80%;
  max-width: 300px;
  margin: auto;
  text-align: center;
  position: relative;
  height: 60px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.send-button input{
  color: rgb(255, 255, 255);
  font-size: 18px;
  font-weight: bold;
  box-sizing: border-box;
  border-style:none;
  background: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  width: 100%;
  cursor: pointer;
  height: 100%;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  letter-spacing: 2px;
}
.send-button input:hover {
  letter-spacing: 7px;
}
.ma-to{
  margin-top: 50px;
  max-width: 800px;
}
.m-b60 {
  margin-bottom: 60px;
  text-align: center;
}
.wpcf7-not-valid-tip {
  margin-top: 10px;
}
@media screen and (max-width:600px){
  .contact-box{
    padding-top: 50px;
  }
}
/*-------------------------wp-style（書き換え）-------------------------*/
.form-block .wpcf7-list-item{
  display: block!important;
}
.form-block .wpcf7-list-item-label{
  vertical-align: 3px!important;
}
.wpcf7-list-item input{
  width: 20px!important;
  height: 20px!important;
  margin-bottom: 10px!important;
}
.m-b60 .wpcf7-list-item input {
  margin-bottom: 7px!important;
  margin-right: 20px!important;
}
#autozip{
  margin-top: 15px!important;
}
@media screen and (max-width:600px){
  .m-b60 .wpcf7-list-item{
  margin: 0!important;
  }
  .m-b60 .wpcf7-list-item input {
    margin-right: 15px!important;
  }
}

/*-------------------------thanksページ-------------------------*/
.thanks-title{
  max-width: 80%;
  margin: auto;
  margin-top: 100px;
  margin-bottom: 50px;
  text-align: center;
}
.thanks-title p{
  font-size: 30px;
}
.thanks-text{
  width: 90%;
  margin: auto;
  line-height: 1.4;
  margin-bottom: 120px;
  text-align: center;
}
.thanks-text p{
  font-size: 24px;
}
.br{
  display: none;
}
@media screen and (max-width:500px){
  .thanks500 p{
    font-size: 24px;
    line-height: 35px;
  }
  .thanks-title{
    margin-top: 50px;
  }
  .thanks-title p{
    font-size: 22px;
  }
  .thanks-text p{
    font-size: 20px;
  }
}
/*-------------------------topページへ-------------------------*/
.page-top{
  width: 100%;
  text-align: center;
  margin-bottom: 300px;
}
.page-top span{
  font-size: 20px;
}
@media screen and (max-width:600px){
  .page-top{
    margin-bottom: 150px;
  }
}

/*-------------------------個人情報保護ページ-------------------------*/
.privacy{
  width: 90%;
  max-width: 800px;
  margin: auto;
}
.privacy-text{
  line-height: 1.4;
  text-align: justify;
}
.privacy-text p{
  font-size: 16px;
}
.margin{
  margin-bottom: 26px;
}
@media screen and (max-width:450px){
  .margin{
    margin-bottom: 15px;
  }
}

/*-------------------------pageコントロール共通-------------------------*/
.control{
  width: 80%;
  max-width: 800px;
  margin: auto;
  margin-top: 150px;
  margin-bottom: 30px;
}
.all-page{
  max-width: 600px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.page-numbers{
  padding: 0 5px;
  text-align: center;
  min-width: 30px;
  line-height: 30px;
  font-size: 18px;
}
.current{
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
}
@media screen and (max-width:600px){
  .control{
    margin-top: 100px;
  }
}
/*-------------------------投稿詳細ページ-------------------------*/
.post{
  width: 90%;
  max-width: 960px;
  margin: auto;
  margin-bottom: 300px;
}
.post-title{
  margin-bottom: 30px;
}
.post-title h3{
  position: relative;
  padding-left: 25px;
}
.post-title h3::before{
  content: "";
  width: 5px;
  height: 30px;
  background-color: rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.post-date{
  margin-left: 15px;
  margin-bottom: 20px;
}
.post-text{
  line-height: 1.5;
}
.post-back{
  text-align: right;
  margin-top: 50px;
}

/*-------------------------施工例page-------------------------*/
.example{
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.example-li{
  width: 27%;
  margin-bottom: 80px;
  text-align: center;
}
.example-img{
  width: 100%;
}
.example-img img{
  width: 100%;
  max-height: 250px;
  object-fit: cover;
}
.example-title{
  margin: 20px 0;
}
.example-title p{
  font-size: 20px;
}
@media screen and (max-width:800px){
  .example{
    flex-direction: column;
    margin-bottom: 0;
    align-items: center;
  }
  .example-li{
    width: 80%;
    margin-bottom: 40px;
  }
  .example-img img{
    max-height: 320px;
  }
  .example-title p{
    font-size: 18px;
  }
}

/*-------------------------施工例詳細ページ-------------------------*/
.post{
  width: 90%;
  max-width: 960px;
  margin: auto;
  margin-bottom: 100px;
}
.example-thumbnail{
  text-align: center;
  margin-bottom: 30px;
}
.example-thumbnail img{
  width: 100%;
  max-width: 600px;
  height: 100%;
  object-fit: contain;
}
.post-title{
  margin-bottom: 30px;
}
.post-text p{
  font-size: 16px;
  line-height: 1.7;
}

/*-------------------------事業内容ページ-------------------------*/
.content-service {
  width: 90%;
  margin: auto;
  padding: 80px 0;
}
.flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  border-top: 1px solid #53727d;
  padding-top: 50px;
}
.reverse{
  flex-direction: row-reverse;
}
.sub-text{
  width: 45%;
  line-height: 2;
}
.service-text-title{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 40px;
}
.content-service-img{
  width: 45%;
}
.content-service-img img{
  width: 100%;
}
@media screen and (max-width:1200px){
  .flex {
    flex-direction: column;
  }
  .sub-text{
    width: 100%;
    line-height: 1.5;
  }
  .service-text-title{
    margin-bottom: 20px;
  }
  .content-service-img{
    width: 100%;
    margin-top: 40px;
  }
}
@media screen and (max-width:600px){
  .content-service .company-title{
    width: 100%;
  }
  .flex{
    margin-top: 20px;
    padding-top: 20px;
  }
  .service-text-title{
    font-size: 16px;
    margin-bottom: 20px;
  }
}
/*-------------------------エクステリアポイント-------------------------*/
.point{
  width: 90%;
  max-width: 1200px;
  margin: auto;
  margin-bottom: 100px;
}
.point-box{
  border: rgb(0, 0, 0) 1px solid;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
}
.point-title{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.point-text{
  line-height: 1.5;
  margin-bottom: 20px;
}
.point-flex{
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
}
.point-img{
  margin-bottom: 20px;
}
.point-img img{
  width: 100%;
  vertical-align: middle;
}
.point1 .point-img{
  width: 30%;
  border-radius: 10px;
}
.mt10{
  margin-top: 10px;
}
.point2-text{
  line-height: 1.5;
  text-align: center;
  padding-top: 20px;
  border: solid 3px #910A83;
}
.point2-text p{
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.point3 .point-img{
  width: 24%;
}
@media screen and (max-width:1050px){
  .point1 .point-img{
    width: 80%;
  }
  .point3 .point-img{
    width: 48%;
  }
}
@media screen and (max-width:600px){
  .point1 .point-img{
    width: 100%;
  }
  .point-box{
    padding: 20px 10px 0;
    margin-bottom: 20px;
  }
  .point-title{
    font-size: 18px;
  }
  .point2-text p{
    font-size: 16px;
  }
}

/*-------------------------js要員-------------------------*/
.j-fade {
  opacity: 0;
  transform: translate(0, 50px);
  transition: all 1.5s;
}
.j-fade.scrollin {
  opacity: 1;
  transform: translateY(0);
}