@charset "utf-8";

/*--------------------------------------------------------------------------
   settings
---------------------------------------------------------------------------*/
:root {
  --dark: #022a5b;
  --light: #FFF;
  --gold: #BFA575;
	--beige: #DCD5D1;
	--grey: #EEE;
	--chacoal: #605856;
}



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

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


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

body{
	color: var(--dark);
	font-family: "Shippori Mincho","YuMincho","Yu Mincho","HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: .04em;
	-webkit-text-size-adjust: 100%;	
}

/* fonts */
.en{
  font-family: "EB Garamond", sans-serif;
  text-transform: uppercase;
}


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

a{
	outline: none;
}
a:link,
a:visited{
	text-decoration: none;
	color: var(--dark);
}

.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;
}

/*--------------------------------------------------------------------------
   Animation
---------------------------------------------------------------------------*/

.fade,.fade01,.fade02,.fade03,.fade04,.zoom,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1.3s;
}
.blur{
	transition: .8s;
}
.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); 
}


@keyframes fadein{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}


/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp{
	display: none;	
}
/* box-sizing ---*/	
header, footer, nav, main, section, article, 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
---------------------------------------------------------------------------*/
.inner{
	max-width: 1280px;
	width: 100%;
	padding: 0 40px;
	margin: 0 auto;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
#Header{
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
	display: flex;
	justify-content: space-between;
	align-items: center;
  width: 100%;
  padding: 20px;
  color: var(--light);
}
#Header::before{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--dark);
	opacity: 0;
	transition: .8s;
}
#Header.scroll::before{
	opacity: 1;
}
#Header h1{
	position: relative;
	z-index: 11000;
}
.btn-trigger{
  display: none;  
}


/* ---------------------------------------------------------------------------
	 #Gnav	
	 グローバルナビゲーション
--------------------------------------------------------------------------- */
#Gnav{
	position: relative;
  display: flex;
	align-items: center;
}
#Gnav .logo-nav{
  display: none;  
}
.gnav{
  display: flex;
}
.gnav li{
  margin-left: 40px;
  text-align: center;  
}
.gnav a{
  position: relative;
  display: block;
  padding: 12px 10px;
	font-size: 1.4rem;
	letter-spacing: .2em;
	line-height: 1;
  color: var(--light);
}
.gnav a::after{
	position: absolute;
	left: 50%;
	bottom: 0;
	display: block;
	width: 26px;
	height: 1px;
	margin-left: -13px;
	content: "";
	background: var(--light);
	transform: scale(0,1);
	transition: .3s;
}
.gnav .current a::after,
.gnav a:hover::after{
	transform: scale(1,1);
}
.gnav .nav02 a{
	padding-bottom: 10px;
}
.gnav .nav-middle{
	display: none;
}
#Gnav .btn-contact{
	flex-shrink: 0;
	margin-left: 1.5vw;
}
#Gnav .btn-contact a{
	display: block;
	padding: 12px 20px;
	border: 1px solid var(--light);
	line-height: 1;
	font-size: 1.4rem;
	color: var(--light);
	transition: .3s;
}
#Gnav .btn-contact a:hover{
	color: var(--dark);
	background: var(--light);
}
#Gnav .nav-ft{
	display: none;
}


@media screen and (max-width: 1500px) {  
	#Header h1{
		width: 20vw;
	}
	.gnav a{
		font-size: 1.6rem;
	}
	#Gnav .btn-contact a{
		font-size: 1.4rem;
	}
}
@media screen and (max-width: 1280px) {
	#Header h1{
		width: 18vw;
	}
	.gnav a{
		font-size: 1.4rem;
	}
}


/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
.txt{
	font-size: 1.8rem;
	line-height: 2;
}
.caption{
  font-size: 1.2rem;  
}
.caption._w{
  color: var(--light);  
}
.note,
.notes{
  font-size: 1.2rem;
}

/* 見出し
-----------------------------------------------------------------*/

/* page-ttl --------------------*/
.page-ttl{
  padding: 150px 0 60px;
  background: url(../../img/common/bg_page_ttl.jpg) no-repeat center center var(--dark);
  background-size: cover;
  color: var(--light);
  text-align: center;
  line-height: 1;
}
.page-ttl .en{
  margin-bottom: 25px;
  font-size: 10rem;  
}
.page-ttl .ja{
  font-size: 1.6rem;
  letter-spacing: .2em;
}
#Page .page-ttl .ja::after{
  animation-delay: .5s;
}
#Page .page-ttl .ja span{
  transition-delay: 1.1s; 
}
.page-kv{
  position: relative;  
}
.page-kv .caption{
  position: absolute;
  right: 10px;
  bottom: 10px;  
}

