@charset "UTF-8";
/* CSS Document */

/*-----------------header-----------------*/


nav{
	font-family: english-grotesque, sans-serif;
	font-weight: 300;
	font-style: normal;
}
	
@media (min-width: 1110px) {
	#header{
		position:fixed;
		width: calc(100% - 60px);
		height: 52px;
		top: 30px;
		left: 30px;
		z-index: 4;
		background-color: #fff;
		border-radius: 37px;
		transition: .3s;
		box-shadow: 6px 10px 5px -8px rgba(0, 0, 0, 0.3) ;
		display: flex;
		justify-content: space-between;
	}
	.headermini{
		width: 100%!important;
		top: 0!important;
		left: 0!important;
		height: 46px!important;
		border-radius: 0 0 25px 25px!important;
		transition: .3s;
		position: relative;
	}
}
@media (max-width: 1109px) {
	#header{
		width: calc(100% - 20px);
		position:fixed;
		top: 0;
		left: 10px;
		z-index: 4;
		background-color: #fff;
		height: 50px;
		border-radius: 0 0 25px 25px;
		transition: .3s;
		box-shadow: 6px 10px 5px -8px rgba(0, 0, 0, 0.3) ;
	}
}
#head_logo{
	max-width: 245px;
	height: 100%;
    position:absolute;
	padding: 10px 20px;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	box-sizing: border-box;
	z-index: 2
}
#head_logo > a{
	align-items: center;
}
#head_logo > a > img{
    width:auto;
    height: 100%;
}

@media (min-width: 1110px) {
    .head_info{
			height: 100%;
			display: flex;
			flex-wrap: nowrap;
			align-items: center;
    }
	.head_info ul {
		height: 100%;
		list-style: none;
	}
	.head_info > li {
		height: 100%;
		font-weight: 700;
		padding: 0 20px;
	}
	.head_info > li:last-child {
		height: 100%;
		font-weight: 700;
		padding: 0 30px;
		overflow: hidden;
		border-top-right-radius: 37px;
		border-bottom-right-radius: 37px;
		transition: all .3s ease;
	}
}
@media (max-width: 1109px) {
    .head_info{
		height: 100%;
		display: block;
    }
}
@media (min-width: 1110px) {
	.head_info a {
		height: 100%;
		text-align: center;
		transition: all .3s ease;
		display: flex;
		align-items: center;
	}
	.head_info a:hover {
		color: #5CA0DA;
	}
	.header_menu_mini{
		border-radius: 0 0 25px 0!important;
		transition: .3s;
		position: relative;
	}
  #header.headermini .gnav__menu.head_info > li:last-child{
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 25px !important;
  }
}
@media (max-width: 1109px) {
	.head_info a {
	  display: block;
	}
}
li.btn_entry{
	padding: 0!important;
}
li.btn_casual{
	padding: 0!important;
}
@media (min-width: 1110px) {
	li.btn_entry > a{
		background: #0084FF;
		color: #fff;
		padding: 0 20px;
	}
	.btn_casual > a{
		background: #EFFF91;
		padding: 0 20px;
	}
}
li.btn_entry > a:hover{
	background: #fff;
	color: #0084FF;
}
@media (min-width: 1110px) {
	.menu{
		/*width: 40px;
		height: 24px;
		text-align: center;
		position: absolute;
		top: 50%;
		right: 20px;
		transform: translateY(-50%);
		z-index: 1;*/
		display: none;
	}
}
@media (max-width: 1109px) {
	.menu{
		width: 40px;
		height: 24px;
		position: absolute;
		right: 14px;
		top: 13px;
		z-index: 99;
		cursor: pointer;
		text-align: center;
	}
}
.head_info p{
    padding-top: 10px;
    font-size:11px;
}
/*menu*/
.menu__line{
    width: 40px;
    height: 4px;
    background: #000;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line.active{
    width: 40px;
    height: 4px;
    display: block;
    position: absolute;
    transition:transform .3s;
	box-sizing: border-box;
}
.menu__line--top:nth-of-type(1) {
	top: 0px;
	right: 0px;
}
.menu__line--bottom:nth-of-type(2) {
	bottom: 0;
	right: 0;
}

.menu__line--top:nth-of-type(1) {
  animation: menu-bar01 .5s forwards;
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(10px) rotate(45deg);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--bottom:nth-of-type(2) {
  animation: menu-bar02 .5s forwards;
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-10px) rotate(-45deg);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.menu__line--top.active:nth-of-type(1) {
  animation: active-menu-bar01 .5s forwards;
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(45deg);
  }
}
.menu__line--bottom.active:nth-of-type(2) {
  animation: active-menu-bar03 .5s forwards;
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-10px) rotate(0);
  }
  100% {
    transform: translateY(-10px) rotate(-45deg);
  }
}


