@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* CSS Document */

/*====================================

	root

====================================*/

:root {
	--main-color: #111;	/* キー：黒 */
	--sub-color: #ce8854;	/* 白 */
	--text-color: #111111;
	--line-color: #e3e3e3;	/* 薄グレー罫（補助） */
	--grid-line: #222222;	/* グリッドあしらい罫 1px */
}

/*====================================

    .sr_only

====================================*/

.sr_only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

/*====================================

	body

====================================*/

body {
	-webkit-text-size-adjust: 100%;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 600;
	font-size: 16px;
	margin: 0 auto;
	position: relative;
	-webkit-font-feature-settings: 'palt';
	font-feature-settings: 'palt';
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	color: var(--text-color);
	font-size: 14px;
	line-height: 1.85em;
	background: #fff;
}
img {
	width: 100%;
	height: auto;
}
a {
	color: inherit;
}

/*====================================

	loading

====================================*/

#loading {
	width: 100vw;
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	transition: all 1s;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999999999;
	display: grid;
	place-items: center;
}
.loaded {
	opacity: 0;
	visibility: hidden;
}
#loading img {
	width: 200px;
}

/*====================================

	#frame

====================================*/

#frame {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 60px;
	z-index: 99999;
	pointer-events: none;
	background: #fff;
}
#frame::after {
	content: "";
	position: fixed;
	top: calc(var(--vh, 1vh) * 100 - 10px);
	left: 0;
	right: 0;
	height: 10px;
	background: #fff;
}
#frame::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	width: 10px;
	height: calc(var(--vh, 1vh) * 100);
	background: #fff;
}
body::after {
	content: "";
	position: fixed;
	top: 0;
	right: 0;
	width: 10px;
	height: calc(var(--vh, 1vh) * 100);
	z-index: 99999;
	pointer-events: none;
	background: #fff;
}
body::before {
	content: "";
	position: fixed;
	top: 60px;
	right: 10px;
	left: 10px;
	height: calc(var(--vh, 1vh) * 100 - 70px);
	z-index: 99999;
	pointer-events: none;
	box-shadow: inset 0 0 0 1px var(--main-color);
}

/*====================================

	#app_top

====================================*/

#app_top {
	width: 100%;
	margin: 0 auto;
}

/*====================================

	#app_sd

====================================*/

#app_sd {
	width: 100%;
	padding: 60px 0 40px 0;
}
.lp_btn {
    position: fixed;
    right: 0px;
    bottom: 0px;
    padding: 0 30px 20px 30px;
}
.lp_btn a {
    display: block;
}

/*====================================

	#app_sd .wp_lp

====================================*/

#app_sd .wp_lp {
	width: 100%;
	margin: 0 auto;
}
#app_sd .wp_lp ul {
	margin: 0;
	padding: 0;
}

/*====================================

	#logo

====================================*/

#logo {
	position: fixed;
	top: 20px;
	left: 10px;
	width: 120px;
	z-index: 100000;
}

/*====================================

	header

====================================*/

header {
	position: static;
}
header .menu_btn {
	position: fixed;
	top: 10px;
	right: 10px;
	z-index: 100000;
	width: 40px;
	height: 40px;
	background: #fff;
	border: 1px solid var(--main-color);
	cursor: pointer;
	padding: 0;
	transition: background .4s ease, border-color .4s ease;
}
header .menu_btn i {
	position: absolute;
	left: 12px;
	right: 12px;
	height: 1px;
	background: var(--main-color);
	transition: transform .4s ease, background .4s ease;
}
header .menu_btn i:nth-child(1) { top: 16px; }
header .menu_btn i:nth-child(2) { top: 23px; }
header.is-open .menu_btn {
	background: var(--main-color);
	border-color: rgba(255,255,255,.4);
}
header.is-open .menu_btn i { background: #fff; }
header.is-open .menu_btn i:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
header.is-open .menu_btn i:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
header .inner {
	position: fixed;
	top: 0; left: 0;
	width: 100%;
	height: 100vh;
	height: 100svh;
	height: calc(var(--vh, 1vh) * 100);
	z-index: 10000;
	background: var(--main-color);
	margin: 0;
	padding: 88px 24px 40px;
	display: block;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	opacity: 0;
	visibility: hidden;
	transition: opacity .35s ease, visibility .35s ease;
}
header.is-open .inner {
	opacity: 1;
	visibility: visible;
}
header .inner ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: block;
	border: none;
}
header .inner li {
	position: relative;
	margin: 0;
	padding: 0;
	border: none;
}
header .inner li::after {
	content: "";
	position: absolute;
	left: 0; right: 0; bottom: 0;
	height: 1px;
	background: rgba(255,255,255,.22);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .8s cubic-bezier(.76,0,.24,1);
}
header .inner li a {
	display: block;
	color: #fff;
	background: none;
	font-family: "Manrope", sans-serif;
	font-weight: 600;
	font-size: 160%;
	line-height: 1em;
	letter-spacing: .02em;
	text-decoration: none;
	padding: .7em 0;
}
header .inner li::after { transform: scaleX(1); }
header .inner li.has_sub > a {
	padding-right: 2.2em;
}
header .inner li.has_sub > a::before,
header .inner li.has_sub > a::after {
	content: "";
	position: absolute;
	right: .3em;
	top: 0; bottom: 0;
	margin: auto;
	width: 14px;
	height: 1px;
	background: #fff;
	transition: transform .4s ease;
}
header .inner li.has_sub > a::before {
	transform: rotate(90deg);
}
header .inner li.has_sub.is-sub-open > a::before {
	transform: rotate(0deg);
}
header .inner .sub_nav {
	max-height: 0;
	overflow: hidden;
	transition: max-height .4s ease;
}
header .inner li.has_sub.is-sub-open .sub_nav {
	max-height: 300px;
}
header .inner .sub_nav li {
	position: static;
}
header .inner .sub_nav li::after {
	display: none;
}
header .inner .sub_nav li a {
	font-size: 140%;
	padding: .6em 0 .6em .6em;
	color: rgba(255,255,255,.75);
}
@media (prefers-reduced-motion: reduce) {
	header .menu_btn i, header .inner { transition: none; }
}

/*====================================

	footer

====================================*/

footer {
}
footer .inner {
	background: var(--main-color);
	padding: 30px 30px;
}
footer .inner .list {
	width: 100%;
}
footer .inner .list .cell {
}
footer .inner .list .cell:first-child {
	margin-bottom: 40px;
}
footer .inner .list .cell:first-child img {
	width: 150px;
}
footer .inner .list .cell:last-child {
	text-align: right;
}
footer .inner .list .cell:last-child p {
	color: #fff;
	text-align: right;
	font-size: 70%;
	font-weight: 400;
	line-height: 1em;
	margin-bottom: 10px;
}
footer .inner .list .cell:last-child p span {
	font-size: 90%;
	margin: 0 .5em 0 0;
	color: #aaa;
}
footer .inner .list .cell:last-child a {
	color: #fff;
	text-align: right;
	font-size: 70%;
	font-weight: 400;
	line-height: 1em;
	display: inline-block;
}
footer small {
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 80%;
	display: block;
	letter-spacing: .06em;
	font-family: "Manrope", sans-serif;
	margin: 20px 0 0 0;
}
