@charset "utf-8";
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.2em;
	background-color: #f2f3f4;
}
@media screen and (max-width: 769px) {
	body {
		font-size: 1em;
	}
}

a {
	text-decoration: none;
	color: inherit;
	display: block;
}

/* font */
.font_en {
	font-family: 'Electrolize', sans-serif;
}

/* sub page header */
.page-h {
	min-height: 350px;
	padding-top: 110px;
}

.page-h_txt {
	text-align: center;
	line-height: 1.2em;
	margin-bottom: 0;
	color: #fff;
	font-size: 2.5em;
	letter-spacing: 2px;
	display: flex;
	flex-direction: column;
}

@media screen and (max-width: 769px) {
	.page-h {
		min-height: 240px;
		padding-top: 90px;
	}
}

/* button */
.btn_main {
	width: 200px;
	font-family: 'Electrolize', sans-serif;
	font-size: 1.5em;
	margin: auto;
	text-decoration: none;
	text-align: center;
	border-radius: 50px;
	color: #fff;
}
.btn_main a, .btn_line a {
	width: 100%;
	display: block;
	padding: 1.2rem 0.7rem !important;
	transition: all .5s ease;
	background-color: #000;
	border-radius: 9999px;
}
.btn_main a:hover, .btn_line a:hover {
	background-color: #ff5f00 !important;
}

.btn_line {
	width: 200px;
	font-family: 'Electrolize', sans-serif;
	font-size: 1.5em;
	margin: auto;
	text-decoration: none;
	text-align: center;
	border-radius: 50px;
	background-color: inherit;
	border: solid 2px #fff;
	color: #fff;
}

/*ページ送り*/
.wp-block-query-pagination-numbers {
	display: flex;
	gap: 0.5em;
}

.pagination .page-numbers {
	background-color: #ddd;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
}

.pagination .current {
	background-color: #777 !important;
	color: #fff;
	height: 40px;
	width: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* news,columns詳細 */
.news_detail_h time {
	font-size: .8em;
}

.news_detail_h .author {
	margin-left: 8px;
	font-size: .8em;
}

.news_detail_h h2 {
	font-weight: bold;
	font-size: 2.6em;
	margin-top: 8px;
}

.news_detail_img img {
	max-width: 100%;
	height: auto;
}

.author_label {
	border-radius: 50px;
	font-size: 14px;
	color: #ff5f00;
	border: 1px solid #ff5f00;
	padding: 2px 8px;
}

@media screen and (max-width: 992px) {
	.news_detail_h h2 {
		font-size: 1.6em;
	}
}

/* header */
#header {
	position: fixed;
	width: 100%;
	z-index: 20;
	backdrop-filter: blur(10px);
	background-color: rgba(0,0,0,.3);
}

#header #header_area {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 30px;
	height: 110px;
}

#header #header_area .logo img {
	height: 60px;
}

@media screen and (max-width: 992px) {
	#header #header_area {
		padding: 0 20px;
		height: 90px;
	}
	#header #header_area .logo img {
		height: 40px;
	}
}

/* メインmenu */
.g-nav {
	display: flex;
}
.g-nav ul {
	list-style: none;
	display: flex;
	margin-bottom: 0;
	column-gap: 30px;
}
.g-nav li a, ul.overlay-nav li a{
	font-family: 'Electrolize', sans-serif;
	font-size: 1.1em;
	letter-spacing: 2px;
	color: #fff;
}
.g-nav li a:hover {
	opacity: .5;
	transition: 0.5s;
}
@media screen and (max-width: 991px) {
	.g-nav {
		display: none;
	}
}

/* menuアイコン */
@media screen and (max-width: 992px) {
	#overlay {
		margin-left: -20px;
	}
}

#overlay-button {
	padding: 21px 14px;
	z-index: 20;
	cursor: pointer;
	user-select: none;
	border: 1px solid #b1b1b1;
	border-radius: 50%;
}
#overlay-button span {
	height: 1px;
	width: 16px;
	background-color: #fff;
	position: relative;
	display: block;
	transition: all .2s ease-in-out;
}
#overlay-button span:before {
	top: -6px;
	visibility: visible;
}
#overlay-button span:after {
	top: 6px;
}
#overlay-button span:before, #overlay-button span:after {
	height: 1px;
	width: 16px;
	background-color: #fff;
	position: absolute;
	content: "";
	transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
	background: #fff;
}