@media (min-width: 1110px) {
	/*gnav*/
	.gnav{
		width: 100%;
		display: block!important;
	}
	.gnav__wrap{
		width: 100%;
		height: 100%;
		align-items:center;
		display: flex;
		justify-content: center;
	}
	.gnav__menu{
		width:100%;
		position:absolute;
		top: 0;
		right: 0;
		display: flex;
		align-items:center;
		justify-content: flex-end;
	}
}
@media (max-width: 1109px) {
	/*gnav*/
	.gnav{
		background-color: #fff;
		display: none;
		height: 100vh;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		z-index: 98;
	}
	.gnav__wrap{
		width: 100%;
		height: 100%;
		position: relative;
		overflow-y: scroll;
	}
	.gnav__menu{
		max-width: 500px;
		margin: 0 auto;
		padding: 70px 10px;
		position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
	}
	.gnav__menu__item{
		position: relative;
		margin: 10px;
		border-bottom: solid 1px #000;
		width: calc(50% - 20px);
	}
	.gnav__menu__item > a{
		font-size: 2rem;
		font-weight: bold;
		padding: 20px 0;
		text-decoration: none;
		transition: .5s;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}
	.gnav__menu__item > a::after{
		content: '';
		width: 8px;
		height: 8px;
		border-top: solid 2px #000;
		border-right: solid 2px #000;
		transform: rotate(45deg);
		display: inline-block;	
		}
}	

/* 背景スクロールロック用（開閉時に付与/除去） */
body.nav-open {
  position: fixed;     /* iOS Safari対策 */
  width: 100%;
  overflow: hidden;    /* 念のため */
}


.gnav.is-open {
  overflow: auto;                 /* 開いたらgnav自体をスクロール可能に */
  -webkit-overflow-scrolling: touch; /* iOS慣性スクロール */
}



/*----------------------mega menu--------------------------*/
.megalink{
	display:block;
}
@media (min-width: 1110px) {
	.megalink > a{
		position: relative;
	}
	.megalink > a::after{
		content: '';
		background: #000;
		height: calc(tan(60deg) * 8px / 2);
		width: 8px;
		clip-path: polygon(0 0, 100% 0, 50% 100%);
		margin-left: 5px;
	}
	.megamenu_ctt_mini{
		top: 50px!important;
	}
	.megamenu_ctt{
		width: calc(100% - 74px);
		max-width: 1110px;
		padding: 15px;
		position: absolute;
		top: 52px;
		left: 50%;
		transform: translateX(-50%);
		background-color: #fff;
		color: #000;
  		visibility: hidden; /* 下層メニューを非表示 */
		transition: all 0.2s ease;	
		opacity: 0;
		box-sizing: border-box;
		border-bottom-left-radius: 37px;
		border-bottom-right-radius: 37px;
		box-shadow: 6px 10px 5px -8px rgba(0, 0, 0, 0.3);
	}
    .megamenu_ctt_inner{
        max-width: 1110px;
        margin:0 auto;
        position: relative;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
        
    }
	.megamenu_ctt_inner > .megamenu{
		width:calc(100% - 230px);
		padding: 15px;
		box-sizing: border-box;
		border-left: solid 2px #fff;
	}
	.megalink:hover .megamenu_ctt { /* 下層メニューのスタイル（親項目ホバー時） */
  		visibility: visible; /* 下層メニューを表示 */
		transition: all 0.2s ease;	
		opacity: 1;
	}
    .megamenu_ctt_inner > .title{
        width: 230px;
        padding: 15px;
		box-sizing: border-box;
		text-align: center;
    }
    .megamenu_ctt_inner > .title > h2{
        display:block;
        font-weight: 700;
        font-size: 2.2rem;
    }
    .megamenu_ctt_inner > .title > a{
        border: solid 1px #fff;
        border-radius: 13px;
        color: #fff;
        margin-top: 10px;
        transition: all 0.5s ease;
        font-size: 1.4rem;
        padding: 2px 7px;
    }
}
@media (max-width: 1109px) {
	.megamenu_ctt{
		width:100%;
		position: relative;
	}
	.megamenu_ctt_inner{
		width:100%;
		position: relative;
		display: block;
	}
	.megamenu_ctt_inner > .megamenu{
		width:100%;
		padding: 15px 0;
	}
	.megalink:hover .megamenu_ctt { /* 下層メニューのスタイル（親項目ホバー時） */
		display: block;
	}
    .megamenu_ctt_inner > .title{
        width: 100%;
    }
    .megamenu_ctt_inner > .title > h2{
        display: none;
    }
    .megamenu_ctt_inner > .title > a{
        border: solid 1px #fff;
        border-radius: 13px;
        color: #fff;
        margin-top: 15px;
        font-size: 1.4rem;
        padding: 2px 7px;
        display: block;
        text-align: center;
    }
}

