/*
Theme Name: SK-HOMES株式会社
Description: SK-HOMES株式会社の公式ホームページ
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;
  font-weight: bold;
}
.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;
}
.red{
  color: red;
}
.bold{
  font-weight: bold;
  font-size: 18px;
}
.right{
  text-align: right;
}
.m-b20{
  margin-bottom: 20px;
}
.page .header-right{
  display: none!important;
}
.page .hamburger{
  display: none!important;
}
@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;
  }
  .bold{
    font-size: 16px;
  }
}
@media screen and (max-width:500px){
  h1{
    font-size: 16px;
  }
}
@media screen and (max-width:450px){
  h1{
    font-size: 14px;
  }
}

/*-------------------------header-------------------------*/
header{
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding-left: 20px;
  position: fixed;
  z-index: 9999;
  top: 0;
}
.header-logo{
  display: flex;
  align-items: center;
}
.header-logo img{
  height: 100px;
}
.header-right{
  width: 70%;
  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: #000000;
}
@media screen and (max-width:1200px){
  .header-right{
    display: none;
  }
}
@media screen and (max-width:600px){
  header{
    height: 70px;
  }
  .header-logo img{
    height: 70px;
  }
}
@media screen and (max-width:400px){
  header{
    padding-left: 0;
  }
}

/*-------------------------ハンバーガー-------------------------*/
.hamburger{
  display: none;
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background-color: #ffffff;
  cursor: pointer;
}
.hamburger span{
  display: block;
  position: absolute;
  width: 50px;
  height: 2px;
  left: 25px;
  background: rgb(50, 50, 50);
  -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{
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0,0,0,0.7);
  text-align: center;
  width: 100%;
  height: 100%;
  display: none;
  overflow: scroll;
}
nav.globalMenuSp ul li{
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child{
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}
nav.globalMenuSp ul li a{
  display: block;
  color: #fff;
  padding: 2em 0;
  text-decoration :none;
}
nav.globalMenuSp ul li:hover a{
  color: rgb(50, 50, 50);
}
@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: calc(100vh - 70px);
  margin-top: 70px;
  position: relative;
}
.top-slide{
  width: 90%;
  margin-right: 0;
  margin-left: auto;
}
.slide-img img{
  object-fit: cover;
  object-position: right;
  width: 100%;
  height: calc(100vh - 70px);
}
.top-text{
  position: absolute;
  bottom: 100px;
  right: 100px;
}
.top-text p{
  background-color: rgba(255, 255, 255, 0.9);
  display: table;
  padding: 25px 40px;
  font-size: 40px;
}
@media screen and (max-width:700px){
  .top-text{
    bottom: 10px;
    right: 10px;
  }
  .top-text p{
    font-size: 20px;
    padding: 10px 30px;
  }
  .slide-left{
    object-position: -70px!important;
  }
}
@media screen and (max-width:600px){
  .top{
    height: calc(80vh - 70px);
  }
  .slide-img img{
    height: calc(80vh - 70px);
  }
}

/*-------------------------トップページタイトル共通-------------------------*/
.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;
  }
}

/*-------------------------ミッション-------------------------*/
.mission{
  line-height: 2;
  text-align: center;
  width: 90%;
  margin: auto;
}
@media screen and (max-width:600px){
  .mission{
    line-height: 1.5;
    text-align: justify;
  }
}

/*-------------------------選ばれる理由-------------------------*/
.br{
  display: none;
}
.stepbar {
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
  line-height: 1.5;
}
.stepbarwrap {
  margin: 40px 0;
  position: relative;
}
.steptitle {
  display: inline-flex;
  align-items: center;
}
.stepcircle {
  display: inline-block;
  width: 1em;
  height: 1em;
  content: "";
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #EF7F42;
}
.stepnum {
  padding-left: 1em;
  font-size: 0.8em;
  color: #EF7F42;
}
.steptxt {
  padding-left: 40px;
}
.steptxt-title {
  margin: 10px 0 20px;
  font-weight: bold;
  font-size: 20px;
}
.steptxt-txt {
  font-size: 16px;
}
.stepline {
  width: 1px;
  height: calc(100% + 25px);
  background-color: #EF7F42;
  position: absolute;
  top: 17px;
  left: 7px;
  z-index: -1;
}
@media screen and (max-width:600px){
  .steptxt-title {
    margin: 10px 0 20px;
    font-size: 18px;
  }
  .steptxt {
    padding-left: 20px;
  }
  .steptxt-txt {
    font-size: 14px;
  }
}

