@charset "UTF-8";
/* CSS Document */

/*==================================================
ふわっ
===================================*/
/* fadeUp */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 右から */
.fadeRight {
  animation-name: fadeRightAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 左から */
.fadeLeft{
animation-name: fadeLeftAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
	transform: translateX(-50px);
  }

  to {
    opacity: 1;
	transform: translateX(0);
  }
}


/* その場でふわ */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*==================================================
ここまで　ふわっ
===================================*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger, .fadeUpTrigger, .fadeRightTrigger, .fadeLeftrigger, .flipDownTrigger{
  opacity: 0;
} 

/*==================================================
パタッ
===================================*/
/* 下へ */
.flipDown{
animation-name:flipDownAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}
@keyframes flipDownAnime{
  from {
    transform: perspective(2500px) rotateX(100deg);
  opacity: 0;
  }
  to {
    transform: perspective(2500px) rotateX(0);
  opacity: 1;
  }
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time02{
animation-delay: 0.2s;
}
.delay-time04{
animation-delay: 0.4s;
}
.delay-time06{
animation-delay: 0.6s;
}
.delay-time08{
animation-delay: 0.8s;
}
.delay-time10{
animation-delay: 1.0s;
}
.delay-time12{
animation-delay: 1.2s;
}

/*========= 1文字ずつ出現させるためのCSS ===============*/
.eachTextAnime span {
  opacity: 0;
	font-size: 1em;
    font-weight: 900;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*ここまでアニメションCSS*/



/* concept
===================================*/
#all {
  font-family: 'Noto Sans JP';
  color: #231815231815;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/*ここからスマホCSS*/
@media only screen and (max-width: 767px) {
  .sp {
    display: block !important;
    margin:0 auto;
  }
  .pc {
    display: none !important;
    margin:0 auto;
  }
  #head {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
  }
  
  #head p {
    width: 100%;
    position: relative;
    height: 200px;
  }
  #head p .image2 {
    position: absolute;
    right: 20px;
    top: 10px;
    width: 30%;
  }
  #head p .image3 {
    position: absolute;
    left: 0;
    bottom: 0px;
    padding: 10px 0 10px 20px;
    width: 60%;
    background-color: rgba(255, 255, 255, 0.7);
  }
  #mainArea h5 {
    font-family: 'Noto Sans JP';
    background-color: #f2f2f2;
    color: #231815;
    padding: 20px;
    line-height: 2;
    font-size: 1.1em;
    text-align: center;
  }
  #mainArea h5 span {
    color: #231815;
    font-size: 1.3em;
    font-weight: 900;
    text-align: center;
  }
  #mainArea .form {
    width: 90%;
    margin: 50px auto;
  }
  #mainArea .form li {
    text-align: center;
  }
  #mainArea .form li:nth-child(2) {
    font-size: 4em;
    margin: 20px;
    font-weight: 900;
  }
  #mainArea .form li img {
    width: 55%;
    margin: auto;
  }
  #mainArea .btn {
    margin-top: 30px;
  }
  #mainArea .btn .detail {
    width: 300px;
    margin: auto;
    font-family: 'Noto Sans JP';
    font-weight: 900;
    color: #202020;
    padding: 15px;
    text-align: center;
    border: 2px #202020 solid;
    background: #fff;
    display: block;
    letter-spacing: 4px;
    text-decoration: none;
    transition: 0.5s;
    border-radius: 0px !important;
    line-height: 1em;
  }
  #mainArea .btn .detail span {
    font-size: 1.1em;
    display: block;
    color: #d7003a;
    font-weight: 700;
  }
  #mainArea article h2 {
    font-family: 'Noto Sans JP', sans;
    width: 70%;
    margin: auto;
    font-weight: bold;
    text-align: center;
    font-size: 2em;
    letter-spacing: 2px;
    padding: 15px;
    border-bottom: 4px solid #00839e;
  }
  #mainArea article h2 span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.5em;
    display: block;
  }
  #mainArea article section {
    width: 90%;
    margin: auto;
  }
  #mainArea article h4 {
    font-family: 'Noto Sans JP', sans;
    color: #231815;
    text-align: center;
    background-color: #fbce00;
    padding: 20px;
    font-size: 2em;
    border-radius: 10px 10px 0 0;
    margin: 50px 0 20px 0;
  }
  #mainArea article section img {
    margin-bottom: 10px;
  }
  #mainArea .mainTXT {
    font-family: 'Noto Sans JP';
    line-height: 2;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-align: justify;
    font-weight: 500;
    margin: 10px 0;
  }
  #mainArea .mainTXT span {
    color: #d7003a;
    font-weight: 900;
    font-size: 1.2em;
  }
  #mainArea article section ul {
    width: 100%;
  }
  #mainArea .point li {
    background-color: #F5F6F7;
    margin-bottom: 10px;
    padding: 15px;
  }
  #mainArea .point li dt .number {
    width: 60px;
    height: 60px;
    color: #fff;
    background-color: #00afcc;
    padding: 10px;
    box-sizing: border-box;
    font-family: Noto Sans JP;
    text-align: center;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 1.2em;
    margin-right: 40px;
  }
  #mainArea .point li dt .number span {
    font-size: 0.7em;
    display: block;
  }
  #mainArea .point li dt .numberTXT {
    display: inline-block;
    font-family: 'Noto Sans JP', sans;
    font-size: 1.5em;
    vertical-align: super;
  }
  #mainArea .point li dd {
    font-family: 'Noto Sans JP';
    margin: 10px 0;
    text-align: justify;
    line-height: 1.8;
  }
  #mainArea h3 img {
    width: 70%;
    margin: auto;
    text-align: center;
  }
  #mainArea .list {
    margin: 2% auto;
  }
  #mainArea .list li {
    padding: 15px;
    background: #231815;
    text-align: center;
    color: #fff;
    font-size: 16px;
    font-family: 'Noto Sans JP';
    letter-spacing: 1px;
    font-weight: 900;
    margin: 10px auto;
  }
  #mainArea .FLwork {
    background-image: url("../../images/renovation/bg_works_sp@2x.png");
    background-size: cover;
    margin-bottom: 10px;
    width: 100%;
    height: 200px;
    display: block;
  }
  #mainArea .FLsite {
    background-image: url("../../images/renovation/fl_hp_sp@2x.png");
    background-size: cover;
    width: 100%;
    height: 200px;
    display: block;
  }
  #mainArea .FLwork img, #mainArea .FLsite img {
    width: 50%;
    background: #000;
    padding: 80px 15px;
    box-sizing: border-box;
    position: absolute;
    right: 0;
  }

  #mainArea .btn005 a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0.75em 2em;
    width: 250px;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    background-color: #00839e;
	box-shadow: 0 5px 0 #036977;
    transition: 0.3s;
    border-radius: 40px;
    }
    
    #mainArea .btn005 a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #ffffff;
    border-right: 3px solid #ffffff;
    transform: rotate(45deg);
    }
    
    #mainArea .btn005 a:hover {
    transform: translateY(3px);
    text-decoration: none;
    box-shadow: 0 2px 0 #5b8986;
    }

   
  .mgTS0{
    margin-top: 0px;
  }
  .mgTS10{
    margin-top: 10px;
  }
  .mgTS20{
    margin-top: 20px;
  }
  .mgTS30{
    margin-top: 30px;
  }
  .mgTS40{
    margin-top: 40px;
  }
  .mgTS50{
    margin-top: 50px;
  }

  .mgBS10{
    margin-bottom: 10px;
  }
  .mgBS20{
    margin-bottom: 20px;
  }
  .mgBS30{
    margin-bottom: 30px;
  }
  .mgBS40{
    margin-bottom: 40px;
  }
  .mgBS50{
    margin-bottom: 50px;
  }

  .titlebox {
    margin: 2em 0;
    background: #F5F6F7;
    width:90%;
    margin:auto;
  }
  .titlebox .titletext {
    font-size: 2em;
    background: #fbce00;
    padding: 20px;
    text-align: center;
    color: #231815;
    font-weight: 900;
    letter-spacing: 0.05em;
    border-radius: 10px 10px 0 0;
  }
  .titlebox p {
    padding: 20px 20px;
    margin: 0;
    font-family: 'Noto Sans JP';
    line-height: 2.2;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-align: justify;
    font-weight: 500;
  }
  .titlebox span {
    color: #d7003a;
    font-weight: bold;
    font-size: 1.3em;
  }
  #mainArea .before {
    position: relative;
    }
  
  #mainArea .before p {
    position: absolute;
    top: 0;/*画像の左上に配置*/
    left: 0;
    margin: 0; /*余計な隙間を除く*/
    color: white;/*文字を白に*/
    background: #999999;/*背景色*/
    font-size: 14px;
    line-height: 1;/*行高は1に*/
    weight: bold;
    padding: 5px 10px;/*文字周りの余白*/
    }

    #mainArea .after {
      position: relative;
    }
    
    #mainArea .after p {
      position: absolute;
      top: 0;/*画像の左上に配置*/
      left: 0;
      margin: 0; /*余計な隙間を除く*/
      color: white;/*文字を白に*/
      background: #64C0AB;/*背景色*/
      font-size: 14px;
      line-height: 1;/*行高は1に*/
      weight: bold;
      padding: 5px 10px;/*文字周りの余白*/
    }

    #mainArea .nikaramus{
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
      #mainArea .nikaramu{
        width: 48%;
    }
    #mainArea .slider2{
      width:100%;
    margin:auto;
    }
    .slider3{
      width:100%;
    margin:auto;
    }
}
/*ここからPC_CSS*/
@media only screen and (min-width: 768px) {
  .pc {
    display: block !important;
    margin:0 auto;
  }
  .sp {
    display: none !important;
  }
  #mainArea {
    width: 100%;
  }
  #breadcrumb {
    width: 980px;
    margin: 0 auto 10px;
  }
  #head {
    width: 100%;
    position: relative;
    height: auto;
    margin-bottom: 50px;
    overflow: hidden;
  }
  #head .image1 {
    width: 100%;
    margin: 0 auto;
  }
  #head p {
    position: absolute;
    width: 60%;
    top: 23%;
    left: 10%;
  }
  #head .image2 {
    width: 30%;
    float: right;
  }
  #head .image3 {
    width: 30%;
    float: right;
    margin: 20px 10% 0 0;
  }
  
  #mainArea #head h5 {
    width: 100%;
    background-color: #00afcc;
    position: absolute;
    bottom: 0;
    padding: 60px 0;
    height: 200px;
  }
  #mainArea #head h5 p {
    font-size: 1.4em;
    letter-spacing: 1px;
    line-height: 2.2;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    color: #ffffff;
    width: 60%;
    margin: auto;
    display: block;
    left: 20%;
  }
  #mainArea #head h5 span {
    color: #ffea00;
    font-size: 1.3em;
    font-weight: 900;
  }
  #contents {
    width: 980px;
    margin: auto;
  }
  #mainArea .form {
    margin: 50px auto;
  }
  #mainArea .form li {
    text-align: center;
    float: left;
    width: 45%
  }
  #mainArea .form li:nth-child(2) {
    font-size: 4em;
    width: 10%;
  }
  #mainArea .form li img {
    width: 55%;
    margin: auto;
  }
  .btn {
    position: relative;
    width: 437px;
    height: 122px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
  }
  .btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90% !important;
    padding-top: 30px !important;
    display: block;
    -webkit-transition: .4s ease-in-out;
    transition: .4s ease-in-out;
  }
  .btn:hover img:nth-of-type(2) {
    opacity: 0;
  }
  #mainArea article h2 {
    font-family: 'Noto Sans JP', sans;
    width: 350px;
    font-weight: 900;
    text-align: center;
    font-size: 2.5em;
    letter-spacing: 2px;
    padding: 15px;
    margin: 100px 0 0 0;
    border-bottom: 4px solid #00839e;
  }
  #mainArea article h2 span {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.5em;
    display: block;
    text-align: center;
    margin-top: 5px;
  }
  #mainArea article h4 {
    font-family: 'Noto Sans JP', sans;
    color: #231815;
    text-align: center;
    background-color: #fbce00;
    padding: 20px;
    font-size: 2.5em;
    font-weight: 900;
    border-radius: 10px 10px 0 0;
    margin: 100px 0 50px 0;
    letter-spacing: 3px;
  }
  #mainArea article section p img {
    float: left;
    width: 47%;
    margin-right: 6%;
  }
  #mainArea article section p img:nth-child(2) {
    margin: 0;
  }
  #mainArea .mainTXT {
    font-family: 'Noto Sans JP';
    line-height: 2.2;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-align: justify;
    font-weight: 500;
    margin: 0 0 50px 0;
    clear: both;
    padding-top: 10px;
  }
  #mainArea .mainTXT span {
    color: #d7003a;
    font-weight: 900;
    font-size: 1.2em;
  }
  #mainArea article section ul {
    width: 100%;
  }
  #mainArea .point li {
    background-color: #F5F6F7;
    margin-bottom: 10px;
    padding: 15px;
    box-sizing: border-box;
    width: 24%;
    float: left;
    margin: 0 1.231815% 0 0;
    height: 230px;
  }
  #mainArea .point li:nth-child(4) {
    margin-right: 0;
  }
  #mainArea .point li dt .number {
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: #00afcc;
    padding-top: 6px;
    box-sizing: border-box;
    font-family: Noto Sans JP;
    text-align: center;
    display: inline-block;
    letter-spacing: 1px;
    font-size: 1.1em;
    margin-right: 10px;
  }
  #mainArea .point li dt .number span {
    font-size: 0.7em;
    display: block;
  }
  #mainArea .point li dt .numberTXT {
    display: inline-block;
    font-family: 'Noto Sans JP', sans;
    font-size: 1.25em;
    font-weight: 900;
    vertical-align: super;
  }
  #mainArea .point li dd {
    font-family: 'Noto Sans JP';
    margin: 20px 0;
    text-align: justify;
    line-height: 1.8;
  }
  #mainArea .three h3 {
    float: left;
    width: 30%;
  }
  #mainArea .three h3 img {
    width: 100%;
  }
  #mainArea .three .mainTXT {
    float: left;
    width: 65%;
    margin-left: 5%;
    clear: none;
    margin-bottom: 60px;
  }
  #mainArea #contents h5 {
    width: 100%;
    background-color: #f2f2f2;
    padding: 20px 0;
    font-size: 1.2em;
    letter-spacing: 1px;
    line-height: 2.2;
    font-family: 'Noto Sans JP';
    font-weight: 500;
    text-align: center;
    color:#231815;
  }
  #mainArea #contents h5 span{
    font-size:1.6em;
    font-weight:bold;
    color:#231815;
  }
  #mainArea .list {
    margin: 2% auto;
  }
  #mainArea .list li {
    padding: 20px;
    background: #231815;
    text-align: center;
    color: #fff;
    font-family: 'Noto Sans JP';
    letter-spacing: 1px;
    line-height: 1.8;
    font-weight: 900;
    font-size: 1.2em;
    margin: 0 0.5% 0 0.75%;
    width: 32%;
    float: left;
    box-sizing: border-box;
  }
  #mainArea .list li:nth-child(3) {
    margin: 0;
  }
  #mainArea .FLwork {
    background-image: url("../../images/renovation/bg_work.png");
    background-size: cover;
    margin-bottom: 10px;
    width: 100%;
    height: 250px;
    display: block;
    position: relative;
  }
  #mainArea .FLsite {
    background-image: url("../../images/renovation/fl_hp.png");
    background-size: cover;
    width: 100%;
    height: 250px;
    display: block;
    position: relative;
  }
  #mainArea .FLwork img, #mainArea .FLsite img {
    background: #000;
    padding: 80px 30px;
    box-sizing: border-box;
    position: absolute;
    right: 0;
    height: 250px;
    width: 400px;
  }


