@charset "UTF-8";
html{
  font-size: 10px
}
body{
  font-family: "MS Pゴシック",sans-serif;
  background-color: #2bddff;
  line-height: 1.7;
}
a{
  text-decoration: none;
}




/*ヘッダー---------------------------------------------------*/
.pc-header{
  width: 100%;
  height: 13%;
  display: flex;
  position: fixed;
  z-index: 2;
  top: 0;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, .94);
}

.logo{
  width: 25%;
  padding-left: 10px;
  padding-top: 1.7%;
}
.logo:hover{
  opacity: 0.7;
  transition: 0.5s;
}

#menu{
  list-style-type: none;
  width: 40%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: 4%;
}
#menu li{
  position: relative;
  width: 15%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}
#menu li p{
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.15rem;
  cursor: pointer;
}
#menu li a{
  display: block;
  margin: 0;
  padding: 13px 0;
  color: #333;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  text-decoration: none;
  letter-spacing: 0.15rem;
}
#menu li ul{
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
  margin-top: 0px;
}
#menu li:last-child ul{
  left: -100%;
  width: 100%
}
#menu li ul li{
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #333;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}
#menu li ul li a{
  padding: 11px 15px;
  background-color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  font-weight: bold;
  color: #333;
  text-align: left;
}


/*ホバー時下線----------------------------*/
#menu li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#menu li:hover > a:hover::after {
  transform: scale(1, 1);
}
#menu li ul li a::after {
  position: absolute;
  bottom: 0px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
#menu li ul li:hover > a:hover::after {
  transform: scale(1, 1);
}
/*---------------------------------------*/
#menu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-bottom: 1px solid #fff;
}
#menu li:hover ul li:first-child{
  border-top: 0;
}
#menu li:hover ul li:last-child{
  border-bottom: 0;
}

/* ここから下がハンバーガーメニューに関するCSS */
/*スマートフォンヘッダー---------------------------------------------------*/
/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(250, 250, 250, 0.98);
}
.sp-header {
  display: none;
}
@media screen and (max-width: 1080px){
  .pc-header{
    display: none;
  }
}
@media screen and (max-width: 1080px){
  .sp-header{
    display: block;
    top: 0;
    z-index: 1;
    background: var(--background-navbar);
    position: fixed;
    width: 100%;
    height: 52px;
  }
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 52px;
  padding: 0 0 10px 0;
  clear: both;
  background: var(--background-navbar);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a ,.sp-service {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #333;
  opacity: 0;
  transition: 0.5s;
}


.menu li {
  border-top: 1px solid rgb(75, 75, 75);
  padding: 15px 0;
  margin: 0 54px;
  opacity: 0;
  transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #333;
  display: block;
  height: 3.5px;
  width: 26px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #333;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 52px;
  position: absolute;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Navbar Text */
.navtext {
  position: absolute;
  font-weight: bold;
  color: #333;
  letter-spacing: 2px;
  font-size: 15px;
}


/*トップ---------------------------------------------------*/
#top{
  margin-top: 8%;
  margin-bottom: 8%;
  height: 500px;
}
@media screen and (max-width: 530px){
  #top {
    height: 896px;
  }
}
#top h2{
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.6rem;
  float: right;
  transform: rotate(-90deg);
  margin-right: -70px;
  margin-top: -30px;
}
@media screen and (max-width: 530px){
  #top h2{
    margin-top: -40px;
  }
}
#top h1{
  position: absolute;
  color: #fff;
  top: 35%;
  left: 15%;
  line-height: 1;
  font-size: 14rem;
  font-family: 'Oswald', sans-serif;
}

@media screen and (max-width: 800px){
  #top h1{
    font-size: 10rem;
    left: 7%;
    top: 30%;
    letter-spacing: 0.01rem;
  }
}
@media screen and (max-width: 530px){
  #top h1{
    font-size: 9rem;
    left: 5%;
    top: 38%;
    letter-spacing: 0.01rem;
  }
}

.album {
	margin: auto;
	position: relative;
}
.album-b{
  display:none;
}
@media screen and (max-width: 530px){
  .album{
    display: none;
  }
}
@media screen and (max-width: 530px){
  .album-b{
    display: block;
  }
}
.album img, .album-b img {
	width: 50%;
	animation-name: album;
	-webkit-animation-name: album;
	animation-duration: 15s;
	-webkit-animation-duration: 15s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	opacity: 0;
}

