@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import './base/reset.css';
@import './fonts.css';

/* @import './layouts/header.css'; */
/* @import './layouts/footer.css'; */

@import './components/title-with-sep-left.css';

:root {
	--font-featured: "neue-haas-grotesk-display", sans-serif;
	
	--color-yellow: #FFD400;
	--color-gray: #333333;
	--color-light-gray: #D6D6D6;
	--color-line: #3B3B3B;
	--color-title-gray: #666666;

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

html {
	overflow-x: hidden;
}

body {
	font-size: 1.4rem;
	line-height: 1.7rem;
	font-weight: 330;
	letter-spacing: 0;
	font-family: 'Noto Sans JP', sans-serif;
	max-width: 100%;
	overflow-x: hidden;
	background-image: var(--bg-overlay-page);
	background-size: cover;
	background-position: center;
	background-repeat: repeat;
}

a {
	text-decoration: unset !important;
}

figure {
	height: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	color: #333333;
	font-weight: 530;
	letter-spacing: 0;
	margin-block: 0;
}

* {
	box-sizing: border-box;
}

main {
	position: relative;
	max-width: 100%;
	width: 100%;
	z-index: 2;
	margin-top: 0;
}

.main-top-page {
	margin-top: 0;
	margin-bottom: -12.9rem;
}

.overlay-background-page {
	position: fixed;
	z-index: -1;
}

.sp-only {
	display: none;
}

.wrap__title-header-page {
	padding: 20.6rem 12.4rem 12.6rem;
}

.wrap__title-header-page h3 {
	font-size: 1.6rem;
	line-height: 1.9rem;
	letter-spacing: 0;
	font-weight: 330;
	margin-bottom: 2.4rem;
	text-transform: uppercase;
}

.wrap__title-header-page h1 {
	font-size: 3.6rem;
	line-height: 4.3rem;
	letter-spacing: 0;
	margin-left: -0.2rem;
}

.wrap__banner-header-page {
	position: relative;
}

.wrap__banner-header-page img {
	display: block;
	width: 100%;
	height: auto;
}

.fp-watermark {
	display: none;
}

.home .main-top-page+footer.wp-block-template-part {
	position: relative;
	z-index: 5;
}

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

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

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

	.pc-only {
		display: none;
	}

	.main-top-page {
		margin-bottom: 0;
	}
	.sp-only {
		display: block;
	}
}

@keyframes pulse {
  0%, 100% { transform: scale(0.6) }
  50% { transform: scale(1) }
}