@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@200;300&family=Noto+Sans+JP:wght@300&display=swap');
* {
		margin: 0;
		padding: 0;
}
html {
		overflow-y: scroll;
}
img {
		border: none;
		vertical-align: top;
}
body {
		color: #fff;
		font-family: 'Noto Sans JP', sans-serif;
		font-size: 12px;
		background: #474B50;
}
.page_container {
		overflow: hidden;
}
header {
		height: 100px;
		position: absolute;
		top: 120px;
		left: 135px;
		z-index: 1000;
}
header h1 {
		width: 145px;
}
header h1 img {
		width: 80%;
		height: auto;
}
.global_nav {
		width: 80px;
		position: absolute;
		top: 120px;
		right: 135px;
		z-index: 1000;
}
.global_nav li {
		font-family: 'Libre Baskerville', serif;
		font-size: 12px;
		letter-spacing: 0.02em;
		list-style: none;
		margin: 0 0 10px;
		text-align: right;
}
.global_nav li a {
		color: #fff;
		text-decoration: none;
		display: inline-block;
		padding: 5px;
		opacity: 0.5;
		transition: opacity 0.4s;
}
.global_nav li.current-menu-item a {
		opacity: 1;
}
.global_nav li span {
		display: inline-block;
		position: relative;
}
.global_nav li span::after {
		content: '';
		display: block;
		width: 100%;
		height: 1px;
		background: #1e1e1e;
		position: absolute;
		left: 0px;
		bottom: -4px;
		transform: scaleX(0);
		transform-origin: left center;
		transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@media (hover: hover) {
		.global_nav li a:hover {
				opacity: 1;
		}
		.global_nav li a:hover span:after {
				transform: scaleX(1);
		}
}
footer {
		padding: 100px 135px 50px;
}
.copyright {
		text-align: right;
		font-family: 'Libre Baskerville', serif;
		font-size: 10px;
}
@media(max-width: 1024px) {
		header {
				top: 15vw;
				left: 8vw;
		}
		.global_nav {
				top: 15vw;
				right: 8vw;
		}
		footer {
				padding-left: 8vw;
				padding-right: 8vw;
		}
}
.second_cont {
		padding: 120px 135px 140px;
		margin: 0 auto;
		opacity: 0;
		transition: opacity 0.5s;
}
.second_cont.seconContActive {
		opacity: 1;
}
.second_cont_inner {
		max-width: 700px;
		margin: 0 auto;
}
.pagetitle {
		width: 140px;
		margin: 0 0 230px;
}
.pagetitle.illustration {
		width: 250px;
}
.pagetitle img {
		width: 100%;
		height: auto;
}
@media(max-width: 1024px) {
		.second_cont {
				padding: 45vw 5vw 100px;
				max-width: inherit;
		}
		.pagetitle {
				width: 140px;
				margin: 0 auto 40px;
		}
}
@media(max-width: 834px) {
		.second_cont {
				padding: 67.5vw 5vw 100px;
		}
		.pagetitle {
				width: 24vw;
				margin: 10vw auto 30px;
		}
		.pagetitle.illustration {
				width: 42vw;
		}
		.me_caption {
				padding: 0;
		}
}
.news_detail_back_btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 98px;
		height: 98px;
		font-style: italic;
		position: relative;
		text-decoration: none;
		border-radius: 50%;
		color: #fff;
}
.news_detail_back_btn a::before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 98px;
		height: 98px;
		border-radius: 50%;
		transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
		background: #1e1e1e;
}
.news_detail_back_btn a span {
		display: inline-block;
		transform: translateY(-1px);
		z-index: 1;
}
@media (hover: hover) {
		.news_detail_back_btn a:hover::before {
				transform: scale(1.3);
		}
}
/* ==================== */
.tag_title {
		font-size: 18px;
		font-weight: 400;
		margin: 0 0 25px;
}
@media(max-width: 767px) {
		.tag_title {
				text-align: center;
		}
}
.tag_sort_flex {
		display: flex;
		flex-wrap: wrap;
		margin: 0px 0 20px;
		padding-top: 25px;
}
.works_flex .tag_sort_flex {
		margin-bottom: 40px;
}
.tag_sort_item {
		margin: 0 10px 5px 0;
}
.tag_sort_item a {
		color: #fff;
		text-decoration: none;
}
@media(max-width: 767px) {
		.tag_sort_item {
				font-size: 10px;
		}
}
/* ==================== */
.overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 110vh;
		background: url("../images/body_bg.png");
		z-index: 99999;
}
::selection {
		background: #666 !important;
		-webkit-background-clip: inherit;
		-webkit-text-fill-color: #fff;
}
::-moz-selection {
		background: #666;
}