input[type=checkbox] {
	display: none; 
}

input[type=checkbox]:checked ~ #overlay {
	visibility: visible; 
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
	background: transparent;
}
input[type=checkbox]:checked ~ #overlay-button span:before {
	transform: rotate(45deg) translate(4px, 4px);
}
input[type=checkbox]:checked ~ #overlay-button span:after {
	transform: rotate(-45deg) translate(4px, -4px);
}

/* menu */
#overlay {
	height: 100vh;
	width: 100vw;
	background: #000;
	z-index: 2;
	visibility: hidden;
	position: fixed;
	top: 0;
}

@media screen and (min-width: 992px) {
	#overlay-button {
		display: none;
	}
}

#overlay ul.overlay-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	text-align: center;
	height: 100vh;
	padding-left: 0;
	list-style-type: none;
}
#overlay ul.overlay-nav ul {
	padding-left: 0;
}
#overlay ul.overlay-nav li {
	padding: 1em;
	list-style: none;
}

/* footer */
footer {
	background-color: #000;
	padding: 16px 0;
	color: #fff;
	text-align: center;
}

.footer_inner {
	margin: 32px 0;
}

.f-nav ul {
	display: flex;
	flex-direction: column;
	padding-left: 0;
}

@media screen and (min-width: 992px) {
	.f-nav ul {
		justify-content: center;
		column-gap: 30px;
		flex-direction: initial !important;
	}
}

.f-nav ul li {
	list-style: none;
	margin-bottom: 10px;
}

.f-nav li a {
	font-family: 'Electrolize', sans-serif;
	letter-spacing: 2px;
}

.f-nav_company {
	display: flex;
	justify-content: center;
	gap: 1em;
	font-size: .7em;
}

.sns_iconbox {
	margin-top: 32px;
	column-gap: 30px;
}

.copy {
	font-size: .8em;
	color: #777;
	margin-bottom: 0;
}

/* inner */
.page-inner {
	width: calc(100% - 12rem);
	padding: 6rem 0;
	margin: 0 auto;
	justify-content: space-between;
	position: relative;
	z-index: 2;
}
@media screen and (max-width: 992px) {
	.page-inner {
		width: calc(100% - 5rem);
	}
}
@media screen and (max-width: 767px){
	.page-inner {
		width: calc(100% - 0rem);
		padding: 3.5rem 0;
	}
}

.trial_box_marpuee {
	width: 100%;
	position: absolute;
	top: -60px;
	line-height: 1em;
	mix-blend-mode: difference;
	font-size: 120px;
	font-family: 'Electrolize', sans-serif;
	display: flex;
	white-space: nowrap;
	overflow: hidden;
	gap: 1rem;
}
.trial_box_marpuee p {
	opacity: .8;
	animation: marquee 40s linear infinite;
}
@keyframes marquee {
	0%   { translate: 0; }
	100% { translate: calc(-100% - 1rem); }
}

.htext_box {
	padding: 0 1rem;
}

#trial {
	min-height: 600px;
}
@media screen and (max-width: 767px){
	#trial {
		min-height: 300px;
	}
	#trial h2 {
		font-size: 2em !important;
	}
}

/* main visual text */
.mv_text_box {
	position: absolute;
	bottom: 16%;
	left: 5%;
	padding-right: 20px;
}

.mv_text {
	overflow: hidden;
	white-space: nowrap;
	width: 0%;
	margin-bottom: 0;
	font-size: 4.5em !important;
	line-height: 1.2em;
	animation: mv_text-anim .8s forwards linear;
}

@keyframes mv_text-anim {
0%{
	width: 0%;
	}
100%{
	width: 100%;
	}
}

@media screen and (max-width: 992px) {
	.mv_text {
		font-size: 2.4em !important;
	}
}