@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: 16px;
	line-height: 1.85em;
	background: #fff;
}
img {
	width: 100%;
	height: auto;
}
a {
	color: inherit;
}

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

	loading

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

#loading {
	width: 100vw;
	height: 100vh;
	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: 300px;
}

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

	#frame

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

#frame {
	position: fixed;
	inset: 0;
	z-index: 99999;
	pointer-events: none;
	border-top: 80px solid #fff;
	border-left: 20px solid #fff;
	border-right: 20px solid #fff;
	border-bottom: 20px solid #fff;
	box-shadow: inset 0 0 0 1px var(--main-color);
}

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

	#app_top

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

#app_top {
	margin: 0 auto;
}

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

	#app_sd

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

#app_sd {
	margin: 0 auto;
	padding: 80px 0 20px;
}

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

	#app_sd .wp_lp

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

#app_sd .wp_lp {
	border: 1px solid var(--main-color);
	width: 600px;
	margin: 0 auto;
}
#app_sd .wp_lp ul {
	margin: 0;
	padding: 0;
}

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

    #app_sd .wp_lp .lp_btn

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

.lp_btn {
    position: fixed;
    bottom: 30px;
    width: 100%;
    z-index: 10;
}
.lp_btn .inner {
    width: 400px;
    margin: 0 auto;
}
.lp_btn .inner a {
    line-height: 1em;
    text-decoration: none;
    display: block;
}
.lp_btn .inner a:hover {
    opacity: .8;
}

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

	#logo

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

#logo {
	position: fixed;
	top: 30px;
	left: 20px;
	z-index: 10;
	width: 170px;
	z-index: 999999;
}

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

	header

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

header {
	position: fixed;
	z-index: 10000000;
	width: 100%;
	padding: 30px 20px 0 20px;
}
header .menu_btn {
	display: none;
}
header .inner {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
header ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}
header li {
	margin: 0 0 0 10px;
	padding: 0;
}
header li a {
	display: block;
	line-height: 1em;
	font-size: 150%;
	font-family: "Manrope", sans-serif;
	text-decoration: none;
	background: #fff;
	padding: 0;
}
header li a:hover {
	background: #000;
	color: #fff;
}
header li.has_sub {
	position: relative;
}
header li.has_sub .sub_nav {
	position: absolute;
	top: 100%;
	left: 0;
	display: block;
	padding: 0;
	list-style: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px);
	transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
}
header li.has_sub:hover .sub_nav,
header li.has_sub:focus-within .sub_nav {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
header li.has_sub .sub_nav li {
    margin: 0;
    padding: 0;
}
header li.has_sub .sub_nav li a {
	font-size: 100%;
	white-space: nowrap;
    background: #fff;
    padding: 6px 6px;
    border: 1px solid #000;
    margin-bottom: -1px;
    display: block;
}
header li.has_sub .sub_nav li a:hover {
    color: #fff;
    background: #000;
}
@media screen and (max-width : 1000px) {
	header li a {
		font-size: 130%;
	}
}
@media screen and (max-width : 800px) {
	header li a {
		font-size: 110%;
	}
}

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

	breadcrumbs

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

.breadcrumbs {
	max-width: 1200px;
	margin: 0 auto;
	padding: 16px 32px 0;
	display: none;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap:wrap;
	gap: .25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.breadcrumbs li+li::before {
	content: "›";
	margin: 0 .25rem;
	opacity: .6;
}
.breadcrumbs a,
.breadcrumbs p {
	text-decoration: none;
	font-size: 80%;
	display: inline-block;
}
.breadcrumbs [aria-current="page"] {
	font-weight: 600;
}

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

	footer

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

footer {
}
footer .inner {
	background: var(--main-color);
	padding: 30px 40px;
}
footer .inner .list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
footer .inner .list .cell {
	width: 50%;
}
footer .inner .list .cell:first-child {
}
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: 80%;
	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: 80%;
	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;
}















