@charset "utf-8";


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/
html{
	overflow-y: scroll;
	font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	color: #090909;
	background: #FFF;
	font-family:'Noto Sans JP','ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','游ゴシック体', 'Yu Gothic', YuGothic,'メイリオ',Meiryo ,'ＭＳ Ｐゴシック' ,'MS P Gothic' ,sans-serif;
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;	
}

/* fonts */
.en{
	font-family: 'Open Sans', sans-serif;
}


/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/
a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: #090909;
}

.ophover{
	transition: opacity ease .3s;	
}
.ophover:hover{
	opacity: .7;
}

.tel-link{
	pointer-events: none;
}
.mail-link{
	transition: .3s;
}
.mail-link:hover{
	color: #0093c4;
}

/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;		
}

/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,.blur,.zoom,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1.3s;
}
.fade {
	opacity: 0;
	transform: translate(0,0); 
}
.fade01{
	opacity: 0;
	transform: translate(0,50px); 
}
 .fade02 {
	opacity: 0;
	transform: translate(0,-50px); 
}
.fade03 {
	opacity: 0;
	transform: translate(-50px,0); 
}
.fade04 {
	opacity: 0;
	transform: translate(50px,0); 
}
.blur {
  -webkit-filter: blur(14px);
	filter: blur(14px);  
}
.zoom{
  transform: scale(1.1,1.1); 
}
.delay01{
	transition-delay: 0.3s;		
}
.delay02{
	transition-delay: 0.6s;		
}
.delay03{
	transition-delay: 0.9s;		
}
.delay04{
	transition-delay: 1.2s;		
}
.delay05{
	transition-delay: 1.5s;		
}

 .mv {
	opacity: 1;
  -webkit-filter: blur(0);
	filter: blur(0);
	transform: translate(0,0) scale(1,1); 
}


/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp,
.tb-only{
	display: none;	
}
/* box-sizing ---*/	
header, footer, nav, section, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, a, span {
	box-sizing: border-box;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
.inner{
	max-width: 1240px;
	padding: 0 20px;
	margin: 0 auto;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}



/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
.header{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
}
.header .header-cont{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;  
}
.header::before{
  position:absolute;
  left: 0;
  top: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.9);
  opacity: 0;
  transition: .4s;  
}
.header.scroll::before{
  opacity: 1;  
}

@media screen and (max-width: 1240px) {
  .header .header-cont{
    padding: 30px 20px;
  }
  .header h1{
    width: 22vw;
    height: auto; 
  }
}


/* ---------------------------------------------------------------------------
			#Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */
#Gnav{
	display: flex;
  align-items: center;
}
.gnav{
  display: flex;
}
.gnav > li{
  height: 120px;
  margin: 0 20px;
  padding-top: 35px;
}
.gnav > li p a,
.gnav .has-middle p span{
  position: relative;
  display: inline-block;
  padding: 4px 0;
  font-size: 1.7rem;
 /* cursor: pointer;*/
}
.gnav > li p.comingsoon a{
	pointer-events: none;
	opacity: .4;
}
.gnav > li p a::after,
.gnav .has-middle p span:after{
  position:absolute;
  left: 0;
  bottom: 0;
  display: block;
  content: "";
  width: 0;
  height: 2px;
  background: #36a8c7;
  transition: .3s;  
}
.gnav > li.current a::after,
.gnav > li p a:hover::after,
.gnav > li.current span::after,
.gnav .has-middle p span:hover::after{
  width: 100%;
}
.gnav > li p.comingsoon a::after{
	display: none;
}
#Gnav .btn-cv{
  margin-left: 25px;
}
#Gnav .btn-cv a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 290px;
  height: 60px;
  border-radius: 30px;
  background: #f8b433;
  color: #fff;
  font-size: 1.6rem;
  transition: .3s;  
}
#Gnav .btn-cv a:hover{
  background: #fbd285;  
}
#Gnav .btn-cv a span{
  padding-left: 28px;
  background: url(../../img/common/ico_mail_w.svg) no-repeat left center;
  background-size: 18px auto;  
}

.btn-trigger,
#Gnav .btn-close{
  display: none;  
}


.gnav .nav-middle{
  position: absolute;
  display: none;
  padding: 20px 0;
  background: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,.2);
}
.gnav .nav-middle li{
  height: auto;
  padding: 5px 40px;  
}
.gnav .has-middle:hover .nav-middle{
  display: block;
  transform: translate(-15px, 15px);
}
.gnav .has-middle:hover p span::after{
  width: 100%;
}
.gnav .nav-middle a{
  transition: .3s;  
}
.gnav .nav-middle a:hover{
  color: #36a8c7;  
}