/* ttl-sec --------------------*/
.ttl-sec{
  line-height: 1;
}
.ttl-sec .en{
  display:block;
  margin-bottom: 20px;
	font-size: 8rem;
  letter-spacing: .04em;
}
.ttl-sec .ja{
  font-size: 1.6rem;
  letter-spacing: .2em;
}
  
/* ttl-swipe --------------------*/
.ttl-swipe > span{
	position: relative;
	display: block;
	width: fit-content;
	margin-inline: auto;
	overflow: hidden;
}
.ttl-swipe > span::after{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: var(--gold);
	transform: translateX(-105%);
}
.ttl-swipe.mv > span::after{
	animation: swipe 1.2s linear forwards;
}
.ttl-swipe > span span{
	opacity: 0;
	transition-delay: .6s;
}
.ttl-swipe.mv > span span{
	opacity: 1;
}

@keyframes swipe {
  0% {
    transform: translateX(-100%);
  }
	45%{
		transform: translateX(0);
	}
	55%{
		transform: translateX(0);
	}
  100%{
    transform: translateX(105%);
  }
}


/* ボタン
-----------------------------------------------------------------*/

/* btn-cv --------------------*/
.btn-cv a{
	display:  flex;
	align-items: center;
	max-width: 600px;
	padding: 0 40px;
	height: 90px;
	margin-inline: auto;
	color: var(--light);
	background: url(../../img/common/ico_arw_w.svg) no-repeat right 35px center var(--gold);
	background-size: 34px auto;
	font-size: 2.3rem;
	letter-spacing: .2em;
	line-height: 1.2;
	transition: .3s;
}
.btn-cv a:hover{
	opacity: .8;
}

/* btn-base --------------------*/
.btn-base a{
	display:  flex;
	justify-content: center;
	align-items: center;
	max-width: 285px;
	height: 56px;
	margin-inline: auto;
	color: var(--light);
	background: var(--dark);
	border-radius: 100vmax;
	border: 1px solid var(--dark);
	font-size: 1.6rem;
	letter-spacing: .2em;
	line-height: 1.2;
	text-align:center;
	transition: .3s;	
}
.btn-base a:hover{
	background: var(--light);
	color: var(--dark);
}

/* blank */
.btn-base._blank span{
	padding: 0 30px;
	background: url(../../img/common/ico_blank_w.svg) no-repeat right center;
	background-size: 13px auto;
}
.btn-base._blank a:hover span{
	background-image: url(../../img/common/ico_blank.svg);
}

/* pdf */
.btn-base._pdf span{
	padding: 5px 32px;
	background: url(../../img/common/ico_pdf_w.svg) no-repeat right center;
	background-size: 22px auto;
}
.btn-base._pdf a:hover span{
	background-image: url(../../img/common/ico_pdf.svg);
}

/* txt-view-more */
.txt-view-more a{
  padding: 10px 18px 10px 0;
  background: url(../../img/common/ico_blank.svg) no-repeat right center;
	background-size: 10px auto;
  font-size: 1.4rem;
  font-family: "EB Garamond", "Shippori Mincho", sans-serif;  
}
.txt-view-more a:hover{
  color: var(--gold);
  background-image: url(../../img/common/ico_blank_gold.svg);
}

