@charset "utf-8";

/*------------------------------
		all
------------------------------*/
*{
	box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body{
	display: flex;
	width: 100%;
	min-height: 100vh;
	line-height: 1.8;
  letter-spacing: 2px;
	color: #000;
	font-family: "Montserrat","游ゴシック",YuGothic,"ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	font-size: 16px;
	font-weight: bold;
	flex-direction: column;
	overflow-x: hidden!important;
}
img{
	max-width: 100%;
	vertical-align: middle;
}
a{
	text-decoration: none;
	color: #333;
}
.pc_hide{
	display: none;
}


/*------------------------------
		header
------------------------------*/
#header{
  position: relative;
	padding: 30px 100px;
  z-index: 1;
}

#header h1{
  width: 150px;
}


/*------------------------------
		mainContents
------------------------------*/
section{
	padding: 80px 0;
}
.inner{
  width: 1000px;
  margin: 0 auto;
}
iframe{
  width: 100%;
  height: 560px;
}

/*　見出し　*/
.ttl_box{
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}
.ttl_box .ttl_img{
  width: 285px;
}
.ttl_box h2{
  margin-left: 40px;
  font-size: 35px;
}
.ttl_box h2 span{
  font-size: 25px;
}

/*　ボタン　*/
.btn_black{
  display: block;
  width: 500px;
  margin: 50px auto 0;
  padding: 15px 0;
  text-align: center;
  background: #000;
  border: 1px solid #000;
}
.btn_black span{
  position: relative;
  padding-right: 25px;
  color: #fff;
  font-size: 22px;
  background: url("../img/icn_link_01.png")no-repeat right center/15px;
}
.btn_black:hover{
  background: #fff;
}
.btn_black:hover span{
  color: #000;
  background: url("../img/icn_link_02.png")no-repeat right center/15px;
}

/*　mv　*/
.mv_wrap{
  position: relative;
  top: -90px;
  height: 600px;
  margin-right: 90px;
  background: #000;
}
.mv_wrap .inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 180px 0;
}
.mv_wrap .inner .logo_tagline{
  width: 275px;
}
.mv_wrap .inner .anchor_list{
  display: flex;
}
.mv_wrap .inner .anchor_list li{
  width: 195px;
}
.mv_wrap .inner .anchor_list li a{
  display: block;
  position: relative;
  bottom: 0;
  padding-bottom: 5px;
  transition: .3s all;
}
.mv_wrap .inner .anchor_list li a:hover{
  bottom: -5px;
}
.mv_wrap .inner .anchor_list li + li{
  margin-left: 25px;
}
.mv_wrap .sns_list{
  position: absolute;
  top: 0;
  bottom: 0;
  right: -60px;
  height: 105px;
  margin: auto;
  z-index: 1;
}
.mv_wrap .sns_list li + li{
  position: relative;
  padding-top: 40px;
}
.mv_wrap .sns_list li + li::after{
  position: absolute;
  content:"";
  top: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333;
}

/*　service　*/
#service .service_box{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#service .service_box + .service_box{
  margin-top: 60px;
}
#service .service_box:nth-of-type(odd){
  flex-direction: row-reverse;
}
#service .service_box .tx{
  width: calc(100% - 630px);
}
#service .service_box .tx .service_icn{
  margin-bottom: 15px;
  text-align: center;
}
#service .service_box iframe{
  width: 600px;
  height: 330px;
}


/*------------------------------
		footer
------------------------------*/
#footer{
  margin-top: 100px;
  padding: 10px 0;
  background: #000;
}
#footer .copyRight{
  text-align: center;
  color: #fff;
}


  

@media screen and (max-width: 767px){
	
	/*------------------------------
			all
	------------------------------*/
	body{
		font-size: 14px;
    line-height: 1.5;
	}
  .inner{
    width: 100%;
  }
	.pc_hide{
		display: block;
	}
	.sp_hide{
		display: none;
	}
  
  /*------------------------------
			header
	------------------------------*/
  #header{
    padding: 15px 20px;
  }
  #header h1{
    width: 100px;
  }
	
	/*------------------------------
			mainContents
	------------------------------*/
  section{
    padding: 50px 0;
  }
  .inner{
    width: 100%;
    padding: 0 15px;
  }
  iframe{
    height: 180px;
  }
  
  /*　見出し　*/
  .ttl_box{
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }
  .ttl_box .ttl_img{
    width: 200px;
    margin: 0 auto;
  }
  .ttl_box h2{
    margin-top: 20px;
    margin-left: 0;
    font-size: 22px;
  }
  .ttl_box h2 span{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 18px;
  }
  
  /*　ボタン　*/
  .btn_black{
    width: 100%;
    margin: 30px auto 0;
  }
  .btn_black span{
    font-size: 16px;
  }
  
	/*　mv　*/
  .mv_wrap{
    top: -50px;
    height: auto;
    margin-right: 50px;
  }
  .mv_wrap .inner{
    display: block;
    height: auto;
    padding: 50px 0;
  }
  .mv_wrap .inner .logo_tagline{
    width: 250px;
    margin: 20px auto;
  }
  .mv_wrap .inner .anchor_list{
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 15px;
    padding: 0 15px;
  }
  .mv_wrap .inner .anchor_list li{
    width: calc((100% - 15px)/2);
  }
  .mv_wrap .inner .anchor_list li + li{
    margin-left: 15px;
  }
  .mv_wrap .sns_list{
    right: -40px;
  }
  .mv_wrap .sns_list li{
    width: 30px;
  }
  
  /*　service　*/
  #service .service_box{
    display: block;
  }
  #service .service_box + .service_box{
    margin-top: 30px;
  }
  #service .service_box .tx{
    width: 100%;
  }
  #service .service_box iframe{
    width: 100%;
    height: 180px;
    margin-top: 15px;
  }
	
	/*------------------------------
			footer
	------------------------------*/
  #footer .bnr_list{
    flex-wrap: wrap;
  }
  #footer .bnr_list li{
    width: calc((100% - 15px)/2);
  }
  #footer .bnr_list li:nth-of-type(n+3){
    margin-top: 15px;
  }
  #footer .bnr_list li a{
    width: 100%;
  }
	.copyRight{
		font-size: 12px;
	}
}