@media screen and (max-width: 1240px) {
  .gnav li p a{
    padding: 3px 0;
    font-size: 1.5vw;
  }
  #Gnav .btn-cv a{
    width: 19vw;
    font-size: 1.5vw;
  }
}




/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/

/* 見出し
-----------------------------------------------------------------*/

/* page-hd */
.page-hd{
	position: relative;
	padding: 210px 0 110px;	
}
.page-hd::before{
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	width: 525px;
	height: 375px;
	content: "";
	background: linear-gradient(60deg, rgba(61,184,166,1) 0%, rgba(0,147,196,1) 100%);
	clip-path: polygon(0 0, 100% 100%, 100% 0);	
}
.page-ttl{
	position: relative;
	z-index: 5;
}
.page-ttl .en{
  display: block;
	margin-bottom: 3px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #36a8c7; 	
}
.page-ttl .ja{
  font-size: 6.7rem;
  letter-spacing: .04em;
  line-height: 1;	
}
.page-hd .txt-lead{
	position: relative;
	z-index: 5;
	margin-top: 30px;
	font-size: 3rem;
	line-height: 1.6;
	font-weight: bold;
	color: #0093c4;
}
.page-hd .txt{
	position: relative;
	z-index: 5;
	margin-top: 5px;
}
.page-ttl + .txt{
	margin-top: 35px;	
}

/* .ttl-sec */
.ttl-sec .en{
	display: block;
	margin-bottom: 5px;
  font-size: 1.6rem;
  letter-spacing: .06em;
  color: #36a8c7; 
}
.ttl-sec .ja{
	font-size: 4.8rem;
  letter-spacing: .04em;
  line-height: 1;	
}

/* ttl-cont-sub */
.ttl-cont-sub{
  display: flex;
  font-size: 2.4rem;  
}
.ttl-cont-sub span:first-child{
  margin: .3em 10px 0 0;
  color: #0093c4;
  font-size: 80%;  
}


@media screen and (max-width: 1240px) {
  .page-ttl .ja{
    font-size: 5.5vw;
  }  
}



/* ボタン
-----------------------------------------------------------------*/

/* btn-base */
.btn-base a,
.btn-base > span{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 290px;
	width: 100%;
	height: 60px;
	background: linear-gradient(60deg, rgba(61,184,166,1) 0%, rgba(0,147,196,1) 100%);
	border-radius: 50px;
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.4;
  font-weight: 500;
	letter-spacing: .08em;
	color: #fff;
}
.btn-base a::after,
.btn-base > span::after{
	position:absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  content: "→";
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  transition: .3s;	
}
.btn-base a:hover::after,
a:hover .btn-base > span::after{
	right: 25px;
}

/* 白丸矢印 */
.has-white-arw{
	position: relative;
}
.has-white-arw::before{
  position:absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
  display: block;
  content: "";
  width: 47px;
  height: 47px;
  border-radius: 30px;
  background: #fff;  	
}
.has-white-arw::after{
	position:absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
  display: block;
  content: "→";
  width: 47px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  color: #090909;
  font-family: 'Open Sans', sans-serif;
  transition: .3s;
}
a:hover .has-white-arw::after{
  padding-left: 3px;
}

/* グラデーション丸矢印 */
.has-gradient-arw{
  position: relative;
}
.has-gradient-arw::before{
  position:absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
  display: block;
  content: "";
  width: 47px;
  height: 47px;
  border-radius: 30px;
  background: linear-gradient(60deg, rgba(61,184,166,1) 0%, rgba(0,147,196,1) 100%);   
}
.has-gradient-arw::after{
  position:absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
  display: block;
  content: "→";
  width: 47px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  transition: .3s;
    
}
a:hover .has-gradient-arw::after{
  padding-left: 3px;
}


/* 線丸矢印 */
.has-line-arw{
	position: relative;
}
.has-line-arw::before{
  position:absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
  display: block;
  content: "";
  width: 47px;
  height: 47px;
  border-radius: 30px;
	border: 2px solid #090909;
  background: transparent;  	
}
.has-line-arw::after{
	position:absolute;
  right: 0;
  top: 50%;
  transform: translate(100%,-50%);
  display: block;
  content: "→";
  width: 47px;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 300;
  color: #090909;
  font-family: 'Open Sans', sans-serif;
  transition: .3s;
}
a:hover .has-line-arw::after{
  padding-left: 3px;
}