#mainArea .btn005 a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0.75em 2em;
	width: 300px;
	color: #ffffff;
	font-size: 20px;
	font-weight: bold;
	background-color: #00839e;
	box-shadow: 0 5px 0 #036977;
	transition: 0.3s;
	border-radius: 40px;
  }
  
  #mainArea .btn005 a::after {
	content: '';
	width: 10px;
	height: 10px;
	border-top: 3px solid #ffffff;
	border-right: 3px solid #ffffff;
	transform: rotate(45deg);
  }
  
  #mainArea .btn005 a:hover {
	transform: translateY(3px);
	text-decoration: none;
	box-shadow: 0 2px 0 #5B8986;
  }



  .mgT10{
    margin-top: 10px;
  }
  .mgT20{
    margin-top: 20px;
  }
  .mgT30{
    margin-top: 30px;
  }
  .mgT40{
    margin-top: 40px;
  }
  .mgT50{
    margin-top: 50px;
  }
  .mgT100{
    margin-top: 100px;
  }

  .mgB10{
    margin-bottom: 10px;
  }
  .mgB20{
    margin-bottom: 20px;
  }
  .mgB30{
    margin-bottom: 30px;
  }
  .mgB40{
    margin-bottom: 40px;
  }
  .mgB50{
    margin-bottom: 50px;
  }
  .mgB100{
    margin-bottom: 100px;
  }


  .titlebox {
    margin: 2em 0;
    background: #F5F6F7;
  }
  .titlebox .titletext {
    font-size: 2.5em;
    background: #fbce00;
    padding: 20px;
    text-align: center;
    color: #231815;
    font-weight: 900;
    letter-spacing: 0.05em;
    border-radius: 10px 10px 0 0;
  }
  .titlebox p {
    padding: 30px 40px;
    margin: 0;
    font-family: 'Noto Sans JP';
    line-height: 2.2;
    font-size: 1.1em;
    letter-spacing: 1px;
    text-align: justify;
    font-weight: 500;
  }
  .titlebox span {
    color: #d7003a;
    font-weight: bold;
    font-size: 1.3em;
  }

  #mainArea .before {
    position: relative;
    }
  
  #mainArea .before p {
    position: absolute;
    top: 0;/*画像の左上に配置*/
    left: 0;
    margin: 0; /*余計な隙間を除く*/
    color: white;/*文字を白に*/
    background: #999999;/*背景色*/
    font-size: 20px;
    line-height: 1;/*行高は1に*/
    weight: bold;
    padding: 10px 20px;/*文字周りの余白*/
    }

    #mainArea .after {
      position: relative;
      }
    
    #mainArea .after p {
      position: absolute;
      top: 0;/*画像の左上に配置*/
      left: 0;
      margin: 0; /*余計な隙間を除く*/
      color: white;/*文字を白に*/
      background: #64C0AB;/*背景色*/
      font-size: 20px;
      line-height: 1;/*行高は1に*/
      weight: bold;
      padding: 10px 20px;/*文字周りの余白*/
      }

    #mainArea .nikaramus{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
      }
      #mainArea .nikaramu{
        width: 47%;
      }

      #mainArea .nikaramusB{
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
      }
      #mainArea .nikaramuB{
        width: 49.3%;
      }
      #mainArea .slider2{
        width:525px;
      height:350px;
      margin:auto;
      }
      .slider3{
        width:980px;
      margin:auto;
      }

}

#nav {
  padding: 2.5% 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
 
#nav li a {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  width: 150px;
  height: 50px;
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  background-color: #00839e;
  box-shadow: 0 5px  #036977;
  transition: 0.3s;
  border-radius: 5px;
  margin-right: 5px;
  margin-bottom: 10px;
  align-items: center;
  font-size:16px;
}
#nav li :hover {
  box-shadow: none;
  transform: translateY(5px);
}