#home-hero-news {
	width: 470px;
}

#home-hero-news .home-hero-panel {
	min-height: 135px;
	transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

#home-hero-news .home-hero-panel:not(.is-active) {
	position: absolute;
	inset: 20px;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(14px);
}

#home-hero-news .home-hero-panel.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

#home-hero-news .home-hero-document__title {
	display: inline-block;
	margin: 0 0 12px;
	background-image: linear-gradient(#E1D58E, #E1D58E);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 0 34%;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 18px;
	font-weight: 600;
	letter-spacing: .12em;
	line-height: 1.5;
}

#home-hero-news .home-hero-panel--document.is-active .home-hero-document__title {
	animation: home-document-marker 1.25s cubic-bezier(.22, 1, .36, 1) 2.1s forwards;
}

#home-hero-news .home-hero-panel--topics h2 {
	margin-bottom: 4px;
}

#home-hero-news .home-hero-panel--topics #home-hero-news__slider {
	margin-bottom: 0;
}

#home-hero-news .home-hero-panel--topics #home-hero-news__slider .wrap {
	min-height: 80px;
	padding-bottom: 30px;
}

@keyframes home-document-marker {
	from {
		background-size: 0 34%;
	}
	to {
		background-size: 100% 34%;
	}
}

#home-hero-document {
	position: relative;
	display: grid;
	grid-template-columns: 178px minmax(0, 1fr);
	gap: 18px;
	align-items: center;
	min-height: 96px;
	color: #000;
	text-decoration: none;
}

#home-hero-document:hover {
	color: #000;
}

#home-hero-document .home-hero-document__image {
	display: block;
}

#home-hero-document .home-hero-document__image img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .2));
	transition: filter .3s, transform .5s;
}

#home-hero-document .home-hero-document__copy {
	display: block;
	padding-bottom: 22px;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: .08em;
	line-height: 1.75;
}

#home-hero-document .home-hero-document__arrow {
	position: absolute;
	right: 0;
	bottom: 3px;
	opacity: 1;
	transition: opacity .3s;
}

#home-hero-document:hover .home-hero-document__image img {
	transform: scale(1.04);
}

#home-hero-document:hover .home-hero-document__arrow {
	opacity: .5;
}

@media screen and (max-width: 767px) {
	#home-hero-news {
		width: calc(100% - 20px);
	}

	#home-hero-news .home-hero-panel {
		min-height: 113px;
	}

	#home-hero-news .home-hero-document__title {
		margin-bottom: 10px;
		font-size: 17px;
		animation-delay: .3s;
	}

	#home-hero-document {
		grid-template-columns: 135px minmax(0, 1fr);
		gap: 12px;
		min-height: 78px;
	}

	#home-hero-document .home-hero-document__copy {
		padding-bottom: 20px;
		font-size: 12px;
		letter-spacing: .05em;
		line-height: 1.65;
	}
}

@media (prefers-reduced-motion: reduce) {
	#home-hero-news .home-hero-panel {
		transition: none;
	}

	#home-hero-news .home-hero-document__title {
		animation: none;
		background-size: 100% 34%;
	}
}

/* Floating Document CTA (PC / FV通過後に右下角へ表示) */
#floating-document {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 1000;
	width: 200px;
	padding: 20px 16px 12px 22px;
	background: #fff;
	border-radius: 10px 0 0 0;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .18);
	color: #000;
	text-decoration: none;
	opacity: 0;
	visibility: hidden;
	transform: translateY(16px);
	transition: opacity .5s ease, transform .5s cubic-bezier(.22, 1, .36, 1), visibility .5s;
}

#floating-document.is-shown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

#floating-document:hover {
	color: #000;
}

#floating-document {
	text-align: center;
}

#floating-document .floating-document__title {
	display: inline-block;
	margin: 0 0 10px;
	background-image: linear-gradient(#E1D58E, #E1D58E);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 0 34%;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .07em;
	line-height: 1.5;
	white-space: nowrap;
}

#floating-document .floating-document__image {
	display: block;
}

#floating-document .floating-document__image img {
	display: block;
	width: 88%;
	margin: 0 auto;
	height: auto;
	filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .2));
	transition: transform .5s;
}

#floating-document:hover .floating-document__image img {
	transform: scale(1.04);
}

#floating-document.is-shown .floating-document__title {
	animation: floating-document-marker 1.25s cubic-bezier(.22, 1, .36, 1) .4s forwards;
}

@keyframes floating-document-marker {
	from {
		background-size: 0 34%;
	}
	to {
		background-size: 100% 34%;
	}
}

#floating-document .floating-document__copy {
	display: block;
	margin-top: 10px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.4;
	text-align: left;
}

@media screen and (max-width: 767px) {
	#floating-document {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	#floating-document {
		transition: none;
	}

	#floating-document .floating-document__title,
	#floating-document.is-shown .floating-document__title {
		animation: none;
		background-size: 100% 34%;
	}

	#article-document-bnr.is-pre,
	#article-document-bnr.is-inview {
		animation: none;
		clip-path: none;
	}
}