/* 白線丸矢印 */
.has-line-arw._w::before{
	border-color: #fff;
}
.has-line-arw._w::after{
	color: #fff;
}

/* inq-btn-list */
.inq-btn-list{
  display: flex;
  justify-content: space-between;
  max-width: 934px;
  margin: 0 auto;  
}
.inq-btn-list li{
  max-width: 450px;
  width: calc(50% - 10px);  
}
.inq-btn-list li a{
  max-width: none;
  height: 80px;
}
.inq-btn-list .btn-contact a > span{
  padding: 0 28px;
  background: url(../img/common/ico_mail_w.svg) no-repeat left center;
  background-size: 18px auto;  
}
.inq-btn-list .btn-mynavi a{
  border: 2px solid #090909;
  background: #fff;
  color: #090909;  
}
.inq-btn-list .btn-mynavi a::after{
  color: #090909;  
}


/* contents
-----------------------------------------------------------------*/

/* 角丸背景 */
.bg-round{
	background: #f6f6f6;
	border-radius: 80px 80px 0 0;	
}

/* page-nav */
.page-nav ul{
	display: flex;
}
.page-nav li{
	border-right: 1px solid #090909;
}
.page-nav li:first-child{
	border-left: 1px solid #090909;
}
.page-nav li a{
	position: relative;
	display: block;
	padding: 0 22px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
}
.page-nav li a::after{
	position: absolute;
	left: 50%;
	display: block;
	width: 8px;
	height: 8px;
	content: "";
	border: solid #090909;
	border-width: 0 1px 1px 0;
	transition: .3s;
}
.page-nav._upper{
	margin-bottom: 60px;
}
.page-nav._upper li a{
	padding-bottom: 20px;
}
.page-nav._upper li a::after{
	bottom: 2px;
	transform: rotate(45deg) translate(-50%,50%);
}
.page-nav._upper li a:hover::after{
	transform: rotate(45deg) translate(-30%,70%);
}
.page-nav._bottom{
	margin: 60px 0 150px;
}
.page-nav._bottom li a{
	padding-top: 20px;
}
.page-nav._bottom li a::after{
	top: 2px;
	transform: rotate(-135deg) translate(50%,-50%);
}
.page-nav._bottom li a:hover::after{
	transform: rotate(-135deg) translate(80%,-20%);
}

/* cont-nav */
.cont-nav ul{
	display: flex;
}
.cont-nav li{
	border-right: 1px solid #090909;
}
.cont-nav li:first-child{
	border-left: 1px solid #090909;
}
.cont-nav li a{
	position: relative;
	display: block;
	padding: 0 22px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	transition: .3s;
}
.cont-nav li a:hover,
.cont-nav li.current a{
	color: #31a5cd;
}
.cont-nav._upper{
	margin-bottom: 60px;
}
.cont-nav._bottom{
	margin: 60px 0 150px;
}

/* outline-list */
.outline-list > div{
  display: flex;
  padding: 30px 0;
  border-bottom: 1px solid #d9d9d9;
}
.outline-list dt{
  width: 24%;
  padding-right: 15px;
  font-weight: bold; 
}
.outline-list dd{
  width: 76%; 
}


/* clearfix
-----------------------------------------------------------------*/
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}



/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
.footer{
	padding: 80px 0 75px;
	background: linear-gradient(60deg, rgba(61,184,166,1) 0%, rgba(0,147,196,1) 100%);
	color: #fff;
}
.footer a{
	color: #fff;
}
.footer .inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.footer .info-area{
	width: 27%;
	padding-right: 3%;
	border-right: 2px solid rgba(2555,255,255,.5);
}
.footer .info-area .logo{
	margin-bottom: 25px;
}
.footer .info-area .address{
	margin-bottom: 15px;
	line-height: 1.5;
}
.footer .info-area .gmap{
	margin-bottom: 45px;
	letter-spacing: .08em;
}
.footer .info-area .gmap span{
	padding-right: 8px;
}
.footer .info-area .gmap span::before{
	position:absolute;
	width: 27px;
  height: 27px;
	border-width: 1px;	
}
.footer .info-area .gmap span::after{
	width: 27px;
  height: 27px;
	transform: translate(100%,-40%);
	padding-left: 2px;
	font-size: 1.3rem;
}
.footer .info-area .gmap a:hover span::after{
	padding-left: 4px;
}
#FtGnav{
	width: 73%;
	padding-left: 3%;
}
.ft-gnav{
	display: flex;
	justify-content: space-between;
	width: 100%;
	line-height: 1.5;
}
.ft-gnav > li{
	padding-left: 20px;
}
.ft-gnav > li:first-child{
	padding-left: 0;
}
.ft-gnav > li > p{
	margin-bottom: 15px;
	font-size: 2rem;
	font-weight: bold;
}
.ft-gnav > li:nth-child(4) > p:nth-of-type(n+2){
	margin-top: 25px;
}
.ft-gnav .nav-middle li:nth-child(n+2){
	margin-top: 10px;
}
.ft-gnav > li > p.comingsoon{
	opacity: .4;
	pointer-events: none;	
}
.footer .copyright{
	width: 100%;
	margin-top: 45px;
	text-align: center;
	font-size: 1.2rem;
	letter-spacing: .1em;
	font-weight: 300;
}