/*-------------------------見出しデザイン-------------------------*/
.top-service-title {
  position: relative;
  padding: .3em 0 .2em 1.7em;
  border-bottom: 2px solid #825933;
}
.top-service-title::before {
  position: absolute;
  top: 0;
  left: .3em;
  transform: rotate(55deg);
  height: 11px;
  width: 12px;
  background: #825933;
  content: '';
}
.top-service-title::after {
  position: absolute;
  transform: rotate(15deg);
  top: .6em;
  left: 0;
  height: 8px;
  width: 8px;
  background: #825933;
  content: '';
}
/*-------------------------コンテンツ1(ABOUTサービス)-------------------------*/
/*-------------------------コンテンツ1(ABOUTサービス)上部分-------------------------*/
.top-service-wrapper .top-service:nth-child(even){
  flex-direction: row-reverse;
}
.top-service-wrapper .top-service:nth-child(even) .top-service-right{
  padding-left: 0;
  padding-right: 60px;
}
.top-service{
  width: 100%;
  margin-bottom: 150px;
  display: flex;
}
.top-service-left{
  width: 40%;
}
.top-service-left img{
  width: 100%;
}
.top-service-right{
  padding-left: 60px;
  padding-top: 20px;
  width: 55%;
}
.top-service-text{
  line-height: 1.5;
  margin: 30px 0 40px;
  border-bottom: 2px solid #825933;
  padding-bottom: 15px;
}
.top-service-text p{
  margin-bottom: 1em;
}
.box-title {
  display: inline-block;
  position: relative;
  padding: .5em 2em .5em 1em;
  border-right: 5px solid #000000;
  background-color: rgb(250, 250, 250);
  margin-bottom: 20px;
  font-size: 16px;
}
.box-title::before {
  position: absolute;
  bottom: 2px;
  right: -20px;
  z-index: -1;
  transform: rotate(5deg);
  width: 100%;
  height: 50%;
  background-color: #d0d0d0;
  content: "";
  filter: blur(4px);
}
.box-text{
  line-height: 1.5;
}
@media screen and (max-width:1100px){
  .top-service-wrapper .top-service:nth-child(even){
    flex-direction: column;
  }
  .top-service{
    flex-direction: column;
  }
  .top-service-left{
    width: 100%;
    max-width: 600px;
    margin: auto;
  }
  .top-service-wrapper .top-service:nth-child(even) .top-service-right{
    padding-right: 0;
  }
  .top-service-right{
    padding-left: 0;
    padding-top: 50px;
    width: 90%;
    max-width: 600px;
    margin: auto;
  }
  .box-title{
    margin-top: 20px;
  }
}
@media screen and (max-width:600px){
  .top-service-left img {
    width: 102%;
  }
  .top-service-right{
    padding-top: 40px;
  }
  .top-service{
    margin-bottom: 100px;
  }
  .top-service-text{
    letter-spacing: 0;
    margin: 30px 0 20px;
  }
}
@media screen and (max-width:500px){
  .top-service-text{
    text-align: justify;
  }
  .top-service-text br{
    display: none;
  }
}

/*-------------------------メッセージ-------------------------*/
.message {
  position: relative;
}
.message p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  padding: 0 40px;
  background-image: linear-gradient(90deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 50%, #fff 0%, #fff 100%), linear-gradient(180deg, rgba(237, 119, 128, 0) 0%, rgba(237, 119, 128, 0) 95%, #4c9ac0 100%);
  background-size: 8px 100%, 100% 2.5em;
  line-height: 2.5;
}
.message .br{
  display: block;
}
@media screen and (max-width:800px){
  .message p {
    font-size: 14px;
    padding: 0 20px;
  }
  .message .br{
    display: none;
  }
}

