@charset "UTF-8";

/* CSS Document */

body {
	font-size: 14px;
	line-height: 1.85em;
}

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

	.btn

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

.btn,
.btn_back {
	width: 100%;
	text-align: center;
}
.btn a,
.btn_back a {
	display: inline-block;
	border-radius : 48%;
	color: #000;
	text-decoration: none;
	font-size: 100%;
	text-align: center;
}
.btn a {
	padding: 1em 6em 1em 5em;
	background: url(/common/images/icon_arrow.svg) top 50% right 2em var(--main-color) no-repeat;
	background-size: 10px;
}
.btn_back a {
	padding: 1em 5em 1em 6em;
	background: url(/common/images/icon_arrow_b.svg) top 50% left 2em var(--main-color) no-repeat;
	background-size: 10px;
}

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

	#app_top

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

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

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

	#app_top section

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

#app_top>section {
}
#app_top>section .inner {
	padding: 40px 20px;
}
#app_top>section .inner .sec_ttl {
	margin-bottom: 40px;
	width: 100%;
}
#app_top>section .inner .sec_ttl h2 {
	width: 100%;
	font-size: 300%;
}
#app_top>section .inner .sec_ttl h2 span {
	display: block;
	font-size: 30%;
	line-height: 1em;
	padding: 0 0 .8em 0;
	color: var(--main-color);
}
#app_top>section .inner .sec_ttl p {
	padding: 40px 0 0 0;
}
#app_top>section .inner .sec_ttl .wa {
	width: 100%;
	margin-bottom: 20px;
}
#app_top>section .inner .sec_ttl .wa h2 {
	margin: 0;
	font-size: 110%;
	color: #846828;
}
#app_top>section .inner .sec_ttl .en {
	width: 100%;
}
#app_top>section .inner .sec_ttl .en h2 {
	font-size: 400%;
	letter-spacing: .1em;
}

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

	#app_sd

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

#app_sd {
	width: 100%;
	margin: 0 auto;
	padding: 70px 0 0 0;
}

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

	#app_sd section

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

#app_sd>section {
	padding: 40px 20px;
}
#app_sd>section .inner {
}

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

	loading

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

.spinner {
	width: 40px;
	height: 40px;
}

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

	header

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

header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100!important;
}
header .inner {
	width: 100%;
	margin: 0 auto;
	position: relative;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 12px;
}
header .logo {
}
header .logo a {
	text-decoration: none;
	color: #fff;
}
header .logo a h2 {
	font-size: 50%;
	line-height: 1.8em;
}
header .logo a h2 span {
	font-size: 120%;
	display: inline-block;
	line-height: 1.8em;
	padding: 0 0 0 .5em;
}
header .logo a .ph {
	width: 200px;
}
header .logo a .ph img {
	width: 100%;
}
header nav {
	padding: 0 !important;
}
header .nav-container {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background: #200501;
	opacity: 0;
	transition: all 0.2s ease;
	pointer-events: none;
	visibility: hidden;
}
header .nav-container ul {
	width: 100%;
	padding: 0;
}
header .nav-container ul li {
}
header .nav-container ul li:nth-child(1) a {
	transition-delay: 0.2s;
}
header .nav-container ul li:nth-child(2) a {
	transition-delay: 0.3s;
}
header .nav-container ul li:nth-child(3) a {
	transition-delay: 0.4s;
}
header .nav-container ul li:nth-child(4) a {
	transition-delay: 0.5s;
}
header .nav-container ul li:nth-child(5) a {
	transition-delay: 0.6s;
}
header .nav-container ul li:nth-child(6) a {
	transition-delay: 0.7s;
}
header .nav-container ul li:nth-child(7) a {
	transition-delay: 0.8s;
}
header .nav-container ul li:nth-child(8) a {
	transition-delay: 0.9s;
}
header .nav-container ul li:nth-child(9) a {
	transition-delay: 1s;
}
header .nav-container ul li:not(:first-child) {
	margin-left: 0;
}
header .nav-container ul li a {
	opacity: 0;
	color: #fff;
	font-weight: 600;
	transition: all 0.2s ease;
	text-decoration: none;
	font-size: 140%;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	padding: 10px 20px;
	display: block;
}
header .nav-container ul li a span {
	display: inline-block;
	font-size: 60%;
	padding: 0 0 0 .5em;
	color: var(--main-color);
}
header .nav-open {
	position: fixed;
	right: 12px;
	top: 12px;
	display: block;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 9999;
	background: url(/common/images/nav_tgl_bg.svg);
	background-size: cover;
}
header .nav-open i {
	display: block;
	width: 20px;
	height: 2px;
	background: #1f2227;
	border-radius: 2px;
	margin-left: 10px;
}
header .nav-open i:nth-child(1) {
	margin-top: 13px;
}
header .nav-open i:nth-child(2) {
	margin-top: 4px;
	opacity: 1;
}
header .nav-open i:nth-child(3) {
	margin-top: 4px;
}
header #nav:checked + .nav-open i {
	background: #000;
	transition: transform 0.2s ease;
}
header #nav:checked + .nav-open i:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}
header #nav:checked + .nav-open i:nth-child(2) {
	opacity: 0;
}
header #nav:checked + .nav-open i:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}
header #nav:checked ~ .nav-container {
	z-index: 9990;
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}
header #nav:checked ~ .nav-container ul li a {
	opacity: 1;
	transform: translateY(0);
}
header nav .nav-container .wp_sns {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 20px;
	width: 100%;
}
header nav .nav-container .wp_sns .cell {
	width: 100%;
	margin-bottom: 10px;
}
header nav .nav-container .wp_sns .cell:last-child {
	margin-bottom: 0px;
}
header nav .nav-container .wp_sns .cell a {
	display: block;
	background: var(--main-color);
	border-radius: 40px;
	padding: 10px 20px;
	text-decoration: none;
	color: #000;
}
header nav .nav-container .wp_sns .cell a dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
}
header nav .nav-container .wp_sns .cell a dl dt {
	width: 20px;
}
header nav .nav-container .wp_sns .cell a dl dd {
	flex: 1;
	font-size: 90%;
	line-height: 1em;
	padding: 0 0 0 10px;
}
header nav .hidden {
	display: none;
}

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

	#fixed-header

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

