/*全デバイス共通*/
*{
  margin: 0;
  padding: 0
}

html {
 box-sizing: border-box;
}
*, *:before, *:after {
 box-sizing: inherit;
}

body {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}


li {
  list-style: none;
}

a {
  text-decoration: none;
}

#container {
  margin: 0 auto;
  background-color: #fff;
  color: #150035;
}

.htmlFixed{
    height: 100%;
    overflow: hidden;
}

/*header-------------------*/




.pc_only{
	display: block !important;
}
.sp_only{
	display: none !important;
}
@media only screen and (max-width:768px){
	.pc_only{
		display: none !important;
	}
	.sp_only{
		display: block !important;
	}
	.sp_none{
		display: none !important;
	}
}
main{
	margin: 0 auto;
	width: 100%;
	color: #444;
}
section{
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 0;
}
.flex{
	display: flex;
}
h2{
	margin-bottom: 40px;
	text-align: center;
}
h2 img{
	display: block;
	margin: 0 auto;
	padding-bottom: 10px;
	border-bottom: 1px dotted #4EBDC3;
}
h2 span{
	display: block;
	margin: 30px 0 0;
	font-size: 20px;
	font-weight: bold;
	font-family: 'Noto Sans JP', sans-serif;

}
.h2_txt{
  width: 800px;
  margin: 0 auto;
}
.link-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	height: 66px;
	margin: 80px auto;
	border: 1px solid #4EBDC3;
	border-radius: 33px;
	background: url(/images/home/btn_arrow.png) right 10px center no-repeat;
	color: #444;
	font-weight: bold;
}
@media only screen and (max-width:768px){
	.h2_txt{
		width: 94%;
		margin: 0 auto;
	}
	section{
		padding: 40px 0 40px;
	}
	.link-btn{
		display: flex;
		justify-content: center;
		align-items: center;
		width: 320px;
		height: 60px;
		margin: 80px auto 50px;
		border: 1px solid #4EBDC3;
		border-radius: 30px;
		background: url(/images/home/btn_arrow.png) right 10px center no-repeat;
		color: #444;
		font-weight: bold;
	}
}


header .header_inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width: 100%;
	max-width: 1500px;
	height: auto;
	margin: 50px auto;
}
header h1{
	margin: 20px 0 20px 10px;
	color: #444;
	font-size: 20px;
}
header .header_inner > div{
	display: flex;
	align-items: center;
}
header #gnav ul{
	display: flex;
	align-items: center;
}
header #gnav ul li{
	display: flex;
	align-items: center;
	padding: 0 20px;
}
header #gnav ul li:before{
	content: "/";
	display: block;
	margin: 0 25px 0 0;
	color: #4EBDC3;
}
header #gnav ul li:last-of-type:after{
	content: "/";
	display: block;
	margin: 0 0 0 25px;
	color: #4EBDC3;
}
header #gnav ul li a{
	color: #444;
	text-align: center;
	font-size: 15px;
	font-weight: bold;
}
header #gnav ul li a span{
	display: block;
	color: #4EBDC3;
	font-size: 12px;
	font-weight: normal;
}
header .header_tel img{
	width: 280px;
	margin: 0 20px 0 0;
}
header .header_contact_btn img{
	width: 280px;
}
#sp_gnav ul{
	display: none;
}
#sp_gnav .sp_contact_btn img{
	display: none;
}
@media only screen and (max-width:768px){
	header{
		position: fixed;
		top: 0;
		left: 0;
		z-index: 9999;
		width: 100%;
		background: #fff;
	}
	header .header_inner{
		justify-content: space-between;
		height: 64px;
	}
	header h1{
		margin: 0 0 0 5vw;
		font-size: 16px;
	}
	.sp_nav_btn{
		position: relative;
		width: 64px;
		height: 64px;
		background: url(/images/home/hbg.png);
	}
	.sp_nav_btn i{
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 40px;
		height: 1px;
		background: #fff;
		transition: 0.2s;
	}
	.sp_nav_btn i:nth-child(1){
		top: 20px;
	}
	.sp_nav_btn i:nth-child(2){
		top: 50%;
		transform: translate(-50%,-50%);
	}
	.sp_nav_btn i:nth-child(3){
		bottom: 20px;
	}
	.show i:nth-child(1){
		transform: translate(-20px,12px) rotate(45deg);
	}
	.show i:nth-child(2){
		opacity: 0;
	}
	.show i:nth-child(3){
		transform: translate(-20px,-12px) rotate(-45deg);
	}
	.sp_nav .sp_nav_inner{
		position: fixed;
		top: 64px;
		z-index: 9999;
		left: 0;
		opacity: 0;
		visibility: hidden;
		width: 100%;
		height: calc(100vh - 64px);
		background: #fff;
		transition: 0.2s;
	}
	.show .sp_nav_inner{
		opacity: 1;
		visibility: visible;
	}
	#sp_gnav ul{
		display: flex;
		flex-direction: column;
		align-items: center;
	}
	#sp_gnav ul li{
		border-bottom: 1px solid #6CD4BF;
		width: 100%;
		text-align: center;
		background: linear-gradient(45deg,#26A3BD,#52C2BE);
	}
	#sp_gnav ul li a{
		display: block;
		padding: 20px 0;
		width: 100%;
		font-size: 20px;
		color: #fff;
	}
	#sp_gnav ul li a span{
		display: block;
		font-size: 14px;
	}
	#sp_gnav .sp_contact_btn img{
		display: block;
		margin: 20px auto;
	}
}