@media screen and (max-width: 1070px) {

  .ft-gnav{
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .ft-gnav > li{
      width: 48%;
      padding-left: 0;
    }
    .ft-gnav > li:first-child{
      padding-left: 0;
    }
    .ft-gnav > li:nth-child(n+3){
      margin-top: 25px;
    }
}






















/*--------------------------------------------------------------------------
   header メニュー変更
---------------------------------------------------------------------------*/
@media screen and (max-width: 1000px) {

/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
	.header .header-cont{
		padding: 16px 20px;  
	}
	.header::before{
		background: rgba(255,255,255,.9);
		opacity: 1; 
	}
	.header.scroll::before{
		opacity: 1;  
	}
  .header h1 {
    width: auto;
   }
	.header h1 img{
		max-width: none;
		width: auto;
		height: 38px;
	}

/* ---------------------------------------------------------------------------
			#Gnav	
				グローバルナビゲーション
--------------------------------------------------------------------------- */
	#Gnav{
		position: absolute;
		left: 0;
		top: 0;
		display: none;
		box-sizing: content-box;
		width: 100%;
		height: 100vh;
		padding: 70px 0 0;
		overflow: auto;
		background: rgba(255,255,255,.9);
		
	}
	.gnav{
		display: block;
		padding: 0 20px;
		margin-bottom: 70px;
	}
	.gnav > li{
    height: auto;
		margin: 0;
    padding-top: 0;
		border-bottom: 1px solid #e5e5e5;
	}
	.gnav > li p a,
	.gnav .has-middle p span{
		position: relative;
		display: block;
		padding: 25px 0;
		font-weight: bold;
		line-height: 1;
		font-size: 2rem;
	}
	.gnav > li p a::before{
		position:absolute;
		right: 10px;
		top: 50%;
		transform: translate(0,-50%);
		display: block;
		content: "";
		width: 30px;
		height: 30px;
		border-radius: 15px;
		background: linear-gradient(60deg, rgba(61,184,166,1) 0%, rgba(0,147,196,1) 100%); 
	}
	.gnav .has-middle p span::before{
		position: absolute;
		right: 10px;
		top: 50%;
		transform: translate(0,-50%);
		display: block;
		width: 30px;
		height: 30px;
		content: "";
		background: url(../../img/common/ico_plus.svg) no-repeat center center;
		background-size: 70% auto;
	}
	.gnav .has-middle p span.open::before{
		background-image: url(../../img/common/ico_minus.svg); 
	}
	.gnav > li p a::after{
		position:absolute;
		left: auto;
		right: 10px;
		top: 50%;
		transform: translate(0,-50%);
		bottom: auto;
		content: "→";
		width: 30px;
		height: auto;
		background: transparent;
		text-align: center;
		font-size: 1.5rem;
		font-weight: 300;
		color: #fff;
		font-family: 'Open Sans', sans-serif;
		transition: none;  
	}
  .gnav > li p.comingsoon a::before,
  .gnav > li p.comingsoon a::after{
    display: none;
  }
	.gnav > li.current a::after,
	.gnav > li p a:hover::after{
		width: 30px;
	}
	.gnav .has-middle p span::after{
		display: none;
	}
	.gnav .has-middle p a{
		display: none;  
	}
  .gnav .nav-middle{
    position: static;
    padding: 0;
    background: transparent;
    box-shadow: none;
  }
  .gnav .nav-middle li{
    height: auto;
    padding: 0;  
  }
  .gnav .has-middle:hover .nav-middle{
    display: none;
    transform: none;
  }
	.gnav .nav-middle a{
		position: relative;
		display: block;
		padding: 10px 0 25px 12px;
		font-size: 1.6rem;
		line-height: 1.2;
		font-weight: 500;
	}
	.gnav .nav-middle a::before{
		position:absolute;
		right: 10px;
		top: 50%;
		transform: translate(0,-50%);
		display: block;
		content: "";
		width: 20px;
		height: 20px;
		border-radius: 10px;
		border: 1px solid #090909;
		background: transparent;  
	}
	.gnav .nav-middle li > a::after{
		position:absolute;
		right: 10px;
		top: 50%;
		transform: translate(0,-50%);
		display: block;
		content: "→";
		width: 20px;
		text-align: center;
		font-size: 1.3rem;
		font-weight: 300;
		color: #090909;
		font-family: 'Open Sans', sans-serif;
	}
  .gnav .nav-middle a:hover{
    color: #090909;  
  }
	#Gnav .btn-cv{
		margin-left: 0;
		margin-bottom: 35px;
		padding: 0 20px;
	}
	#Gnav .btn-cv a{
		max-width: 380px;
		width: 100%;
		margin: 0 auto;
		font-size: 1.8rem;
	}
	#Gnav .btn-cv a span{
		padding-left: 35px;
		background-size: 24px auto; 
	}
	#Gnav .btn-cv a:hover{
		background: #f8b433;  
	}
	#Gnav .btn-close{
		display: block;
		text-align: center;
	}
	#Gnav .btn-close span{
		padding-bottom: 3px;
		cursor: pointer;
		font-size: 1.6rem;
		letter-spacing: .08em;
		font-weight: 500;
		border-bottom: 1px solid #090909;
	}
	
	.btn-trigger{
		position: relative;
		z-index: 11000;
		display: block;
		width: 40px;
		height: 38px;
    cursor: pointer;
	}
	.btn-trigger span{
		position: absolute;
		right: 0;
		top: 50%;
		display: block;
		content: "";
		height: 1px;
		background: #090909;
		transition: .3s;
	}
	.btn-trigger span:nth-child(1){
		width: 40px;
		transform: translateY(-5px);
	}
	.btn-trigger span:nth-child(2){
		width: 30px;
		transform: translateY(5px);
	}
	.btn-trigger.open span:nth-child(1){
		transform: rotate(-20deg) translateY(0);
	}
	.btn-trigger.open span:nth-child(2){
		width: 40px;
		transform: rotate(20deg) translateY(0);
	}
	

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
	.content {
		margin-top: 70px;
	}
  
    
}
