@media (min-width: 1110px) {
	.megamenu > ul{
		width: 100%;
		list-style:none;
		font-weight: 700;
		display: flex;
		flex-wrap: wrap;
	}
	.megamenu > ul > li{
		width: calc(33.333% - 40px);
		padding-bottom: 20px;
		margin: 20px;
		border-bottom:dotted 1px #000;
		box-sizing: border-box;
		position: relative;
	}
}
@media (max-width: 1109px) {
	.megamenu > ul{
		font-weight: 700;
		box-sizing: border-box;
	}
	.megamenu > ul > li{
		width: 100%;
		padding-bottom: 15px;
		margin-bottom: 15px;
		position: relative;
	}
}

.megamenu > ul > li > a{
	transition: all 0.5s ease;
	font-weight: 700;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap:10px;
}
.megamenu > ul > li > a > img{
	width: 15px;
	height: auto;
}
.megamenu > ul > li > a > span{
	font-size:1.4rem;
	font-weight: normal;
}
.megamenu > ul > li > a > .arrow{
	display: inline-block;
	width: 8px;
	height: 8px;
	border-top: solid 2px #000;
	border-right: solid 2px #000;
	transform: rotate(45deg);
}
@media (min-width: 1110px) {
    .megamenu > ul > li > ul{
        padding-left: 20px;
        font-size: 1.6rem;
        list-style: disc;
    }
    .megamenu > ul > li > ul > li{
        padding-top: 20px;
        list-style: disc;
    }
    .megamenu > ul > li > ul > li > a{
        transition: all 0.5s ease;
    }
    .megamenu > ul > li > ul > li > a:hover{
        opacity: 0.7;
    }
}
@media (max-width: 1109px) {
    .megamenu > ul > li > ul{
        padding-left: 0;
        font-size: 1.6rem;
        list-style: disc;
    }
    .megamenu > ul > li > ul > li{
        padding-top: 20px;
        list-style: none;
    }
    .megamenu > ul > li > ul > li::before{
        content: ' - ';
    }
    .megamenu > ul > li > ul > li::after{
        content: ' - ';
    }
}


/**************スクロールダウンイベント****************/

@media (min-width: 769px) {
    .i_about_bgmov {
        width:100%;
        white-space:nowrap;
        position: absolute;
        bottom: -70px;
        left: 0%;
        font-size: 10rem;
        line-height: 1em;
        z-index: -1;
    }
}
@media (max-width: 768px) {
    .i_about_bgmov {
        width:100%;
        white-space:nowrap;
        position: absolute;
        bottom: -20px;
        left: 0%;
        font-size: 10rem;
        line-height: 1em;
        z-index: -1;
    }
}
@keyframes hscroll2 {
    0% { transform:translateX(4px); }
    100% { transform:translateX(-100%); }
}
.i_about_bgmov ul {
    display:inline-block;
    margin:0;
    padding:0;
    animation:hscroll2 200s linear infinite;
}
.i_about_bgmov li {
    display:inline-block;
    font-weight: 700!important;
        color: #F2F2F2;
}
.drop_arrow{
    width: 5px;
    height: 5px;
    border-bottom: solid 2px #000;
    border-right: solid 2px #000;
    transform: rotate(45deg);
    display: inline-block;
    margin-left: 5px;
    margin-bottom: 3px;
}


@media (min-width: 799px) {
	.slide_ctt{
		width:100%;
		height: 100vh;
		min-height: 768px;
		display: block;
		position: relative;
		overflow: hidden;
	}
}

