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


.header {
    width: 100%;
    position: fixed;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 9999;
    line-height: 1.5;
    padding: 15px 30px;
}
.header-logo {
    margin: 0;
}
.header .header-logo img.logo-white {
	display: inline-block;
}
.header .header-logo img.logo-fixed {
	display: none
}

/********************************************** 
	
メインナビゲーション

********************************************* */

.header-nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0;
}
.header-nav > ul > li {
    -webkit-transition: all 0.2s cubic-bezier(0.35, 0.05, 0.55, 0.85) 0s;
    transition: all 0.2s cubic-bezier(0.35, 0.05, 0.55, 0.85) 0s;
    margin-left: 1.5em;
}
.header-nav > ul > li:last-child {
	margin-left: .5em;
}
.header-nav > ul > li > a {
    display: block;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: .1rem;
    padding: 10px 0;
    position: relative;
}
.header-nav > ul > li > a.nav_btn {
	width: 160px;
	text-align: center;
	color: #fff !important;
	font-size: 1.4rem;
	border-radius: 400px;
	overflow: hidden;
}
.header-nav > ul > li > a.nav_btn:before {
	height: 100%;
	background: var(--gradient1) !important;
	width: 100%;
	z-index: -1;
}
.header-nav > ul > li > a.nav_btn:after {
	height: 100%;
	background: linear-gradient(135deg, var(--blue1) 0%, var(--blue2) 100%) !important;
	z-index: -1;
}
.header-nav > ul > li > a.nav_btn:after:before {
	height: 100%;
	background: var(--gradient1) !important;
	width: 100%;
	z-index: -1;
}
.header-nav > ul > li > a.nav_btn:after:after {
	height: 100%;
	background: linear-gradient(135deg, var(--blue1) 0%, var(--blue2) 100%) !important;
	z-index: -1;
}
.header-nav > ul > li > a.nav_btn span.material-icons {
	font-size: 2rem;
	margin-right: .25em;
	margin-top: -2px;
}
.header-nav > ul > li > a:after,.header-nav > ul > li > a:before {
	content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    right: 0;
    height: 1px;
    background: #fff;
    -webkit-transition: 0.2s cubic-bezier(0.35, 0.03, 0.52, 1);
    transition: 0.2s cubic-bezier(0.35, 0.03, 0.52, 1);
}
.header-nav ul > li > a:before {
	background-color: rgba(0,0,0,.25);
    -webkit-transition: 0.2s cubic-bezier(0.35, 0.03, 0.52, 1) 0.1s;
    transition: 0.2s cubic-bezier(0.35, 0.03, 0.52, 1) 0.1s;
}
.header-nav > ul > li > a:hover:after,.header-nav ul li a:hover:before {
	left: 0;
    width: 100%;
}
.header-nav > ul > li:hover > a:after,.header-nav ul li:hover a:before {
	left: 0;
    width: 100%;
}

/********************************************** 
	
固定ヘッダー

********************************************* */
.header.is-fixed {
    position: fixed;
    left: 0;
    top: 0;
/*     background-color: rgba(255, 255, 255, 0.9);  */
    box-shadow: 0 5px 20px rgba(0,0,0 ,.16);
    z-index: 9999;
}
.header.is-fixed .header-logo img.logo-white {
	display: none
}
.header.is-fixed .header-logo img.logo-fixed {
	display: inline-block;
}
.header.is-fixed .header-nav > ul > li > a {
	color: var(--blue1);
}
.header.is-fixed .header-nav > ul > li > a:after {
	background: var(--blue1);
}
.header-bg {
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	left: 0;
    top: 0;
    opacity: 0;
    -webkit-transition: 0.25s cubic-bezier(0.35, 0.03, 0.52, 1) 0.1s;
    transition: 0.25s cubic-bezier(0.35, 0.03, 0.52, 1) 0.1s;
    z-index: -1;
}
.header.is-fixed .header-bg {
    opacity: 1;
}

/********************************************** 
	
スマホトグルボタン

********************************************* */
#nav-toggle {
    display: none;
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 101;
    padding: 12px;
    background-color: var(--blue1);
    border-radius: 50%;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 100%;
    background: #fff;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 2px;
}
#nav-toggle span:nth-child(2) {
    top: 8px;
}
#nav-toggle span:nth-child(3) {
    top: 14px;
}

