/* pc_hiyashitoku_v1.pdf — 冷やしトク LP */

:root {
	--hi-blue: #009ee7;
	--hi-blue-dark: #0073b3;
	--hi-blue-soft: #4aa3d9;
	--hi-ink: #0a4a6e;
	--hi-muted: #3d6a88;
	--hi-bg-pale: #e8f4fb;
	--hi-line: #b8d4e8;
}

body.hiyashitoku-lp {
	margin: 0;
	background: #fff;
	font-family: "Noto Sans JP", sans-serif;
	color: var(--hi-ink);
	-webkit-font-smoothing: antialiased;
}

.p-hiyashitoku {
	line-height: 1.85;
	letter-spacing: 0.04em;
}

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

/* ── トップバー（PDF: 左ロゴ / 中央4リンク / 右Contact） ── */
.p-hiyashitoku__bar {
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 500;
	background: rgba(255, 255, 255, 0.97);
	border-bottom: 1px solid var(--hi-line);
	box-shadow: 0 1px 0 rgba(0, 140, 214, 0.06);
	min-height: 60px;
	display: flex;
	align-items: center;
}

body.admin-bar .p-hiyashitoku__bar {
	top: 32px;
}

@media screen and (max-width: 782px) {
	body.admin-bar .p-hiyashitoku__bar {
		top: 46px;
	}
}

.p-hiyashitoku__bar-inner {
	max-width: 1000px;
	width: 90%;
	margin: 0 auto;
	padding: 1rem 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5rem;
	@media screen and (max-width: 1024px) {
		width: 100%;
		padding: 1rem 0 1rem 2rem;
	}
}

.p-hiyashitoku__brand {
	text-decoration: none;
	white-space: nowrap;
	display: inline-block;
	transition: opacity 0.3s ease;
	&:hover {
		opacity: 0.8;
	}
	img {
		width: 131px;
		height: auto;
		display: block;
		object-fit: contain;
		@media screen and (max-width: 640px) {
			width: 100px;
		}
	}
}

.p-hiyashitoku__gnav {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem 1.5rem;
	flex: 1;
	@media screen and (max-width: 1024px) {
		gap: 0.5rem 1rem;
	}
	a {
		color: var(--hi-blue-soft);
		font-size: 1.4rem;
		text-decoration: none;
		position: relative;
		@media screen and (max-width: 1024px) {
			font-size: 1.3rem;
		}
		&::after {
			content: "";
			position: absolute;
			bottom: 0;
			right: 0;
			width: 0;
			height: 2px;
			background: var(--hi-blue);
			transition: width 0.3s ease;
		}
		&:hover {
			color: var(--hi-blue);
			&::after {
				width: 100%;
				left: 0;
				right: unset;
			}
		}
	}
}

.p-hiyashitoku__btn-contact {
	padding: 0.5rem 1rem;
	width: 100%;
	max-width: 11rem;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--hi-blue);
	color: #fff !important;
	font-size: 1.8rem;
	font-weight: 500;
	white-space: nowrap;
	transition: opacity 0.3s ease;
	cursor: pointer;
	&:hover {
		opacity: 0.8;
		color: #fff !important;
	}
}

.p-hiyashitoku__menu-toggle,
.p-hiyashitoku__menu-overlay {
	display: none;
}

@media (min-width: 961px) {
	.p-hiyashitoku__menu-toggle {
		display: none !important;
	}
}

