@charset "utf-8";


/*--------------------------------------------------------------------------
   html
---------------------------------------------------------------------------*/

html{
	overflow-y: scroll;
  scroll-behavior: smooth;
	font-size: 62.5%;
}


/*--------------------------------------------------------------------------
   body
---------------------------------------------------------------------------*/

body{
	margin: 0;
	color: var(--dark);
	background: #FFF;
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 600;
	font-size: 1.6rem;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;	
	letter-spacing: 1px;
}

/* fonts */
.en{
	font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------------------
   base link
---------------------------------------------------------------------------*/

a{
	outline: none;
	transition: .3s;
}
a:link,
a:visited{
	text-decoration: none;
	color: var(--dark);
}
a:hover{opacity: .7;}

.ophover{
	transition: opacity ease .3s;	
}
.ophover:hover{
	opacity: .7;
}

.phone-link{
  pointer-events: none;  
}


/*--------------------------------------------------------------------------
   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.5s;
}
.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{
	display: none;	
}
/* box-sizing ---*/	
header, footer, main, section, div, h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, th, td, a, span, small, strong, em, input, select, textarea, button {
	box-sizing: border-box;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
#Page{
	overflow: hidden;	
}
.inner{
	max-width: 1200px;
	padding: 0 20px;
	margin: 0 auto;
}

/*--------------------------------------------------------------------------
   caption
---------------------------------------------------------------------------*/
.pic {
    position: relative;
}
.cap {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 4px 8px 6px;
    font-size: .9rem;
	font-weight: 300;
    line-height: 1;
    color: var(--light);
    text-shadow: 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 3px #000, 0px 0px 1px #000;
}
caption{font-size: 1.1rem; font-weight: 300;}

/*--------------------------------------------------------------------------
   color
---------------------------------------------------------------------------*/
:root {
  --dark: #070001;
  --light: #fff;
  --grablue: linear-gradient(45deg, rgba(12,104,172,1) 0%, rgba(25,151,59,1) 100%);
	--blue: #0C68AC;
	--green: #19973B;
}
.gratxt{
    background: var(--grablue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}




/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
#Header{
	position: fixed;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	width: 100%;
	transition: .3s;
}
#Header h1{
	position: relative;
	z-index: 1;
	font-size: 1.4rem;
	min-width: inherit;
	max-width: inherit;
	padding: 30px 0 0 30px;
}
#Header h1 img{
	width: 160px;
	opacity: 1;  
	transition: .3s;
}
#Header h1 img.scale{
	width: 100px;
}
.nav-area{
	max-width: 560px;
	width: 42%;
}
.nav_txt_wrap{
	background: var(--light);
	padding: 6px;
}
.nav_txt_wrap p{
	font-size: clamp(1.2rem, 1vw + 1rem, 1.4rem);
	text-align: center;
	line-height: 1.3;
}
.nav_txt_wrap p span{
	font-size: 70%;
	padding-left: 6px;
	display: inline-block;
}
.nav-area .btn_wrap{
	display: flex;
	justify-content: center;
}
.nav-area .btn_wrap li{
	flex: 1;
}
.nav-area .btn_wrap li a{
	padding: 16px 8px;
	font-size: clamp(1.3rem, 1vw + 1rem, 1.6rem);
}

@media screen and (max-width: 768px) {
	#Header h1{
		padding: 5px 0 0 10px;
	}
	#Header h1 img{
		width: 70px;
	}
	#Header h1 img.scale{
		width: 50px;
	}
	.nav-area{
		position: fixed;
		bottom: 0;
		max-width: 100%;
		width: 100%;
	}
	.nav_txt_wrap{
		padding: 8px;
	}
	.nav_txt_wrap p{
		font-size: 1.2rem;
	}
	.nav-area .btn_wrap li{
		flex: 1;
	}
	.nav-area .btn_wrap li a{
		padding: 8px 8px 12px;
		font-size: 1.2rem;
	}
}

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/



/* clearfix
-----------------------------------------------------------------*/
.cf:after{
	clear :both;
	content: "";
	display: block;
	height: 0;
}


/* page-notes
-----------------------------------------------------------------*/
.page-notes{
	padding: 50px 0;
  background: var(--light);
  color: var(--dark);
}
.page-notes p,
.page-notes ul{
	font-size: 1.2rem;
	line-height: 1.6;
}
.page-notes a{
	border-bottom: 1px solid var(--blue);
	color: var(--blue);
}

/* btn
-----------------------------------------------------------------*/

.btn a {
	display: block;
	text-align: center;
	color: var(--light);
	position: relative;
}
.btn.tateuri a {
	background: var(--blue);
}
.btn.tochi a {
	background: var(--green);
}
.btn a::before {
	content: '';
	display: block;
	position: absolute;
	right: 8%;
	top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	background-image: url(../../common/images/icon_blank.svg);
	background-size: 100%;
	width: 16px; height: 16px;
}


/* floatingBanner
-----------------------------------------------------------------*/

.floatingBanner{position: fixed; bottom: 2%; left: 1%; z-index: 1000; display: none;}
    .relative{position: relative;}
    .relative a{ transition: .2s;}
    .relative a:hover{opacity: .7;}
    .closeBox{position: absolute; top: 5px; right: -25px; margin-top: -25px; background-color: rgba(255,255,255,1); padding: 10px 10px; cursor: pointer; border-radius: 50px; border: 1px solid #B3B3B3;}
    .bannerClose{font-size: 16px; font-weight: 600; height: auto; display: block; margin: 0; color: #000; line-height: 1;}
    img.pc, img.sp { display: none; } /* Start by hiding both images */
    @media screen and (min-width: 769px) {
        img.pc { display: block; } 
    }
    @media screen and (max-width: 768px) {
        .floatingBanner { bottom: 85px; left:5%; max-width:100%; height:auto; width: 90%; }
        .closeBox { padding: 8px; right: -14px;}
        img.sp { display: block; } 
    }


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
#Footer{
	padding-top: 64px;
	padding-bottom: 16px;
}
.footer_txt{
	text-align: center;
	font-size: 1.6rem;
}
.footer_icon_wrap{
	    display: flex;
    justify-content: center;
    gap: 0 32px;
    max-width: 700px;
    margin: 32px auto 48px;
}
.footer_icon_wrap li{
	flex-shrink: 1;
}
#Footer .copyright {
    padding: 8px 16px;
    background: var(--light);
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark);
    letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  
	#Page {
		min-width: 320px;	
	}

	img{
		width: 100%;
		height: auto;
	}

	.pc{
		display: none;	
	}
	.sp{
		display: block;	
	}
	img.sp, br.sp{
		display: inline;
	}

	.phone-link{
	pointer-events: auto;  
	}

	.inner{
		max-width: initial;	
	}


	/*--------------------------------------------------------------------------
	Content
	---------------------------------------------------------------------------*/

	/* page-notes
	-----------------------------------------------------------------*/
	.page-notes{
		padding: 30px 0;
	}
	.page-notes p, .page-notes ul{
		font-size: 0.9rem;
	}


	/*--------------------------------------------------------------------------
	Footer
	---------------------------------------------------------------------------*/
	#Footer{
		padding-bottom: 140px;
	}
	.footer_txt{
		font-size: 1.1rem;
	}
	.footer_icon_wrap{
		gap: 0 8px;
		margin: 16px auto 24px;
		padding: 0 20px;
	}

}