@media (max-width: 798px) {
	.slide_ctt{
		height: 90vh;
	}
}
.slide_ctt::after{
	content: "";
	width:100%;
	height: 100vh;
	position: absolute;
	top: 0;
	left: 0;
	background:#C9C9C9;
	mix-blend-mode: multiply;
}
/* #EDF1F4, #ECF3F8,#E6EAED,#fff */
@media (min-width: 799px) {
	.mvctt{
		width:100%;
		height: 100vh;
		min-height: 600px!important;
		position: relative;
	}
	.mvctt_on{
		max-width: 620px;
		position: absolute;
		left: 50%;
		top: 50%;
		transform: translate(-50%, -50%);
	}
	.mvctt_copy{
		color: #FFF;
		font-family: Roboto;
		font-size: 20px;
		font-style: normal;
		font-weight: 700;
		line-height: 130%; /* 26px */
		transform: rotate(-90deg);
		position: absolute;
		bottom: 80px;
		right: 10px;
	}
}
@media (max-width:798px) {
	.mvctt{
		width:100%;
		min-height: 90vh; 
		position: relative;
		overflow: hidden;
	}
	.mvctt_on{
		width: 100%;
		position: absolute;
		top: 70px;
		left: 0;
		padding: 20px;
	}
	.mvctt_copy{
		color: #FFF;
		font-family: Roboto;
		font-size: 20px;
		font-style: normal;
		font-weight: 700;
		line-height: 130%; /* 26px */
		transform: rotate(-90deg);
		position: absolute;
		bottom: 120px;
		right: 0;
	}
}

@-webkit-keyframes mvanimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@-moz-keyframes mvanimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@keyframes mvanimation {
    0%{background-position:0% 50%}
    50%{background-position:100% 51%}
    100%{background-position:0% 50%}
}
@media (min-width: 799px) {
	.mvctt_on > #copy{
		color: #27201E;
		font-family: "Zen Kaku Gothic New";
		font-size: 68px;
		font-style: normal;
		font-weight: 700;
		line-height: 122%; /* 82.96px */
		letter-spacing: 2.72px;
		display: inline-block;
		color: #FFF;
		text-align: center;
	}
}
@media (max-width: 798px) {
	.mvctt_on > #copy{
		font-size: 7vw;
		font-style: normal;
		font-weight: 700;
		line-height: 122%; /* 82.96px */
		letter-spacing: 2.72px;
		display: inline-block;
		color: #FFF;
	}
}
.info_ico{
	color: #737072;
	font-family: "Noto Sans JP";
	font-size: 1rem;;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.6px;
	padding: 2px 5px;
	border:solid 1px #737072;
	border-radius: 10px;
	display: inline-block;
	margin-right: 10px;
}
.info_date{
	color: #737072;
	font-family: "Noto Sans JP";
	font-size: 1.2rem;;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.72px;
	display: inline-block;
}
a .info_ttl{
	color: #000;
	font-family: "Noto Sans JP";
	font-size: 1.3rem;
	font-style: normal;
	font-weight: 700;
	line-height: 20px; /* 153.846% */
	display: block;
	padding-top: 5px;
	transition: all .5s ease;
	padding-right: 40px;
}
a:hover .info_ttl{
	color: #737072!important;
	text-decoration: underline;
}
.mv_btn {
	padding: 20px 0;
	display: flex;
	justify-content: center;
}
@media (max-width: 798px) {
	.mv_btn {
		justify-content: flex-start;
	}
}
.mv_btn > a:link{
	width: 184px;
	height: 56px;
	flex-shrink: 0;
	transition: all .5s ease;
	border:solid 1px #fff;
	border-radius: 28px;
	display : flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 173.333% */
}
.mv_btn > a:hover{
	transition: all .5s ease;
	border:solid 1px #fff;
	background: #fff;
	border-radius: 28px;
	display : flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	color: #000;
	font-size: 15px;
	font-style: normal;
	font-weight: 700;
	line-height: 26px; /* 173.333% */
}


/**************スクロールダウンイベント****************/

@media (min-width: 768px) {
	#top_s_down a {
		display: inline-block;
		color: #151515;
		font-size: 12px;
		font-family: 'Josefin Sans', sans-serif;
		line-height: 1;
		letter-spacing: .1em;
		text-decoration: none;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}
    #top_s_down > a::before {
        width: 180px;
        content: 'SCROLL';
        position: absolute;
        bottom: 120px;
				left: 50%;
				transform: translateX(-50%);
        text-align: center;
        color: #fff;
    }
    #top_s_down a::after {
        content: '';
        position: absolute;
        bottom: 0;
				left: 50%;
				transform: translateX(-50%);
        width: 1px;
        height: 100px;
        background: #fff;
    }
}
@media (max-width: 767px) {
	#top_s_down a {
		display: none;
	}
}
#top_s_down a::after {
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  35% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  35.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  70%, 100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


