@charset "utf-8";

/**
 *
 *  サイト共通
 *
 */

/*--------------------------------------------------------------------------
   reset
---------------------------------------------------------------------------*/

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,ins,kbd,q,samp,small,strong,
sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,
figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;font: inherit;vertical-align:baseline;background:transparent;}
body{line-height:1;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
nav ul{list-style:none;}
ul,ol,li,dl,dt,dd{list-style-type:none;list-style-position:outside;}
blockquote,q{quotes:none;}
blockquote:before,blockquote:after,q:before,q:after{content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
img{vertical-align:top;border:0;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:0;padding:0;}
input,select{vertical-align:middle;}


/*--------------------------------------------------------------------------
   settings
---------------------------------------------------------------------------*/
:root {
  --dark: #231815;
  --light: #fff;
  --grablue: linear-gradient(45deg, rgba(83,120,149,1) 0%, rgba(9,32,63,1) 100%);
	--blue: #09203F ;
	--beije: #EACDA3;
	--lbeije: #F4E6D1;
	--dbeije: #97723E;
	--gray: #FAFBFB;
	--red: #BA6060;
	--lblue: #537895;
}


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

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


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

body{
	color: var(--blue);
	background-image: url(../../common/image/bg_pc.jpg);
  background-size: cover;
  background-attachment: fixed;

	font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: .5px;
  overflow: auto;
}
body *{
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
}

/* fonts */
body .en{
	font-family: "EB Garamond", serif;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 2px;
}
body .lato{
	font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 1px;
}


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

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

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


/*--------------------------------------------------------------------------
   img
---------------------------------------------------------------------------*/
img{
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	image-rendering: crisp-edges;		
}

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

.fade,.fade01,.fade02,.fade03,.fade04,
.delay01,.delay02,.delay03,.delay04,.delay05 {
	transition: 1s;
}
.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(100px,0); 
}
.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;
	transform: translate(0,0); 
}


/*--------------------------------------------------------------------------
   PC
---------------------------------------------------------------------------*/
.sp{
	display: none !important;	
}
/* box-sizing ---*/	
header, footer, section, div, h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, th, td, a, span {
	box-sizing: border-box;
}



/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
#Page{
	overflow: hidden;	
  max-width: 630px;
  margin: auto;
  background-color: var(--light);
}
.inner{
  padding: 0 50px;
	margin: 0 auto;
  position: relative;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}

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

/* #Content{
  margin-top: 5%;
} */

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

.btn a{
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 32px 8px;
  width: 400px;
  margin: auto;
  transition: .3s;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--light);
  background: var(--grablue);
}
.btn a::after {
  content: '';
    width: 40px;
    height: 8px;
    border-bottom: solid 1px var(--light);
    border-right: solid 1px var(--light);
    transform: skew(45deg);
    position: absolute;
    top: 46%;
    right: 30px;
    transition: .3s;
}
.btn a:hover{opacity: .7;}
.btn a:hover::after{
  right: 20px;
}

.btn.white a{
  color: var(--blue);
  background: var(--light);
}
.btn.white a::after {
  border-bottom: solid 1px var(--blue);
  border-right: solid 1px var(--blue);
}



/* page-notes
-----------------------------------------------------------------*/
.page-notes{
  padding: 40px 0 0;
  background: var(--light);	
}
.page-notes ul,.page-notes p{
  margin: 0 auto;
  font-size: 1rem;	
}
.page-notes ul li{
  line-height: 1.6;  
}

/* caption
-----------------------------------------------------------------*/
.pic{
  position: relative;
}
.caption,.cap{
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 4px 8px 6px;
  font-size: 1.2rem;
  line-height: 1;
  color: #FFF;
  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;
}
.con_cap{
  font-size: 1rem;
    margin-top: 32px;
}
@media screen and (max-width: 640px) {
  .con_cap{
  line-height: 1.4;
  }
}
.caption span,.cap span{font-size: 70%; vertical-align: 4px;}



/* 下層ページ共通パーツ
-----------------------------------------------------------------*/

#Content{
  position: relative;

}

/* contents_mv
-----------------------------------------------------------------*/

.contents_mv{
  min-height: 490px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  padding: 96px 24px 0;
}
.contents_mv h2{
  text-align: center;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
  color: var(--light);
  text-shadow: 0px 0px 3px var(--blue), 0px 0px 3px var(--blue), 0px 0px 3px var(--blue);
}
.contents_mv .ja{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding-top: 16px;
  color: var(--light);
  text-shadow: 0px 0px 3px var(--blue), 0px 0px 3px var(--blue), 0px 0px 3px var(--blue);
}

.contents_mv2{
  padding: 96px 0 80px;
}
.contents_mv2 h2{
  text-align: center;
  font-size: 6rem;
  font-weight: 400;
  line-height: 1;
}
.contents_mv2 .ja{
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  padding-top: 16px;
}

@media screen and (max-width: 1250px) {
  .contents_mv{
    min-height: 350px;
  }
  .contents_mv,
  .contents_mv2{
    padding: 96px 0 48px;
}
  .contents_mv h2,
  .contents_mv2 h2{
  font-size: 4.0rem;
}
.contents_mv .ja,
.contents_mv2 .ja{
  font-size: 1.3rem;
}
}


/* contents_ttl
-----------------------------------------------------------------*/

.contents_ttl{
  color: var(--blue);
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 48px;
}


@media screen and (max-width: 640px) {
.contents_ttl{
  color: var(--blue);
  text-align: center;
  font-size: 1.8rem;
  margin-top: 32px;
  margin-bottom: 32px;
}
}

/* contents_txt
-----------------------------------------------------------------*/

.contents_txt{
  color: var(--blue);
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 48px;
}


@media screen and (max-width: 640px) {
.contents_txt{
  color: var(--blue);
  text-align: center;
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 32px;
}
}






/*--------------------------------------------------------------------------
   mobile
---------------------------------------------------------------------------*/
@media screen and (max-width: 1250px) {
#Page {
	min-width: 320px;	
}
#Page img{
	width: 100%;
	height: auto;
}
.pc{
	display: none !important;	
}
.sp{
	display: block !important;	
}
img.sp,
br.sp{
	display: inline;
}


/*--------------------------------------------------------------------------
   Container
---------------------------------------------------------------------------*/
.inner{
  width: 100%;
  max-width: none;
  padding: 0 16px;	
}


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




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

.btn{
  margin: 16px auto;
}
.btn a{
 display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px 8px;
        width: 270px;
        margin: auto;
        transition: .3s;
        font-size: 1.5rem;
}
.btn a::after {
    width: 30px;
    height: 6px;
    top: 44%;
    right: 20px;
}

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



  /* caption
-----------------------------------------------------------------*/
  .caption{
    padding: 2px 8px;
    font-size: 1.0rem;
  }


/* page-notes
-----------------------------------------------------------------*/
  .page-notes{
  }
  .page-notes ul,.page-notes p{
    width: 100%;
    font-size: 1rem;
  }
}


.link_bnr{
  max-width: 90%;
  margin: 64px auto 0;
}
.link_bnr p{
  text-align: center;
  display: block;
  max-width: 320px;
  margin: auto;
}
.link_bnr p a{transition: .3s;}
.link_bnr p a:hover{opacity: .7;}


.vr_bnr{
  max-width: 80%;
  margin: auto;
}
.vr_bnr a{transition: .3s;}
.vr_bnr a:hover{opacity: .7;}

