@charset "utf-8";

/* -------------------------------------------- 
	変数設定
-------------------------------------------- */
:root {
	/* general */
	--bg-color: #020514;
	--bg-text-color: #E6EBFF;
	--bg-text-color-2: #c7cee4;
	--bg-link-color: #698ceb;
	--hover-text-color: #2E4EED;
	--font-size:15px;
	--page-padding-width: 20px;
	--max-width-large: 1080px;
	--max-width-midium: 980px;
	--max-width-small: 860px;
	--max-width-xs: 640px;
	--button-transition: 0.7s;
	--error-color: #ff0000;
	--content-margin: 40px;
		/* site logo shared size for splash and KV */
		--site-logo-width: clamp(200px, 38vw, 380px);

	/* header */
	--gnav-color: #E6EBFF;
	--header-height: 80px;

	/* footer */

}

@media (min-width:769px) {
	:root {
		--font-size:16px;
		--page-padding-width: 30px;
		--header-height: 100px;
		--content-margin: 80px;
	}
}

/* -------------------------------------------- 
	ANIMATION 
-------------------------------------------- */



/* -------------------------------------------- 
	GENERAL
-------------------------------------------- */

html {
	height: 100%;
	scroll-behavior: smooth;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.8;
    letter-spacing: 0.03em;
	font-size: var(--font-size);
	background: var(--bg-color);
	color: var(--bg-text-color-2);
	width: 100%;
	height: 100%;
	overflow-x: hidden;
}


#wrapper {
	width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	position: relative;
	overflow: hidden;

}

#wrapper:not(.top-page) {
	padding-top: var(--header-height);
}

.container-large {
	width: 100%;
	max-width: var(--max-width-large);
	margin: 0 auto;
	padding: 0 var(--page-padding-width);
}

.container-midium {
	width: 100%;
	max-width: var(--max-width-midium);
	margin: 0 auto;
	padding: 0 var(--page-padding-width);
}

.container-small {
	width: 100%;
	max-width: var(--max-width-small);
	margin: 0 auto;
	padding: 0 var(--page-padding-width);
}

.container-xs {
	width: 100%;
	max-width: var(--max-width-xs);
	margin: 0 auto;
	padding: 0 var(--page-padding-width);
}


img {
	width: 100%;
	max-width: 100%;
	height: auto;
}

a {
	color: var(--bg-link-color);
	cursor: pointer;
}

input,
select,
textarea {
	border: 1px solid #b3b3b3;
	padding: 0.25rem;
}

ol{
    list-style: decimal;
    list-style-position: outside;
    padding-left: 1.5em;
}

ol li{
    padding-left: 1em;
}


body.fixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}

.h2-title {
	font-family: "eurostile-extended", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: clamp(34px, 5.9vw, 55px);
	letter-spacing: 0.05em;
	text-align: center;
	margin-bottom: 1em;
	color: var(--bg-text-color);
    line-height: 1.2;
}

.h3-title {
	font-family: "eurostile-extended", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: clamp(33px, 4.6vw, 65px);
	text-align: center;
	margin-bottom:0.8em;
	color: var(--bg-text-color);
    line-height: 1.2;
}

.h3-title.--jp {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-size: clamp(20px, 5.6vw, 32px);
	text-align: left;
	margin-bottom:0.8em;
	line-height: 1.4;
	color: var(--bg-text-color);
}

.h4-title.--jp {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 600;
	font-size: clamp(17px, 5.3vw, 20px);
	text-align: left;
	margin-bottom:0.5em;
	line-height: 1.4;
	color: var(--bg-text-color);
}

.h2-title-svg{
    display: block;
    height: clamp(21px, 5.6vw, 37px);
    width: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.25em;
    margin-bottom: 1.25em;
}

.section {
	padding: 85px 0;
}

#wrapper:not(.top-page)  .section:first-of-type{
	padding-top: 60px;
}



@media (min-width:768px) {
	.section {
		padding:160px 0 160px;
	}
	#wrapper:not(.top-page) .section:first-of-type{
	padding-top: 85px;
}
}

.section>.h2-title,
.section>.h3-title {
	margin-top: 0;
}