.album .img1{
	display: block;
	margin: 0 auto;
  margin-right: 0;
  width: 700px;
  margin-top: 60px;
}
.album-b .img11{
	display: block;
	margin: 0 auto;
  margin-right: 0;
  width: 320px;
  margin-top: 30px;
  margin-left: 30px;
}
.album .img2{
	animation-delay:5s;
	-webkit-animation-delay:5s;
	position: absolute;
	top: 0;
  right: 0;
  width: 700px;
}
.album-b .img12{
	animation-delay:5s;
	-webkit-animation-delay:5s;
	position: absolute;
	top: 200px;
  right: 0;
  width: 350px;
}
@media screen and (max-width: 1080px){
  .album .img1, .album .img2{
    width: 600px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 1080px){
  .album .img2{
    width: 600px;
    margin-top: 0px;
  }
}
@media screen and (max-width: 800px){
  .album .img1, .album .img2{
    width: 450px;
    padding-top: 60px;
  }
}
@media screen and (max-width: 530px){
  .album .img1, .album .img{
    width: 380px;
    padding-top: 70px;
  }
}
.album .img3{
	animation-delay:10s;
	-webkit-animation-delay:10s;
	position: absolute;
	top: -10px;
  right: 15%;
  width: 300px;
}
.album-b .img13{
	animation-delay:10s;
	-webkit-animation-delay:10s;
	position: absolute;
	top: 20px;
  width: 430px;
}
@media screen and (max-width: 1080px){
  .album .img3 {
    width: 260px;
  }
}
@media screen and (max-width: 530px){
  .album-b .img13{
    width: 340px;
  }
}

@keyframes album {
	0% {
		opacity: 0;
	}
	12.5% {
		opacity: 1;
	}
	27.5% {
		opacity: 1;
	}
	40% {
		opacity: 0;
	}
}

@-webkit-keyframes album {
	0% {
		opacity: 0;
	}
	12.5% {
		opacity: 1;
	}
	27.5% {
		opacity: 1;
	}
	40% {
		opacity: 0;
	}
}


/*タイトル--------------------------------------------------*/
#title{
  background-color: #fff;
  text-align: center;
  padding-top: 10%;
  padding-bottom: 10%;
}
@media screen and (max-width: 880px){
  #title {
    padding-top: 25%;
    padding-bottom: 25%;
  }
}
#title h1{
  font-size: 2.5rem;
}
@media screen and (max-width: 880px){
  #title h1{
    font-size: 1.6rem;
  }
}
#title .pc-title{
  width: 75%;
  filter: drop-shadow(0px 3px 10px rgba(0,0,0,.3));
  margin-top: 6%;
}
#title .sp-title{
  display: none;
}
@media screen and (max-width: 1080px){
  #title .pc-title{
    display: none;
  }
}
@media screen and (max-width: 1080px){
  #title .sp-title{
    display: block;
    width: 85%;
    margin: 50px auto;
  }
}
#title h2{
  margin-top: 4%;
  margin-bottom: 8%;
}
@media screen and (max-width: 880px){
  #title h2{
    font-size: 1.1rem;
    width: 90%;
    margin: 0 auto;
    margin-bottom: 11%;
  }
}
#title a{
  width: 22.5%;
  font-family: sans-serif;
  font-size: 1.4rem;
  color: #2bddff;
  background-color: #fff;
  border: 1px solid #2bddff;
  padding: 0.8% 10%;
}
@media screen and (max-width: 880px){
  #title a{
    padding: 15px 150px;
    font-size: 1.1rem;
    bottom: 100px;
  }
}
#title a:hover{
  background-color: #2bddff;
  color: #fff;
  transition: .3s;
}


/*サービス--------------------------------------------------*/
#service{
  background-color: #fff;
  text-align: center;
}
#service h1{
  background-color: #126d7e;
  font-size: 2.5rem;
  color: #fff;
  line-height: 5;
  letter-spacing: 1rem;
}
#service .pc-service{
  width: 80%;
  margin-top: 5%;
  margin-bottom: 10%;
}
#service .sp-s{
  display: none;
}
@media screen and (max-width: 880px){
  #service .sp-s{
    display: block;
    margin: 0 auto;
    width: 100%;
    padding: 20px 0;
    padding-bottom: 130px;
  }
}
@media screen and (max-width: 880px){
  #service .sp-s img{
    width: 100%;
  }
}
@media screen and (max-width: 880px){
  #service .sp-service-house, .sp-service-air{
    padding-bottom: 70px;
  }
}
@media screen and (max-width: 880px){
  #service .pc-service{
    display: none;
  }
}

