@charset "UTF-8";

/* ------------------------
    ヘッダー（共通・レイアウト）
------------------------ */
.header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 99;
	background-color: transparent;
	transition: .3s;
}

.header.js-scroll,
.header.js-open {
	background: linear-gradient(to bottom,
			rgba(0, 0, 0, 0.60) 0px,
			rgba(0, 0, 0, 0.60) 40px,
			rgba(0, 0, 0, 0) 80px);
}

.header__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	height: 70px;
	padding-right: 0;
	transition: .3s;
	position: relative;
}

.header__inner .global-nav .global-nav__list .sub-nav li {
	position: relative;
	padding-left: 15px;
}

.header__inner .global-nav .global-nav__list .sub-nav li::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 1px;
	background-color: #ffffff;
	left: 0;
	top: calc(50% - 0.5px);
}

.header__logo {
	display: block;
	width: 120px;
	height: 70px;
	white-space: nowrap;
	text-indent: 100%;
	overflow: hidden;
	background: url(./img/header_logo.svg) no-repeat center/contain;
	margin-left: 20px;
}

/* ------------------------
    ナビゲーション（右スライドアウト型）
------------------------ */

.header .global-nav {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 90;
	visibility: hidden;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.6);
	transition: opacity 0.3s, visibility 0.3s;
}

.header .global-nav.js-open {
	visibility: visible;
	opacity: 1;
}

.header .global-nav__list {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	width: 50vw;
	height: 100%;
	background-color: #070707;
	padding: 80px 30px 30px;
	overflow-y: auto;
	transform: translateX(100%);
	transition: transform 0.3s ease-out;
}

.header .global-nav.js-open .global-nav__list {
	transform: translateX(0);
}

.header .global-nav__link {
	display: block;
	position: relative;
	text-decoration: none;
	color: #fff;
	font-size: 1.7rem;
	font-weight: 500;
	padding: 20px 0;
	line-height: 1;
}

@media (max-width: 768px) {
	.header .global-nav__list {
		width: 80vw;
	}
}


/* ------------------------
    アコーディオン開閉ボタン（＋・－など）
------------------------ */
.header__open {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 57px;
	cursor: pointer;
	z-index: 10;
}

.header__open::before {
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	transform: translateY(-50%) translateX(-50%) rotate(135deg);
	width: 12px;
	height: 12px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transition: .3s;
}

.header__open.js-open::before {
	top: calc(50% + 2px);
	transform: translateY(-50%) translateX(-50%) rotate(-45deg);
}


/* ------------------------
    ハンバーガーボタン & RECRUITボタン
------------------------ */

/* RECRUITボタン */
.header__entry {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	font-size: 2.5rem;
	padding: 0 20px;
	height: 60px;
	line-height: 60px;
	position: absolute;
	top: 0;
	right: 60px;
	background-color: transparent;
	z-index: 100;
}

.header__entry::after {
	content: '';
	display: block;
	width: calc(100% - 40px);
	height: 6px;
	background-color: #fff;
	position: absolute;
	bottom: 7px;
	left: 20px;
}

.header__hamburger {
	position: absolute;
	top: 0;
	right: 0;
	width: 80px;
	height: 60px;
	cursor: pointer;
	z-index: 100;
}

.header__hamburger span {
	display: block;
	background-color: #fff;
	width: 30px;
	height: 3px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: .3s;
}

.header__hamburger span::before,
.header__hamburger span::after {
	content: '';
	background-color: #fff;
	height: 3px;
	position: absolute;
	left: 0;
	transition: .3s;
}

.header__hamburger span::before {
	width: 30px;
	top: -10px;
}

.header__hamburger span::after {
	width: 20px;
	top: 10px;
}

.header__hamburger.js-open span {
	background-color: transparent;
}

.header__hamburger.js-open span::before {
	width: 30px;
	top: 0;
	transform: rotate(45deg);
}

.header__hamburger.js-open span::after {
	width: 30px;
	top: 0;
	transform: rotate(-45deg);
}

/* ------------------------
    フッター
------------------------ */
.footer {
	position: relative;
	background-color: #070707;
	padding: 80px 15px 20px;
	color: #ffffff;
	font-size: 1.4rem;
	z-index: 1;
}