/* 記事末尾の資料請求バナー */
#article-document-bnr {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 28px;
	margin: 24px 0 64px;
	padding: 36px;
	border: 1px solid #9aa0a8;
	border-radius: 10px;
	background: #fff;
	color: #000;
	text-decoration: none;
}

#article-document-bnr .article-document-bnr__txt {
	flex: 1 1 auto;
	min-width: 0;
}

#article-document-bnr:hover {
	color: #000;
}

#article-document-bnr .article-document-bnr__catch {
	margin: 0 0 10px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: .08em;
	line-height: 1.5;
}

#article-document-bnr .article-document-bnr__title {
	display: inline;
	margin: 0;
	background-image: linear-gradient(#E1D58E, #E1D58E);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: 100% 34%;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: .06em;
	line-height: 1.6;
	white-space: nowrap;
}

#article-document-bnr.is-pre {
	clip-path: inset(0 100% 0 0);
}

#article-document-bnr.is-inview {
	animation: article-bnr-wipe .9s ease forwards;
}

@keyframes article-bnr-wipe {
	from {
		clip-path: inset(0 100% 0 0);
	}
	to {
		clip-path: inset(0 0 0 0);
	}
}

#article-document-bnr .article-document-bnr__copy {
	display: block;
	margin: 18px 0 0;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.8;
}

#article-document-bnr .article-document-bnr__img {
	flex: 0 0 250px;
	max-width: 250px;
}

#article-document-bnr .article-document-bnr__img img {
	display: block;
	width: 100%;
	height: auto;
	filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .2));
	transition: transform .5s;
}

#article-document-bnr:hover .article-document-bnr__img img {
	transform: scale(1.04);
}

@media screen and (max-width: 767px) {
	#article-document-bnr {
		flex-direction: column;
		gap: 24px;
		margin: 24px 0 48px;
		padding: 28px 22px;
	}

	#article-document-bnr .article-document-bnr__catch {
		font-size: 13px;
		margin-bottom: 8px;
	}

	#article-document-bnr .article-document-bnr__title {
		font-size: 19px;
		white-space: normal;
	}

	#article-document-bnr .article-document-bnr__copy {
		margin-top: 14px;
		font-size: 14px;
	}

	#article-document-bnr .article-document-bnr__img {
		flex-basis: auto;
		width: 78%;
		max-width: 280px;
	}
}

/* 資料請求ページ: 冊子の中面画像 */
.inquiry-nakami {
	display: flex;
	gap: 20px;
	margin-top: 8px;
}

.inquiry-nakami figure {
	flex: 1 1 0;
	margin: 0;
}

.inquiry-nakami figure img {
	display: block;
	width: 100%;
	height: auto;
	box-shadow: 0 3px 14px rgba(0, 0, 0, .18);
}

@media screen and (max-width: 767px) {
	.inquiry-nakami {
		display: block;
		margin-top: 4px;
	}

	.inquiry-nakami figure {
		width: 82%;
	}

	.inquiry-nakami figure + figure {
		margin: -10% 0 0 auto;
	}

	.inquiry-nakami + p {
		margin-top: 32px;
	}
}

/* フォーム統一スタイル: TinyBooker(v2)のフォームに合わせて
   入力欄=黒1px枠・padding 9px 12px、項目ごとの区切り線なし */
.wpcf7 .form-group,
.component-form .wpcf7 .form-group {
	border-bottom: none !important;
	padding-top: 24px;
	padding-bottom: 24px;
}

.wpcf7 input.form-control,
.wpcf7 textarea.form-control,
.wpcf7 select.form-select {
	border: 1px solid #000;
	border-radius: 0;
	padding: 9px 12px;
	background-color: #fff;
}

/* イベントページ(TinyBooker旧フォーム)のuser_style_custom.cssの!important指定を上書き */
html #tb-mc-form-panel .wpcf7 form:not(:has(.p-tb-form-wrap-v2)) .form-group {
	border-bottom: none !important;
}

html #tb-mc-form-panel .wpcf7 form:not(:has(.p-tb-form-wrap-v2)) input.form-control,
html #tb-mc-form-panel .wpcf7 form:not(:has(.p-tb-form-wrap-v2)) textarea.form-control,
html #tb-mc-form-panel .wpcf7 form:not(:has(.p-tb-form-wrap-v2)) select.form-select {
	border: 1px solid #000 !important;
	padding: 9px 12px !important;
}

.wpcf7 input.form-control:focus,
.wpcf7 textarea.form-control:focus,
.wpcf7 select.form-select:focus {
	border-color: #000;
	outline: none;
	box-shadow: none;
}

/* 資料請求ページ: SPで「Contact form」見出しを少し大きく */
@media screen and (max-width: 767px) {
	#inquiry-sc2 .title span {
		font-size: 40px;
	}
}