/*-------------------------インフォメーション-------------------------*/
.information{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.information-left{
  width: 90%;
  margin: auto;
}
.information-right{
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.info-box{
  max-width: 1000px;
  margin: 0 auto 15px;
}
.address{
  line-height: 1.5;
  margin-bottom: 15px;
  border-bottom: 1px solid #000;
}
.address p{
  font-size: 16px;
}
.map{
  width: 100%;
}
@media screen and (max-width:800px){
  .information{
    flex-direction: column-reverse;
  }
  .info-box br{
    display: block;
  }
  .address p{
    font-size: 16px;
  }
  .map{
    width: 100%;
  }
}

/*-------------------------フッター-------------------------*/
footer{
  background-color: #000000;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
footer p{
  font-weight: bold;
  color: rgb(255, 255, 255);
}
footer a{
  font-weight: bold;
  color: rgb(255, 255, 255)!important;
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 12px;
}
@media screen and (max-width:1200px){
  footer a{
    display: none;
  }
}

/*-------------------------サブページtop共通-------------------------*/
.subpage-top{
  margin-top: 100px;
  width: 100%;
  height: 400px;
  position: relative;
  margin-bottom: 56px;
}
.subpage-img{
  width: 90%;
  height: 400px;
  margin-right: 0;
  margin-left: auto;
}
.subpage-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.subpage-title{
  position: absolute;
  bottom: -15px;
  left: 5%;
  padding: 0 40px;
  text-align: center;
  background-color: #825933;
}
.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;
    height: 200px;
  }
  .subpage-img{
    height: 400px;
    height: 200px;
  }
  .subpage-title p{
    font-size: 40px;
    line-height: 60px;
  }
  .subpage-subtitle{
    margin-bottom: 40px;
  }
}

/*-------------------------会社概要ページ-------------------------*/
.company{
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 300px;
}
.company-title h3{
  position: relative;
  padding-left: 25px;
}
.company-title h3::before{
  content: "";
  width: 5px;
  height: 30px;
  background-color: #825933;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width:1000px){
  .company-title{
    width: 90%;
    margin: auto;
  }
}
/*-------------------------会社概要list-------------------------*/
.company-detail{
  width: 100%;
  max-width: 600px;
  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;
}
@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;
  }
}
/*-------------------------共通戻る-------------------------*/
.page-back{
  text-align: right;
  margin-top: 100px;
}
.sub .page-back{
  margin-right: 30px;
}
@media screen and (max-width:1000px){
  .page-back{
    margin-right: 30px;
  }
}
@media screen and (max-width:800px){
  .privacy .page-back{
    margin-right: 0;
  }
}

/*-------------------------お問い合わせ-------------------------*/
/*-------------------------お問い合わせフォーム-------------------------*/
.contact{
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 300px;
}
.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;
  font-weight: normal;
}
.form-box{
  width: 100%;
  margin: auto;
  margin-bottom: 30px;
}
.form-textbox{
  width: 100%;
  margin: auto;
  margin-bottom: 50px;
}
.form-box input{
  width: 100%;
  font-size: 18px;
  background-color: rgb(255, 255, 255);
  border: none;
}
.form-textbox textarea{
  width: 100%;
  font-size: 18px;
  background-color: rgb(255, 255, 255);
  border: none;
}
.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;
  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%);
  cursor: pointer;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
  letter-spacing: 2px;
}
.send-button input:hover {
  letter-spacing: 7px;
}
.wpcf7-not-valid-tip{
  margin-top: 10px;
}
@media screen and (max-width:600px){
  .contact-box{
    padding-top: 50px;
  }
}

/*-------------------------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;
    line-height: 1.5;
  }
  .thanks-title p{
    font-size: 22px;
  }
  .thanks-text p{
    font-size: 20px;
  }
  .br{
    display: block;
  }
}
/*-------------------------topページへ-------------------------*/
.page-top{
  width: 100%;
  text-align: center;
  margin-bottom: 300px;
}
.page-top span{
  font-size: 20px;
}

/*-------------------------個人情報保護ページ-------------------------*/
.privacy{
  width: 90%;
  max-width: 800px;
  margin: auto;
  margin-bottom: 300px;
}
.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;
  }
}

/*-------------------------事業内容ページ-------------------------*/
.sub{
  margin-bottom: 300px;
}
.sub-container{
  padding: 100px 15%;
  background-color: rgba(130, 89, 51, 0.1);
  border-top: #825933 solid 10px;
}
.sub-last{
  border-bottom: #825933 solid 10px;
}
.sub-title{
  position: relative;
  padding-left: 25px;
  font-size: 18px;
}
.sub-title::before{
  content: "";
  width: 3px;
  height: 30px;
  background-color: #825933;
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sub-text{
  width: 90%;
  margin: 30px auto 0;
  line-height: 1.5;
}
@media screen and (max-width:600px){
  .sub-container{
    padding: 100px 3%;
    background-color: rgba(130, 89, 51, 0.1);
    border-top: #825933 solid 3px;
  }
  .sub-last{
    border-bottom: #825933 solid 3px;
  }
  .sub-text br{
    display: none;
  }
}

/*-------------------------物件、施工例-------------------------*/
.post{
  width: 100%;
  max-width: 1000px;
  margin: auto;
  margin-bottom: 300px;
}
.post-title{
  text-align: center;
  font-size: 40px;
  letter-spacing: 1em;
  padding-left: 1em;
}

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