@media screen and (max-width: 1240px) {
  .tb-only{
    display: inline;
  }
}


/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  body{
		font-size: 1.5rem;
	}
	#Page {
		min-width: 320px;	
	}
	
	img{
		width: 100%;
		height: auto;
	}
	
	.pc{
		display: none;	
	}
	.sp{
		display: block;	
	}
	img.sp,
	br.sp{
		display: inline;
	}
  .tb-only{
    display: none;
  }


	.tel-link{
		pointer-events: auto;
	}

/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
	.inner{
		max-width: none;	
	}





/* 見出し
-----------------------------------------------------------------*/

/* page-hd */
	.page-hd{
		padding: 90px 0;	
	}
	.page-hd::before{
		width: 260px;
		height: 185px;
	}
	.page-ttl .en{
		font-size: 1.2rem;
	}
	.page-ttl .ja{
		font-size: 4rem;
	}
	.page-hd .txt-lead{
		margin-top: 40px;
		font-size: 2rem;
	}
	.page-hd .txt{
		margin-top: 15px;
	}
	.page-ttl + .txt{
		margin-top: 20px;	
	}

/* .ttl-sec */
  .ttl-sec .en{
    font-size: 1.2rem;
  }
  .ttl-sec .ja{
    font-size: 3rem;
  }

/* ttl-cont-sub */
  .ttl-cont-sub{
    margin-bottom: 5px;
    font-size: 1.8rem;  
  }
  .ttl-cont-sub span:first-child{
    margin: .3em 6px 0 0;
  }


/* ボタン
-----------------------------------------------------------------*/

/* btn-base */
	.btn-base a,
	.btn-base > span{
		max-width: 350px;
		font-size: 1.5rem;
	}
	.btn-base a::after,
	.btn-base > span::after{
		right: 30px;
		font-size: 1.8rem;
	}
	.btn-base a:hover::after,
	a:hover .btn-base > span::after{
		right: 30px;
	}

