@import './base/reset.css';

@import './components/item-blog.css';
@import './components/item-radio.css';
@import './components/item-video.css';
@import './components/item-author.css';
@import './components/view-more.css';

:root {
	--featured-font: "Jost", sans-serif;

	--color-yellow: #F0BE32;
	--color-gray: #303030;
	--color-light-gray: #B9B9B9;

	--svh: 1svh;
	--lvh: 1lvh;
}

html {
	overflow-x: hidden;
}

body {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.875;
	font-weight: 400;
	letter-spacing: 0;
	max-width: 100%;
	background: #ECECEC;
	color: #000;
	min-height: calc(100 * var(--lvh));
	text-rendering: optimizeSpeed;
	overflow-x: hidden;
}

body::-webkit-scrollbar {
	display: none;
}

a {
	text-decoration: unset !important;
}

figure {
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #000;
	margin-block: 0;
	letter-spacing: 0;
	line-height: 1.7;
}

*,
:after,
:before {
	box-sizing: border-box;
}

.sp-only {
	display: none;
}

:root :where(.is-layout-flow)>* {
	margin-block-start: 0;
}

:where(.wp-site-blocks)>* {
	margin-block-start: 0;
}

.wrap__content-page {
	position: relative;
	width: 100%;
}

.container {
	position: relative;
	max-width: 100%;
	padding-inline: max(5.56vw, 80px);
}

.anime_op {
	opacity: 0;
	transition: all 1s;
}

.is_animed {
	transform: translateX(0) translateY(0) rotate(0)scale(1);
	opacity: 1;
	filter: blur(0px);
}

.c-heading_en {
	font-family: var(--featured-font);
	font-size: 90px;
	font-style: italic;
	font-weight: 600;
	line-height: 0.7;
	vertical-align: middle;
}

.c-heading_en .line {
	display: block;
}

.c-heading_en .line span {
	display: inline-block;
	transform: translateY(100%);
	transition: transform .8s cubic-bezier(.25, .8, .25, 1);
}

.is_animed .c-heading_en .line span {
	transform: translateY(0);
}

.breadcrumb {
	position: relative;
	display: block;
	margin-bottom: max(5.56vw, 80px);
}

.breadcrumb__list {
	display: flex;
	align-items: center;
}

.breadcrumb__list__item {
	display: inline-flex;
	min-width: fit-content;
	font-size: 16px;
	line-height: 0.75;
	font-weight: 400;
}

p:has(.aligncenter) {
	text-align: center;
	margin-bottom: max(1.5972vw, 23px);
}

.hidden {
	display: none;
}

@media screen and (min-width: 769px) {
	.hidden-desktop {
		display: none !important;
	}
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
	.container {
		padding-inline: 5.56vw;
	}
}

@media screen and (max-width: 768px) {
	.visible-desktop {
		display: none !important;
	}

	.pc-only {
		display: none;
	}

	.sp-only {
		display: block;
	}

	.container {
		padding-inline: max(6.4vw, 24px);
	}

	.c-heading_en {
		font-size: 48px;
		line-height: 0.7083;
	}

	.breadcrumb {
		margin-bottom: 87px;
	}

	.breadcrumb__list__item {
		font-size: 12px;
	}

	.breadcrumb__list__item:last-child {
		flex: 1;
	}

	.breadcrumb__list__item:last-child span {
		vertical-align: middle;
		max-width: 20%;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
		line-height: 1.33;
	}
}

@keyframes marquee-horizontal {
	0% {
		transform: translate3d(0, 0, 0);
	}

	100% {
		transform: translate3d(-50%, 0, 0);
	}
}

@-webkit-keyframes marquee-horizontal {
	0% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	100% {
		-webkit-transform: translate3d(-50%, 0, 0);
		transform: translate3d(-50%, 0, 0);
	}
}