@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(0deg, rgba(167,204,133,1) 0%, rgba(98,190,224,1) 100%);
  --grabluehover: linear-gradient(0deg, rgba(98,190,224,1) 0%,rgba(167,204,133,1) 100%);
	--graorange: linear-gradient(0deg, rgba(243,168,82,1) 0%, rgba(237,219,87,1) 100%);
  --graorangehover: linear-gradient(0deg, rgba(237,219,87,1) 0%, rgba(243,168,82,1)100%); */
  /* --blue: #0074A8 ; */
  /* --orange: #D57938; */

  --grablue: linear-gradient(0deg, rgba(96,120,157,1) 0%, rgba(67,88,121,1) 100%);
  --grabluehover: linear-gradient(0deg, rgba(67,88,121,1) 0%,rgba(96,120,157,1) 100%);
	--graorange: linear-gradient(0deg, rgba(196,182,114,1) 0%, rgba(170,155,86,1) 100%);
  --graorangehover: linear-gradient(0deg, rgba(170,155,86,1) 0%, rgba(196,182,114,1)100%);

	--blue: #435879 ;
	--orange: #AA9B56;
	--gray: #F5FAFD;
	--youtube: #EFE8E3;
	--instagram: linear-gradient(120deg, rgba(168,144,192,1) 0%, rgba(233,136,187,1) 100%);
  --tictok: #000000;
}


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

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


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

body{
	color: var(--blue);
	background: var(--light);
	font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: .5px;
  overflow: auto;
}
body *{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* fonts */
body .en{
	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;	
}
/* 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;	
}
.inner{
  width: calc(100% - 20px);
	max-width: 1300px;
	margin: 0 auto;
  z-index: 1;
  position: relative;
}
.layout-box{
  display: flex;
  justify-content: space-between;  
}

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

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

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

.btn{
  margin: 32px auto;
}
.btn a{
  position: relative;
  display: block;
  text-align: center;
  max-width: 520px;
  margin: auto;
  font-size: 2.2rem;
  color: var(--light);
  padding: 16px 8px;
  transition: .3s;
  background-color: var(--blue);
}
.btn a:hover{opacity: .7;}
.btn a::before{
  content: "";
  position: absolute;
  top: 50%;   /* 縦軸をセンタリングする */ 
  right: 32px;
  transform: translateY(-50%);   /* 縦軸をセンタリングする */  
  border: 10px solid transparent;
  border-left: 16px solid var(--light);   /* 好みで色を変えてください */  
}



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

.btn.req a{
  background: var(--graorange);
}
.btn.rev a{
  background: var(--grablue);
}