#contact{
	max-width: 1400px;
	width: 100%;
	height: 500px;
	padding: 100px 0 0;
	background: url(/images/home/contact_bg.jpg) center no-repeat;
}
#contact h2 img{
	border-bottom: 1px dotted #fff;
}
#contact h2 span{
	color: #fff;
}
#contact .contact_flex{
	display: flex;
	justify-content: center;
}
#contact .contact_flex > div{
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 550px;
	height: 350px;
}
#contact .contact_flex > div .icon{
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
}
#contact .contact_tel{
	background: #F0F5F6;
}
#contact .contact_tel h3{
	margin: 0 0 60px;
	padding: 100px 0 5px;
	border-bottom: 1px dotted #444;
	color: #444;
}
#contact .contact_tel img{
	display: block;
	width: 80%;
	max-width: 360px;
	margin: 0 auto;
}
#contact .contact_tel p{
	margin: 45px 0 0;
}
#contact .contact_tel p span{
	margin: 0 8px 0 0;
	padding: 0 4px;
	border: 1px solid #26A3BD;
}
#contact .contact_mail{
	background: linear-gradient(45deg,#26A3BD,#6CD4BF);
}
#contact .contact_mail h3{
	margin: 0 0 40px;
	padding: 60px 0 5px;
	border-bottom: 1px dotted #fff;
	color: #fff;
}
#contact .contact_mail a img{
	display: block;
	width: 80%;
	max-width: 420px;
	margin: 0 auto;
}
@media only screen and (max-width:768px){
	#contact{
		height: auto;
		background: url(/images/home/sp_contact_bg.jpg) center no-repeat;
		background-size: cover;
	}
	#contact .contact_flex{
		flex-direction: column;
	}
}


footer{
	padding: 0 0 10px;
	background: #444;
	color: #fff;
}
footer .footer_inner{
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 240px 0 0;
	background: url(/images/home/bg_parts_2.png) right 20px no-repeat;
}
footer h2{
	margin: 0 0 60px;
	text-align: left;
}
footer .info p{
	font-size: 16px;
	font-weight: lighter;
	line-height: 1.8;
	font-family: 'Noto Sans JP', sans-serif;
}
footer .info .support{
	margin: 0 0 20px;
}
footer .footer_menu{
	width: 50%;
}
footer .footer_menu ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
}
footer .footer_menu ul li{
	width: 40%;
	font-size: 14px;
	margin: 0 0 1em 0;
	padding: 8px 0;
	border-bottom: 1px dotted #26A3BD;
}
footer .footer_menu ul li a{
	color: #fff;
}
footer small{
	display: block;
	margin: 80px 0 15px;
	font-size: 14px;
	font-weight: lighter;
	font-family: 'Noto Sans JP', sans-serif;
	text-align: center;
}
@media only screen and (max-width:768px){
	footer .footer_inner{
		flex-direction: column;
		align-items: center;
		justify-content: space-between;
		margin: 0 auto;
		padding: 160px 0 0;
	}
	footer .info{
		text-align: center;
	}
	footer .footer_menu{
		width: 100%;
	}
	footer .footer_menu ul{
		justify-content: center;
	}
}