/* 白丸矢印 */
	.has-white-arw::before{
		width: 35px;
		height: 35px;
	}
	.has-white-arw::after{
		width: 35px;
		font-size: 1.5rem;
	}
	a:hover .has-white-arw::after{
		padding-left: 0;
	}

/* グラデーション丸矢印 */
	.has-gradient-arw::before{
		width: 35px;
		height: 35px; 
	}
	.has-gradient-arw::after{
		width: 35px;
		font-size: 1.5rem;	
	}
	a:hover .has-gradient-arw::after{
		padding-left: 0;
	}

/* 線丸矢印 */
	.has-line-arw::before{
		width: 30px;
		height: 30px;
		border: 1px solid #090909;
	}
	.has-line-arw::after{
		width: 30px;
		padding-left: 1px;
		font-size: 1.5rem;
	}
	a:hover .has-line-arw::after{
		padding-left: 1px;
	}

/* inq-btn-list*/
  .inq-btn-list{
    display: block;
    max-width: 450px;
  }
  .inq-btn-list li{
    width: 100%;  
  }
  .inq-btn-list li:nth-child(n+2){
    margin-top: 20px; 
  }
  .inq-btn-list li a{
    max-width: none;
    height: 60px;
  }


/* contents
-----------------------------------------------------------------*/

/* 角丸背景 */
	.bg-round{
		border-radius: 40px 40px 0 0;	
	}

/* page-nav */
	.page-nav{
		padding: 0 0 20px 20px;
		width: 100%;
		overflow: auto;
	}
	.page-nav .inner{
		padding: 0;
	}
	.page-nav li a{
		padding: 0 20px;
	}
	.page-nav._upper{
		margin-bottom: 30px;
	}
	.page-nav._upper li a:hover::after{
		transform: rotate(45deg) translate(-50%,50%);
	}
	.page-nav._bottom{
		margin: 30px 0 80px;
	}
	.page-nav._bottom li a{
		padding-top: 20px;
	}
	.page-nav._bottom li a:hover::after{
		transform: rotate(-135deg) translate(50%,-50%);
	}

/* cont-nav */
	.cont-nav{
		padding: 0 0 20px 20px;
		width: 100%;
		overflow: auto;
	}
	.cont-nav li a{
		padding: 10px 20px;
	}
	.cont-nav._upper{
		margin-bottom: 30px;
	}
	.cont-nav._bottom{
		margin: 30px 0 80px;
	}

/* outline-list */
	.outline-list > div{
		display: block;
		padding: 15px 0;
	}
	.outline-list dt{
		width: 100%;
		margin-bottom: 5px;
		padding-right: 0; 
	}
	.outline-list dd{
		width: 100%; 
	}

















/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
	.footer{
		padding: 60px 0 20px;
	}
	.footer .inner{
		display: block;
		max-width: 340px;
	}
	.footer .info-area{
		width: 100%;
		margin-bottom: 40px;
		padding: 0 0 40px 0;
		border-right: none;
		border-bottom: 2px solid rgba(2555,255,255,.5);
	}
	.footer .info-area .logo{
		width: 300px;
		margin: 0 auto 20px;
	}
	.footer .info-area .address{
		margin-bottom: 15px;
		font-size: 1.4rem;
	}
	.footer .info-area .gmap{
		margin-bottom: 20px;
	}
	.footer .info-area .gmap span{
		padding-right: 6px;
	}
	.footer .info-area .gmap a:hover span::after{
		padding-left: 2px;
	}
	.footer .info-area .tel-fax{
		font-size: 1.4rem;
	}
	.footer .info-area .tel-fax p + p{
		margin-top: 5px;
	}
	.footer .info-area .tel-fax p span{
		display: inline-block;
		padding-left: 2px;
		font-size: 2.8rem;
		line-height: 1.2;
		font-weight: bold;
	}
	#FtGnav{
		width: 100%;
		padding-left: 0;
	}
	.ft-gnav{
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.ft-gnav > li{
		width: 48%;
		padding-left: 0;
	}
	.ft-gnav > li:first-child{
		padding-left: 0;
	}
	.ft-gnav > li:nth-child(n+3){
		margin-top: 25px;
	}
	.ft-gnav > li:last-child{
		width: 100%;
	}
	.ft-gnav .nav-middle{
		font-size: 1.2rem;
	}
	
	.footer .copyright{
		margin-top: 35px;
		font-size: 1.1rem;
	}

  
  
}

