/*
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(50, 50, 50);
  box-sizing: border-box;
  font-weight: bold;
}
.main{
  width: 100%;
  overflow-x: hidden;
}
a{
  text-decoration: none;
  color: rgb(50, 50, 50);
}
a:link{color: rgb(50, 50, 50);}
a:visited{color: rgb(50, 50, 50);}
a:hover{
  color: rgba(50, 50, 50, 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;
  }
}
@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;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 1);
  padding-left: 40px;
  position: fixed;
  z-index: 9999;
  top: 0;
}
.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: #DAB654;
}
@media screen and (max-width:1100px){
  .header-right{
    display: none;
  }
}
@media screen and (max-width:600px){
  header{
    height: 70px;
  }
}
@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(255, 255, 255);
  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;
}
nav.globalMenuSp ul li{
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child{
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#204F87;
}
nav.globalMenuSp ul li a{
  display: block;
  color: #fff;
  padding: 2em 0;
  text-decoration :none;
}
@media screen and (max-width:1100px){
  .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;
}
.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.05);
  transition: 3s 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-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;
  }
}

/*-------------------------コンテンツ1(ABOUTサービス)-------------------------*/
/*-------------------------コンテンツ1(ABOUTサービス)上部分-------------------------*/
.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: #204F87;
  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.73;
  margin-top: 50px;
}
.top-service-title p{
  font-size: 28px;
  font-weight: bold;
}
.top-service-text{
  line-height: 2;
  margin-top: 30px;
}
.top-service-text p{
  font-weight: bold;
  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;
  }
}
@media screen and (max-width:600px){
  .top-service-left img {
    width: 102%;
  }
  .top-service{
    margin-bottom: 100px;
  }
}
@media screen and (max-width:500px){
  .top-service-title{
    line-height: 1.5;
  }
  .top-service-title p{
    font-size: 20px;
  }
  .top-service-text{
    line-height: 1.5;
    margin-top: 20px;
  }
  .top-service-text{
    text-align: justify;
  }
}
/*-------------------------コンテンツ1(ABOUTサービス)下部分-------------------------*/
.block-center{
  display: flex;
  justify-content: center;
}
.bottom-service{
  margin-top: 80px;
}
.service-list{
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
.service-box{
  width: 100%;
  max-width: 300px;
}
.service-img{
  width: 100%;
}
.service-img img{
  width: 100%;
}
.service-title{
  height: 40px;
  border: solid 2px;
  margin-top: 20px;
  margin-bottom: 33px;
  text-align: center;
}
.service-title p{
  font-size: 18px;
  line-height: 40px;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
.service-text{
  line-height: 2;
  text-align: justify;
}
.service-text p{
  font-weight: bold;
  letter-spacing: 1px;
}
@media screen and (max-width:1300px){
  .service-list{
    flex-direction: column;
  }
  .service-box{
    max-width: 600px;
    margin: auto;
    margin-bottom: 80px;
  }
  .service-img{
    max-width: 385px;
    margin: auto;
  }
}
@media screen and (max-width:600px){
  .service-box{
    margin-bottom: 30px;
  }
  .block-center{
    justify-content: flex-start;
    width: 90%;
    margin: auto;
  }
  .bottom-service{
    margin-top: 40px;
  }
}

/*-------------------------スポンサーボタン-------------------------*/
.sponsor-all{
  width: 370px;
  height: 60px;
  margin: auto;
}
.sponsor-button{
  background-color: #DAB654;
  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;
  }
}

/*-------------------------インフォメーション-------------------------*/
.information{
  width: 100%;
  display: flex;
  margin-bottom: 300px;
}
.information-left{
  flex-basis: 50%;
  text-align: center;
}
.information-right{
  flex-basis: 50%;
}
.name {
  margin: 50px auto 30px;
  font-size: 24px;
}
.address{
  line-height: 1.75;
  margin-bottom: 17px;
  margin-bottom: 60px;
}
.address p{
  font-size: 18px;
}
.map{
  width: 90%;
}
@media screen and (max-width:800px){
  .information{
    flex-direction: column-reverse;
  }
  .map{
    width: 100%;
  }
}

/*-------------------------フッター-------------------------*/
footer{
  background-color: #204F87;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer p{
  font-weight: bold;
  color: rgb(255, 255, 255);
}

/*-------------------------サブページ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: #204F87;
}
.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: 100px;
}
.company-img{
  display: flex;
  justify-content: space-around;
  margin-bottom: 80px;
}
.company-img img{
  width: 415px;
  box-shadow:  0 3px 6px 0 rgba(0, 0, 0, 0.16);
}
.company-img p{
  margin-top: 10px;
  margin-right: 10px;
  text-align: right;
  font-size: 16px;
  font-weight: 400;
}
.company-title h3{
  position: relative;
  padding-left: 25px;
}
.company-title h3::before{
  content: "";
  width: 5px;
  height: 30px;
  background-color: #DAB654;
  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;
  }
}
@media screen and (max-width:850px){
  .company-img{
    flex-direction: column;
  }
  .com-img-l,.com-img-r{
    max-width: 600px;
    margin: auto;
  }
  .com-img-l{
    margin-bottom: 50px;
  }
  .company-img img{
    max-width: 415px;
    width: 100%;
  }
}
@media screen and (max-width:600px){
  .company-img p{
    font-size: 14px;
  }
}
/*-------------------------会社概要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;
  }
}

/*-------------------------お問い合わせ-------------------------*/
/*-------------------------お問い合わせフォーム-------------------------*/
.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: #DAB654;
  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: 18px;
  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: 20px;
  background-color: rgb(255, 255, 255);
  border: none;
  padding-right:0px;
  box-sizing: border-box;
}
.send-button{
  background-color: #204F87;
  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;
}
@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;
  }
  .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;
}

/*-------------------------個人情報保護ページ-------------------------*/
.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;
  }
}

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