#fixed-header {
	display: none;
}

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

	page_ttl

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

.page_ttl {
	width: 100%;
	background: rgba(0, 0, 0, 1);
	padding: 60px 20px;
	position: relative;
	z-index: 1;
}
.page_ttl h2 {
	color: #fff;
	font-size: 150%;
	line-height: 1em;
}
.page_ttl h2 span {
	display: inline-block;
	padding: 0 0 0 .5em;
	font-size: 60%;
}

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

	breadcrumbs

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

.breadcrumbs {
	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;
}

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

	.companuy_induction

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

.companuy_induction {
	position: relative;
	margin-bottom: 40px;
}
.companuy_induction .inner {
	margin: 0 auto;
	padding: 0 20px;
}
.companuy_induction .inner a {
	display: block;
	background: var(--main-color);
	padding: 30px 50px 30px 30px;
	text-decoration: none;
	color: #fff;
	position: relative;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	outline: 1px solid var(--sub-color);
    outline-offset: -4px;
    color: #000;
}
.companuy_induction .inner a:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 4px solid transparent;
	border-bottom: 4px solid transparent;
	border-left: 10px solid #000;
	border-right: 0;
	position: absolute;
	top: 50%;
	right: 20px;
}
.companuy_induction .inner a:hover {
	background: var(--sub-color);
	color: #fff;
	outline: 1px solid var(--main-color);
    outline-offset: -8px;
}
.companuy_induction .inner a:hover:after {
	right: 15px;
	border-left: 10px solid var(--main-color);
}
.companuy_induction .inner a dl {
	width: 100%;
}
.companuy_induction .inner a dl dt {
	margin-bottom: 20px;
}
.companuy_induction .inner a dl dd {
	font-size: 90%;
	line-height: 1.85em;
}

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

	#page_top

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

#page_top a {
	bottom: 8px;
	right: 8px;
	position: fixed;
	z-index: 10;
	width: 40px;
}

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

	footer

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

footer {
	background: rgba(0, 0, 0, .5);
	padding: 20px;
}
footer .inner {
	width: 100%;
}
footer .inner .logo {
	width: 180px;
	margin-bottom: 10px;
}
footer .inner .sns {
}
footer .inner .sns ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
footer .inner .sns ul li {
	margin: 0 0 6px 6px;
}
footer .inner .sns ul li a {
	display: block;
	border-radius: 40px;
	padding: 6px 20px 6px 40px;
	text-decoration: none;
	color: #fff;
	border: 1px solid rgba(255, 255, 255, .2);
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;
	font-size: 90%;
	line-height: 1em;
}
footer .inner .sns ul li a.inst {
	background: url(/common/images/icon_instagram.png) no-repeat top 50% left 16px rgba(255, 255, 255, .1);
	background-size: 14px;
}
footer .inner .sns ul li a.inst:hover {
	background: url(/common/images/icon_instagram.png) no-repeat top 50% left 16px rgba(255, 255, 255, 1);
	background-size: 14px;
	color: #000;
}
footer .inner .sns ul li a.x {
	background: url(/common/images/icon_x.svg) no-repeat top 50% left 16px rgba(255, 255, 255, .1);
	background-size: 14px;
}
footer .inner .sns ul li a.x:hover {
	background: url(/common/images/icon_x.svg) no-repeat top 50% left 16px rgba(255, 255, 255, 1);
	background-size: 14px;
	color: #000;
}
footer small {
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 80%;
	display: block;
	border-top: 1px solid rgba(255, 255, 255, .2);
	margin-top: 10px;
	padding-top: 10px;
}