.footer__inner {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	max-width: 1120px;
	margin: 0 auto;
}

.footer__logo {
	display: block;
}

.footer__info p {
	margin-top: 15px;
}

.footer__info p a {
	color: #fff;
}

.footer__sitemap {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}

.footer__sitemap .sitemap-list {
	margin-left: 60px;
}

.footer__sitemap .sitemap-list__item {
	margin-top: 40px;
}

.footer__sitemap .sitemap-list__item:first-child {
	margin-top: 0;
}

.footer__sitemap .sitemap-list__link {
	display: block;
	position: relative;
	padding-left: 10px;
	color: #fff;
	line-height: 1;
}

/* .footer__sitemap .sitemap-list__link::before {
	content: '';
	position: absolute;
	width: 4px;
	height: 100%;
	background-color: #fff;
	left: 0;
	top: 0;
} */

/* .footer__sitemap .sitemap-list__link:hover {
	color: #00A6BD;
} */

.footer__sitemap .sitemap-list__sub {
	margin-top: 20px;
	margin-left: 20px;
}

/* .footer__sitemap .sitemap-list__sub li {
	padding-left: 10px;
}

.footer__sitemap .sitemap-list__sub li+li {
	margin-top: 10px;
} */

.footer__sitemap .sitemap-list__sub li a {
	display: block;
	position: relative;
	padding-left: 15px;
	line-height: 1.5;
	text-decoration: none;
	color: #ffffff;
}

.footer__sitemap .sitemap-list__sub li a::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 1px;
	background-color: #ffffff;
	left: 0;
	top: calc(50% - 0.5px);
}

/* .footer__sitemap .sitemap-list__sub li a:hover {
	color: #00A6BD;
} */

.footer__copy {
	margin-top: 80px;
	text-align: center;
	font-size: 1.2rem;
	color: #cccccc;
}

.footer__info .company-name {
	font-size: 2rem;
	font-weight: 800;
}

@media only screen and (max-width: 768px) {
	.footer {
		padding: 60px 0 20px;
	}

	.footer__inner {
		gap: 50px;
	}

	.footer__info {
		padding: 0 15px;
	}

	.footer__logo {
		display: block;
		width: 80%;
	}

	/* .footer__info p {
		margin-top: 15px;
	}

	.footer__info p a {
		color: #fff;
	} */

	/* .footer__sitemap {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		margin-top: 40px;
	} */

	.footer__sitemap .sitemap-list {
		/* width: 100%; */
		margin-left: 0;
	}

	.footer__sitemap .sitemap-list__item {
		margin-top: 0;
	}

	/* .footer__sitemap .sitemap-list__item:first-child {
		margin-top: 0;
	} */


	.footer__sitemap .sitemap-list__link {
		/* display: block;
		position: relative; */
		padding: 10px 15px;
		/* color: #fff;
		line-height: 1; */
	}

	/* .footer__sitemap .sitemap-list__link::before {
		content: '';
		position: absolute;
		width: 1px;
		height: 100%;
		background-color: #00A6BD;
		left: 0;
		top: 0;
		display: none;
	} */

	.footer__sitemap .sitemap-list__link:hover {
		color: unset;
	}

	.footer__sitemap .sitemap-list__sub {
		margin-top: 0;
		margin-bottom: 20px;
		padding: 0 20px;
	}

	/* 
	.footer__sitemap .sitemap-list__sub li {
		padding-left: 0;
	}

	.footer__sitemap .sitemap-list__sub li+li {
		margin-top: 10px;
	}

	.footer__sitemap .sitemap-list__sub li a {
		display: block;
		position: relative;
		padding-left: 15px;
		line-height: 1.5;
		text-decoration: none;
		color: #ffffff;
	}

	.footer__sitemap .sitemap-list__sub li a::before {
		content: '';
		position: absolute;
		width: 8px;
		height: 1px;
		background-color: #ffffff;
		left: 0;
		top: calc(50% - 0.5px);
	}

	.footer__sitemap .sitemap-list__sub li a:hover {
		color: unset;
	} */

	.footer__copy {
		margin-top: 60px;
	}

	.footer__info .company-name {
		font-size: 1.8rem;
		font-weight: 800;
	}
}