/* page-notes
-----------------------------------------------------------------*/
.page-notes{
  padding: 80px 0 15px;
  background: var(--light);	
}
.page-notes ul,.page-notes p{
  width: calc(100% - 20px);
  max-width: 1300px;
  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
-----------------------------------------------------------------*/

.con_mv_img{
  position: relative;
}
.con_mv_img::after{
  content: '';
  display: block;
  background: #ffffff;
  background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
}
.con_mv_ttl{
  background-color: var(--light);
  text-align: center;
  padding: 4% 1%;
  position: relative;
  z-index: 1;
  top: -80px;
  max-width: 1300px;
  width: 90%;
  margin: auto;
}
.con_mv_ttl h2{
  display: block;
  background: var(--grablue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 7.2rem;
  line-height: 1;
}
.con_mv_ttl p{
  font-size: 2rem;
  line-height: 1;
  padding-top: 2%;
  color: var(--blue);
  font-weight: 700;
}

.contents_wrap{}

@media screen and (max-width: 640px) {
    .con_mv_img .cap{
      bottom: 32px;
    }
  .con_mv_img::after{
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 2%, rgba(255, 255, 255, 0) 100%);
  }
  .con_mv_ttl{
    padding: 40px 1% 0;
    top: -30px;
    max-width: 100%;
    width: 90%;
    margin: auto;
  }
  .con_mv_ttl h2{
    font-size: 3.4rem;
  }
  .con_mv_ttl p{
    font-size: 1.3rem;
    padding-top: 4%;
  }
}


/* sec-ttl
-----------------------------------------------------------------*/

.sec-ttl {
  position: relative;
  line-height: 1;
  margin-bottom: 8%;
  /* overflow: hidden; */
}
.sec-ttl .ttl-bg {
  display: block;
  text-align: center;
  font-size: 15rem;
  letter-spacing: .1em;
  line-height: .85;
  white-space: nowrap;
  background: var(--grablue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: .1;
}
.sec-ttl .ttl {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: block;
  text-align: center;
  width: 100%;
}
.sec-ttl .ttl .en {
  font-size: 7rem;
  letter-spacing: .1em;
  text-align: center;
  background: var(--grablue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sec-ttl .ttl .ja {
  margin-top: 24px;
  font-size: 20px;
  letter-spacing: .05em;
  font-weight: 700;
  display: block;
  text-align: center;
}
@media screen and (max-width: 640px) {
  .sec-ttl {
    position: relative;
    line-height: 1;
    margin-bottom: 16%;
    /* overflow: hidden; */
  }
  .sec-ttl .ttl-bg {
    display: block;
    text-align: center;
    font-size: 6rem;
  }
  .sec-ttl .ttl .en {
    font-size: 3.2rem;
  }
  .sec-ttl .ttl .ja {
    margin-top: 16px;
    font-size: 1.3rem;
  }
}




/* カーソル切り替え */

.change {
  position: relative;
  /* cursor: none; */
}

.change img.cur {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  transition: transform 0.2s;
  transition-timing-function: ease-out;
  z-index: 100;
}

.change.on_mouse img.cur {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: transform 0.2s;
}

@media screen and (max-width: 960px) {
  .change img.cur {
    display: none;
  }
}


/* slick 設定 */

/*====================================================================
.modelslider
====================================================================*/



.slider .slick-dots {
  bottom: -20px;
  left: 42%;
}
.slider .slick-dots li {
  position: relative;
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.slider .slick-dots li button {
  font-size: 0;
  line-height: 0;
  padding: 0;
  cursor: pointer;
  color: transparent;
  border: 0;
  text-indent: -9999px;
  display: block;
  width: 5px;
  height: 5px;
  margin: 0 5px;
  outline: 0;
  border-radius: 5px;
  transition-duration: 0.3s;
  background: var(--dark);
}
.slider slick-dots li button:before {
  content: none;
}
.slider .slick-dots li button:hover, .slider  .slick-dots li.slick-active button {
  background: var(--orange);
}
.slider  .slick-dots li button:hover:before, .slider  .slick-dots li.slick-active button:before {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 1px solid var(--orange);
  border-radius: 50%;
}



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


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


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

#Content{
  margin-top: 5%;
}


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

.btn{
  margin: 16px auto;
}
.btn a{
  position: relative;
  display: block;
  text-align: center;
  max-width: 580px;
  margin: auto;
  font-size: 1.5rem;
  color: #fff;
  padding: 12px 8px;
}
.btn a::before{
  content: "";
  position: absolute;
  top: 50%;   /* 縦軸をセンタリングする */ 
  right: 10px;
  transform: translateY(-50%);   /* 縦軸をセンタリングする */  
  border: 5px solid transparent;
  border-left: 8px solid #fff;   /* 好みで色を変えてください */  
}

.btn.req a{
  background-color: var(--blue);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

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



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


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


/* floating-banner */

.floating{
	display: none;
	position: fixed;
	right: 10px;
  left: auto;
  transform: none;
	bottom: 16px;
	z-index: 9999;
	width: 90%;
  max-width: 470px;
}
.floating.none{
	display: none !important;
}
.floating .btn-close{
    width: 30px;
  	margin-bottom: -10px;
    cursor: pointer;
      position: absolute;
      top: -17%;
      right: 1%;
      z-index: 12002;
  }

@media screen and (max-width: 768px) {
  .floating{
    display: block;
    position: fixed;
    right: none;
    left: 50%;
    transform: translateX(-50%);
    bottom: 122px;
    z-index: 2;
    width: 90%;
    max-width: 400px;
  }
.floating .btn-close{
    width: 30px;
  	margin-bottom: -10px;
    cursor: pointer;
      position: absolute;
      top: -64%;
      right: 0%;
  }
}