#mv{
	position: relative;
	height: 50vw;
	max-height: 750px;
}
#mv .mv_inner{
	position: relative;
	width: 100%;
	max-width: 1600px;
	height: 50vw;
	max-height: 750px;
	margin: 0 auto;
}
#mv .mv_inner picture > *{
	position: absolute;
	z-index: 2;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 1500px;
}
#mv .mv_inner .mv_bg{
	position: absolute;
	z-index: 1;
	top: 50px;
	left: 0;
	width: 100%;
	max-width: 1500px;
	height: 44vw;
	max-height: 650px;
	background: #F0F5F6;
}
#mv .mv_inner .mv_txt{
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 10%;
	transform: translateY(-60%);
	width: 420px;
	color: #fff;
}
#mv .mv_inner .mv_txt .mv_catch{
	margin: 0 0 40px;
	background: #fff;
	color: #26A3BD;
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}
@media only screen and (max-width:768px){
	#mv{
		margin: 64px 0 0;
		height: 100%;
		max-height: 750px;
	}
	#mv .mv_inner{
		height: auto;
		max-height: none;
		margin: 0 auto;
		padding: 0 0 20px;
		background: #F0F5F6;
	}
	#mv .mv_inner picture > *{
		display: block;
		position: relative;
		z-index: 2;
		top: auto;
		right: auto;
		margin: 0 auto;
		width: 90vw;
		max-width: 1500px;
	}
	#mv .mv_inner .mv_bg{
		display: none;
	}
	#mv .mv_inner .mv_txt{
		position: absolute;
		z-index: 3;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-30%);
		width: 80vw;
		color: #fff;
	}
	#mv .mv_inner .mv_txt .mv_catch{
		margin: 0 0 20px;
		background: #fff;
		color: #26A3BD;
		font-size: 24px;
		font-weight: bold;
		text-align: center;
	}
}

#mv_sub{
	position: relative;
	margin: 0 auto;
	width: 100%;
	max-width: 1280px;
	height: 35vw;
	max-height: 450px;
}
#mv_sub .mv_inner{
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1;
	width: 95%;
	max-width: 1600px;
	height: 30vw;
	max-height: 450px;
}
#mv_sub .mv_inner_image{
	position: relative;	
}
#mv_sub .mv_inner_image picture > *{
	display: block;
	position: relative;
	z-index: 2;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 1500px;
}
#mv_sub .mv_inner_image h2{
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	padding: 0 20px;
	background: #fff;
	color: #26A3BD;
	font-size: 28px;
	font-weight: bold;
	text-align: center;
}
#mv_sub .mv_bg{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 80%;
	height: 60%;
	background: linear-gradient(45deg,#26A3BD,#6CD4BE);
}

#mv_sub .bread{
	display: flex;
	margin: 20px 0 0 50px;
	color: #fff;
}
@media only screen and (max-width:768px){
	#mv_sub{
		margin: 0;
		height: 100%;
		max-height: 750px;
	}
	#mv_sub .mv_inner{
		position: relative;
		height: auto;
		max-height: none;
		margin: 0 auto;
		padding: 0 0 20px;
	}
	#mv_sub .mv_inner picture > *{
		display: block;
		position: relative;
		z-index: 2;
		top: auto;
		right: auto;
		margin: 0 auto;
		width: 90vw;
		max-width: 1500px;
	}
	#mv_sub .mv_inner .mv_bg{
		display: none;
	}
	#mv_sub .mv_inner .mv_txt{
		position: absolute;
		z-index: 3;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-30%);
		width: 80vw;
		color: #fff;
	}
	#mv_sub .mv_inner .mv_txt .mv_catch{
		margin: 0 0 20px;
		background: #fff;
		color: #26A3BD;
		font-size: 24px;
		font-weight: bold;
		text-align: center;
	}
}