/*その他--------------------------------------------------*/
#other{
  text-align: center;
}
#other .other{
  display: flex;
}
#other .other-left{
  width: 100%;
  position: relative;
}
@media screen and (max-width: 880px){
  #other .other{
    display: block;
  }
}

#other .other-left .other-left-title{
  position: absolute;
  top: 4%;
  left: 3%;
  color: #fff;
  text-align: left;
}
#other .other-left .other-left-title p{
  font-size: 1.5rem;
}
#other .other-left .other-left-title h2{
  line-height: 1.2;
  font-size: 3rem;
}

#other .other-left img{
  width: 100%;
  height: 100%;
}
#other .other-right{
  width: 100%;
  position: relative;
}
@media screen and (max-width: 880px){
  #other .other-right{
    margin-top: -8px;
  }
}
#other .other-right .other-right-title1{
  position: absolute;
  top: 4%;
  left: 3%;
  color: #fff;
  text-align: left;
}
#other .other-right .other-right-title2{
  position: absolute;
  top: 54%;
  left: 3%;
  color: #fff;
  text-align: left;
}
#other .other-right .other-right-title1 p{
  font-size: 1.5rem;
}
#other .other-right .other-right-title1 h2{
  line-height: 1.2;
  font-size: 3rem;
}
#other .other-right .other-right-title2 p{
  font-size: 1.5rem;
}
#other .other-right .other-right-title2 h2{
  line-height: 1.2;
  font-size: 3rem;
}
#other .other-left .other-left-more a{
  position: absolute;
  bottom: 4%;
  right: 5%;
  padding: 15px 60px;
  background-color: #FFF;
  color: #333;
  border-radius: 25px;
  font-weight: bold;
  border: solid #2bddff;
}
#other .other-right .other-right-more a{
  position: absolute;
  bottom: 4%;
  right: 5%;
  padding: 15px 60px;
  background-color: #FFF;
  color: #333;
  border-radius: 25px;
  font-weight: bold;
  border: solid #2bddff;
}
#other .other-right .other-right-more1 a{
  position: absolute;
  bottom: 54%;
  right: 5%;
  padding: 15px 60px;
  background-color: #FFF;
  color: #333;
  border-radius: 25px;
  font-weight: bold;
  border: solid #2bddff;
}
#other .other-left .other-left-more a:hover{
  background-color: #333;
  color: #fff;
  border: solid #fff;
  transition: 0.3s;
}
#other .other-right .other-right-more a:hover{
  background-color: #333;
  color: #fff;
  border: solid #fff;
  transition: 0.3s;
}
#other .other-right .other-right-more1 a:hover{
  background-color: #333;
  color: #fff;
  border: solid #fff;
  transition: 0.3s;
}
#other .other-right img{
  width: 100%;
  vertical-align: bottom;
}
#other .other-right .q-a{
  height: 50%;
}
#other .other-right .company{
  height: 50%;
}


/*お問い合わせ--------------------------------------------------*/
#contact{
  margin-top: 10%;
  text-align: center;
  background-color: #2bddff;
  padding-bottom: 5%;
}
#contact .contact-title{
  display: inline-block;
  border-bottom: solid #fff;
  border-width: thick;
  width: 80%;
  margin-top: 8%;
}
#contact .contact-title span{
  display: inline-block;
  font-size: 2rem;
  color: #333;
  background-color: #fff;
  line-height: 3;
  width: 40%;
  border-radius: 50px;
  position: absolute;
  margin-top: -28px;
  right: 30%;
}
@media screen and (max-width: 880px){
  #contact .contact-title span{
    font-size: 1.3rem;
    margin-top: -18px;
  }
}
@media screen and (max-width: 880px){
  #contact .contact-title{
    border-bottom: solid #fff 3px;
  }
}