/* -------------------------------------------- 
	FONTS
-------------------------------------------- */

/* Eurostile Font Weight 400,500 */
.eurostile-400 {
	font-family: "eurostile-extended", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.eurostile-500 {
	font-family: "eurostile-extended", sans-serif;
	font-weight: 500;
	font-style: normal;
}


/* Noto Sans JP Font Weight 100 to 900 */
.noto-sans-jp {
	font-family: "Noto Sans JP", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

/* Inter Font Weight 100 to 900 */
.inter {
	font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
}

.weight-light {
	font-weight: 300;
}




/* -------------------------------------------- 
	BUTTON STYLE
-------------------------------------------- */

.button__single {
	display: block;
	padding: 1.5em 2.5em;
	font-family: "eurostile-extended", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 15px;
	text-align: center;
	letter-spacing: 1px;
	color: var(--bg-text-color);
	width: 100%;
	max-width: 536px;
	margin: 40px auto 30px;
	position: relative;
	/* background: var(--bg-color); */
	z-index: 1;
}

.button__single:before {
	content: "";
	position: absolute;
	inset: 0;
	padding: 1px;
	background: linear-gradient(331deg, #1fd0ff 0%, #335cff 50%, #2ed3ff 100%);
	-webkit-mask:
		linear-gradient(var(--bg-color) 0 0) content-box,
		linear-gradient(var(--bg-color) 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	opacity: 1;
	transition: 0.4s;
	z-index: 0;
}



/* -------------------------------------------- 
	SUB PAGE
-------------------------------------------- */


#wrapper:not(.top-page):before {
	content: "";
	position: absolute;
	top: -50vh;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
	width: auto;
	height: 125vh;
	aspect-ratio: 2169 / 1341;
	background: url('../img/subpage-bg.svg') no-repeat;
	background-size: contain;
	z-index: -1;
}

@media (orientation: landscape){
   #wrapper:not(.top-page):before {
    transform: translateX(-50%);
    width: 125vw;
	height: auto;
    top: -30vw;
	left: 50%;
   } 
}


/* ---------- ACCORDION ---------- */
/* 
.accordion__inner {
    display: none;
}

.accordion__title {
    position: relative;
}

.accordion__icon-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 40px;
    right: 20px;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
}

.accordion__icon {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.2s;
    position: relative;
}

.accordion__title.open .accordion__icon-wrap {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.accordion__icon:before,
.accordion__icon:after {
    display: flex;
    content: '';
    background-color: var(--service01-color);
    border-radius: 10px;
    width: 18px;
    height: 2px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}

.accordion__icon.--icon02:before,
.accordion__icon.--icon02:after {
    background-color: var(--service02-color);
}

.accordion__icon.--icon03:before,
.accordion__icon.--icon03:after {
    background-color: var(--service03-color);
}

.accordion__icon:before {
    width: 2px;
    height: 18px;
    top: 0;
    left: 7px;
}

.accordion__title.open .accordion__icon-wrap .accordion__icon:before {
    content: none;
}

.accordion__title.open .accordion__icon-wrap .accordion__icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

@media (min-width:520px) {
    .accordion__icon-wrap {
        top: 50px;
    }
}

@media (min-width:768px) {
    .accordion__icon-wrap {
        top: 70px;
    }
} */

/* -------------------------------------------- 
	HEADER
-------------------------------------------- */


.header {
    width: 100%;
    height: var(--header-height, 65px);
    background: transparent;
    color: #fff;
    transition: all 0.3s;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    transition: var(--button-transition, 0.7s);
}

.header__inner {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--page-padding-width);
}

.header__logo {
    display: block;
    width: clamp(150px, 30vw, 215px);
    height: 100%;
    background: url('../img/logo.svg') no-repeat;
    background-size: contain;
    background-position: center center;
    transition: all 0.3s;
    color: transparent;
    font-size: 0;
}

.header__logo-link {
    display: block;
    width: 100%;
    height: 100%;
}



/* -------------------------------------------- 
	navigation
-------------------------------------------- */

.global-nav {
    color: var(--gnav-color, #fff);
    font-family: "eurostile-extended", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-size: 15px;
    letter-spacing: 0.15em;
}

.global-nav.--sp {
    position: absolute;
    top: 0;
    right: -300px;
    width: 80%;
    max-width: 300px;
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
    background: var(--bg-color);
    padding: var(--header-height, 80px) 0 10% 0;
    z-index: 10;
}

.global-nav.--pc {
    display: none;
}

.global-nav__list {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

.global-nav__item {
    width: 100%;
}

.global-nav__item-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    padding: 1em 10%;
    color: var(--gnav-color, #fff);
}

     .global-nav__item-link:hover{
        color: var(--hover-text-color);
        transition: 0.8s;
     }

@media (min-width:769px) {
    .global-nav.--sp {
        display: none;
    }

    .global-nav.--pc {
        display: block;
    }

    .global-nav {
        display: block;
        width: auto;
        max-width: 100%;
        height: var(--header-height, 80px);
        overflow: hidden;

        padding: 0;
        background: transparent;

        font-size: 15px;
    }

    .global-nav__list {
        flex-direction: row;
        height: var(--header-height, 80px);
    }

    .global-nav__item {
        margin-left: 35px;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: auto;
    }

    .global-nav__item-link {
        padding: 0;
        width: auto;
    }



}

/* ---------- ハンバーガーメニュー --------- */

.nav-toggle {
    position: relative;
    width: 60px;
    height: 60px;
    right: 0;
    cursor: pointer;
    margin-left: auto;
    z-index: 11;
}

.nav-toggle__line {
    position: absolute;
    width: 22px;
    height: 1.5px;
    background: var(--gnav-color);
    left: 19px;
    transition: transform 0.3s ease-in-out, top 0.5s ease;
}

.nav-toggle__line.--top {
    top: 23px;
}


.nav-toggle__line.--middle {
    top: 30px;
    transform: translateX(0);
    opacity: 1;
}

.nav-toggle__line.--bottom {
    top: 37px;
}

.nav-toggle.on .nav-toggle__line.--top {
    width: 15px;
    transform: translate(11px, 12px) rotate(-45deg);
    -webkit-transform: translate(11px, 12px) rotate(-45deg);
}

.nav-toggle.on .nav-toggle__line.--middle {
    top: 30px;
}

.nav-toggle.on .nav-toggle__line.--bottom {
    width: 15px;
    transform: translate(11px, -12px) rotate(45deg);
    -webkit-transform: translate(11px, -12px) rotate(45deg);
}

@media (min-width:769px) {
    .nav-toggle {
        display: none;
    }
}


/* -------------------------------------------- 
	FOOTER
-------------------------------------------- */


.footer {
    width: 100%;
    background: #000;
    position: sticky;
    top: 100vh;
}

.footer-inner {
    padding: 40px var(--page-padding-width) 10px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    width: 100%;
    /* max-width: 1400px;
    margin: 0 auto; */
}

.footer-logo {
    width: 168px;
    height: auto;
    margin: 0 auto;
}

.footer-logo__link {
    display: block;
}

.footer-logo__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-nav {
    margin-top:20px;
    font-size: 13px;
    color: #cfcfcf;
    width: 100%;
}

.footer-nav__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-nav__item {
    width: 100%;
}

.footer-nav__link {
    display: block;
    color: #8D8D8D;
    width: 100%;
    text-align: center;
    padding: 6px 10px;
    font-family: "eurostile-extended", sans-serif;
	font-weight: 400;
	font-style: normal;

}

.copyright {
    font-size: 10px;
    color: #535353;
    text-align: center;
    font-family: "Inter", sans-serif;
	font-optical-sizing: auto;
	font-weight:500;
	font-style: normal;
    margin-top: 19px;
}

@media (min-width:769px) {
.footer-inner{
grid-template-columns: auto auto;
grid-template-rows: auto auto;
}

.footer-logo{
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    justify-content: start;
    text-align: left;
    margin: 0;
}

.footer-nav{
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    margin-top:0;
    justify-content: flex-end;
}

.footer-nav__link{
    text-align: right;
}

.copyright{ 
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    margin-top: 5px;
    text-align: right;
}
}