/* page-btm
-----------------------------------------------------------------*/
.page-btm .cont-nav-btn{
	display: flex;
}
.page-btm .cont-nav-btn li{
	width: 50%;
}
.page-btm .cont-nav-btn li a{
	position: relative;
	display: block;
	padding: 90px 70px;
}
.page-btm .cont-nav-btn li a::before{
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100%;
	height: 100%;
	content: "";
	background: linear-gradient(270deg, #EEE 0%, rgba(238, 238, 238, 0.00) 100%);
	opacity: 0;
	transition: .8s;
}
.page-btm .cont-nav-btn .next a::before{
	background: linear-gradient(270deg, rgba(255, 255, 255, 0.00) 0%, #EEE 100%);
}
.page-btm .cont-nav-btn li a:hover::before{
	opacity: 1;
}
.page-btm .cont-nav-btn p{
	position: relative;
	width: fit-content;
	line-height: 1;
	transition: .8s;
}
.page-btm .cont-nav-btn .next p{
	margin-left: auto;
}
.page-btm .cont-nav-btn a:hover p{
	color: var(--gold);
}
.page-btm .cont-nav-btn .en{
	display: block;
	font-size: 10em;
}
.page-btm .cont-nav-btn .ja{
	display: block;
	font-size: 1.6rem;
	letter-spacing: .2em;
}
.page-btm .cont-nav-btn .next .ja{
	text-align: right;
}


/* page-notes
-----------------------------------------------------------------*/
.page-notes{
	padding: 60px 0;
	background: var(--dark);
	color: var(--light);	
}
.page-notes ul li,
.page-notes p{
	font-size: 1.2rem;
}


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


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
#Footer{
	padding: 120px 0 25px;
	background: url(../../img/common/bg_footer.jpg) no-repeat center center;
	background-size: cover;
	color: var(--light);
}
footer .inner{
	max-width: 1480px;
}
footer .ft-txt{
	margin-bottom: 65px;
	text-align: right;
	font-size: 4rem;
	letter-spacing: .3em;
	line-height: 1.8;
}
footer .layout-box{
	align-items: flex-end;
}
footer .ft-logo{
	margin-bottom: 40px;
}
footer .ft-bottom{
	display: flex;
}
footer .privacy{
	margin-right: 40px;
}
footer .privacy a{
	color: var(--light);
	font-size: 1.2rem;
	letter-spacing: .2em;
	line-height: 1.6;
}
footer .privacy a span{
	display: inline-block;
	padding-right: 15px;
	background: url(../../img/common/arw_blank_w.svg) no-repeat right center;
	background-size: 12px auto;
}
footer .copyright{
	font-size: 1.2rem;
	letter-spacing: .2em;
	line-height: 1.6;
}




























/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {  
	#Page {
		min-width: 320px;	
	}
	body{
   font-size: 1.3rem; 
  }
	
	.pc{
		display: none;	
	}
	.sp{
		display: block;	
	}
	img.sp,
	br.sp{
		display: inline;
	}
	
	.phone-link{
		pointer-events: auto;  
	}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
	.inner{
		max-width: none;
		padding: 0 30px;	
	}
  .txt{
    font-size: 1.3rem;  
  }
  .caption{
    font-size: 1rem;
  }
  .note,
  .notes{
    font-size: 1rem;  
  }


/*--------------------------------------------------------------------------
   header
---------------------------------------------------------------------------*/
	#Header{
		width: 100%;
		padding: 20px;
	}
	#Header::before{
		position: absolute;
		left: 0;
		top: 0;
		display: block;
		width: 100%;
		height: 100%;
		content: "";
		background: var(--dark);
		opacity: 0;
		transition: .5s;
	}
	#Header.scroll::before{
		opacity: 1;
	}
	#Header h1{
		width: 80px;
	}
	.btn-trigger{
		display: none;  
	}

	.btn-trigger{
		position: relative;
		z-index: 12000;
		display: block;
		width: 50px;
		height: 32px;
		line-height: 1;
		text-align: center;		  
	}
	.btn-trigger span{
		position: absolute;
		left: 10px;
		display: block;
		width: 30px;
		height: 2px;
		background: var(--light);
    transition: .3s;		
	}
  .btn-trigger span:nth-child(1){
		top: 0;
	}
	.btn-trigger span:nth-child(2){
		top: 10px;
	}
  .btn-trigger.on span:nth-child(1){
    transform: rotate(-35deg) translate(-3px, 4px);
  }
  .btn-trigger.on span:nth-child(2){
    transform: rotate(35deg) translate(-3px, -4px);
  }
	.btn-trigger strong{
		position: absolute;
		left: 0;
		bottom: 0;
		display: block;
		width: 100%;
		margin-top: 9px;
		font-weight: normal;
		font-size: 1.1rem;
    text-align: center;
	}
  .btn-trigger strong.close{
    display: none;  
  }
  .btn-trigger.on strong.close{
    display: block;  
  }
  .btn-trigger.on strong.menu{
    display: none;  
  }



/* ---------------------------------------------------------------------------
	 #Gnav	
	 グローバルナビゲーション
--------------------------------------------------------------------------- */
	#Gnav{
		position: fixed;
		left: 0;
		top: 0;
		display: none;
		width: 100%;
		height: 100vh;
		box-sizing: border-box;
		overflow: auto;
		padding: 120px 40px 0;
		background: #A6906B;
	}
	#Gnav .logo-nav{
		display: block;
		width: 190px;
		margin: 0 auto 20px;
	}
	.gnav{
		display: block;
	}
	.gnav li{
		width: auto;
		margin-left: 0;
		text-align: left;
	}
	.gnav > li:nth-child(n+2){
		margin-top: 15px;
	}
	.gnav a{
		padding: 10px 0;
		font-size: 1.6rem;
		border-bottom: 1px solid var(--light);  
	}
	.gnav a::after{
		display: none;
	}