@media (max-width: 960px) {
	.p-hiyashitoku__bar-inner {
		justify-content: space-between;
	}
	.p-hiyashitoku__menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 44px;
		height: 44px;
		border: 0;
		background: transparent;
		color: var(--hi-blue);
		cursor: pointer;
		position: fixed;
		top: 0.8rem;
		right: 0;
		z-index: 550;
	}
	.p-hiyashitoku__menu-toggle-box {
		display: inline-flex;
		flex-direction: column;
		gap: 5px;
	}
	.p-hiyashitoku__menu-toggle-bar {
		display: block;
		width: 22px;
		height: 2px;
		background: currentColor;
		transition:
			transform 0.3s ease,
			opacity 0.3s ease;
	}
	.p-hiyashitoku__gnav {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		width: min(84vw, 360px);
		padding: 5.5rem 1.5rem 2rem;
		background: rgba(255, 255, 255, 0.98);
		box-shadow: -10px 0 26px rgba(10, 74, 110, 0.18);
		transform: translate3d(104%, 0, 0);
		transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
		display: flex;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 0.6rem;
		flex-wrap: nowrap;
		z-index: 540;
		/* 閉じているときは画面外でも古い環境でヒット領域が残ることがあるため無効化 */
		pointer-events: none;
		@media screen and (max-width: 640px) {
			width: 100%;
		}
	}
	.p-hiyashitoku__gnav a {
		display: block;
		padding: 0.8rem 0.25rem;
		font-size: 1.5rem;
		text-align: center;
		&::after {
			display: none;
		}
	}
	.p-hiyashitoku__btn-contact {
		margin-top: 1rem;
		width: 100%;
		max-width: unset;
	}
	.p-hiyashitoku__menu-overlay {
		position: fixed;
		inset: 0;
		border: 0;
		background: rgba(10, 74, 110, 0.25);
		opacity: 0;
		pointer-events: none;
		transition: opacity 0.25s ease;
		z-index: 5;
	}
	body.hiyashitoku-nav-open {
		overflow: hidden;
	}
	body.hiyashitoku-nav-open .p-hiyashitoku__gnav {
		transform: translate3d(0, 0, 0);
		pointer-events: auto;
	}
	body:not(.hiyashitoku-nav-open) .p-hiyashitoku__menu-overlay {
		display: none !important;
		pointer-events: none !important;
	}
	body.hiyashitoku-nav-open .p-hiyashitoku__menu-overlay {
		display: block;
		opacity: 1;
		pointer-events: auto;
	}
	body.hiyashitoku-nav-open .p-hiyashitoku__menu-toggle-bar:nth-child(1) {
		transform: translateY(7px) rotate(45deg);
	}
	body.hiyashitoku-nav-open .p-hiyashitoku__menu-toggle-bar:nth-child(2) {
		opacity: 0;
	}
	body.hiyashitoku-nav-open .p-hiyashitoku__menu-toggle-bar:nth-child(3) {
		transform: translateY(-7px) rotate(-45deg);
	}
}