/********************************************** 
	
メインビジュアル

********************************************* */
#visual {
	position: relative;
	width: 100%;
	height: 100vh;
	min-height: 500px;
	background: url(../images/main_visual.jpg) center center/cover no-repeat;
}
/*
#visual:before {
	width: 30%;
	height: 95%;
	content: "";
	display: block;
	clip-path: polygon(0 0,0 100%,100% 0);
	background: var(--gradient1);
	position: absolute;
	left: 0;
	top: 0;
	z-index: +1;
}
*/
.overlay::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background: rgba(0, 0, 0, .1);
}
.visual-content {
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	align-items: center;
	z-index: +2;
}
.visual-content .container {
	max-width: 1360px;
	padding: 0 30px;
}
.visual-content-inner {
	padding-top: 80px;
}
.visual-content-inner span {
	color: var(--blue3);
	display: inline-block;
    position: relative;
    padding: 5px .35em;
    font-size: clamp(2rem, calc(1.75vw + 2rem), 5.4rem);
	font-weight: 600;
	white-space: nowrap;
	line-height: 1.5;
	margin-bottom: 1.5rem;
	background: rgba(255,255,255,.9);
}
.visual-content-inner span:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-clip-path: inset(0);
    clip-path: inset(0);
    -webkit-transition: -webkit-clip-path .4s cubic-bezier(1,.05,.05,.75) .7s;
    transition: -webkit-clip-path .4s cubic-bezier(1,.05,.05,.75) .7s;
    transition: clip-path .4s cubic-bezier(1,.05,.05,.75) .7s;
}
.visual-content-inner span:nth-of-type(2):before {
	transition-delay: .9s;
}
.visual-content-inner span:nth-of-type(3):before {
	transition-delay: 1.1s;
}
.visual-content.isPlay .visual-content-inner span:before {
    -webkit-clip-path: inset(0 0 0 100%);
    clip-path: inset(0 0 0 100%);
}
.visual-content-inner .sub_title {
	color: #fff;
	font-size: 2.4rem;
	font-size: clamp(1.6rem, calc(1vw + 1rem), 2.4rem);
	font-weight: 500;
	position: relative;
	padding-left: 6rem;
	line-height: 1.25;
	margin-top: 1rem;
	text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
}
.visual-content-inner .sub_title strong {
	display: inline-block;
	font-size: 150%;
	margin-left: .25em;
}
.visual-content-inner .sub_title::before {
	content: '';
	display: block;
	width: 4rem;
	height: 1px;
	background: #fff;
	position: absolute;
	left: 0;
	top: 1.1em;
}


.visual-scroll {
	position: relative;
}
.visual-scroll a {
	color: #fff;
	font-size: 1.4rem;
	position: absolute;
	top: -57px;
	left: 50%;
	z-index: 2;
	display: inline-block;
	-webkit-transform: translateX(-50%);
    transform: translateX(-50%);
	text-decoration: none;
	font-weight: bold;
}
.visual-scroll a span {
    position: relative;
    display: block;
    height: 50px;
}
.visual-scroll a span:before {
    content: '';
    width: 1px;
    height: 100%;
    background: var(--blue1);
    display: block;
    position: absolute;
    left: 27px;
    bottom: 0;
}
.visual-scroll a span:after {
    content: '';
    width: 1px;
    background: #fff;
    display: block;
    position: absolute;
    left: 27px;
    bottom: 0;
    -webkit-animation: scroll 1.25s ease-in-out 0s infinite;
    animation: scroll 1.25s ease-in-out 0s infinite;
}
@keyframes scroll {
  0% {
    height: 0%;
    top: 0;
    bottom: auto;
  }
  46% {
    height: 100%;
    top: 0;
    bottom: auto;
  }
  50%,
  54% {
    height: 100%;
    bottom: 0;
    top: auto;
  }
  100% {
    height: 0%;
    bottom: 0;
    top: auto;
  }
}
/********************************************** 
	
言語スイッチャー

********************************************* */
.lang_wrap {
	position: relative;
	z-index: +1;
	margin-left: 1em;
}
.lang_wrap select {
	border-radius: 100px;
	padding: 2px 1.5em 2px 1em;
	text-align: center;
	border: 1px solid var(--blue1);
	color: var(--blue1);
	font-size: 1.3rem;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
}

@media (min-width: 992px) {
	
}

@media (max-width: 1301px) {
	.header-nav > ul > li {
		margin-left: 1em;
	}
	.lang_wrap {
		margin-left: .5em;
	}
}
@media (max-width: 991px) {
	
	.header {
	    background: #fff;
	    position: fixed;
	    top: 0;
	    left: 0;
	    height: 50px;
	    z-index: 1000000;
	    padding: 0 10px;
	}
	.header-logo {
		padding: 0;
	}
	.header-logo img.logo-white {
	    display: none !important;
	    width: 80px;
	}
	.header-logo img.logo-fixed {
	    display: block !important;
	    width: 80px;
	}
	.header .header-logo img.logo-white {
		display: inline-block;
	}
	.header .header-logo img.logo-fixed {
		display: none
	}

/********************************************** 
	
メインナビゲーション

********************************************* */	
	#nav-toggle {
		display: block;
	}
/* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
        top: 8px;
        -webkit-transform: rotate(135deg);
        -moz-transform: rotate(135deg);
        transform: rotate(135deg);
    }
    .open #nav-toggle span:nth-child(2) {
        width: 0;
        left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
        top: 8px;
        -webkit-transform: rotate(-135deg);
        -moz-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
/* スライドアニメーション */
	.header-nav {
		position: fixed;
	    display: block;
	    width: 100vw;
	    height: 100vh;
	    left: 0;
	    top: 50px;
	     background: var(--blue1);
	    opacity: 0;
	    -webkit-transform: translateX(100%);
	    transform: translateX(100%);
	    -webkit-transition: 0.3s ease 0s;
	    transition: 0.3s ease 0s;
	}
	.header-nav > ul.main-nav > li:last-child a, .header.is-fixed > .header-nav > ul.main-nav > li:last-child a {
	    background-color: transparent;
	}
	.open .header-nav {
	    -webkit-transform: translateX(0%);
	    transform: translateX(0%);
	    opacity: 1;
	    -webkit-transition: 0.3s ease 0s;
	    transition: 0.3s ease 0s;
	    overflow-y: scroll;
	    align-items: start !important;
	}
	.open .header-nav::-webkit-scrollbar {
		display: none;
	}
/* スマホメインナビゲーション	 */
	.header-nav ul {
		display: block;
	}
	.header-nav > ul.main-nav {
	    width: 100%;
	    position: relative;
	    padding-top: 30px;
	}
	.header-nav > ul.main-nav li {
		position: relative;
	}
	.header-nav > ul.main-nav > li::before,.header-nav > ul.main-nav > li::after {
		content: '';
	    width: 8px;
	    height: 2px;
	    background: #fff;
	    display: block;
	    position: absolute;
	    right: 22px;
	    z-index: 12;
	}
	.header-nav > ul.main-nav > li::before {
		top: 22px;
	    -webkit-transform: rotate(45deg);
	    transform: rotate(45deg);
	}
	.header-nav > ul.main-nav > li::after {
		top: 26px;
	    -webkit-transform: rotate(-45deg);
	    transform: rotate(-45deg);
	}
	.header-nav > ul.main-nav > li > a,.is-fixed .header-nav > ul.main-nav > li > a {
		color: #fff !important;
        font-size: 1.4rem;
        font-weight: bold;
        line-height: 1.5;
        position: relative;
        text-align: left;
        height: 55px;
        display: flex;
        align-items: center;
	}
	.header.is-fixed .header-nav ul.main-nav li a {
		line-height: 1.5;
	}
	.header-nav ul.main-nav li a::before,
	.header-nav ul.main-nav li a::after {
		display: none;
	}
	.sp_btn_nav {
		margin-top: 3rem;
	}
	.sp_btn_nav a {
		margin-bottom: 1rem;
	}
/********************************************** 
	メインビジュアル
********************************************* */
	#visual {
		height: 500px;
	}

}

@media (max-width: 767px) {
	/********************************************** 
	メインビジュアル
********************************************* */
	#visual {
		min-height: auto;
		height: auto;
        margin-top: 50px;
        height: 400px;
	}
	#visual:before {
		display: none;
	}
	.visual-content .container {
		padding: 0 15px;
	}
	.visual-content-inner {
		padding-top: 0;
	}
	.visual-content-inner span {
	    font-size: clamp(1.8rem, calc(1.25vw + 1.2rem), 4.8rem);
	    margin-bottom: .6rem;
	}
	
	.visual-scroll a {
	    font-size: 1.2rem;
	    top: -32px;
	}
	.visual-scroll a span {
	    height: 24px;
	}
	.visual-scroll a span:before ,.visual-scroll a span:after {
		left: 50%;
	}
	.visual-content-inner .sub_title {
		font-size: 1.5rem;
		padding-left: 0;
		line-height: 1.25;
		margin-top: 1rem;
		text-shadow: 0px 0px 20px rgba(0, 0, 0, 0.6);
	}
	.visual-content-inner .sub_title strong {
		font-size: 120%;
		margin-left: 0;
	}
	.visual-content-inner .sub_title::before {
		display: none;
	}


}