/*	.gnav .has-middle span{
		display: block;
		padding: 10px 0;
		border-bottom: 1px solid var(--light); 
		font-size: 1.6rem;
		line-height: 1;
	}*/
	.gnav .has-middle ul a{
		border-bottom: none;
	}
	.gnav .nav02 a.pc{
		display: none;
	}
	.gnav .nav-middle{
		display: block;
		margin-top: 10px;
		text-transform: uppercase;
	}
	.gnav .nav-middle h2{
		font-weight: 500;
		font-size: 1.7rem;
	}
	#Gnav .btn-contact{
		margin: 25px 0 35px;
	}
	#Gnav .btn-contact a{
		font-size: 1.6rem;
		text-align: center;
	}
	#Gnav .btn-contact a:hover{
		color: var(--light);
		background: transparent;
	}
	#Gnav .nav-ft{
		display: block;
		position: absolute;
		left: 0;
		bottom: 0;
		width: 100%;
		padding: 10px 10px 15px;
	}
	#Gnav .nav-ft .logo-nav-ft{
		width: 72px;
		margin: 0 auto 10px;
	}
	#Gnav .nav-ft .copyright{
		text-align: center;
		font-size: 1rem;
	}

/*--------------------------------------------------------------------------
   Content
---------------------------------------------------------------------------*/
	.txt{
		font-size: 1.3rem;
		line-height: 2;
	}
	.caption{
		font-size: 1rem;  
	}
	.caption._w{
		color: var(--light);  
	}


/* 見出し
-----------------------------------------------------------------*/

/* page-ttl --------------------*/
  .page-ttl{
    padding: 80px 0 30px;
  }
  .page-ttl .en{
    margin-bottom: 10px;
    font-size: 4.6rem;  
  }
  .page-ttl .ja{
    font-size: 1.4rem;
  }
  .page-kv .caption{
    right: 5px;
    bottom: 5px;  
  }
 
 
 /* ttl-sec --------------------*/
  .ttl-sec .en{
    margin-bottom: 15px;
    font-size: 4.8rem;
  }
  .ttl-sec .ja{
    font-size: 1.4rem;
  }


/* ボタン
-----------------------------------------------------------------*/

/* btn-cv --------------------*/
	.btn-cv a {
		max-width: 320px;
		padding: 0 20px;
		height: 50px;
		background: url(../../img/common/ico_arw_w.svg) no-repeat right 15px center var(--gold);
		background-size: 16px auto;
		font-size: 1.4rem;
		letter-spacing: .075em;
	}
	.btn-cv a:hover{
		opacity: 1;
	}

/* btn-base --------------------*/
	.btn-base a{
		display:  flex;
		justify-content: center;
		align-items: center;
		max-width: 285px;
		height: 56px;
		margin-inline: auto;
		color: var(--light);
		background: var(--dark);
		border-radius: 100vmax;
		border: 1px solid var(--dark);
		font-size: 1.6rem;
		letter-spacing: .2em;
		line-height: 1.2;
		text-align:center;
		transition: .3s;	
	}
	.btn-base a:hover{
		background: var(--light);
		color: var(--dark);
	}

/* blank */
	.btn-base._blank span{
		padding: 0 30px;
		background: url(../../img/common/ico_blank_w.svg) no-repeat right center;
		background-size: 13px auto;
	}
	.btn-base._blank a:hover span{
		background-image: url(../../img/common/ico_blank.svg);
	}

/* pdf */
  .btn-base._pdf span{
    padding: 5px 32px;
    background-size: 22px auto;
  }
  .btn-base._pdf a:hover span{
    background-image: url(../../img/common/ico_pdf_w.svg);
  }
  

/* page-btm
-----------------------------------------------------------------*/
	.page-btm .cont-nav-btn li a{
		padding: 30px 20px;
	}
	.page-btm .cont-nav-btn li a:hover::before{
		opacity: 0;
	}
	.page-btm .cont-nav-btn a:hover p{
		color: var(--dark);
	}
	.page-btm .cont-nav-btn .en{
		margin-bottom: 2px;
		font-size: 3.8em;
	}
	.page-btm .cont-nav-btn .ja{
		font-size: 1.2rem;
	}



/* page-notes
-----------------------------------------------------------------*/
	.page-notes{
		padding: 60px 0;
		background: var(--dark);
		color: var(--light);	
	}
	.page-notes ul li,
	.page-notes p{
		font-size: 1.2rem;
	}


/*--------------------------------------------------------------------------
   Footer
---------------------------------------------------------------------------*/
	#Footer{
		position: relative;
		padding: 60px 0 20px;
	}
	footer .ft-txt{
		margin-bottom: 50px;
		font-size: 2.2rem;
	}
	footer .layout-box{
		display: block;
	}
	footer .ft-logo{
		width: 100px;
		margin-bottom: 20px;
	}
	footer .ft-bottom{
		display: block;
	}
	footer .privacy{
		margin: 0 0 10px;
	}
	footer .privacy a{
		color: var(--light);
		font-size: 1.2rem;
		letter-spacing: .2em;
		line-height: 1.6;
	}
	footer .copyright{
		font-size: 1rem;
		letter-spacing: .1em;
	}
	footer .pagetop{
		position: absolute;
		right: 30px;
		bottom: 50px;
		width: 110px;
	}



  
}