/* ── ヒーロー（氷・水イメージ背景 + ロゴ枠） ── */
.p-hiyashitoku__hero {
	margin-top: 60px;
	position: relative;
	height: calc(100svh - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.p-hiyashitoku__hero.p-hiyashitoku__hero--has-video {
	height: auto;
	min-height: 100svh;
	overflow: visible;
	padding-block: clamp(2rem, 6vw, 4rem);
}

.p-hiyashitoku__hero-bg {
	position: absolute;
	inset: 0;
	background: url("./images/mv-bg.jpg") center / cover no-repeat;
	opacity: 1;
}

.p-hiyashitoku__hero-inner {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6rem;
	@media screen and (max-width: 640px) {
		gap: 3rem;
	}
}

.p-hiyashitoku__hero-logo {
	max-width: 810px;
	width: 80%;
}

.p-hiyashitoku__play {
	position: relative;
	z-index: 5;
	display: flex;
	align-items: center;
	gap: 3rem;
	border: 0;
	background: transparent;
	color: var(--hi-blue);
	font-size: 4rem;
	font-weight: 500;
	font-family: inherit;
	cursor: pointer;
	padding: 0;
	@media screen and (max-width: 640px) {
		font-size: 3rem;
		gap: 2rem;
	}
	&:hover {
		.p-hiyashitoku__play-tx {
			&::after {
				width: 100%;
				left: 0;
				right: unset;
			}
		}
	}
}

.p-hiyashitoku__play-tx {
	position: relative;
	&::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: 0;
		width: 0;
		height: 3px;
		background: var(--hi-blue);
		transition: width 0.3s ease;
	}
}
.p-hiyashitoku__play-ic {
	width: 55px;
	height: 55px;
	@media screen and (max-width: 640px) {
		width: 40px;
		height: 40px;
	}
	svg {
		fill: #fff;
		display: block;
	}
}

/* ヒーロー内インライン動画 */
.p-hiyashitoku__hero-video {
	width: 100vw;
	height: 100%;
	position: absolute;
	inset: 0;
	margin: auto;
	z-index: 5;
}

.p-hiyashitoku__hero-video-frame {
	position: relative;
	height: 100%;
	width: 100%;
	background: #000;
	overflow: hidden;
}

.p-hiyashitoku__hero-movie {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-hiyashitoku__hero-video-close {
	position: absolute;
	top: 7rem;
	right: 1rem;
	z-index: 2;
	width: 6rem;
	height: 6rem;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.45);
	color: #fff;
	font-size: 5rem;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.p-hiyashitoku__hero-video-close:hover {
	background: rgba(0, 0, 0, 0.65);
}

/* ── 動画モーダル（未使用・互換用に残す場合あり） ── */
.p-hiyashitoku__modal {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: grid;
	place-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.p-hiyashitoku__modal.is-open {
	opacity: 1;
	pointer-events: auto;
}

.p-hiyashitoku__modal-overlay {
	position: absolute;
	inset: 0;
	border: 0;
	background: rgba(10, 20, 32, 0.7);
}

.p-hiyashitoku__modal-dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	box-shadow: 0 14px 40px rgba(5, 45, 70, 0.28);
	overflow: hidden;
}

.p-hiyashitoku__modal-head {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.p-hiyashitoku__modal-close {
	border: 0;
	background: transparent;
	font-size: 5rem;
	line-height: 1;
	color: var(--hi-blue);
	cursor: pointer;
}

.p-hiyashitoku__modal-media {
	aspect-ratio: 16 / 9;
	width: 100%;
}

.p-hiyashitoku__modal-media iframe,
.p-hiyashitoku__modal-media video {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}

body.hiyashitoku-modal-open {
	overflow: hidden;
}

/* 動画モーダル — ビューポート全画面 */
.p-hiyashitoku__modal--fullscreen {
	display: block;
}

.p-hiyashitoku__modal--fullscreen .p-hiyashitoku__modal-dialog {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	max-width: none;
	box-shadow: none;
	display: flex;
	flex-direction: column;
	overflow: hidden;
	pointer-events: none;
}

.p-hiyashitoku__modal--fullscreen .p-hiyashitoku__modal-head {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	padding: clamp(0.5rem, 2vw, 1.25rem);
	pointer-events: none;
}

.p-hiyashitoku__modal--fullscreen .p-hiyashitoku__modal-close {
	pointer-events: auto;
	color: #fff;
	font-size: clamp(3rem, 8vw, 4.5rem);
	line-height: 0.85;
	text-shadow: 0 0.08em 0.2em rgba(0, 0, 0, 0.55);
}

.p-hiyashitoku__modal--fullscreen .p-hiyashitoku__modal-body {
	flex: 1;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.p-hiyashitoku__modal--fullscreen .p-hiyashitoku__modal-media {
	aspect-ratio: unset;
	width: 100%;
	height: 100%;
	min-height: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #000;
}

.p-hiyashitoku__modal--fullscreen .p-hiyashitoku__modal-media iframe,
.p-hiyashitoku__modal--fullscreen .p-hiyashitoku__modal-media video {
	width: 100%;
	height: 100%;
	max-height: 100vh;
	max-height: 100dvh;
	object-fit: contain;
}
.p-hiyashitoku__modal--fullscreen.is-open {
	pointer-events: auto;
	.p-hiyashitoku__modal-body {
		pointer-events: auto;
	}
	.p-hiyashitoku__modal-media {
		iframe,
		video {
			pointer-events: auto;
		}
	}
}
/* ── セクション共通 ── */
.p-hiyashitoku__block {
	padding-block: 10rem;
	@media screen and (max-width: 640px) {
		padding-block: 6rem;
	}
}

.p-hiyashitoku__block--white {
	background: #fff;
}

.p-hiyashitoku__block--pale {
	background: var(--hi-bg-pale);
}

.p-hiyashitoku__contain {
	max-width: 900px;
	margin: 0 auto;
	width: 80%;
	@media only screen and (max-width: 768px) {
		width: 85%;
	}
	@media only screen and (max-width: 640px) {
		width: 90%;
	}
}

.p-hiyashitoku__h2 {
	margin: 0 0 6rem;
	font-size: clamp(2rem, 2.5vw, 5rem);
	font-weight: 700;
	color: var(--hi-blue);
	text-align: center;
	@media screen and (max-width: 640px) {
		margin-bottom: 3rem;
	}
	img {
		max-width: 540px;
		width: 100%;
		height: auto;
		object-fit: contain;
		@media screen and (max-width: 640px) {
			max-width: calc(540 * 0.66px);
		}
	}
}

.p-hiyashitoku__concept {
	background: #f2f2f2;
}

.p-hiyashitoku__h2--concept {
	img {
		max-width: 475px;
		@media screen and (max-width: 640px) {
			max-width: calc(475 * 0.66px);
		}
	}
}

.p-hiyashitoku__body {
	margin: 0 0 6em;
	color: var(--hi-blue);
	@media screen and (max-width: 640px) {
		margin-bottom: 3rem;
	}
	p {
		font-size: 2rem;
		font-weight: bold;
		line-height: 2.5;
		@media screen and (max-width: 640px) {
			font-size: 1.4rem;
		}
	}
}

.p-hiyashitoku__body--center {
	text-align: center;
	@media screen and (max-width: 640px) {
		text-align: left;
	}
}

/* 3ステップ */
.p-hiyashitoku__steps {
	list-style: none;
	padding: 0;
	margin-bottom: 6rem;
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
	width: 100%;
	@media screen and (max-width: 640px) {
		margin-bottom: 3rem;
	}
}

.p-hiyashitoku__step {
	flex: 1 1 0;
	@media screen and (max-width: 640px) {
		flex: unset;
		flex-basis: calc(100% / 2 - 1rem);
	}
}

.p-hiyashitoku__step-ic {
	svg,
	img {
		width: 100%;
		height: 100%;
		object-fit: contain;
		vertical-align: middle;
	}
}

/* 特徴3つ */
.p-hiyashitoku__feat {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: clamp(2rem, 2.4vw, 6rem);
}

.p-hiyashitoku__feat-item {
	text-align: center;
	max-width: 240px;
	@media screen and (max-width: 640px) {
		flex-basis: calc(100% / 2 - 1rem);
	}
}

.p-hiyashitoku__feat-ic {
	width: 100%;
	height: 100%;
	object-fit: contain;
	vertical-align: middle;
}

.p-hiyashitoku__note {
	margin-top: 4rem;
	font-size: 1.2rem;
	font-weight: 500;
	color: var(--hi-blue);
	text-align: center;
	line-height: 2;
	@media screen and (max-width: 640px) {
		margin-top: 2rem;
		font-size: 1rem;
		text-align: left;
	}
}

/* グラフ */
.p-hiyashitoku__tex .p-hiyashitoku__body {
	margin-bottom: 5rem;
	@media screen and (max-width: 640px) {
		margin-bottom: 3rem;
	}
}

.p-hiyashitoku__chart-media {
	position: relative;
}

.p-hiyashitoku__chart-svg {
	width: 100%;
	height: auto;
	display: block;
}

.p-hiyashitoku__chart-overlay {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.hi-chart-arrow {
	stroke-dasharray: 1;
	stroke-dashoffset: 0;
	opacity: 1;
}

.hi-chart-arrowhead {
	opacity: 1;
	transform-box: fill-box;
	transform-origin: center;
}

.p-hiyashitoku__banner {
	margin: 5rem auto 0;
	overflow: hidden;
	max-width: 550px;
	display: block;
	text-decoration: none;
	transition: opacity 0.3s ease;
	@media screen and (max-width: 640px) {
		margin-top: 3rem;
	}
	&:hover {
		opacity: 0.8;
	}
	img {
		display: block;
		width: 100%;
		height: auto;
	}
}

/* 商品 — Embla カルーセル（3枚表示・ループ・自動再生は JS） */
.p-hiyashitoku__products {
	--hi-products-gap: 1.5rem;
}

.p-hiyashitoku__products-carousel {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	width: 100%;
	max-width: 100%;
}

.p-hiyashitoku__products-arrow {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	padding: 0;
	border: 1px solid rgba(0, 0, 0, 0.12);
	border-radius: 50%;
	background: #fff;
	color: var(--hi-blue, #009ee7);
	cursor: pointer;
	transition:
		background 0.2s ease,
		color 0.2s ease,
		opacity 0.2s ease;
}

.p-hiyashitoku__products-arrow:hover:not(:disabled) {
	background: var(--hi-blue, #009ee7);
	color: #fff;
	border-color: transparent;
}

.p-hiyashitoku__products-arrow:disabled {
	opacity: 0.35;
	cursor: default;
}

.p-hiyashitoku__products-viewport {
	flex: 1;
	min-width: 0;
	overflow: hidden;
}

.p-hiyashitoku__products-track {
	display: flex;
	touch-action: pan-y pinch-zoom;
	margin-left: calc(var(--hi-products-gap) * -1);
}

.p-hiyashitoku__products-slide {
	flex: 0 0 calc(100% / 3);
	min-width: 0;
	padding-left: var(--hi-products-gap);
	box-sizing: border-box;
}

@media screen and (max-width: 900px) {
	.p-hiyashitoku__products-slide {
		flex: 0 0 50%;
	}
}

@media screen and (max-width: 640px) {
	.p-hiyashitoku__products-carousel {
		gap: 0.35rem;
	}

	.p-hiyashitoku__products-arrow {
		width: 2.25rem;
		height: 2.25rem;
	}

	.p-hiyashitoku__products-arrow svg {
		width: 20px;
		height: 20px;
	}
}

.p-hiyashitoku__card {
	overflow: hidden;
}

.p-hiyashitoku__card-link {
	display: block;
	text-decoration: none;
	transition: opacity 0.3s ease;
	cursor: pointer;
	color: #000;
	&:hover {
		.p-hiyashitoku__card-img img {
			transform: scale(1.05);
		}
	}
}

.p-hiyashitoku__card-img {
	aspect-ratio: 440 / 300;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	img {
		transition: transform 0.3s ease;
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
}

.p-hiyashitoku__card-name {
	font-size: 1.6rem;
	font-weight: bold;
	margin: 1em 0;
	@media screen and (max-width: 640px) {
		font-size: 1.4rem;
	}
}

.p-hiyashitoku__card-spec {
	font-size: 1.2rem;
	line-height: 2;
	display: grid;
	grid-template-columns: auto 1fr;
	@media screen and (max-width: 640px) {
		font-size: 1rem;
	}
}

/* 終端ブロック（取扱店舗 / お問い合わせ / フッター） */
.p-hiyashitoku__ending {
	background: #efefef;
	text-align: center;
}

.p-hiyashitoku__ending-title {
	margin: 0 0 5rem;
	font-size: 5rem;
	font-weight: bold;
	color: var(--hi-blue);
	@media screen and (max-width: 640px) {
		font-size: 3rem;
		margin-bottom: 3rem;
	}
	img {
		max-width: 460px;
		width: 100%;
		height: auto;
		object-fit: contain;
		@media screen and (max-width: 640px) {
			max-width: calc(460 * 0.66px);
		}
	}
}

/* お問い合わせ */
.p-hiyashitoku__inq {
	padding-top: 0;
	.p-hiyashitoku__ending-title {
		img {
			max-width: 360px;
			@media screen and (max-width: 640px) {
				max-width: calc(360 * 0.66px);
			}
		}
	}
}

.p-hiyashitoku__btn-wide {
	display: inline-block;
	min-width: min(100%, 320px);
	padding: 1.2rem 2.2rem;
	background: var(--hi-blue);
	color: #fff !important;
	font-size: clamp(1.9rem, 2.4vw, 3rem);
	font-weight: 500;
	text-decoration: none;
	border-radius: 0;
	transition: opacity 0.3s ease;
	cursor: pointer;
	&:hover {
		opacity: 0.8;
		color: #fff !important;
	}
}

/* フッター */
.p-hiyashitoku__foot {
	text-align: center;
}

.p-hiyashitoku__foot-brand {
	padding: 10rem 0;
	background-color: #fff;
	@media screen and (max-width: 640px) {
		padding: 5rem 0;
	}
	a {
		display: block;
		text-decoration: none;
		transition: opacity 0.3s ease;
		&:hover {
			opacity: 0.8;
		}
	}
	img {
		height: auto;
		width: min(50%, 340px);
		display: block;
		margin: 0 auto;
	}
}

.p-hiyashitoku__foot-copy {
	background: #000;
	color: #fff;
	padding: 1rem;
	small {
		font-size: 1.2rem;
	}
}

/* アンカー（固定トップバー分） */
.p-hiyashitoku #about,
.p-hiyashitoku #concept,
.p-hiyashitoku #lead,
.p-hiyashitoku #technology,
.p-hiyashitoku #lineup,
.p-hiyashitoku #voices,
.p-hiyashitoku #contact {
	scroll-margin-top: 88px;
}

/* ── Intersection Observer 連動フェードイン ── */
/* data-delay → --hi-delay / data-duration → --hi-duration（秒・小数可、hiyashitoku-io.js） */
.hi-io {
	--hi-delay: 0.3s;
	--hi-duration: 1s;
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition:
		opacity var(--hi-duration) cubic-bezier(0.22, 1, 0.36, 1),
		transform var(--hi-duration) cubic-bezier(0.22, 1, 0.36, 1);
	transition-delay: var(--hi-delay);
}

.hi-io.hi-io--in {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

body.hiyashitoku-js .p-hiyashitoku__chart--animated:not(.hi-io--in) .hi-chart-arrow {
	stroke-dashoffset: 1;
	opacity: 0;
}

body.hiyashitoku-js .p-hiyashitoku__chart--animated:not(.hi-io--in) .hi-chart-arrowhead {
	opacity: 0;
}

body.hiyashitoku-js .p-hiyashitoku__chart--animated.hi-io--in .hi-chart-arrow {
	animation: hi-chart-arrow-draw 1s cubic-bezier(0.33, 1, 0.68, 1) 1.5s both;
}

body.hiyashitoku-js .p-hiyashitoku__chart--animated.hi-io--in .hi-chart-arrowhead {
	animation: hi-chart-arrowhead-draw 1s cubic-bezier(0.33, 1, 0.68, 1) 2s both;
}

.hi-io--fade {
	transform: none;
}

.hi-io--fade.hi-io--in {
	transform: none;
}

.hi-io--left {
	transform: translate3d(-28px, 0, 0);
}

.hi-io--right {
	transform: translate3d(28px, 0, 0);
}

.hi-io--up {
	transform: translate3d(0, 28px, 0);
}

@keyframes hi-io-fade-scale {
	from {
		opacity: 0;
		transform: scale(0.96);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes hi-chart-arrowhead-draw {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes hi-chart-arrow-draw {
	0% {
		stroke-dashoffset: 1;
		opacity: 0;
	}
	10% {
		opacity: 1;
	}
	100% {
		stroke-dashoffset: 0;
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {
	.hi-io {
		opacity: 1;
		transform: none;
		transition: none;
	}

	.hi-io.hi-io--in {
		opacity: 1;
		transform: none;
	}

	#lineup .p-hiyashitoku__card,
	#voices .p-hiyashitoku__sns-cell {
		opacity: 1 !important;
		transform: none !important;
		animation: none !important;
	}

	.hi-chart-arrow {
		stroke-dashoffset: 0 !important;
		opacity: 1 !important;
		animation: none !important;
	}

	.hi-chart-arrowhead {
		opacity: 1 !important;
		animation: none !important;
	}
}

.p-hiyashitoku__block--header {
	background-image: url(images/mv-bg.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: 5rem 0;
	margin-top: 6rem;
	h1 {
		text-align: center;
		img {
			max-width: 400px;
			width: 100%;
			height: auto;
			object-fit: contain;
			@media screen and (max-width: 640px) {
				max-width: calc(400 * 0.66px);
			}
		}
	}
}
