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

@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: 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: rgb(239, 195, 20);
}
@media screen and (max-width:1100px){
  .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: 20px;
  }
}

/*-------------------------ハンバーガー-------------------------*/
.hamburger{
  display: none;
  position: fixed;
  z-index: 9999;
  right: 0;
  top: 0;
  width: 100px;
  height: 100px;
  background-color: rgb(239, 195, 20);
  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(239, 195, 20);
  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: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;
  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: 50%;
  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: 34px;
  margin-left: 4px;
}
.v-tx2 {
  font-size: 48px;
  margin-top: 12px;
}
.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: rgb(239, 195, 20);
  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;
    line-height: 1.5;
  }
  .v-tx2 {
    font-size: 30px;
    line-height: 1.25;
    letter-spacing: -2px;
    margin-top: 20px;
  }
  .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;
  }
  .video-text::after {
    bottom: 90px;
  }
}

/*-------------------------パネル-------------------------*/
.panel-flex{
  width: 90%;
  max-width: 1300px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding-top: 200px;
  margin: 0 auto 100px;
}
.panel-flex .panel:nth-child(odd){
  background-color: #394b73;
}
.panel-flex .panel:nth-child(odd) p{
  color: #fff;
}
.panel-flex .panel:nth-child(even){
  background-color: #f7f096;
}
.panel{
  width: 250px;
  box-shadow:  0 3px 6px 0 rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  text-align: center;
  height: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 30px;
}
.panel img{
  width: 120px;
  margin-bottom: 20px;
}
@media screen and (max-width:600px){
  .panel{
    width: 150px;
    height: 150px;
  }
}

/*-------------------------インスタボタン-------------------------*/
.inst-button {
  width: 350px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 2px;
  border-radius: 32px;
  color: #fff!important;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  box-shadow: 0px 1px 2px rgba(25, 25, 25, 0.50);
  transition: .4s;
  display: block;
  margin: auto;
  text-align: center;
}
.inst-button:hover{
  box-shadow: 0px 2px 3px rgba(25, 25, 25, 0.50);
}
.inst-button i{
  color: #ffffff;
  margin-left: 1em;
}

/*-------------------------トップページタイトル共通-------------------------*/
.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: rgb(239, 195, 20);
  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-title br{
  display: none;
}
.top-service-text{
  line-height: 1.5;
  margin-top: 30px;
}
.top-service-text p{
  font-size: 16px;
  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;
    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;
  }
}
/*-------------------------コンテンツ1(ABOUTサービス)下部分-------------------------*/
.block-center{
  display: flex;
  justify-content: center;
}
.bottom-service{
  margin-top: 80px;
}
.service-list{
  width: 90%;
  max-width: 1255px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.service-box{
  width: 100%;
  max-width: 300px;
}
.service-img{
  width: 100%;
}
.service-img img{
  width: 100%;
  vertical-align: middle;
}
.service-title{
  height: 30px;
  border: solid 1px;
  margin-bottom: 30px;
  text-align: center;
}
.service-title p{
  font-size: 16px;
  line-height: 30px;
  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-box{
    margin: auto;
    margin-bottom: 80px;
  }
}
@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: rgb(239, 195, 20);
  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;
}
.address p{
  font-size: 18px;
}
.detail{
  line-height: 1.75;
  margin-bottom: 40px;
}
.detail p{
  font-size: 18px;
}
.map{
  width: 90%;
}
@media screen and (max-width:800px){
  .information{
    flex-direction: column-reverse;
  }
  .map{
    width: 100%;
  }
}

/*-------------------------フッター-------------------------*/
footer{
  background-color: rgb(239, 195, 20);
  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: rgb(239, 195, 20);
}
.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;
  line-height: 1.5;
}
.company-title h3::before{
  content: "";
  width: 5px;
  height: 30px;
  background-color: rgb(239, 195, 20);
  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: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: #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: 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: #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;
}
@media screen and (max-width:600px){
  .contact-box{
    padding-top: 50px;
  }
}

.m-b60 {
  margin-bottom: 60px;
  text-align: center;
}
.wpcf7-not-valid-tip {
  margin-top: 10px;
}

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

/*-------------------------スポンサーページ-------------------------*/
.ma-l{
  margin-left: 10%;
  margin-bottom: 50px;
}
.sponsor {
  padding-bottom: 100px;
}
.sponsor-img {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sponsor-img img{
  height: 280px;
  margin: 20px;
}
.sponsor-detail {
  width: 90%;
  max-width: 1000px;
  margin: 50px auto 0;
  line-height: 2;
}
@media screen and (max-width:700px){
  .sponsor-img {
    flex-direction: column;
  }
  .sponsor-img img{
    width: 80%;
    margin-bottom: 20px;
  }
  .sponsor-detail {
    margin: 10px auto 0;
    line-height: 1.5;
  }
}
@media screen and (max-width:600px){
  .ma-l{
    margin-left: 15px;
  }
}

/*-------------------------施工事例-------------------------*/
.m-t100{
  margin-top: 100px;
}
.inst-flex{
  width: 90%;
  max-width: 600px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
.inst-text{
  font-size: 24px;
  text-align: center;
}
.inst-text span{
  font-size: 14px;
  display: block;
  font-weight: normal;
  margin-bottom: 10px;
}
.inst-flex .fa-instagram{
  font-size: 50px;
  margin-right: 30px;
}
.inst-flex .inst-button{
  padding: 10px 0;
  font-size: 30px;
  letter-spacing: 0;
  border-radius: 0;
  margin: 0;
  font-family: Snell Roundhand;
  display: flex;
  align-items: center;
}
@media screen and (max-width:600px){
  .inst-flex{
    flex-direction: column;
  }
  .inst-text{
    margin-bottom: 30px;
  }
}
/*-------------------------汎用-------------------------*/
.m-t25{
  margin-top: 25px;
}