/*タブレット対応ーーーーーーーーーーーーーーーーーーー*/
@media only screen and (max-width:1367px) {
  #container {
    width: 100%;
    overflow: hidden;
  }

  .br_tb::before {
    content: "\A" ;
    white-space: pre ;
  }


  header {
    position: relative;
  }

  .header_contact {
    display: none;
  }

  .header_logo {
    margin-left: 10px;
  }

.global-nav {
  position: fixed;
  right: -400px;
  top: -50px;
  width: 380px;
  height: 100vh;
  background-color: #fff;
  transition: all .6s;
  z-index: 200;
  text-align: center;
}

.hamburger {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 300;
  position: fixed;
}

.global-nav__list {
  list-style: none;
  display: block;
  width: 380px;
  height: 100vh;
  padding: 30px;
  margin-top :50px;
  text-align: center;
  background-color: #fff;
  font-size: 14px;
}


.global-nav__item {
  text-align: center;
  font-size: 16px;
}
.header_a {
  display: block;
  padding: 8px 0;
  margin-top: 25px;
  text-decoration: none;
  color: #111;
}

.hamburger__line {
  position: absolute;
  right: 20px;
  width: 40px;
  height: 2px;
  background-color: #111;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 20px;
  position: fixed;
}
.hamburger__line--2 {
  top: 35px;
  position: fixed;
  height: 2px;
}
.hamburger__line--3 {
  top: 50px;
  position: fixed;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0px;
}
.nav-open .black-bg {
  opacity: .8;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 30px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 30px;
}

.button_top {
  font-size: 16px;
  color: #fff;
  width: 100%;
  padding: 5px 0;
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
}

.button_smp {
  line-height: 32px;
}

.button_mail {
  line-height: 40px;
  padding: 8px 0;
}

.button_img {
  width: 25px;
  margin-right: 10px;
  vertical-align: middle;
}


/*contact-------------------------*/

#contact {
  height: 100%;
  width: 100%;
  padding-bottom: 100px;
}

.contact_container {
  width: 95%;
  margin: 0 auto;
}

.contact_h2 {
  font-size: 42px;
  padding-bottom: 30px;
  padding-top: 100px;
}

.contact_item {
  justify-content: center;
  text-align: center;
}

.contact_smp {
  width: 20px;
  margin-right: 8px;
}

.contact_mail {
  width: 25px;
  margin-right: 8px;
}

.button_contact_mail {
  padding: 10px 0;
}

/*logo----------------------------*/
#logo {
  width: 100%;
}
.logo_container {
  width: 95%;
}

/*footer-------------------------*/

}

/*スマホ対応ーーーーーーーーーーーーーーーーーーー*/
@media only screen and (max-width:767px) {

  .br_smp::before {
  content: "\A" ;
  white-space: pre ;
}


/*header------------------------*/

  .header_p1 {
    font-size: 30px;
  }

  .rightbule {
    font-size: 40px;
  }

  .header_p2 {
    font-size: 18px;
  }

  .scale {
    font-size: 30px;
  }

  .header_p3 {
    font-size: 12px;
    margin-top: -8px;
    margin-right: -30px;
  }


  .gnav_button {
    font-size: 16px;
    color: #fff;
    width: 100%;
    line-height: 32px;
    padding: 5px 0;
    margin-top: 30px;
    text-align: center;
  }

  .gnav_button_mail {
    line-height: 33px;
  }

  .button_img {
    width: 25px;
    display: inline-block;
  }


  .gnav_button_smp {
    display: flex;
    padding-left: 25%;
  }

  .nav_nomber {
    display: block;
    color: #fff;
    top: 0;
  }

/*contact------------------------*/
  .contact_container {
    width: 95%;
  }
  .contact_h2 {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .contact_flex {
    display: block;
  }

 .button_contact {
   margin-left: auto;
   margin-right: auto;
   margin-top: 30px;
   width: 100%;
   font-size: 20px;
   padding: 10px 30px;
 }

 .button_contact_mail {
   padding: 15px 30px;
 }


 .logo_img {
   width: 280px;
 }

  .gototop {
    position: absolute;
    right: 0;
  }

/*footer----------------------------*/
footer {
  height: 780px;
}

.small {
  margin-bottom: 60px;

}

}