#contact ul{
  list-style: none;
  margin: 8%;
  align-items: center;
}
#contact li{
  width: 28%;
  display: inline-block;
  margin: 0 2%;
  vertical-align: middle;
}
@media screen and (max-width: 880px){
  #contact ul{
    text-align: center;
  }
}
@media screen and (max-width: 880px){
  #contact li{
    margin: 3%;
    width: 90%;
  }
}
/*ここからインスタ------------------------*/
#contact .insta{
  background-color: #EFE4EC;
  height: 180px;
  padding-top: 3%;
}
#contact .insta-link :hover{
  opacity: .85;
  transition: .7s;
}
#contact .insta ul{
  margin: 0;
}
#contact .insta li{
  margin: 0;
  width: 45%;
  margin-top: -5%;
}
@media screen and (max-width: 1300px){
  #contact .insta li{
    margin-top: 0%;
  }
}
#contact .insta-lr{
  height: 170px;
}
#contact .insta-qr{
  width: 90%;
}
#contact .insta-ud{
  width: 100%;
  margin-left: 3%;
  float: left;
}
#contact .insta-ud img{
  width: 100%;
}
#contact .insta-ud p{
  font-size: 1.2rem;
  border: solid #333 1.2px;
  padding: 2%;
}
@media screen and (max-width: 1050px){
  #contact .insta{
    height: 150px;
  }
}
@media screen and (max-width: 880px){
  #contact .insta-qr{
    width: 120px;
    vertical-align: middle;
  }
}
@media screen and (max-width: 580px){
  #contact .insta-qr{
    width: 90px;
    vertical-align: middle;
    margin-top: 20px;
    margin-left: -10px;
  }
}
@media screen and (max-width: 880px){
  #contact .insta-ud img{
    width: 160px;
  }
}

@media screen and (max-width: 580px){
  #contact .insta-ud img{
    width: 130px;
    margin-top: 20px;
    margin-left: -10px;
  }
}
@media screen and (max-width: 880px){
  #contact .insta-logo{
    margin-left: -40px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 880px){
  #contact .insta-ud p{
    width: 90%;
    margin-top: -4%;
    margin-left: -8px;
  }
}
/*ここから電話------------------------*/
#contact .tel{
  background-color: #fff;
  position: relative;
  vertical-align: middle;
  height: 180px;
}
#contact .tel h3{
  font-size: 1.5rem;
  color: #333;
  margin-top: 30px;
}
#contact .tel h2{
  font-size: 2.5rem;
  line-height: 2.5;
  margin-top: 5px;
  letter-spacing: 0.2rem;
  color: #126d7e;
}
#contact .tel h4{
  font-size: 1.3rem;
  margin-top: 2px;
}
@media screen and (max-width: 1050px){
  #contact .tel{
    height: 150px;
  }
}
@media screen and (max-width: 1050px){
  #contact .tel h2{
    font-size: 2rem;
  }
}
/*ここからメール------------------------*/
#contact .mail{
  background-color: #fff;
  height: 180px;
}
#contact .mail h3{
  font-size: 1.5rem;
  color: #333;
  margin-top: 30px;
}
#contact .mail h4{
  background-color: #2bddff;
  border: solid #d1d1d1;
  border-width: thin;
  width: 80%;
  padding: 5% 0;
  font-size: 1.5rem;
  margin: 25px auto;
  letter-spacing: 0.2rem;
  color: #333;
}
#contact .mail h4:hover{
  opacity: 0.7;
}
@media screen and (max-width: 1050px){
  #contact .mail{
    height: 150px;
  }
}
@media screen and (max-width: 880px){
  #contact .mail h4{
    padding: 3% 0;
  }
}
#contact h4{
  font-size: 2.3rem;
  color: #5c5c5c;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 880px){
  #contact h4{
    font-size: 1.3rem;
  }
}
/*フッター--------------------------------------------------*/
.last{
  background-color: #126d7e;
  text-align: center;
  padding-bottom: 2.5%;
}
.last h4{
  color: #fff;
  font-size: 2.5rem;
  padding-top: 7%;
  letter-spacing: 0.4rem;
}
@media screen and (max-width: 880px){
  .last h4{
    font-size: 1.2rem;
    letter-spacing: 0.2rem;
    margin-top: 10%;
    padding-top: 20%;
  }
}
.last a{
  -webkit-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  -moz-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  -ms-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  -o-transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  transition: all 200ms cubic-bezier(0.390, 0.500, 0.150, 1.360);
  display: block;
  margin: 50px auto;
  width: 80%;
  text-decoration: none;
  border-radius: 4px;
  padding: 20px;
  font-size: 1.5rem;
  letter-spacing: 1rem;
}

a.button {
  color: rgba(18, 109, 126, 0.6);
  background-color: #fff;
  box-shadow: rgba(43, 221, 255, 0.4) 0 0px 0px 2px inset;
  border: solid #2bddff 2px;
}

a.button:hover {
  color: rgba(255, 255, 255, 0.85);
  box-shadow: rgba(43, 221, 255, 0.7) 0 0px 0px 40px inset;
  border: solid #fff 2px;
}
@media screen and (max-width: 880px){
  .last h5{
    font-size: 0.9rem;
  }
}
.copy{
  background-color: #fff;
  color: #333;
  line-height: 4rem;
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 880px){
  .copy{
    font-size: 0.8rem;
    line-height: 2rem;
  }
}
