@charset "utf-8";

/***
* reset
**************************************/
*,
*::before,
*::after{box-sizing:border-box}
*{margin:0;padding: 0;}
body{font-style:normal;line-height:1;-webkit-font-smoothing:antialiased}
img,
picture,
video,
canvas,
svg {
	display:block;
	vertical-align: middle;
	width: 100%;
	height: auto;
}
input,
button,
textarea,
select {
	font:inherit
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap:break-word;
	font-weight: normal;
	font-size: 100%;
}
#root,
#__next {
	isolation:isolate
}
li {
	list-style-type: none;
}

/***
* root
**************************************/
:root {
	--windowW: 375;
	--winW: calc(100vw / var(--windowW));

	/* color */
	--color-base-01: #FF8530;
	--color-base-02: #FFE0CB;
	--color-base-03: #FFF;
	--color-base-04: #000;
	--color-base-05: #5D5D5D;
	--color-link: #FF8530;
}
@media screen and (min-width:769px) {
	:root {
		--windowW: 1600;
		--winW: calc(100vw / var(--windowW));
	}
}

/***
* html
**************************************/
/*
html::-webkit-scrollbar{
	display: none;
	-webkit-appearance: none;
}
*/

/***
* body
**************************************/
body::-webkit-scrollbar{
	display:none;
}

body {
	margin: 0;
	/*スクロールバー非表示（Firefox）*/
	/*
	scrollbar-width: none;
	*/
	/*スクロールバー非表示（IE・Edge）*/
	/*
	-ms-overflow-style: none;
	*/
}


/***
* common
**************************************/
a {
	text-decoration: none;
	cursor: pointer;
	color: var(--color-link);
}


.is-sp {
	display: block;
}
.is-pc {
	display: none;
}

@media only screen and (min-width: 769px) {
	.is-sp {
		display: none;
	}
	.is-pc {
		display: block;
	}
}

/***
* header
**************************************/
header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	height: 60px;
}
header img {
	filter: brightness(0) invert(0);
}
header .logo_pc {
	display: none;
	width: 92px;
}
header .logo_sp {
	display: block;
	width: 120px;
	margin-left: 20px;
	margin-top: 20px;
}
.headerLogoArea {
	display: inline-block;
	vertical-align: bottom;
}

@media only screen and (min-width: 769px) {
	header {
		height: 120px;
	}
	.headerLogoArea {
		margin-left: 30px;
		margin-top: 20px;
	}
	header .logo_pc {
		display: block;
	}
	header .logo_sp {
		display: none;
	}
	.is-sp {
		display: none;
	}
	.is-pc {
		display: block;
	}
}

/***
* footer
**************************************/
#gn_footer .gn_element .grid-row.bleed {
	max-width: none !important;
}
#gn_footer .gn_element .grid-row.bleed {
	max-width: none !important;
}
#gn_footer {
	position: relative;
	z-index: 999;
}

/* android tap-highlight-color disable*/
a, .swiper-button-prev, .swiper-button-next, .modaal-inner-wrapper{
	-webkit-tap-highlight-color:rgba(0,0,0,0) !important;
	cursor:pointer;
}