@charset "UTF-8";
:root {
	--bp-sp: 767px;
}

:root {
	--bp-portrait: 1024px;
}

:root {
	--bp-pc: 1372px;
}

/******************************************************************
foundation - base
******************************************************************/
:where(html) {
	-webkit-text-size-adjust: 100%;
}

:where(body) {
	margin: 0;
}

:where(button, input, optgroup, select, textarea) {
	font-family: inherit; /* 1 */
	font-size: 1rem;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	:where(button, input, optgroup, select, textarea) {
		font-size: 0.9rem;
	}
}

:where(html) {
	scroll-behavior: smooth;
}

:where(body) {
	min-width: 375px;
	font-family: "Noto Sans JP", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-weight: 400;
	overflow-wrap: break-word;
	overflow-y: scroll;
	color: #000000;
	font-size: 1rem;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	:where(body) {
		font-size: 0.9rem;
	}
}
@media print {
	:where(body) {
		width: 1312px;
		zoom: 0.8;
	}
}

:where(h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dd, figure) {
	margin: 0;
	padding: 0;
}

:where(li) {
	list-style: none;
}

:where(table) {
	border-collapse: collapse;
	border-spacing: 0;
}

:where(iframe) {
	border: 0;
}

:where(button) {
	background-color: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	appearance: none;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	:where(button):hover {
		text-decoration: none;
	}
}
:where(button):focus {
	text-decoration: none;
}
:where(button) {
	outline-color: #999999;
}

:where(input, select) {
	outline-color: #999999;
}

:where(em) {
	font-style: normal;
	font-weight: bold;
}

:where(fieldset) {
	border: 0;
	padding: 0;
	margin: 0;
}

:where(address) {
	font-style: normal;
}

:where(a) {
	color: #000000;
	text-decoration: none;
	text-decoration-thickness: 1px !important;
	text-underline-offset: 0.1em;
	outline-color: #999999;
}
@media (any-hover: hover) {
	:where(a):hover {
		text-decoration: underline;
	}
}
:where(a):focus {
	text-decoration: underline;
}

:where(img) {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

:where(svg) {
	vertical-align: middle;
}

:where(hr) {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #dfdfdf;
}

/******************************************************************
layout - wrapper
******************************************************************/
.l-wrapper {
	width: 100%;
	overflow: clip;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}
.l-wrapper main {
	flex-grow: 1;
}

/******************************************************************
layout - header-fixed
******************************************************************/
html:has(.l-header-fixed) {
	scroll-padding-top: calc(var(--header-height) + 10px);
}

@media screen and (max-width: 1024px) {
	html:has(.l-header-fixed--portrait-over) {
		scroll-padding-top: initial;
	}
}

@media print, screen and (min-width: 1025px) {
	html:has(.l-header-fixed--portrait) {
		scroll-padding-top: initial;
	}
}
body:has(.l-header-fixed) {
	padding-top: var(--header-height);
}
@media print {
	body:has(.l-header-fixed) {
		padding-top: initial;
	}
}

@media screen and (max-width: 1024px) {
	body:has(.l-header-fixed--portrait-over) {
		padding-top: initial;
	}
}

@media print, screen and (min-width: 1025px) {
	body:has(.l-header-fixed--portrait) {
		padding-top: initial;
	}
}
body:has(.l-header-fixed) .l-wrapper {
	min-height: calc(100dvh - var(--header-height));
}

.l-header-fixed__inner[data-header-fixed=true] {
	position: fixed;
	z-index: 100;
	top: 0;
	width: 100%;
}
@media print {
	.l-header-fixed__inner[data-header-fixed=true] {
		position: relative;
	}
}

/******************************************************************
layout - header
******************************************************************/
:root {
	--header-height: 0;
}

.l-header {
	position: relative;
	background-color: #fff;
}
.l-header__content {
	border-bottom: 1px solid #dfdfdf;
}
@media screen and (max-width: 1024px) {
	.l-header__content-inner {
		padding-inline: 0;
	}
}
.l-header__navigation {
	background-color: #fff;
	border-bottom: 1px solid #dfdfdf;
}
.l-header__navigation-inner {
	max-width: 1312px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.l-header__navigation-inner {
		padding-inline: 20px;
	}
}
.l-header__navigation-inner {
	display: flex;
	gap: 30px;
	padding-block: 22px;
}
@media screen and (max-width: 1024px) {
	.l-header__navigation {
		display: none;
	}
}
.l-header__navigation-portrait {
	display: none;
}
@media screen and (max-width: 1024px) {
	.l-header__navigation-portrait {
		display: block;
	}
}
.l-header__navigation-portrait {
	background-color: #fff;
	border-bottom: 1px solid #dfdfdf;
}
.l-header__navigation-portrait-inner {
	display: flex;
	align-items: center;
}
.l-header__navigation-portrait-head {
	flex-grow: 1;
	padding: 12px 8px;
	line-height: 1;
}
.l-header__navigation-portrait-head a {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.l-header__navigation-portrait-head a:hover {
		text-decoration: none;
	}
}
.l-header__navigation-portrait-head a:focus {
	text-decoration: none;
}

/******************************************************************
layout - header-content-type1
******************************************************************/
.l-header-content-type1 {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
}
@media screen and (max-width: 1024px) {
	.l-header-content-type1 {
		padding-inline: 0;
		gap: 0.75rem;
	}
}
.l-header-content-type1__head {
	box-sizing: border-box;
	align-self: center;
	padding: 15px 23px;
}
@media screen and (max-width: 1024px) {
	.l-header-content-type1__head {
		padding: 15px 15px;
	}
}
@media screen and (max-width: 767px) {
	.l-header-content-type1__logo {
		width: 45vw;
	}
}
.l-header-content-type1__logo {
	font-size: 1rem;
}
.l-header-content-type1__logo img {
	max-width: 100%;
	width: 250px;
}
.l-header-content-type1__body-landscape {
	display: flex;
}
@media screen and (max-width: 1024px) {
	.l-header-content-type1__body-landscape {
		display: none;
	}
}
.l-header-content-type1__jpx-logo a {
	display: block;
	padding: 15px 22px;
}
.l-header-content-type1__jpx-logo img {
	width: 33px;
	max-width: 100%;
}
.l-header-content-type1__body-portrait {
	display: none;
}
@media screen and (max-width: 1024px) {
	.l-header-content-type1__body-portrait {
		flex-grow: 1;
		display: flex;
		flex-direction: row-reverse;
	}
}

/******************************************************************
layout - header-menu
******************************************************************/
@media print, screen and (min-width: 1025px) {
	.l-header-menu {
		border-left: 1px solid #dfdfdf;
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		font-size: 13px;
	}
	.l-header-menu li {
		border-right: 1px solid #dfdfdf;
		border-top: 1px solid #dfdfdf;
	}
	.l-header-menu li:nth-child(1), .l-header-menu li:nth-child(2) {
		border-top: 0;
	}
	.l-header-menu li {
		display: flex;
	}
	.l-header-menu a {
		flex-grow: 1;
		display: flex;
		align-items: center;
		padding: 0.2em 1.8em 0.2em 1em;
		position: relative;
	}
	.l-header-menu a::after {
		transition-property: top, right, bottom, left, opacity;
		transition-duration: 0.2s;
		position: absolute;
		content: "";
		margin: auto;
		box-sizing: border-box;
		vertical-align: middle;
		width: 6px;
		height: 6px;
		border-color: #c2000f;
		border-style: solid;
		border-top: 3px solid transparent !important;
		border-right-width: 0;
		border-bottom: 3px solid transparent !important;
		border-left-width: 6px;
		top: 0;
		bottom: 0;
		right: 0.6em;
	}
	.l-header-menu a {
		color: inherit;
		text-decoration: none;
		transition-property: background, color;
		transition-duration: 0.4s;
	}
}
@media print and (any-hover: hover), screen and (min-width: 1025px) and (any-hover: hover) {
	.l-header-menu a:hover {
		text-decoration: none;
	}
}
@media print, screen and (min-width: 1025px) {
	.l-header-menu a:focus {
		text-decoration: none;
	}
}
@media print and (any-hover: hover), screen and (min-width: 1025px) and (any-hover: hover) {
	.l-header-menu a:hover {
		background-color: #c2000f;
		color: #fff;
	}
	.l-header-menu a:hover::after {
		border-color: #fff;
	}
}
@media print, screen and (min-width: 1025px) {
	.l-header-menu a:focus {
		background-color: #c2000f;
		color: #fff;
	}
	.l-header-menu a:focus::after {
		border-color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.l-header-menu {
		border-left: 1px solid #dfdfdf;
		border-bottom: 1px solid #dfdfdf;
	}
	.l-header-menu li {
		border-right: 1px solid #dfdfdf;
		border-top: 1px solid #dfdfdf;
		display: flex;
	}
	.l-header-menu a {
		white-space: nowrap;
		flex-grow: 1;
		display: flex;
		align-items: center;
		padding: 1em 1.8em 1em 1.2em;
		position: relative;
	}
	.l-header-menu a::after {
		transition-property: top, right, bottom, left, opacity;
		transition-duration: 0.2s;
		position: absolute;
		content: "";
		margin: auto;
		box-sizing: border-box;
		vertical-align: middle;
		width: 6px;
		height: 6px;
		border-color: #c2000f;
		border-style: solid;
		border-top: 3px solid transparent !important;
		border-right-width: 0;
		border-bottom: 3px solid transparent !important;
		border-left-width: 6px;
		top: 0;
		bottom: 0;
		right: 0.8em;
	}
	.l-header-menu a {
		color: inherit;
		text-decoration: none;
		transition-property: background, color;
		transition-duration: 0.4s;
	}
}
@media screen and (max-width: 1024px) and (any-hover: hover) {
	.l-header-menu a:hover {
		text-decoration: none;
	}
}
@media screen and (max-width: 1024px) {
	.l-header-menu a:focus {
		text-decoration: none;
	}
}
@media screen and (max-width: 1024px) and (any-hover: hover) {
	.l-header-menu a:hover {
		background-color: #c2000f;
		color: #fff;
	}
	.l-header-menu a:hover::after {
		border-color: #fff;
	}
}
@media screen and (max-width: 1024px) {
	.l-header-menu a:focus {
		background-color: #c2000f;
		color: #fff;
	}
	.l-header-menu a:focus::after {
		border-color: #fff;
	}
}

/******************************************************************
layout - header-search-box
******************************************************************/
.l-header-search-box {
	position: relative;
	width: max-content;
	margin-inline: auto;
}
@media screen and (max-width: 1024px) {
	.l-header-search-box {
		width: 100%;
	}
}
.l-header-search-box form {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
}
.l-header-search-box input[type=search],
.l-header-search-box input[type=text] {
	border: 0;
	border-radius: 100vw;
	background-color: #eeeeee;
	padding: 0.5rem 28px 0.35rem 0.75rem;
	font-size: 14px;
	width: 18em;
}
@media screen and (max-width: 1024px) {
	.l-header-search-box input[type=search],
	.l-header-search-box input[type=text] {
		padding: 1rem 40px 1rem 1.75rem;
		width: 100%;
		font-size: 16px;
	}
}
.l-header-search-box input[type=search]:focus,
.l-header-search-box input[type=text]:focus {
	outline-offset: 0px;
}
.l-header-search-box input[type=search]::-webkit-search-cancel-button {
	appearance: none;
}
.l-header-search-box input[type=submit],
.l-header-search-box button {
	position: absolute;
	aspect-ratio: 1/1;
	background: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgd2lkdGg9IjMyIiBoZWlnaHQ9IjMyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxwYXRoIGZpbGw9IiMwMDAiIGQ9Im00NTYuNjkgNDIxLjM5LTk0LjA5LTk0LjA5YTE3My44MSAxNzMuODEgMCAwIDAgMzQuODQtMTA0LjU4Yy0wLTk2LjM0LTc4LjM4LTE3NC43Mi0xNzQuNzItMTc0Ljcycy0xNzQuNzIgNzguMzgtMTc0LjcyIDE3NC43MiA3OC4zOCAxNzQuNzIgMTc0LjcyIDE3NC43MmExNzMuODEgMTczLjgxIDAgMCAwIDEwNC41OC0zNC44NGw5NC4wOSA5NC4wOWEyNSAyNSAwIDAgMCAzNS4zLTM1LjN6bS0zNTguNzctMTk4LjY3YTEyNC44IDEyNC44IDAgMSAxIDEyNC44IDEyNC44IDEyNC45NSAxMjQuOTUgMCAwIDEgLTEyNC44LTEyNC44eiIvPjwvc3ZnPg==");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
	right: 10px;
	height: 18px;
}
@media screen and (max-width: 1024px) {
	.l-header-search-box input[type=submit],
	.l-header-search-box button {
		right: 18px;
		height: 22px;
	}
}
.l-header-search-box input[type=submit],
.l-header-search-box button {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-header-search-box input[type=submit]:hover,
	.l-header-search-box button:hover {
		opacity: 0.6;
	}
}
.l-header-search-box input[type=submit]:focus,
.l-header-search-box button:focus {
	opacity: 0.6;
}

/******************************************************************
layout - header-navbar
******************************************************************/
body:has(.l-header-fixed .l-header-navbar__inner > li > [aria-hidden=false]) {
	overflow: hidden;
}

.l-wrapper:has(.l-header-fixed .l-header-navbar__inner > li > [aria-hidden=false]) {
	overflow-y: auto;
	scrollbar-gutter: stable;
}

.l-header-fixed .l-header-fixed__inner:has(.l-header-navbar__inner > li > [aria-hidden=false]) > * {
	overflow-y: auto;
	scrollbar-gutter: stable;
}

.l-header-fixed .l-header-fixed__inner:has(.l-header-navbar__inner > li > [aria-hidden=false]) .l-header-navbar__box {
	overflow-y: auto;
	scrollbar-gutter: stable;
}

.l-header-navbar {
	flex-grow: 1;
	--top: var(--header-height);
	--height: var(--header-height);
}
.l-header-nav-fixed[data-header-nav-fixed=true] .l-header-navbar {
	--top: var(--header-nav-height);
	--height: var(--header-nav-height);
}

.l-header-fixed--content-transition .l-header-navbar {
	--height: calc(var(--header-height) + var(--header-content-top));
}

.l-header-navbar__inner {
	display: flex;
	border-left: 1px solid #dfdfdf;
}
.l-header-navbar__inner > li {
	flex-grow: 1;
	border-right: 1px solid #dfdfdf;
}
.l-header-navbar__inner > li > a,
.l-header-navbar__inner > li > button {
	width: 100%;
	display: block;
	padding: 0.4em 0;
	text-align: center;
	font-weight: 500;
}
.l-header-navbar__inner > li > a[aria-expanded],
.l-header-navbar__inner > li > button[aria-expanded] {
	position: relative;
}
.l-header-navbar__inner > li > a[aria-expanded]::after,
.l-header-navbar__inner > li > button[aria-expanded]::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 9px;
	height: 9px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.l-header-navbar__inner > li > a[aria-expanded]::after,
.l-header-navbar__inner > li > button[aria-expanded]::after {
	top: 0;
	bottom: 0;
	right: 16px;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-right: 2px solid #c2000f;
	transform: translateX(-1.8639610307px) translateY(-1.8639610307px) rotate(135deg);
}
.l-header-navbar__inner > li > a:not([aria-expanded]),
.l-header-navbar__inner > li > button:not([aria-expanded]) {
	position: relative;
}
.l-header-navbar__inner > li > a:not([aria-expanded])::after,
.l-header-navbar__inner > li > button:not([aria-expanded])::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 9px;
	height: 9px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.l-header-navbar__inner > li > a:not([aria-expanded])::after,
.l-header-navbar__inner > li > button:not([aria-expanded])::after {
	top: 0;
	bottom: 0;
	right: 16px;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-right: 2px solid #c2000f;
	transform: translateX(-1.8639610307px) rotate(45deg);
}
.l-header-navbar__inner > li > a,
.l-header-navbar__inner > li > button {
	position: relative;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.l-header-navbar__inner > li > a:hover,
	.l-header-navbar__inner > li > button:hover {
		text-decoration: none;
	}
}
.l-header-navbar__inner > li > a:focus,
.l-header-navbar__inner > li > button:focus {
	text-decoration: none;
}
.l-header-navbar__inner > li > a,
.l-header-navbar__inner > li > button {
	transition-property: background, color;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-header-navbar__inner > li > a:hover,
	.l-header-navbar__inner > li > button:hover {
		color: #c2000f;
	}
}
.l-header-navbar__inner > li > a:focus,
.l-header-navbar__inner > li > button:focus {
	color: #c2000f;
}
.l-header-navbar__inner > li > a[aria-expanded=true], .l-header-navbar__inner > li > a[aria-expanded=page],
.l-header-navbar__inner > li > button[aria-expanded=true],
.l-header-navbar__inner > li > button[aria-expanded=page] {
	background-color: #c2000f;
	color: #fff;
}
.l-header-navbar__inner > li > a[aria-expanded=true][aria-expanded], .l-header-navbar__inner > li > a[aria-expanded=page][aria-expanded],
.l-header-navbar__inner > li > button[aria-expanded=true][aria-expanded],
.l-header-navbar__inner > li > button[aria-expanded=page][aria-expanded] {
	position: relative;
}
.l-header-navbar__inner > li > a[aria-expanded=true][aria-expanded]::after, .l-header-navbar__inner > li > a[aria-expanded=page][aria-expanded]::after,
.l-header-navbar__inner > li > button[aria-expanded=true][aria-expanded]::after,
.l-header-navbar__inner > li > button[aria-expanded=page][aria-expanded]::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 9px;
	height: 9px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.l-header-navbar__inner > li > a[aria-expanded=true][aria-expanded]::after, .l-header-navbar__inner > li > a[aria-expanded=page][aria-expanded]::after,
.l-header-navbar__inner > li > button[aria-expanded=true][aria-expanded]::after,
.l-header-navbar__inner > li > button[aria-expanded=page][aria-expanded]::after {
	top: 0;
	bottom: 0;
	right: 16px;
	transform-origin: center center;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: translateX(-1.8639610307px) translateY(1.8639610307px) rotate(-45deg);
}
.l-header-navbar__close {
	margin-top: 30px;
	width: fit-content;
	margin-inline: auto;
	display: block;
	border-radius: 100vw;
	aspect-ratio: 1/1;
	line-height: 0;
	padding: 10px;
	background-color: #c2000f;
}
.l-header-navbar__close span {
	display: inline-block;
	width: 14px;
	height: 14px;
	position: relative;
}
.l-header-navbar__close span::before, .l-header-navbar__close span::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.3, 2, 0.6, 1);
}
.l-header-navbar__close span::before {
	background-color: #fff;
	width: 17.7989898732px;
	height: 2px;
	transform: translateX(-1.8994949366px) rotate(45deg);
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
.l-header-navbar__close span::after {
	background-color: #fff;
	width: 17.7989898732px;
	height: 2px;
	transform: translateX(-1.8994949366px) rotate(-45deg);
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
.l-header-navbar__close {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-header-navbar__close:hover {
		opacity: 0.7;
	}
}
.l-header-navbar__close:focus {
	opacity: 0.7;
}
.l-header-navbar__inner > li:hover .l-header-navbar__box {
	z-index: 111;
}
.l-header-navbar__box {
	display: none;
	position: absolute;
	top: var(--top);
	z-index: 110;
	left: 0;
	inset-inline: 0;
	box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
}
.l-header-fixed:not(.l-header-fixed--portrait) .l-header-navbar__box, .l-header-nav-fixed .l-header-navbar__box {
	max-height: calc(100dvh - var(--height));
	overscroll-behavior: contain;
}
.l-header-fixed:not(.l-header-fixed--portrait) .l-header-navbar__box:not(.is-animation), .l-header-nav-fixed .l-header-navbar__box:not(.is-animation) {
	scroll-behavior: smooth;
}

.l-header-navbar__box {
	background-color: #fff;
}
.l-header-navbar__box-inner {
	max-width: 1312px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.l-header-navbar__box-inner {
		padding-inline: 20px;
	}
}
.l-header-navbar__box-inner {
	padding-block: 30px;
}
.l-header-navbar__box > * {
	transition-property: opacity, transform;
	transition-duration: 0.6s;
	opacity: 0;
	transform: translateY(-15px);
}
.l-header-navbar__box[aria-hidden=false] > * {
	opacity: 1;
	transform: translateY(0);
}
.l-header-navbar__head {
	border-right: 1px solid #dfdfdf;
	padding-right: 20px;
}
.l-header-navbar__title a {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.l-header-navbar__title a:hover {
		text-decoration: none;
	}
}
.l-header-navbar__title a:focus {
	text-decoration: none;
}
.l-header-navbar__title a {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-header-navbar__title a:hover {
		opacity: 0.6;
	}
}
.l-header-navbar__title a:focus {
	opacity: 0.6;
}
.l-header-navbar__body > *:not(:last-child) {
	margin-bottom: 30px;
}

.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-navbar::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	position: fixed;
	z-index: 109;
	inset-inline: 0;
	top: var(--top);
	transition: opacity 0.4s, height 0s 0.4s;
	opacity: 0;
	height: 0;
}

/******************************************************************
layout - header-navbar-button
******************************************************************/
.l-header-navbar-button + .l-header-navbar-button {
	margin-top: 20px;
}

.l-header-navbar-button {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
@media screen and (max-width: 1372px) {
	.l-header-navbar-button {
		gap: 1.4577259475vw;
	}
}
.l-header-navbar-button > * {
	box-sizing: border-box;
	width: calc(25% - 15px);
}
@media screen and (max-width: 1372px) {
	.l-header-navbar-button > * {
		width: calc(25% - 1.4577259475vw * 3 / 4);
	}
}
.l-header-navbar-button li {
	display: flex;
}
.l-header-navbar-button li a {
	flex-grow: 1;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	min-height: 3em;
	padding: 0.75em 1.8em 0.75em 1.2em;
	position: relative;
}
.l-header-navbar-button li a::after {
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	border-color: #c2000f;
	border-style: solid;
	border-top: 3px solid transparent !important;
	border-right-width: 0;
	border-bottom: 3px solid transparent !important;
	border-left-width: 6px;
	top: 0;
	bottom: 0;
	right: 0.8em;
}
.l-header-navbar-button li a {
	background-color: #f4f4f4;
	font-size: 15px;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.l-header-navbar-button li a:hover {
		text-decoration: none;
	}
}
.l-header-navbar-button li a:focus {
	text-decoration: none;
}
.l-header-navbar-button li a {
	transition-property: background;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-header-navbar-button li a:hover {
		background-color: rgb(218.5, 218.5, 218.5);
	}
}
.l-header-navbar-button li a:focus {
	background-color: rgb(218.5, 218.5, 218.5);
}

/******************************************************************
layout - header-dropdown
******************************************************************/
body:has(.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-dropdown > [aria-hidden=false]) {
	overflow: hidden;
}

@media print, screen and (min-width: 1025px) {
	body:has(.l-header-fixed--portrait-over .l-header-dropdown > [aria-hidden=false]) {
		overflow: hidden;
	}
}
@media screen and (max-width: 1024px) {
	body:has(.l-header-fixed--portrait .l-header-dropdown > [aria-hidden=false]) {
		overflow: hidden;
	}
}
.l-header-dropdown {
	display: flex;
}
.l-header-dropdown__close {
	width: fit-content;
	margin-inline: auto;
	display: block;
	border-radius: 100vw;
	aspect-ratio: 1/1;
	line-height: 0;
	padding: 10px;
	background-color: #c2000f;
}
.l-header-dropdown__close span {
	display: inline-block;
	width: 14px;
	height: 14px;
	position: relative;
}
.l-header-dropdown__close span::before, .l-header-dropdown__close span::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.3, 2, 0.6, 1);
}
.l-header-dropdown__close span::before {
	background-color: #fff;
	width: 17.7989898732px;
	height: 2px;
	transform: translateX(-1.8994949366px) rotate(45deg);
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
.l-header-dropdown__close span::after {
	background-color: #fff;
	width: 17.7989898732px;
	height: 2px;
	transform: translateX(-1.8994949366px) rotate(-45deg);
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
}
.l-header-dropdown__body {
	display: none;
	position: absolute;
	inset-inline: 0;
	top: var(--header-height);
	z-index: 110;
	max-height: calc(100dvh - var(--header-height));
	overflow-y: auto;
	scroll-behavior: smooth;
	overscroll-behavior: contain;
	box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1);
	background-color: #fff;
}
.l-header-dropdown__body-inner {
	max-width: 500px;
	margin-inline: auto;
	padding: 30px;
}
@media screen and (max-width: 767px) {
	.l-header-dropdown__body-inner {
		padding: 20px;
	}
}
.l-header-dropdown__body-inner > *:not(:last-child) {
	margin-bottom: 2rem;
}
.l-header-dropdown__body-inner nav > *:not(:last-child) {
	margin-bottom: 2rem;
}
.l-header-dropdown__body > * {
	transition-property: opacity, transform;
	transition-duration: 0.6s;
	opacity: 0;
	transform: translateY(-15px);
}
.l-header-dropdown__body[aria-hidden=false] > * {
	opacity: 1;
	transform: translateY(0);
}
.l-header-dropdown__jpx-logo {
	text-align: center;
}
.l-header-dropdown__jpx-logo img {
	width: 50px;
}

.l-header-fixed:not(.l-header-fixed--portrait-over):not(.l-header-fixed--portrait) .l-header-dropdown::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	position: fixed;
	z-index: 109;
	inset-inline: 0;
	top: var(--header-height);
	transition: opacity 0.4s, height 0s 0.4s;
	opacity: 0;
	height: 0;
}

@media screen and (max-width: 1024px) {
	.l-header-fixed--portrait .l-header-dropdown::after {
		position: absolute;
		content: "";
		margin: auto;
		box-sizing: border-box;
		vertical-align: middle;
		position: fixed;
		z-index: 109;
		inset-inline: 0;
		background-color: rgba(0, 0, 0, 0.7);
		top: var(--header-height);
		transition: opacity 0.4s, height 0s 0.4s;
		opacity: 0;
		height: 0;
	}
	.l-header-fixed--portrait .l-header-dropdown:has(> [aria-hidden=false])::after {
		transition: opacity 0.4s, height 0s 0s;
		-webkit-backdrop-filter: blur(3px);
		backdrop-filter: blur(3px);
		opacity: 1;
		height: 100vh;
		height: 100dvh;
	}
}
/******************************************************************
layout - header-dropdown-nav
******************************************************************/
.l-header-dropdown-nav {
	border-bottom: 1px solid #dfdfdf;
}
.l-header-dropdown-nav > li > a:not([role=button]), .l-header-dropdown-nav > li > button,
.l-header-dropdown-nav > li > a[role=button] {
	box-sizing: border-box;
	display: block;
	width: 100%;
	border-top: 1px solid #dfdfdf;
	padding: 1em 30px 1em 4px;
	text-align: left;
	font-weight: bold;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.l-header-dropdown-nav > li > a:hover:not([role=button]), .l-header-dropdown-nav > li > button:hover,
	.l-header-dropdown-nav > li > a[role=button]:hover {
		text-decoration: none;
	}
}
.l-header-dropdown-nav > li > a:focus:not([role=button]), .l-header-dropdown-nav > li > button:focus,
.l-header-dropdown-nav > li > a[role=button]:focus {
	text-decoration: none;
}
.l-header-dropdown-nav > li > a:not([role=button]), .l-header-dropdown-nav > li > button,
.l-header-dropdown-nav > li > a[role=button] {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-header-dropdown-nav > li > a:hover:not([role=button]), .l-header-dropdown-nav > li > button:hover,
	.l-header-dropdown-nav > li > a[role=button]:hover {
		opacity: 0.6;
	}
}
.l-header-dropdown-nav > li > a:focus:not([role=button]), .l-header-dropdown-nav > li > button:focus,
.l-header-dropdown-nav > li > a[role=button]:focus {
	opacity: 0.6;
}
.l-header-dropdown-nav > li > button,
.l-header-dropdown-nav > li > a[role=button] {
	position: relative;
}
.l-header-dropdown-nav > li > button::before, .l-header-dropdown-nav > li > button::after,
.l-header-dropdown-nav > li > a[role=button]::before,
.l-header-dropdown-nav > li > a[role=button]::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.3, 2, 0.6, 1);
}
.l-header-dropdown-nav > li > button::before,
.l-header-dropdown-nav > li > a[role=button]::before {
	background-color: #c2000f;
	width: 14px;
	height: 2px;
	top: 0;
	bottom: 0;
	right: 2px;
}
.l-header-dropdown-nav > li > button::after,
.l-header-dropdown-nav > li > a[role=button]::after {
	background-color: #c2000f;
	width: 2px;
	height: 14px;
	top: 0;
	bottom: 0;
	right: 8px;
}
.l-header-dropdown-nav > li > button[aria-expanded=true]:after,
.l-header-dropdown-nav > li > a[role=button][aria-expanded=true]:after {
	height: 0;
}
.l-header-dropdown-nav > li > a:not([role=button]) {
	position: relative;
}
.l-header-dropdown-nav > li > a:not([role=button])::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.l-header-dropdown-nav > li > a:not([role=button])::after {
	top: 0;
	bottom: 0;
	right: 4px;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-right: 2px solid #c2000f;
	transform: translateX(-2.0710678119px) rotate(45deg);
}
.l-header-dropdown-nav > li > ul {
	display: none;
}
.l-header-dropdown-nav > li > ul li:last-child {
	padding-bottom: 0.75em;
}
.l-header-dropdown-nav > li > ul li a {
	box-sizing: border-box;
	display: block;
	width: 100%;
	padding: 0.5em 30px 0.5em 1em;
	position: relative;
}
.l-header-dropdown-nav > li > ul li a::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 7px;
	height: 7px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.l-header-dropdown-nav > li > ul li a::after {
	top: 0;
	bottom: 0;
	right: 6px;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-right: 2px solid #c2000f;
	transform: translateX(-1.4497474683px) rotate(45deg);
}
.l-header-dropdown-nav > li > ul li a {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.l-header-dropdown-nav > li > ul li a:hover {
		text-decoration: none;
	}
}
.l-header-dropdown-nav > li > ul li a:focus {
	text-decoration: none;
}
.l-header-dropdown-nav > li > ul li a {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-header-dropdown-nav > li > ul li a:hover {
		opacity: 0.6;
	}
}
.l-header-dropdown-nav > li > ul li a:focus {
	opacity: 0.6;
}

/******************************************************************
layout - header-icon-hamburger
******************************************************************/
.l-header-icon-hamburger {
	min-width: 60px;
}
.l-header-icon-hamburger > span {
	margin-inline: auto;
	display: block;
	position: relative;
	width: 22px;
	height: 18px;
}
.l-header-icon-hamburger > span span {
	position: absolute;
	display: block;
	margin: auto;
	width: 100%;
	height: 2px;
	background-color: #c2000f;
}
.l-header-icon-hamburger > span span:first-child {
	top: 0;
}
.l-header-icon-hamburger > span span:nth-child(2) {
	top: 0;
	bottom: 0;
}
.l-header-icon-hamburger > span span:last-child {
	bottom: 0;
}
.l-header-icon-hamburger > span span:first-child {
	transition: top 0.24s 0.16s, transform 0.16s;
}
.l-header-icon-hamburger > span span:nth-child(2) {
	transition: opacity 0.24s 0.16s;
}
.l-header-icon-hamburger > span span:last-child {
	transition: bottom 0.24s 0.16s, transform 0.16s;
}
.l-header-icon-hamburger[aria-expanded=true] > span span:first-child {
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: top 0.16s, transform 0.24s 0.16s;
}
.l-header-icon-hamburger[aria-expanded=true] > span span:nth-child(2) {
	opacity: 0;
	transition: opacity 0.16s;
}
.l-header-icon-hamburger[aria-expanded=true] > span span:last-child {
	bottom: 50%;
	transform: translateY(50%) rotate(45deg);
	transition: bottom 0.16s, transform 0.24s 0.16s;
}

/******************************************************************
layout - top-visual
******************************************************************/
.l-top-visual {
	position: relative;
	background-color: #fff;
}
@media screen and (max-width: 1024px) {
	.l-top-visual {
		display: flex;
		flex-direction: column-reverse;
		align-items: center;
	}
}
.l-top-visual__body {
	box-sizing: border-box;
}
@media print, screen and (min-width: 1025px) {
	.l-top-visual__body {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		width: 548px;
	}
}
@media screen and (max-width: 1024px) {
	.l-top-visual__body {
		position: relative;
		z-index: 1;
		margin-top: -5%;
		width: 80%;
	}
}
@media screen and (max-width: 767px) {
	.l-top-visual__body {
		margin-top: -10%;
		width: 90%;
	}
}
.l-top-visual__body {
	padding: 50px;
}
@media screen and (max-width: 1372px) {
	.l-top-visual__body {
		padding: 3.6443148688vw;
	}
}
.l-top-visual__body {
	background-color: #c2000f;
	color: #fff;
}
.l-top-visual__title {
	font-weight: bold;
	font-size: 19px;
}
@media screen and (max-width: 767px) {
	.l-top-visual__title {
		font-size: 16px;
	}
}
.l-top-visual__title img {
	display: block;
	width: 440px;
	margin-bottom: 12px;
}
.l-top-visual__copy {
	border-top: 1px solid #fff;
	margin-top: 0.8em;
	padding-top: 0.8em;
	line-height: 2;
	font-size: 15px;
}
@media screen and (max-width: 767px) {
	.l-top-visual__copy {
		font-size: 13px;
	}
}
.l-top-visual__img {
	margin-left: auto;
	width: 90%;
}
@media screen and (max-width: 1024px) {
	.l-top-visual__img {
		width: 100%;
	}
}
.l-top-visual__img img {
	width: 100%;
}

/******************************************************************
layout - visual
******************************************************************/
.l-visual {
	overflow: hidden;
	position: relative;
	z-index: 1;
	background-color: #fff;
}
.l-visual::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	left: 2vw;
	width: 98vw;
	height: 2em;
	content: var(--text);
	font-size: 5.8vw;
	color: #f7f7f7;
	font-weight: 300;
	z-index: -1;
	line-height: 1;
}
.l-visual__body {
	max-width: 1312px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.l-visual__body {
		padding-inline: 20px;
	}
}
.l-visual__body {
	padding-block: 50px;
}
@media screen and (max-width: 767px) {
	.l-visual__body {
		padding-block: 25px;
	}
}
@media print, screen and (min-width: 768px) {
	.l-visual__body:has(.c-badge--column) {
		padding-top: 10px;
	}
}
.l-visual__body > *:not(:last-child) {
	margin-bottom: 0.75rem;
}
.l-visual__date {
	font-weight: 500;
	font-size: 15px;
}
@media screen and (max-width: 767px) {
	.l-visual__date {
		font-size: 14px;
	}
}
.l-visual__times {
	font-size: 22px;
}
@media screen and (max-width: 767px) {
	.l-visual__times {
		font-size: 20px;
	}
}
@media screen and (max-width: 767px) {
	.l-visual__summary {
		font-size: 12px;
	}
}
.l-visual .c-badge--column {
	margin-top: -20px;
}

/******************************************************************
layout - breadcrumb
******************************************************************/
.l-breadcrumb {
	background-color: #fff;
}
.l-breadcrumb ol {
	max-width: 1312px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.l-breadcrumb ol {
		padding-inline: 20px;
	}
}
.l-breadcrumb ol {
	padding-block: 0.5rem;
}
@media screen and (max-width: 767px) {
	.l-breadcrumb ol {
		padding-block: 0.375rem;
	}
}
.l-breadcrumb ol {
	display: flex;
	gap: 0.25em 0.75em;
	flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
	.l-breadcrumb ol {
		overflow-x: scroll;
		flex-wrap: nowrap;
	}
	.l-breadcrumb ol li {
		white-space: nowrap;
	}
}
.l-breadcrumb ol li {
	position: relative;
}
.l-breadcrumb ol li:not(:last-child) {
	padding-right: calc(0.75em + 6px);
	position: relative;
}
.l-breadcrumb ol li:not(:last-child)::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 6px;
	height: 6px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.l-breadcrumb ol li:not(:last-child)::after {
	top: 0;
	bottom: 0;
	right: 0;
	transform-origin: center center;
	border-top: 1px solid #000000;
	border-right: 1px solid #000000;
	transform: translateX(-1.2426406871px) rotate(45deg);
}
.l-breadcrumb ol li {
	font-size: 0.85rem;
}
@media screen and (max-width: 767px) {
	.l-breadcrumb ol li {
		font-size: 0.8rem;
	}
}
.l-breadcrumb ol li a {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.l-breadcrumb ol li a:hover {
		text-decoration: none;
	}
}
.l-breadcrumb ol li a:focus {
	text-decoration: none;
}
.l-breadcrumb ol li a {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-breadcrumb ol li a:hover {
		opacity: 0.6;
	}
}
.l-breadcrumb ol li a:focus {
	opacity: 0.6;
}

/******************************************************************
layout - main
******************************************************************/
.l-main {
	background-color: #e8e8e8;
}

/******************************************************************
layout - pagetop
******************************************************************/
.l-pagetop {
	position: relative;
}
@media print {
	.l-pagetop {
		display: none !important;
	}
}
.l-pagetop:not([data-pagetop]) .l-pagetop__btn {
	transform: translatey(0);
	position: fixed !important;
}
.l-pagetop[data-pagetop=top] .l-pagetop__btn {
	transform: translatey(120px);
	position: fixed;
}
.l-pagetop[data-pagetop=scroll] .l-pagetop__btn, .l-pagetop[data-pagetop=top] .l-pagetop__btn:focus {
	transform: translatey(0);
	position: fixed;
}
.l-pagetop[data-pagetop=bottom] .l-pagetop__btn {
	position: absolute;
}
.l-pagetop__btn {
	z-index: 90;
	transition-property: transform, background;
	transition-duration: 0.4s;
	transition-timing-function: cubic-bezier(0.3, 1.6, 0.8, 1);
	display: block;
	overflow: hidden;
	bottom: 30px;
	right: 30px;
}
@media screen and (max-width: 767px) {
	.l-pagetop__btn {
		bottom: 10px;
		right: 10px;
	}
}
.l-pagetop {
	height: 40px;
}
@media screen and (max-width: 767px) {
	.l-pagetop {
		height: 35px;
	}
}
.l-pagetop__btn {
	position: relative;
}
.l-pagetop__btn::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.l-pagetop__btn::after {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform-origin: center center;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	transform: translateY(2.4852813742px) rotate(45deg);
}
.l-pagetop__btn {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: #c2000f;
}
@media screen and (max-width: 767px) {
	.l-pagetop__btn {
		position: relative;
	}
	.l-pagetop__btn::after {
		position: absolute;
		content: "";
		margin: auto;
		box-sizing: border-box;
		vertical-align: middle;
		width: 9px;
		height: 9px;
		transition-property: top, right, bottom, left, opacity;
		transition-duration: 0.2s;
	}
	.l-pagetop__btn::after {
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		transform-origin: center center;
		border-top: 2px solid #fff;
		border-left: 2px solid #fff;
		transform: translateY(1.8639610307px) rotate(45deg);
	}
	.l-pagetop__btn {
		width: 35px;
		height: 35px;
	}
}
@media (any-hover: hover) {
	.l-pagetop__btn:hover {
		opacity: 0.6;
	}
}
.l-pagetop__btn:focus {
	opacity: 0.6;
}

/******************************************************************
layout - footer
******************************************************************/
.l-footer {
	position: relative;
}
.l-footer::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #e2e2e2;
}
.l-footer::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	left: 0;
	width: 35vw;
	height: 5px;
	background-color: #ba2e00;
}
.l-footer__content {
	background-color: #fff;
}
.l-footer__content__inner {
	max-width: 1312px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.l-footer__content__inner {
		padding-inline: 20px;
	}
}
.l-footer__content__inner {
	padding-block: 3rem;
}
@media screen and (max-width: 1024px) {
	.l-footer__content__inner {
		padding-block: 2rem;
	}
}

/******************************************************************
layout - footer-content-type2
******************************************************************/
.l-footer-content-type2 {
	display: grid;
	grid-template-columns: 50% auto;
	grid-template-areas: "logo sns" "copy menu";
	gap: 45px 30px;
}
@media screen and (max-width: 1024px) {
	.l-footer-content-type2 {
		grid-template-columns: 100%;
		grid-template-areas: "logo" "menu" "sns" "copy";
		gap: 30px;
	}
}
.l-footer-content-type2__logo {
	grid-area: logo;
}
@media screen and (max-width: 1024px) {
	.l-footer-content-type2__logo {
		text-align: center;
	}
}
.l-footer-content-type2__logo img {
	width: 210px;
}
@media screen and (max-width: 767px) {
	.l-footer-content-type2__logo img {
		width: 180px;
	}
}
.l-footer-content-type2__menu {
	grid-area: menu;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}
@media screen and (max-width: 1024px) {
	.l-footer-content-type2__menu {
		align-items: center;
	}
}
.l-footer-content-type2__sns {
	grid-area: sns;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: center;
}
@media screen and (max-width: 1024px) {
	.l-footer-content-type2__sns {
		align-items: center;
	}
}
.l-footer-content-type2__copy {
	grid-area: copy;
}
@media screen and (max-width: 1024px) {
	.l-footer-content-type2__copy {
		text-align: center;
	}
}

/******************************************************************
layout - footer-menu
******************************************************************/
.l-footer-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4em 0;
}
@media screen and (max-width: 1024px) {
	.l-footer-menu {
		justify-content: center;
	}
}
.l-footer-menu {
	font-size: 12px;
}
.l-footer-menu li {
	position: relative;
	margin-left: -1px;
	padding-left: 1em;
	padding-right: 1em;
	border-left: 1px solid #dfdfdf;
	border-right: 1px solid #dfdfdf;
}
.l-footer-menu a {
	display: block;
	margin-block: calc((1em - 1lh) / 2);
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.l-footer-menu a:hover {
		text-decoration: none;
	}
}
.l-footer-menu a:focus {
	text-decoration: none;
}
.l-footer-menu a {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.l-footer-menu a:hover {
		opacity: 0.6;
	}
}
.l-footer-menu a:focus {
	opacity: 0.6;
}

/******************************************************************
layout - footer-sns-list
******************************************************************/
.l-footer-sns-list {
	display: flex;
	flex-wrap: wrap;
	gap: 38px;
}
@media screen and (max-width: 1024px) {
	.l-footer-sns-list {
		justify-content: center;
	}
}
.l-footer-sns-list img {
	width: auto;
	height: 26px;
}

/******************************************************************
layout - footer-copy
******************************************************************/
.l-footer-copy {
	font-size: 12px;
}
@media screen and (max-width: 1024px) {
	.l-footer-copy {
		font-size: 11px;
	}
}
.l-footer-copy small {
	font-size: inherit;
}
.l-footer-copy span {
	display: inline-block;
}

/******************************************************************
component - section
******************************************************************/
.c-section {
	position: relative;
}
.c-section__vertical {
	max-width: 1312px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__vertical {
		padding-inline: 20px;
	}
}
.c-section__vertical {
	margin-block: 3rem;
}
@media screen and (max-width: 767px) {
	.c-section__vertical {
		margin-block: 2rem;
	}
}
.c-section__vertical--slim {
	max-width: 1000px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.c-section__vertical--slim {
		padding-inline: 20px;
	}
}
.c-section__vertical--full {
	max-width: none;
	padding-inline: 0;
}
.c-section__frame-bg {
	background-color: #fff;
	padding: 56px;
}
@media screen and (max-width: 1372px) {
	.c-section__frame-bg {
		padding: 4.0816326531vw;
	}
}
@media screen and (max-width: 767px) {
	.c-section__frame-bg {
		padding: 20px;
	}
}
.c-section--bg {
	padding-top: 0.1px;
	padding-bottom: 0.1px;
	background: url(/reit-if/assets/img/bg-body.png) left top/60vw auto no-repeat;
}
.c-section--top-column, .c-section--top-learning, .c-section--top-videos, .c-section--top-ranking {
	padding-top: 0.1px;
	padding-bottom: 0.1px;
}
.c-section--top-column .c-section__vertical, .c-section--top-learning .c-section__vertical, .c-section--top-videos .c-section__vertical, .c-section--top-ranking .c-section__vertical {
	margin-block: 70px;
}
@media screen and (max-width: 767px) {
	.c-section--top-column .c-section__vertical, .c-section--top-learning .c-section__vertical, .c-section--top-videos .c-section__vertical, .c-section--top-ranking .c-section__vertical {
		margin-block: 40px;
	}
}
.c-section--top-column, .c-section--top-learning, .c-section--top-videos, .c-section--top-ranking {
	z-index: 1;
}
.c-section--top-column::before, .c-section--top-learning::before, .c-section--top-videos::before, .c-section--top-ranking::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 20px;
	left: 20px;
	z-index: -1;
	font-weight: 300;
	line-height: 1;
	color: #f7f7f7;
	content: var(--text);
	font-size: 90px;
}
@media print, screen and (max-width: 1500px) {
	.c-section--top-column::before, .c-section--top-learning::before, .c-section--top-videos::before, .c-section--top-ranking::before {
		font-size: 6vw;
	}
}
@media screen and (max-width: 767px) {
	.c-section--top-column::before, .c-section--top-learning::before, .c-section--top-videos::before, .c-section--top-ranking::before {
		font-size: 5.5vw;
	}
}
.c-section--top-column::before {
	color: #fff;
}
.c-section--top-learning {
	background: #fff url(/reit-if/assets/img/top-learning-bg.png) right bottom 5%/60% auto no-repeat;
}
@media screen and (max-width: 767px) {
	.c-section--top-learning {
		background-size: 80% atuo;
	}
}
.c-section--top-videos {
	background: url(/reit-if/assets/img/top-videos-bg.jpg) center center/cover no-repeat;
}
.c-section--top-ranking {
	background-color: #fff;
}

/******************************************************************
component - c-flexbox
******************************************************************/
.c-flexbox {
	display: flex;
	flex-wrap: wrap;
}
.c-flexbox > [class*=c-flexbox__item], .c-flexbox > .c-flexbox__item5col {
	position: relative;
	box-sizing: border-box;
}
.c-flexbox > [class*=c-flexbox__item]:has(> .c-button:first-child):has(> .c-button:last-child), .c-flexbox > .c-flexbox__item5col:has(> .c-button:first-child):has(> .c-button:last-child) {
	display: flex;
}
.c-flexbox > [class*=c-flexbox__item]:has(> .c-button-visual:first-child):has(> .c-button-visual:last-child), .c-flexbox > .c-flexbox__item5col:has(> .c-button-visual:first-child):has(> .c-button-visual:last-child) {
	display: flex;
}
.c-flexbox--center {
	justify-content: center;
}
.c-flexbox--right {
	justify-content: flex-end;
}
.c-flexbox--bottom {
	align-items: flex-end;
}
.c-flexbox--vertical > [class*=c-flexbox__item], .c-flexbox--vertical > .c-flexbox__item5col {
	display: flex;
	align-items: center;
}
.c-flexbox {
	--flexbox-gap-y: 1rem;
	--flexbox-gap-x: 1rem;
	margin-right: calc(var(--flexbox-gap-x) * -1);
}
.c-flexbox--center {
	margin-right: calc(var(--flexbox-gap-x) * -0.5);
	margin-left: calc(var(--flexbox-gap-x) * -0.5);
}
.c-flexbox--right {
	margin-right: initial;
	margin-left: calc(var(--flexbox-gap-x) * -1);
}
.c-flexbox {
	gap: var(--flexbox-gap-y) var(--flexbox-gap-x);
}
.c-flexbox > .c-flexbox__item1 {
	width: calc(8.3333333333% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item2 {
	width: calc(16.6666666667% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item3 {
	width: calc(25% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item4 {
	width: calc(33.3333333333% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item5 {
	width: calc(41.6666666667% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item6 {
	width: calc(50% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item7 {
	width: calc(58.3333333333% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item8 {
	width: calc(66.6666666667% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item9 {
	width: calc(75% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item10 {
	width: calc(83.3333333333% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item11 {
	width: calc(91.6666666667% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item12 {
	width: calc(100% - var(--flexbox-gap-x));
}
.c-flexbox > .c-flexbox__item5col {
	width: calc(20% - var(--flexbox-gap-x));
}
@media screen and (max-width: 1372px) {
	.c-flexbox.pc-vw {
		--flexbox-gap-y: 1.166180758vw;
		--flexbox-gap-x: 1.166180758vw;
	}
}
.c-flexbox--s {
	--flexbox-gap-y: 0.75rem;
	--flexbox-gap-x: 0.75rem;
}

.c-flexbox--2l {
	--flexbox-gap-y: 1.5rem;
	--flexbox-gap-x: 1.5rem;
}

@media screen and (max-width: 1372px) {
	.c-flexbox--2l.pc-vw {
		--flexbox-gap-y: 1.749271137vw;
		--flexbox-gap-x: 1.749271137vw;
	}
}
.c-flexbox--2x {
	--flexbox-gap-y: 2rem;
	--flexbox-gap-x: 2rem;
}

@media screen and (max-width: 1372px) {
	.c-flexbox--2x.pc-vw {
		--flexbox-gap-y: 2.332361516vw;
		--flexbox-gap-x: 2.332361516vw;
	}
}
.c-flexbox--60px {
	--flexbox-gap-y: 60px;
	--flexbox-gap-x: 60px;
}

@media screen and (max-width: 1372px) {
	.c-flexbox--60px.pc-vw {
		--flexbox-gap-y: 4.3731778426vw;
		--flexbox-gap-x: 4.3731778426vw;
	}
}
.c-flexbox--40px {
	--flexbox-gap-y: 40px;
	--flexbox-gap-x: 40px;
}

@media screen and (max-width: 1372px) {
	.c-flexbox--40px.pc-vw {
		--flexbox-gap-y: 2.915451895vw;
		--flexbox-gap-x: 2.915451895vw;
	}
}
@media screen and (max-width: 1024px) {
	.c-flexbox.portrait-destroy {
		display: initial;
		flex-wrap: initial;
		margin-right: initial;
		margin-left: initial;
		gap: initial;
	}
	.c-flexbox.portrait-destroy > * {
		position: initial;
		box-sizing: initial;
		width: initial;
	}
	.c-flexbox > .portrait-item1 {
		width: calc(8.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item2 {
		width: calc(16.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item3 {
		width: calc(25% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item4 {
		width: calc(33.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item5 {
		width: calc(41.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item6 {
		width: calc(50% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item7 {
		width: calc(58.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item8 {
		width: calc(66.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item9 {
		width: calc(75% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item10 {
		width: calc(83.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item11 {
		width: calc(91.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item12 {
		width: calc(100% - var(--flexbox-gap-x));
	}
	.c-flexbox > .portrait-item5col {
		width: calc(20% - var(--flexbox-gap-x));
	}
	.c-flexbox--s {
		--flexbox-gap-y: 0.75rem;
		--flexbox-gap-x: 0.75rem;
	}
	.c-flexbox.portrait-s {
		--flexbox-gap-y: 0.75rem;
		--flexbox-gap-x: 0.75rem;
	}
	.c-flexbox--2l {
		--flexbox-gap-y: 1.5rem;
		--flexbox-gap-x: 1.5rem;
	}
	.c-flexbox.portrait-2l {
		--flexbox-gap-y: 1.5rem;
		--flexbox-gap-x: 1.5rem;
	}
	.c-flexbox--2x {
		--flexbox-gap-y: 2rem;
		--flexbox-gap-x: 2rem;
	}
	.c-flexbox.portrait-2x {
		--flexbox-gap-y: 2rem;
		--flexbox-gap-x: 2rem;
	}
	.c-flexbox--60px {
		--flexbox-gap-y: 60px;
		--flexbox-gap-x: 60px;
	}
	.c-flexbox.portrait-60px {
		--flexbox-gap-y: 60px;
		--flexbox-gap-x: 60px;
	}
	.c-flexbox--40px {
		--flexbox-gap-y: 40px;
		--flexbox-gap-x: 40px;
	}
	.c-flexbox.portrait-40px {
		--flexbox-gap-y: 40px;
		--flexbox-gap-x: 40px;
	}
}
@media screen and (max-width: 767px) {
	.c-flexbox.sp-destroy {
		display: initial;
		flex-wrap: initial;
		margin-right: initial;
		margin-left: initial;
		gap: initial;
	}
	.c-flexbox.sp-destroy > * {
		position: initial;
		box-sizing: initial;
		width: initial;
	}
	.c-flexbox {
		--flexbox-gap-y: 0.75rem;
		--flexbox-gap-x: 0.75rem;
	}
	.c-flexbox > .sp-item1 {
		width: calc(8.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item2 {
		width: calc(16.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item3 {
		width: calc(25% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item4 {
		width: calc(33.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item5 {
		width: calc(41.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item6 {
		width: calc(50% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item7 {
		width: calc(58.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item8 {
		width: calc(66.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item9 {
		width: calc(75% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item10 {
		width: calc(83.3333333333% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item11 {
		width: calc(91.6666666667% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item12 {
		width: calc(100% - var(--flexbox-gap-x));
	}
	.c-flexbox > .sp-item5col {
		width: calc(20% - var(--flexbox-gap-x));
	}
	.c-flexbox--s {
		--flexbox-gap-y: 0.5625rem;
		--flexbox-gap-x: 0.5625rem;
	}
	.c-flexbox.sp-s {
		--flexbox-gap-y: 0.5625rem;
		--flexbox-gap-x: 0.5625rem;
	}
	.c-flexbox--2l {
		--flexbox-gap-y: 1.125rem;
		--flexbox-gap-x: 1.125rem;
	}
	.c-flexbox.sp-2l {
		--flexbox-gap-y: 1.125rem;
		--flexbox-gap-x: 1.125rem;
	}
	.c-flexbox--2x {
		--flexbox-gap-y: 1.5rem;
		--flexbox-gap-x: 1.5rem;
	}
	.c-flexbox.sp-2x {
		--flexbox-gap-y: 1.5rem;
		--flexbox-gap-x: 1.5rem;
	}
	.c-flexbox--60px {
		--flexbox-gap-y: 60px;
		--flexbox-gap-x: 60px;
	}
	.c-flexbox.sp-60px {
		--flexbox-gap-y: 60px;
		--flexbox-gap-x: 60px;
	}
	.c-flexbox--40px {
		--flexbox-gap-y: 40px;
		--flexbox-gap-x: 40px;
	}
	.c-flexbox.sp-40px {
		--flexbox-gap-y: 40px;
		--flexbox-gap-x: 40px;
	}
}
.c-flexbox__ranking {
	background-color: #fff;
	box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.1);
	padding: 10px;
}

/******************************************************************
component - card
******************************************************************/
[class*=c-flexbox__item]:has(> .c-card),
.c-flexbox__item5col:has(> .c-card) {
	display: flex;
}

.c-card {
	flex-grow: 1;
	display: flex;
	flex-direction: column-reverse;
}
.c-card > a {
	flex-grow: 1;
	display: flex;
	flex-direction: column-reverse;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.c-card > a:hover {
		text-decoration: none;
	}
}
.c-card > a:focus {
	text-decoration: none;
}
.c-card__body {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}
.c-card__title {
	margin-top: calc((1em - 1lh) / 2);
}
.c-card__head img {
	width: 100%;
}
.c-card__head:has(.c-card__head-badge) {
	position: relative;
}
.c-card--column:not(:has(> a)) {
	flex-direction: row-reverse;
}
.c-card--column > a {
	flex-direction: row-reverse;
}
.c-card--column .c-card__head {
	flex-shrink: 0;
	width: 30%;
}
@media print, screen and (min-width: 768px) {
	.c-card--spover-column:not(:has(> a)) {
		flex-direction: row-reverse;
	}
	.c-card--spover-column > a {
		flex-direction: row-reverse;
	}
	.c-card--spover-column .c-card__head {
		flex-shrink: 0;
		width: 30%;
	}
}
@media screen and (max-width: 767px) {
	.c-card--sp-column:not(:has(> a)) {
		flex-direction: row-reverse;
	}
	.c-card--sp-column > a {
		flex-direction: row-reverse;
	}
	.c-card--sp-column .c-card__head {
		flex-shrink: 0;
		width: 30%;
	}
}

/******************************************************************
component - card--fit-column
******************************************************************/
.c-card--fit-column .c-card__body {
	padding: 30px;
}
@media screen and (max-width: 1372px) {
	.c-card--fit-column .c-card__body {
		padding: 2.1865889213vw;
	}
}
@media screen and (max-width: 767px) {
	.c-card--fit-column .c-card__body {
		padding: 1rem;
	}
}
.c-card--fit-column .c-card__body > *:not(:last-child) {
	margin-bottom: 1rem;
}
.c-card--fit-column .c-card__badge {
	order: 1;
}
.c-card--fit-column .c-card__copy {
	order: 3;
	flex-grow: 1;
	font-size: 1rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	.c-card--fit-column .c-card__copy {
		font-size: 0.9rem;
	}
}
.c-card--fit-column .c-card__button {
	order: 4;
}
.c-card--fit-column:not(:has(> a)) {
	background-color: #fff;
}
.c-card--fit-column > a {
	background-color: #fff;
}
@media print, screen and (min-width: 768px) {
	.c-card--fit-column:not(:has(> a)) {
		flex-direction: row-reverse;
	}
	.c-card--fit-column > a {
		flex-direction: row-reverse;
	}
	.c-card--fit-column .c-card__head {
		flex-shrink: 0;
		width: 40%;
	}
	.c-card--fit-column .c-card__head > * {
		height: 100%;
	}
	.c-card--fit-column .c-card__head img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

/******************************************************************
component - card--border-column
******************************************************************/
.c-card--border-column:not(:has(> a)) {
	flex-direction: row-reverse;
}
.c-card--border-column > a {
	flex-direction: row-reverse;
	transition-property: color;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.c-card--border-column > a:hover {
		color: #c2000f;
	}
}
.c-card--border-column > a:focus {
	color: #c2000f;
}
.c-card--border-column > a::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	right: 9px;
	bottom: 6px;
	width: 25px;
	height: 26px;
	background: url(/reit-if/assets/img/icn-pdf2.png);
}
.c-card--border-column .c-card__body {
	padding: 1rem;
}
@media screen and (max-width: 767px) {
	.c-card--border-column .c-card__body {
		padding: 0.75rem;
	}
}
.c-card--border-column .c-card__body > *:not(:last-child) {
	margin-bottom: 0.5rem;
}
.c-card--border-column .c-card__title {
	display: flex;
	gap: 0.8em;
	align-items: center;
	font-weight: 500;
	font-size: 18px;
}
@media screen and (max-width: 767px) {
	.c-card--border-column .c-card__title {
		font-size: 16px;
	}
}
.c-card--border-column .c-card__title img {
	width: 22px;
}
.c-card--border-column .c-card__copy {
	line-height: 1.8;
	font-size: 14px;
}
@media screen and (max-width: 767px) {
	.c-card--border-column .c-card__copy {
		font-size: 13px;
	}
}
.c-card--border-column:not(:has(> a)) {
	border: 1px solid #dfdfdf;
}
.c-card--border-column > a {
	border: 1px solid #dfdfdf;
}
.c-card--border-column:not(:has(> a)) {
	background-color: #fff;
}
.c-card--border-column > a {
	background-color: #fff;
}
.c-card--border-column:not(:has(> a)) {
	gap: 1rem;
	padding: 1.4rem 1.8rem 1.4rem 1rem;
}
@media screen and (max-width: 767px) {
	.c-card--border-column:not(:has(> a)) {
		gap: 0.75rem;
		padding: 1.05rem 1.35rem 1.05rem 0.75rem;
	}
}
.c-card--border-column > a {
	gap: 1rem;
	padding: 1.4rem 1.8rem 1.4rem 1rem;
}
@media screen and (max-width: 767px) {
	.c-card--border-column > a {
		gap: 0.75rem;
		padding: 1.05rem 1.35rem 1.05rem 0.75rem;
	}
}
.c-card--border-column .c-card__body {
	padding: 0;
}
.c-card--border-column .c-card__head {
	align-self: center;
	flex-shrink: 0;
	width: 60px;
}
@media screen and (max-width: 767px) {
	.c-card--border-column .c-card__head {
		width: 45px;
	}
}

/******************************************************************
component - pulldown
******************************************************************/
.c-pulldown {
	position: relative;
	max-width: 100%;
}
.c-pulldown--full {
	width: 100% !important;
}
.c-pulldown--full .c-pulldown__body {
	width: 100%;
}
.c-pulldown--full .c-pulldown__button {
	width: 100% !important;
}
.c-pulldown--center {
	margin-inline: auto;
}
.c-pulldown--right {
	margin-left: auto;
}
.c-pulldown__body {
	max-width: 100%;
	position: absolute;
}
.c-pulldown__button {
	width: 100%;
	text-align: left;
	max-width: 100%;
	white-space: nowrap;
}
.c-pulldown__menu {
	position: relative;
	z-index: 1;
	transition: opacity 0.4s, max-height 0s 0.4s;
	max-height: 0;
	opacity: 0;
	pointer-events: none;
}
.c-pulldown__menu[aria-hidden=false] {
	transition: opacity 0.4s, max-height 0s 0s;
	max-height: 1000vh;
	max-height: 1000dvh;
	opacity: 1;
	pointer-events: auto;
}
.c-pulldown__menu > * > * {
	display: block;
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	cursor: pointer;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.c-pulldown__menu > * > *:hover {
		text-decoration: none;
	}
}
.c-pulldown__menu > * > *:focus {
	text-decoration: none;
}
.c-pulldown__menu > * > * {
	white-space: nowrap;
}
.c-pulldown--check .c-pulldown__menu > * > * {
	position: relative;
}
.c-pulldown--check .c-pulldown__menu > * > *[aria-checked=true]::before, .c-pulldown--check .c-pulldown__menu > * > *[aria-current=page]::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	bottom: 3px;
	right: 9px;
	width: 6px;
	height: 9px;
	border-bottom: 2px solid #c2000f;
	border-right: 2px solid #c2000f;
	transform: rotate(40deg);
}
.c-pulldown--scroll .c-pulldown__menu {
	overflow-y: scroll;
	max-height: 14.5em;
}
.c-pulldown__adjust {
	box-sizing: border-box;
	position: relative;
	z-index: -1;
	width: 0;
	text-align: left;
	line-height: 1.4;
}
.c-pulldown__adjust::before {
	content: "　";
}

.c-pulldown__body {
	min-width: min(15em, 100%);
}
.c-pulldown__button {
	background-color: #ffffff;
	padding: 0.75em 36px 0.75em 1.5em;
	border-radius: 100vw;
	position: relative;
}
.c-pulldown__button::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 7px;
	height: 7px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-pulldown__button::after {
	top: 0;
	bottom: 0;
	right: 1em;
	transform-origin: center center;
	border-top: 2px solid #979797;
	border-right: 2px solid #979797;
	transform: translateX(-1.4497474683px) translateY(-1.4497474683px) rotate(135deg);
}
.c-pulldown__button {
	transition-property: color;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.c-pulldown__button:hover {
		color: #c2000f;
	}
}
.c-pulldown__button:focus {
	color: #c2000f;
}
.c-pulldown__button[aria-expanded=true] {
	position: relative;
}
.c-pulldown__button[aria-expanded=true]::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 7px;
	height: 7px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-pulldown__button[aria-expanded=true]::after {
	top: 0;
	bottom: 0;
	right: 1em;
	transform-origin: center center;
	border-top: 2px solid #979797;
	border-right: 2px solid #979797;
	transform: translateX(-1.4497474683px) translateY(1.4497474683px) rotate(-45deg);
}
.c-pulldown__menu {
	background-color: #ffffff;
	border: 1px solid #dfdfdf;
	margin-top: 8px;
	padding-block: 0.5em;
}
.c-pulldown__menu > * > * {
	padding: 0.75em 26px 0.75em 1.5em;
	font-size: 14px;
	transition-property: color;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.c-pulldown__menu > * > *:hover {
		color: #c2000f;
	}
}
.c-pulldown:not(.c-pulldown--check) .c-pulldown__menu > * > *[aria-checked=true], .c-pulldown:not(.c-pulldown--check) .c-pulldown__menu > * > *[aria-current=page] {
	color: #c2000f;
}

.c-pulldown__menu > *:first-child > * {
	border-top-right-radius: 6px;
	border-top-left-radius: 6px;
}
.c-pulldown__menu > *:last-child > * {
	border-bottom-right-radius: 6px;
	border-bottom-left-radius: 6px;
}
.c-pulldown__adjust {
	padding: 0.75em 26px 0.75em 0.75em;
	border: 1px solid transparent;
}

/******************************************************************
component - pagination
******************************************************************/
.c-pagination {
	display: flex;
	align-items: center;
	justify-content: center;
}
.c-pagination.js-init {
	display: none;
}
.c-pagination a {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.c-pagination a:hover {
		text-decoration: none;
	}
}
.c-pagination a:focus {
	text-decoration: none;
}
.c-pagination .c-pagination__next-icon, .c-pagination .c-pagination__prev-icon {
	display: inline-block;
	width: 1.5em;
	height: 2em;
}
.c-pagination__prev-icon {
	position: relative;
}
.c-pagination__prev-icon::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-pagination__prev-icon::after {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform-origin: center center;
	border-top: 1px solid #c2000f;
	border-left: 1px solid #c2000f;
	transform: translateX(1.6568542495px) rotate(-45deg);
}
.c-pagination__next-icon {
	position: relative;
}
.c-pagination__next-icon::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-pagination__next-icon::after {
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	transform-origin: center center;
	border-top: 1px solid #c2000f;
	border-left: 1px solid #c2000f;
	transform: translateX(-1.6568542495px) rotate(135deg);
}
.c-pagination__prev-icon[tabindex="-1"], .c-pagination__prev-icon[disabled], .c-pagination__next-icon[tabindex="-1"], .c-pagination__next-icon[disabled] {
	opacity: 0.2;
	pointer-events: none;
}
.c-pagination__next--reverse, .c-pagination__prev:not(.c-pagination__prev--reverse) {
	margin-right: 1em;
	padding-left: 1.5em;
	position: relative;
}
.c-pagination__next--reverse::after, .c-pagination__prev:not(.c-pagination__prev--reverse)::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-pagination__next--reverse::after, .c-pagination__prev:not(.c-pagination__prev--reverse)::after {
	top: 0;
	bottom: 0;
	left: 0;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-left: 2px solid #c2000f;
	transform: translateX(2.4852813742px) rotate(-45deg);
}
.c-pagination__prev--reverse, .c-pagination__next:not(.c-pagination__next--reverse) {
	margin-left: 1em;
	padding-right: 1.5em;
	position: relative;
}
.c-pagination__prev--reverse::after, .c-pagination__next:not(.c-pagination__next--reverse)::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 12px;
	height: 12px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-pagination__prev--reverse::after, .c-pagination__next:not(.c-pagination__next--reverse)::after {
	top: 0;
	bottom: 0;
	right: 0;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-right: 2px solid #c2000f;
	transform: translateX(-2.4852813742px) rotate(45deg);
}
.c-pagination__prev, .c-pagination__next {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.c-pagination__prev:hover, .c-pagination__next:hover {
		opacity: 0.6;
	}
}
.c-pagination__prev:focus, .c-pagination__next:focus {
	opacity: 0.6;
}
.c-pagination__prev[tabindex="-1"], .c-pagination__prev[disabled], .c-pagination__next[tabindex="-1"], .c-pagination__next[disabled] {
	opacity: 0.2;
	pointer-events: none;
}

/******************************************************************
component - list
******************************************************************/
.c-list > * {
	font-size: 1rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	.c-list > * {
		font-size: 0.9rem;
	}
}
.c-list--gutter > *:not(:first-child) {
	margin-top: 0.75em;
}

/******************************************************************
component - list-disc
******************************************************************/
.c-list-disc > * {
	position: relative;
	padding-left: 1.5em;
	font-size: 1rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	.c-list-disc > * {
		font-size: 0.9rem;
	}
}
.c-list-disc > *::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	left: 0;
	content: "・ ";
}
.c-list-disc--gutter > *:not(:first-child) {
	margin-top: 0.75em;
}

/******************************************************************
component - list-order
******************************************************************/
.c-list-order:has(> :nth-child(10)) {
	margin-left: 0.75em;
}
.c-list-order > * {
	margin-left: 1.5em;
	list-style: decimal;
	font-size: 1rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	.c-list-order > * {
		font-size: 0.9rem;
	}
}
.c-list-order--gutter > *:not(:first-child) {
	margin-top: 0.75em;
}

/******************************************************************
component - list-note
******************************************************************/
.c-list-note {
	display: table;
	line-height: 1.8;
}
.c-list-note__item {
	display: table-row;
}
.c-list-note__head {
	display: table-cell;
	padding-right: 0.75em;
	white-space: nowrap;
	vertical-align: top;
}
.c-list-note__head--wide {
	padding-right: 1.75em;
	font-weight: bold;
	color: #004681;
}
.c-list-note__head--fit {
	padding-right: 0;
}
.c-list-note__head--asterisk {
	width: 1.5em;
	padding-right: 0;
}
.c-list-note__head--border {
	padding-right: 2em;
	position: relative;
}
.c-list-note__head--border::before {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: calc((1em - 1lh) / -2);
	right: 1em;
	height: 1em;
	border-right: 1px solid #c2000f;
}
.c-list-note__body {
	display: table-cell;
	vertical-align: top;
}
.c-list-note__body a {
	word-break: break-all;
}
.c-list-note--gutter > .c-list-note__item:not(:first-child) > .c-list-note__head,
.c-list-note--gutter > .c-list-note__item:not(:first-child) > .c-list-note__body {
	padding-top: 0.75em;
}
@media screen and (max-width: 767px) {
	.c-list-note--gutter.sp-row > .c-list-note__item:not(:first-child) > .c-list-note__body {
		padding-top: 0;
	}
}
@media screen and (max-width: 767px) {
	.c-list-note.sp-row {
		display: block;
	}
	.c-list-note.sp-row > .c-list-note__item {
		display: block;
	}
	.c-list-note.sp-row > .c-list-note__item:not(:first-child) {
		padding-top: 0.75em;
	}
	.c-list-note.sp-row > .c-list-note__item > .c-list-note__head {
		display: block;
		white-space: normal;
		padding-right: 0;
		width: auto;
		font-weight: bold;
	}
	.c-list-note.sp-row > .c-list-note__item > .c-list-note__body {
		display: block;
	}
}

/******************************************************************
component - define
******************************************************************/
.c-define > div:not(:first-child) {
	margin-top: 1rem;
}
.c-define > div > dt {
	font-weight: bold;
	font-size: 1rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	.c-define > div > dt {
		font-size: 0.9rem;
	}
}
.c-define > div > dd {
	font-size: 1rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	.c-define > div > dd {
		font-size: 0.9rem;
	}
}
.c-define--border {
	border-bottom: 1px solid #dfdfdf;
}
.c-define--border > div {
	border-top: 1px solid #dfdfdf;
	padding-top: 0.75em;
}
.c-define--border > div:last-child {
	padding-bottom: 0.75em;
}
.c-define--border dt {
	font-weight: 500;
	color: #004681;
	margin-bottom: 0.75rem;
}
@media screen and (max-width: 767px) {
	.c-define--border dt {
		margin-bottom: 0.5625rem;
	}
}

/******************************************************************
component - image
******************************************************************/
a:has(> .c-image) {
	display: block;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	a:has(> .c-image):hover {
		text-decoration: none;
	}
}
a:has(> .c-image):focus {
	text-decoration: none;
}

a:has(> .c-image:not(.c-image--full):not(.c-image--object-fit)) {
	width: fit-content;
	margin-inline: auto;
}

a:has(> .c-image.c-image--left:not(.c-image--full):not(.c-image--object-fit)) {
	margin-inline: initial;
}

a:has(> .c-image.c-image--right:not(.c-image--full):not(.c-image--object-fit)) {
	margin-inline: auto 0;
}

.c-image {
	display: table;
	width: fit-content;
	margin-inline: auto;
}
.c-image--left {
	margin-inline: initial;
}
.c-image--right {
	margin-inline: auto 0;
}
.c-image:has(.c-image__badge) {
	position: relative;
}
.c-image__badge {
	box-sizing: border-box;
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: fit-content;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 0 10px 10px 0;
	background-color: #fff;
}
.c-image__caption {
	display: table-caption;
	caption-side: bottom;
	font-size: 90%;
}
.c-image__caption:first-child {
	margin-bottom: 0.5rem;
}
.c-image__caption:last-child {
	margin-top: 0.5rem;
}
.c-image__caption-title {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1rem;
}
@media screen and (max-width: 767px) {
	.c-image__caption-title {
		font-size: 0.9rem;
	}
}
.c-image__caption--video {
	margin: 0 !important;
	padding: 0.5em;
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 17px;
}
@media screen and (max-width: 1024px) {
	.c-image__caption--video {
		font-size: 15px;
	}
}
/******************************************************************
component - image-play
******************************************************************/
.c-image-play {
	position: relative;
	display: block;
}
.c-image-play--under .c-image-play__main {
	background-position: right 14px bottom 14px;
}
.c-image-play--s .c-image-play__main {
	background-size: 40px 29px;
}
.c-image-play--2s .c-image-play__main {
	background-size: 30px 22px;
}
.c-image-play__main {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("data:image/png;base64,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");
	background-size: 45px 45px;
}

/******************************************************************
component - image-column
******************************************************************/
.c-image-column {
	--max-img-width: fit-content(50%);
	--max-img-width-sp: fit-content(40%);
}
.c-image-column:has(.js-swiper) {
	--max-img-width: 50%;
	--max-img-width-sp: 40%;
}
.c-image-column {
	display: grid;
	grid-template-areas: "img body";
	grid-template-columns: var(--max-img-width) 1fr;
}
@media screen and (max-width: 767px) {
	.c-image-column {
		grid-template-columns: var(--max-img-width-sp) 1fr;
	}
}
.c-image-column--right {
	grid-template-areas: "body img";
	grid-template-columns: 1fr var(--max-img-width);
}
@media screen and (max-width: 767px) {
	.c-image-column--right {
		grid-template-columns: 1fr var(--max-img-width-sp);
	}
}
.c-image-column__body {
	grid-area: body;
}
.c-image-column__img {
	grid-area: img;
}
.c-image-column__img > *:not(:last-child) {
	margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
	.c-image-column__img > *:not(:last-child) {
		margin-bottom: 1.125rem;
	}
}
.c-image-column--vertical {
	align-items: center;
}
.c-image-column {
	--image-column-gap: 1rem;
	gap: var(--image-column-gap);
}
@media screen and (max-width: 1372px) {
	.c-image-column.pc-vw {
		--image-column-gap: 1.166180758vw;
	}
}
.c-image-column--2x {
	--image-column-gap: 2rem;
}

@media screen and (max-width: 1372px) {
	.c-image-column--2x.pc-vw {
		--image-column-gap: 2.332361516vw;
	}
}
.c-image-column--50px {
	--image-column-gap: 50px;
}

@media screen and (max-width: 1372px) {
	.c-image-column--50px.pc-vw {
		--image-column-gap: 3.6443148688vw;
	}
}
@media screen and (max-width: 767px) {
	.c-image-column {
		--image-column-gap: 0.75rem;
	}
	.c-image-column.sp-top {
		align-items: stretch;
	}
	.c-image-column.sp-vertical {
		align-items: center;
	}
	.c-image-column.sp-row {
		grid-template-areas: "img" "body";
		grid-template-columns: 100%;
	}
	.c-image-column.sp-row .c-image-column__img {
		width: fit-content;
		margin-inline: auto;
		max-width: 100% !important;
	}
	.c-image-column.sp-row-reverse {
		grid-template-areas: "body" "img";
	}
	.c-image-column--2x {
		--image-column-gap: 1.5rem;
	}
	.c-image-column.sp-2x {
		--image-column-gap: 1.5rem;
	}
	.c-image-column--50px {
		--image-column-gap: 50px;
	}
	.c-image-column.sp-50px {
		--image-column-gap: 50px;
	}
}

/******************************************************************
component - image-float
******************************************************************/
.c-image-float::after {
	content: "";
	display: block;
	clear: both;
}
.c-image-float__img {
	float: left;
	max-width: 60%;
}
.c-image-float__img > *:not(:last-child) {
	margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
	.c-image-float__img {
		max-width: 40%;
	}
	.c-image-float__img > *:not(:last-child) {
		margin-bottom: 0.75rem;
	}
}
.c-image-float--right .c-image-float__img {
	float: right;
}
.c-image-float {
	--image-float-gap: 1rem;
}
.c-image-float:not(.c-image-float--right) .c-image-float__img {
	margin-right: var(--image-float-gap);
}
.c-image-float--right .c-image-float__img {
	margin-left: var(--image-float-gap);
}
.c-image-float__img {
	margin-bottom: calc(var(--image-float-gap) * 0.5);
}
@media screen and (max-width: 1372px) {
	.c-image-float.pc-vw {
		--image-float-gap: 1.166180758vw;
	}
}
.c-image-float--2x {
	--image-float-gap: 2rem;
}

@media screen and (max-width: 1372px) {
	.c-image-float--2x.pc-vw {
		--image-float-gap: 2.332361516vw;
	}
}
.c-image-float--50px {
	--image-float-gap: 50px;
}

@media screen and (max-width: 1372px) {
	.c-image-float--50px.pc-vw {
		--image-float-gap: 3.6443148688vw;
	}
}
@media screen and (max-width: 767px) {
	.c-image-float {
		--image-float-gap: 0.75rem;
	}
	.c-image-float.sp-row {
		display: grid;
		grid-template-areas: "img" "body";
		grid-template-columns: 1fr;
		gap: var(--image-float-gap);
	}
	.c-image-float.sp-row .c-image-float__body {
		grid-area: body;
	}
	.c-image-float.sp-row .c-image-float__img {
		grid-area: img;
		float: none;
		max-width: none;
		margin-bottom: 0;
		width: fit-content;
		margin-inline: auto;
	}
	.c-image-float.sp-row-reverse {
		grid-template-areas: "body" "img";
	}
	.c-image-float--2x {
		--image-float-gap: 1.5rem;
	}
	.c-image-float.sp-2x {
		--image-float-gap: 1.5rem;
	}
	.c-image-float--50px {
		--image-float-gap: 50px;
	}
	.c-image-float.sp-50px {
		--image-float-gap: 50px;
	}
}

/******************************************************************
component - table
******************************************************************/
.c-table-scroll .c-table {
	min-width: 700px;
}

.c-table {
	width: 100%;
}
@media screen and (max-width: 767px) {
	.c-table.sp-row {
		width: 100%;
		border-top: 1px solid #dfdfdf;
	}
	.c-table.sp-row tbody, .c-table.sp-row tr {
		display: block;
		width: 100%;
	}
	.c-table.sp-row th, .c-table.sp-row td {
		display: block;
		width: 100%;
		border-top: 0 !important;
	}
	.c-table.sp-row th {
		font-weight: normal;
		text-align: center;
	}
}
.c-table th, .c-table td {
	box-sizing: border-box;
	border: 1px solid #dfdfdf;
	text-align: left;
	padding-inline: 1rem;
	padding-block: 1rem;
}
.c-table__bg {
	background-color: #999;
	color: #fff;
}
.c-table__bglight {
	background-color: #f9f9f9;
}

/******************************************************************
component - table-scroll
******************************************************************/
.c-table-scroll {
	overflow-x: auto;
}
.c-table-scroll::-webkit-scrollbar {
	width: 5px;
	background: #F1F1F1;
}
.c-table-scroll::-webkit-scrollbar:horizontal {
	height: 5px;
	background: #F1F1F1;
}
.c-table-scroll::-webkit-scrollbar-thumb {
	background: #BCBCBC;
	border-radius: 2px;
}
.c-table-scroll::-webkit-scrollbar-thumb:horizontal {
	background: #BCBCBC;
	border-radius: 2px;
}
.c-table-scroll {
	scrollbar-width: thin;
	scrollbar-color: #BCBCBC #F1F1F1;
}
.c-table-scroll--100vw {
	box-sizing: border-box;
}
@media screen and (max-width: 1372px) {
	.c-table-scroll--100vw {
		width: calc(100vw - var(--scrollbar));
		margin: 0 calc(50% - 50vw + var(--scrollbar) / 2);
		padding-inline: 30px;
	}
}
@media screen and (max-width: 767px) {
	.c-table-scroll--100vw {
		padding-inline: 20px;
	}
}

.js-table-scroll-attention {
	position: relative;
}
.js-table-scroll-attention__body {
	vertical-align: middle;
	box-sizing: border-box;
	position: absolute;
	inset: 0;
	margin: auto;
	width: fit-content;
	height: fit-content;
	border-radius: 10px;
	color: #fff;
	font-size: 0.85rem;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	.js-table-scroll-attention__body {
		font-size: 0.8rem;
	}
}
.js-table-scroll-attention__body {
	padding: 55px 10px 10px 10px;
	background: url("data:image/svg+xml;base64,PHN2ZyBoZWlnaHQ9IjI0IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSIyNCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBmaWxsPSIjZmZmIiBkPSJtOS4yOTI4OTMyMiA3aC01LjU4NTc4NjQ0bDEuMTQ2NDQ2NjEgMS4xNDY0NDY2MWMuMTk1MjYyMTUuMTk1MjYyMTUuMTk1MjYyMTUuNTExODQ0NjMgMCAuNzA3MTA2NzhzLS41MTE4NDQ2My4xOTUyNjIxNS0uNzA3MTA2NzggMGwtMi0yYy0uMTk1MjYyMTUtLjE5NTI2MjE1LS4xOTUyNjIxNS0uNTExODQ0NjMgMC0uNzA3MTA2NzhsMi0yYy4xOTUyNjIxNS0uMTk1MjYyMTUuNTExODQ0NjMtLjE5NTI2MjE1LjcwNzEwNjc4IDBzLjE5NTI2MjE1LjUxMTg0NDYzIDAgLjcwNzEwNjc4bC0xLjE0NjQ0NjYxIDEuMTQ2NDQ2NjFoNS41ODU3ODY0NGwtMS4xNDY0NDY2MS0xLjE0NjQ0NjYxYy0uMTk1MjYyMTUtLjE5NTI2MjE1LS4xOTUyNjIxNS0uNTExODQ0NjMgMC0uNzA3MTA2NzhzLjUxMTg0NDYzLS4xOTUyNjIxNS43MDcxMDY3OCAwbDIuMDAwMDAwMDEgMmMuMTk1MjYyMS4xOTUyNjIxNS4xOTUyNjIxLjUxMTg0NDYzIDAgLjcwNzEwNjc4bC0yLjAwMDAwMDAxIDJjLS4xOTUyNjIxNS4xOTUyNjIxNS0uNTExODQ0NjMuMTk1MjYyMTUtLjcwNzEwNjc4IDBzLS4xOTUyNjIxNS0uNTExODQ0NjMgMC0uNzA3MTA2Nzh6bTQuNzA3MTA2NzggMi41djIuNTQ3NDM3NmMwIC4zMzA5MTA1LS4xMTYwMTQ1LjY1MTM0ODQtLjMyNzg1ODMuOTA1NTYwOS0uNTAwMTI3NC42MDAxNTI5LTEuMzkyMDgwOS42ODEyMzk2LTEuOTkyMjMzOS4xODExMTIxbC0uOTIzODM0LS43Njk4NjE3Yy0uMjgyNDI4OS0uMjM1MzU3My0uNjM4NDMzOC0uMzY0MjQ4OS0xLjAwNjA3MzgtLjM2NDI0ODktLjI2NjM2NDc0IDAtLjUwOTE3Mzk1LjE1MjYxNDYtLjYyNDY3Nzk1LjM5MjYzMzRsLS4wMzU2OTg1Ny4wNzQxODIxYy0uMTM1MTQ0ODMuMjgwODMyNi0uMDk0MjEzMTkuNjE0NjcxNC4xMDQ3NzM4Ni44NTQ1MzY1bDQuNDEzNDY3NjYgNS4zMjAxMjg0Yy43MTM5MTM4Ljg2MDU3MzYgMS43NzM5ODQ4IDEuMzU4NTE5NiAyLjg5MjEzNSAxLjM1ODUxOTYgMi40ODUyODE0IDAgNC41LTIuMDE0NzE4NiA0LjUtNC41di00YzAtLjI3NjE0MjQtLjIyMzg1NzYtLjUtLjUtLjVzLS41LjIyMzg1NzYtLjUuNXYxYzAgLjI3NjE0MjQtLjIyMzg1NzYuNS0uNS41cy0uNS0uMjIzODU3Ni0uNS0uNXYtMmMwLS4yNzYxNDI0LS4yMjM4NTc2LS41LS41LS41cy0uNS4yMjM4NTc2LS41LjV2MmMwIC4yNzYxNDI0LS4yMjM4NTc2LjUtLjUuNXMtLjUtLjIyMzg1NzYtLjUtLjV2LTNjMC0uMjc2MTQyMzctLjIyMzg1NzYtLjUtLjUtLjVzLS41LjIyMzg1NzYzLS41LjV2M2MwIC4yNzYxNDI0LS4yMjM4NTc2LjUtLjUuNXMtLjUtLjIyMzg1NzYtLjUtLjV2LTdjMC0uMjc2MTQyMzctLjIyMzg1NzYtLjUtLjUtLjVzLS41LjIyMzg1NzYzLS41LjV6bS0xLS4wMDAwMDA1NXYtMy45OTk5OTk0NWMwLS44Mjg0MjcxMi42NzE1NzI5LTEuNSAxLjUtMS41czEuNS42NzE1NzI4OCAxLjUgMS41djIuNTg1MzUyODVjLjE1NjM4OTUtLjA1NTI3NTc0LjMyNDY4MjMtLjA4NTM1Mjg1LjUtLjA4NTM1Mjg1LjY5MTczNCAwIDEuMjc0MTA2Mi40NjgyMzM4NiAxLjQ0NzQ1OTUgMS4xMDUwNDQ2Mi4xNzA5OTQ2LS4wNjc3ODc4NS4zNTc0MTY2LS4xMDUwNDQ2Mi41NTI1NDA1LS4xMDUwNDQ2Mi42OTE3MzQgMCAxLjI3NDEwNjIuNDY4MjMzODYgMS40NDc0NTk1IDEuMTA1MDQ0Ni4xNzA5OTQ2LS4wNjc3ODc4LjM1NzQxNjYtLjEwNTA0NDYuNTUyNTQwNS0uMTA1MDQ0Ni44Mjg0MjcxIDAgMS41LjY3MTU3MjkgMS41IDEuNXY0YzAgMy4wMzc1NjYxLTIuNDYyNDMzOSA1LjUtNS41IDUuNS0xLjQxNTcwNjcgMC0yLjc1Nzg3ODQtLjYzMDQ1NjktMy42NjE3NzU0LTEuNzIwMDQybC00LjQxMzQ2NzY1LTUuMzIwMTI4NGMtLjQ0ODYzNzg3LS41NDA4MDE4LS41NDA5MjI2OC0xLjI5MzQ3NzUtLjIzNjIyNDAzLTEuOTI2NjQ1MWwuMDM1Njk4NTgtLjA3NDE4MjFjLjI4MjExNzE1LS41ODYyNDI5Ljg3NTE3NTc2LS45NTkwMDI0IDEuNTI1NzY4NS0uOTU5MDAyNC42MDE1NzY1IDAgMS4xODQxMTQzLjIxMDkwNzggMS42NDYyNTgyLjU5NjAyNzdsLjkyMzgzNC43Njk4NjE3Yy4xNzU4NzYxLjE0NjU2MzMuNDM3MjY0OS4xMjI4MDA3LjU4MzgyODMtLjA1MzA3NTMuMDYyMDgxMi0uMDc0NDk3NS4wOTYwNzk1LS4xNjg0MDI1LjA5NjA3OTUtLjI2NTM3NjV2LTIuNTQ3NDM3NnoiLz48L3N2Zz4=") center top 8px/45px auto no-repeat;
	background-color: rgba(0, 0, 0, 0.7);
}
.js-table-scroll-attention__body {
	transition-property: opacity;
	transition-duration: 0.4s;
	opacity: 0;
	pointer-events: none;
}
.js-table-scroll-attention.is-scroll .js-table-scroll-attention__body[aria-hidden=false] {
	opacity: 1;
	pointer-events: auto;
}

/******************************************************************
component - heading
******************************************************************/
.c-heading1 {
	font-weight: 400;
	line-height: 1.4;
	font-size: 32px;
}
@media screen and (max-width: 767px) {
	.c-heading1 {
		font-size: 24px;
	}
}
.c-heading1 span {
	display: block;
	color: #c2000f;
	font-weight: 500;
	font-size: 16px;
}
@media screen and (max-width: 767px) {
	.c-heading1 span {
		font-size: 14px;
	}
}
.c-heading1 small {
	display: block;
	margin-top: 0.35em;
	font-size: 20px;
}
@media screen and (max-width: 767px) {
	.c-heading1 small {
		font-size: 15px;
	}
}

.c-section__frame-bg > .c-heading2:not(:first-child) {
	margin-top: 4rem;
}
@media screen and (max-width: 767px) {
	.c-section__frame-bg > .c-heading2:not(:first-child) {
		margin-top: 2.25rem;
	}
}

.c-heading2 {
	font-weight: 400;
	font-size: 28px;
}
@media screen and (max-width: 767px) {
	.c-heading2 {
		font-size: 22px;
	}
}

.c-heading2-top {
	margin-block: 70px;
}
@media screen and (max-width: 767px) {
	.c-heading2-top {
		margin-block: 40px;
	}
}
.c-heading2-top {
	font-weight: 400;
	font-size: 27px;
}
@media screen and (max-width: 767px) {
	.c-heading2-top {
		font-size: 19px;
	}
}
.c-heading2-top img {
	vertical-align: -0.2em;
	margin-right: 6px;
	width: 33px;
}
@media screen and (max-width: 767px) {
	.c-heading2-top img {
		width: 30px;
	}
}
.c-heading2-top {
	text-align: center;
}
.c-heading2-top__en {
	display: block;
	font-size: 1rem;
	color: #c2000f;
}

.c-heading3 {
	font-weight: 400;
	border-bottom: 1px solid #dfdfdf;
	padding-bottom: 0.2em;
	font-size: 24px;
}
@media screen and (max-width: 767px) {
	.c-heading3 {
		font-size: 20px;
	}
}

.c-heading4 {
	font-weight: 400;
	border-left: 3px solid #c2000f;
	padding-left: 0.4em;
	font-size: 20px;
}
@media screen and (max-width: 767px) {
	.c-heading4 {
		font-size: 18px;
	}
}

/******************************************************************
component - text
******************************************************************/
.c-text {
	font-size: 1rem;
	line-height: 1.8;
}
@media screen and (max-width: 767px) {
	.c-text {
		font-size: 0.9rem;
	}
}

/******************************************************************
component - button-list
******************************************************************/
.c-button-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
}
.c-button-list--center {
	justify-content: center;
}
.c-button-list--right {
	justify-content: flex-end;
}
.c-button-list--row {
	flex-direction: column;
}
@media screen and (max-width: 767px) {
	.c-button-list.sp-center {
		justify-content: center;
	}
	.c-button-list.sp-row {
		flex-direction: column;
	}
	.c-button-list.sp-row-center {
		flex-direction: column;
		align-items: center;
	}
}
.c-button-list > * {
	min-width: min(18em, 100%);
}
.c-button-list:not(.c-button-list--row) .c-button {
	width: 100% !important;
	min-width: auto !important;
}
.c-button-list--2pagecolumn > * {
	min-width: min( calc((1312px/2) - (1rem*1/2) ), 100%);
}
.c-button-list--3pagecolumn > * {
	min-width: min( calc((1312px/3) - (1rem*2/3) ), 100%);
}
.c-button-list--4pagecolumn > * {
	min-width: min( calc((1312px/4) - (1rem*3/4) ), 100%);
}
.c-button-list--5pagecolumn > * {
	min-width: min( calc((1312px/5) - (1rem*4/5) ), 100%);
}
.c-button-list--2pagecolumn-slim > * {
	min-width: min( calc((1000px/2) - (1rem*1/2) ), 100%);
}
.c-button-list--3pagecolumn-slim > * {
	min-width: min( calc((1000px/3) - (1rem*2/3) ), 100%);
}
.c-button-list--4pagecolumn-slim > * {
	min-width: min( calc((1000px/4) - (1rem*3/4) ), 100%);
}
.c-button-list--5pagecolumn-slim > * {
	min-width: min( calc((1000px/5) - (1rem*4/5) ), 100%);
}
@media screen and (max-width: 767px) {
	.c-button-list.sp-1column > * {
		min-width: initial;
		width: calc(100% - 1rem * 0 / 1);
		display: flex;
	}
	.c-button-list.sp-2column > * {
		min-width: initial;
		width: calc(50% - 1rem * 1 / 2);
		display: flex;
	}
}

/******************************************************************
component - button
******************************************************************/
.c-button {
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.c-button:hover {
		text-decoration: none;
	}
}
.c-button:focus {
	text-decoration: none;
}
.c-button {
	position: relative;
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	cursor: pointer;
}
span.c-button {
	pointer-events: none;
}

.c-button.js-init {
	display: none;
}
.c-button--full {
	width: 100% !important;
	min-width: auto !important;
}
.c-button--label {
	position: relative;
}

/******************************************************************
component - button--basic-border
******************************************************************/
.c-button--basic-border-pdf, .c-button--basic-border-blank, .c-button--basic-border-bottom, .c-button--basic-border-back, .c-button--basic-border {
	min-width: min(18em, 100%);
	padding: 0.25em 2em;
	min-height: 4em;
	border: 1px solid #dfdfdf;
	background-color: #fff;
}
@media screen and (max-width: 767px) {
	.c-button--basic-border-pdf, .c-button--basic-border-blank, .c-button--basic-border-bottom, .c-button--basic-border-back, .c-button--basic-border {
		padding-inline: 1em 2em;
	}
}
.c-button--basic-border-pdf, .c-button--basic-border-blank, .c-button--basic-border-bottom, .c-button--basic-border-back, .c-button--basic-border {
	transition-property: background, color;
	transition-duration: 0.4s;
}
.c-button--basic-border-pdf::after, .c-button--basic-border-blank::after, .c-button--basic-border-bottom::after, .c-button--basic-border-back::after, .c-button--basic-border::after {
	transition-property: right;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.c-button--basic-border-pdf:hover, .c-button--basic-border-blank:hover, .c-button--basic-border-bottom:hover, .c-button--basic-border-back:hover, .c-button--basic-border:hover {
		color: #c2000f;
	}
	.c-button--basic-border-pdf:hover::after, .c-button--basic-border-blank:hover::after, .c-button--basic-border-bottom:hover::after, .c-button--basic-border-back:hover::after, .c-button--basic-border:hover::after {
		right: calc(1em - 5px);
	}
}
.c-button--basic-border-pdf:focus, .c-button--basic-border-blank:focus, .c-button--basic-border-bottom:focus, .c-button--basic-border-back:focus, .c-button--basic-border:focus {
	color: #c2000f;
}
.c-button--basic-border-pdf:focus::after, .c-button--basic-border-blank:focus::after, .c-button--basic-border-bottom:focus::after, .c-button--basic-border-back:focus::after, .c-button--basic-border:focus::after {
	right: calc(1em - 5px);
}

.c-button--basic-border {
	position: relative;
}
.c-button--basic-border::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-button--basic-border::after {
	top: 0;
	bottom: 0;
	right: 1em;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-right: 2px solid #c2000f;
	transform: translateX(-1.6568542495px) rotate(45deg);
}
.c-button--basic-border-back {
	position: relative;
}
.c-button--basic-border-back::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-button--basic-border-back::after {
	top: 0;
	bottom: 0;
	left: 1em;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-left: 2px solid #c2000f;
	transform: translateX(1.6568542495px) rotate(-45deg);
}
@media (any-hover: hover) {
	.c-button--basic-border-back:hover::after {
		right: auto;
		left: calc(1em - 5px);
	}
}
.c-button--basic-border-back:focus::after {
	right: auto;
	left: calc(1em - 5px);
}

.c-button--basic-border-bottom {
	position: relative;
}
.c-button--basic-border-bottom::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
}
.c-button--basic-border-bottom::after {
	top: 0;
	bottom: 0;
	right: 1em;
	transform-origin: center center;
	border-top: 2px solid #c2000f;
	border-right: 2px solid #c2000f;
	transform: translateX(-1.6568542495px) translateY(-1.6568542495px) rotate(135deg);
}
@media (any-hover: hover) {
	.c-button--basic-border-bottom:hover::after {
		right: 1em;
		bottom: -5px;
	}
}
.c-button--basic-border-bottom:focus::after {
	right: 1em;
	bottom: -5px;
}

.c-button--basic-border-blank::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	right: 1em;
	bottom: 0;
	width: 13px;
	height: 14px;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAYAAAD0f5bSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAW0lEQVQokWM8xMDPYPv/A8NhRoH/DEQCFmSO7f8PjIQ0gAxnAdkCA4cZBRjQAbI8DDCR4iwYYGIgAzCNaoIA9MhF5uIEKJqIjTO4JmKSENRgBsZDDPykpAiwwQAFWxjFh25TxAAAAABJRU5ErkJggg==") no-repeat left bottom/100% auto;
}
.c-button--basic-border-pdf::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	right: 1em;
	bottom: 0;
	width: 14px;
	height: 16px;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAACXBIWXMAAAsTAAALEwEAmpwYAAAA80lEQVQokWM8xMD/n4EMwAIibP9/YCRF02FGgf9gjYcZBbAqsP3/AaYQzIbRIMBEjjNxajS5c05KKNRr+9ut2y1J0vjp6HH532/eyn85f4GPJI1Cnm7nWXh5vwu6OL0lSeMJMdUfbBLirxiZmbVI0qi5YUkEAzPT85fLVwZdDghplmupMPv1/AU3Xo1KUzvzHnV0VbIICJznkJNfysTKZv5ux851d0vKV6AoBKWc////M4Dwq9Vrs0+oav9/vWFTAkwMhF8uXxX2oK0r9RADP5gPTm3IGs87exx8vW5DMrKm/1gwhkZiMUgPdVMOMYCR3GwFAKi/rdEtBlGpAAAAAElFTkSuQmCC") no-repeat center center/100% auto;
}
/******************************************************************
component - badge
******************************************************************/
.c-badge {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.4;
	vertical-align: 1px;
}
.c-badge--l {
	font-size: 16px !important;
}

.c-badge--videos, .c-badge--column-infra, .c-badge--column-reit, .c-badge--column-hotel, .c-badge--column-healthcare, .c-badge--column-interview, .c-badge--column-esg {
	display: inline-block;
	border-radius: 100vw;
	color: #fff;
	padding: 0.25em 1.75em;
	text-align: center;
	font-weight: 500;
	font-size: 14px;
}
@media screen and (max-width: 1372px) {
	.c-badge--videos, .c-badge--column-infra, .c-badge--column-reit, .c-badge--column-hotel, .c-badge--column-healthcare, .c-badge--column-interview, .c-badge--column-esg {
		font-size: 1.166180758vw;
	}
}
@media screen and (max-width: 767px) {
	.c-badge--videos, .c-badge--column-infra, .c-badge--column-reit, .c-badge--column-hotel, .c-badge--column-healthcare, .c-badge--column-interview, .c-badge--column-esg {
		font-size: 14px;
	}
}

.c-badge--column-esg {
	background-color: #f05a00;
}

.c-badge--column-interview {
	background-color: #753ab2;
}

.c-badge--column-healthcare {
	background-color: #029227;
}

.c-badge--column-hotel {
	background-color: #059e95;
}

.c-badge--column-reit {
	background-color: #00437c;
}

.c-badge--column-infra {
	background-color: #008ee5;
}

.c-badge--videos {
	background-color: #bc0047;
}

/******************************************************************
component - youtube
******************************************************************/
.c-flexbox .c-youtube {
	width: 100%;
}

.c-youtube {
	width: 1000px;
	max-width: 100%;
	margin-inline: auto;
}
.c-youtube--full {
	width: 100%;
}
.c-youtube iframe {
	width: 100%;
	aspect-ratio: 16/9;
	vertical-align: middle;
}
.c-youtube__caption {
	font-size: 90%;
}
.c-youtube__caption:first-child {
	margin-bottom: 0.5rem;
}
.c-youtube__caption:last-child {
	margin-top: 0.5rem;
}
/******************************************************************
project - top-nav
******************************************************************/
.p-top-nav {
	background-color: #fff;
}
.p-top-nav__inner {
	max-width: 1312px;
	margin-inline: auto;
	padding-inline: 30px;
}
@media screen and (max-width: 767px) {
	.p-top-nav__inner {
		padding-inline: 20px;
	}
}
.p-top-nav__inner {
	padding-block: 3rem;
}
@media screen and (max-width: 767px) {
	.p-top-nav__inner {
		padding-block: 2rem;
	}
}
/******************************************************************
project - news-column
******************************************************************/
.p-news-column {
	padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
	.p-news-column {
		padding-bottom: 2rem;
	}
}
.p-news-column {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
@media screen and (max-width: 1372px) {
	.p-news-column {
		gap: 3.6443148688vw;
	}
}
.p-news-column > * {
	box-sizing: border-box;
	width: calc(50% - 25px);
}
@media screen and (max-width: 1372px) {
	.p-news-column > * {
		width: calc(50% - 3.6443148688vw * 1 / 2);
	}
}
@media screen and (max-width: 767px) {
	.p-news-column > * {
		width: 100%;
	}
}
.p-news-column > * {
	display: flex;
}
.p-news-column a {
	flex-grow: 1;
	display: block;
	background-color: #fff;
	padding: 1.5em;
}
@media screen and (max-width: 767px) {
	.p-news-column a {
		padding: 1.2em;
	}
}
.p-news-column a > *:not(:last-child) {
	margin-bottom: 0.3em;
}
.p-news-column a {
	transition-property: color;
	transition-duration: 0.4s;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.p-news-column a:hover {
		text-decoration: none;
	}
}
.p-news-column a:focus {
	text-decoration: none;
}
@media (any-hover: hover) {
	.p-news-column a:hover {
		color: #c2000f;
	}
}
.p-news-column a:focus {
	color: #c2000f;
}
.p-news-column__date {
	display: block;
	font-weight: 500;
}
@media screen and (max-width: 767px) {
	.p-news-column__date {
		font-size: 12px;
	}
}
.p-news-column__body {
	display: block;
}
/******************************************************************
project - video-column
******************************************************************/
.p-video-column {
	padding-block: 3rem;
}
@media screen and (max-width: 767px) {
	.p-video-column {
		padding-block: 2rem;
	}
}
.p-video-column {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
@media screen and (max-width: 1372px) {
	.p-video-column {
		gap: 3.6443148688vw;
	}
}
@media screen and (max-width: 767px) {
	.p-video-column {
		gap: 25px;
	}
}
.p-video-column > * {
	box-sizing: border-box;
	width: calc(50% - 25px);
}
@media screen and (max-width: 1372px) {
	.p-video-column > * {
		width: calc(50% - 3.6443148688vw * 1 / 2);
	}
}
@media screen and (max-width: 767px) {
	.p-video-column > * {
		width: 100%;
	}
}
.p-video-column > * {
	display: flex;
}
.p-video-column a {
	flex-grow: 1;
	position: relative;
	display: flex;
	flex-direction: row-reverse;
	padding: 1.5em 68px 1.5em 1.5em;
	background: #fff url(/reit-if/assets/img/icn-video.png) right 25px center/35px auto no-repeat;
	gap: 22px;
}
@media screen and (max-width: 767px) {
	.p-video-column a {
		background-size: 22px auto;
		background-position: right 10px center;
		padding: 1.2em 40px 1.2em 1.2em;
		gap: 12px;
	}
}
.p-video-column a {
	transition-property: color;
	transition-duration: 0.4s;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.p-video-column a:hover {
		text-decoration: none;
	}
}
.p-video-column a:focus {
	text-decoration: none;
}
@media (any-hover: hover) {
	.p-video-column a:hover {
		color: #c2000f;
	}
}
.p-video-column a:focus {
	color: #c2000f;
}
.p-video-column__label {
	position: absolute;
	top: -13px;
	left: -7px;
	box-sizing: border-box;
	padding: 0.5em 0.5em;
	text-align: center;
	line-height: 1;
	min-width: 10em;
	background-color: #000;
	clip-path: polygon(0 0, 95% 0%, 100% 100%, 0% 100%);
	color: #fff;
	font-size: 13px;
}
@media screen and (max-width: 767px) {
	.p-video-column__label {
		font-size: 10px;
	}
}
.p-video-column__main {
	align-self: center;
	flex-grow: 1;
}
.p-video-column__main > *:not(:last-child) {
	margin-bottom: 0.3em;
}
.p-video-column__date {
	display: block;
	font-weight: 500;
}
@media screen and (max-width: 767px) {
	.p-video-column__date {
		font-size: 12px;
	}
}
.p-video-column__body {
	display: block;
	font-size: 18px;
}
.p-video-column__body small {
	display: block;
	font-size: 15px;
}
@media screen and (max-width: 767px) {
	.p-video-column__body {
		font-size: 15px;
	}
	.p-video-column__body small {
		font-size: 12px;
	}
}
.p-video-column__img {
	flex-shrink: 0;
	width: 134px;
}
@media screen and (max-width: 767px) {
	.p-video-column__img {
		width: 80px;
	}
}

/******************************************************************
project - column
******************************************************************/
.c-section--top-column .p-column {
	padding-block: 0 !important;
}

.p-column {
	padding-block: 3rem;
}
@media screen and (max-width: 767px) {
	.p-column {
		padding-block: 2rem;
	}
}
.p-column {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}
@media screen and (max-width: 1372px) {
	.p-column {
		gap: 3.6443148688vw;
	}
}
@media screen and (max-width: 767px) {
	.p-column {
		gap: 25px;
	}
}
.p-column > * {
	box-sizing: border-box;
	width: calc(33.3333333333% - 33.3333333333px);
}
@media screen and (max-width: 1372px) {
	.p-column > * {
		width: calc(33.3333333333% - 3.6443148688vw * 2 / 3);
	}
}
@media screen and (max-width: 767px) {
	.p-column > * {
		width: 100%;
	}
}
.p-column > * {
	display: flex;
}
.p-column a {
	flex-grow: 1;
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	background-color: #fff;
	transition-property: color;
	transition-duration: 0.4s;
	color: inherit;
	text-decoration: none;
}
@media (any-hover: hover) {
	.p-column a:hover {
		text-decoration: none;
	}
}
.p-column a:focus {
	text-decoration: none;
}
@media (any-hover: hover) {
	.p-column a:hover {
		color: #c2000f;
	}
}
.p-column a:focus {
	color: #c2000f;
}
.p-column__main {
	flex-grow: 1;
	padding: 25px;
}
.p-column__main {
	padding: 1.8221574344vw;
}
@media screen and (max-width: 767px) {
	.p-column__main {
		padding: 15px;
	}
}
.p-column__main > *:not(:last-child) {
	margin-bottom: 1em;
}
.p-column__label {
	display: block;
}
.p-column__img img {
	width: 100%;
}
/******************************************************************
project - filter-node
******************************************************************/
.p-filter-node__body.js-init, .p-filter-node__body:empty {
	display: none;
}
.p-filter-node__body [data-label] {
	animation: p-filter-node-ani 0.4s ease-in-out both;
}

@keyframes p-filter-node-ani {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/******************************************************************
project - news-pagination
******************************************************************/
.p-news-pagination__body.js-init {
	display: none;
}
.p-news-pagination__body > * {
	animation: p-news-pagination-ani 0.4s ease-in-out both;
}

@keyframes p-news-pagination-ani {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/******************************************************************
utility - mediaquery
******************************************************************/
.u-portrait-media {
	display: none;
}

@media screen and (max-width: 1024px) {
	.u-landscape-media {
		display: none;
	}
	.u-portrait-media {
		display: block;
	}
	img.u-portrait-media {
		display: inline-block;
	}
	br.u-portrait-media {
		display: inline-block;
	}
	table.u-portrait-media {
		display: table;
	}
}
.u-sp-media {
	display: none;
}

@media screen and (max-width: 767px) {
	.u-pc-media {
		display: none;
	}
	.u-sp-media {
		display: block;
	}
	img.u-sp-media {
		display: inline-block;
	}
	br.u-sp-media {
		display: inline-block;
	}
	table.u-sp-media {
		display: table;
	}
}
/******************************************************************
utility - u-gutter
******************************************************************/
.u-gutter > *:not(:last-child) {
	margin-bottom: 1rem;
}

.u-gutter-s > *:not(:last-child) {
	margin-bottom: 0.75rem;
}

.u-gutter-2l > *:not(:last-child) {
	margin-bottom: 1.5rem;
}

.u-gutter-2x > *:not(:last-child) {
	margin-bottom: 2rem;
}

.u-gutter-3x > *:not(:last-child) {
	margin-bottom: 3rem;
}

@media screen and (max-width: 767px) {
	.u-gutter > *:not(:last-child) {
		margin-bottom: 0.75rem;
	}
	.u-gutter-s > *:not(:last-child) {
		margin-bottom: 0.5625rem;
	}
	.u-gutter-2l > *:not(:last-child) {
		margin-bottom: 1.125rem;
	}
	.u-gutter-2x > *:not(:last-child) {
		margin-bottom: 1.5rem;
	}
	.u-gutter-3x > *:not(:last-child) {
		margin-bottom: 2.25rem;
	}
	.u-sp-gutter > *:not(:last-child) {
		margin-bottom: 0.75rem;
	}
	.u-sp-gutter-s > *:not(:last-child) {
		margin-bottom: 0.5625rem;
	}
	.u-sp-gutter-2l > *:not(:last-child) {
		margin-bottom: 1.125rem;
	}
	.u-sp-gutter-2x > *:not(:last-child) {
		margin-bottom: 1.5rem;
	}
	.u-sp-gutter-3x > *:not(:last-child) {
		margin-bottom: 2.25rem;
	}
}
/******************************************************************
utility - margin
******************************************************************/
.u-margin-s {
	margin-block: 0 !important;
	height: 15px;
}
@media screen and (max-width: 767px) {
	.u-margin-s {
		height: 10px;
	}
}
.u-margin-m {
	margin-block: 0 !important;
	height: 30px;
}
@media screen and (max-width: 767px) {
	.u-margin-m {
		height: 20px;
	}
}
.u-margin-l {
	margin-block: 0 !important;
	height: 45px;
}
@media screen and (max-width: 767px) {
	.u-margin-l {
		height: 30px;
	}
}

/******************************************************************
utility - display
******************************************************************/
.u-block {
	display: block;
}

.u-none {
	display: none;
}

.u-inline {
	display: inline;
}

.u-inline-block {
	display: inline-block;
}

@media screen and (max-width: 767px) {
	.u-sp-block {
		display: block;
	}
	.u-sp-none {
		display: none;
	}
	.u-sp-inline {
		display: inline;
	}
	.u-sp-inline-block {
		display: inline-block;
	}
}
/******************************************************************
utility - display-off
******************************************************************/
.u-display-off {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	overflow: hidden;
	padding: 0;
	clip: rect(0, 0, 0, 0);
}

/******************************************************************
utility - fit-content
******************************************************************/
.u-content-center {
	width: fit-content;
	margin-inline: auto;
}

.u-content-right {
	width: fit-content;
	margin-inline: auto 0;
}

.u-content-left {
	width: fit-content;
	margin-inline: initial;
}

/******************************************************************
utility - text-align
******************************************************************/
.u-center {
	text-align: center !important;
}

.u-right {
	text-align: right !important;
}

.u-left {
	text-align: left !important;
}

/******************************************************************
utility - font-small
******************************************************************/
.u-font-small {
	font-size: 0.85rem;
	line-height: 1.4;
}
@media screen and (max-width: 767px) {
	.u-font-small {
		font-size: 0.8rem;
	}
}

/******************************************************************
utility - hover-opacity
******************************************************************/
.u-hover-opacity {
	transition-property: opacity;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.u-hover-opacity:hover {
		opacity: 0.7;
	}
}
.u-hover-opacity:focus {
	opacity: 0.7;
}

/******************************************************************
utility - hover-scale-img
******************************************************************/
.u-hover-scale-img__body {
	display: block;
	overflow: hidden;
}
.u-hover-scale-img__body img {
	width: 100%;
	transform: scale(1.01);
	transition-property: transform;
	transition-duration: 0.4s;
}
@media (any-hover: hover) {
	.u-hover-scale-img:hover .u-hover-scale-img__body img {
		transform: scale(1.1);
	}
}
.u-hover-scale-img:focus .u-hover-scale-img__body img {
	transform: scale(1.1);
}
.u-hover-scale-img--light .u-hover-scale-img__body {
	background-color: #ffffff;
}
.u-hover-scale-img--dark .u-hover-scale-img__body {
	background-color: #000000;
}
.u-hover-scale-img--light .u-hover-scale-img__body img, .u-hover-scale-img--dark .u-hover-scale-img__body img {
	transition-property: transform, opacity;
}
@media (any-hover: hover) {
	.u-hover-scale-img--light:hover .u-hover-scale-img__body img, .u-hover-scale-img--dark:hover .u-hover-scale-img__body img {
		opacity: 0.7;
	}
}
.u-hover-scale-img--light:focus .u-hover-scale-img__body img, .u-hover-scale-img--dark:focus .u-hover-scale-img__body img {
	opacity: 0.7;
}
.u-hover-scale-img--brightness .u-hover-scale-img__body img {
	transition-property: transform, filter;
}
@media (any-hover: hover) {
	.u-hover-scale-img--brightness:hover .u-hover-scale-img__body img {
		filter: brightness(1.25);
	}
}
.u-hover-scale-img--brightness:focus .u-hover-scale-img__body img {
	filter: brightness(1.25);
}

/******************************************************************
utility - icon-arrow
******************************************************************/
.u-icon-arrow {
	margin-left: 0.4em;
	padding-left: 8px;
	position: relative;
}
.u-icon-arrow::after {
	transition-property: top, right, bottom, left, opacity;
	transition-duration: 0.2s;
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	width: 8px;
	height: 8px;
	border-color: #c2000f;
	border-style: solid;
	border-top: 4px solid transparent !important;
	border-right-width: 0;
	border-bottom: 4px solid transparent !important;
	border-left-width: 8px;
	top: 0;
	bottom: 0;
	left: 0;
}
.u-icon-arrow::after {
	transition-property: all;
	transition-duration: 0.4s;
}

/******************************************************************
utility - icon-blank
******************************************************************/
.u-icon-blank {
	position: relative;
	margin-left: 0.4em;
	padding-left: 13px;
}
.u-icon-blank::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	bottom: 0;
	left: 0;
	width: 13px;
	height: 14px;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAOCAYAAAD0f5bSAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAW0lEQVQokWM8xMDPYPv/A8NhRoH/DEQCFmSO7f8PjIQ0gAxnAdkCA4cZBRjQAbI8DDCR4iwYYGIgAzCNaoIA9MhF5uIEKJqIjTO4JmKSENRgBsZDDPykpAiwwQAFWxjFh25TxAAAAABJRU5ErkJggg==") no-repeat left bottom/100% auto;
}

/******************************************************************
utility - icon-pdf
******************************************************************/
.u-icon-pdf {
	position: relative;
	margin-left: 0.4em;
	padding-left: 14px;
}
.u-icon-pdf::after {
	position: absolute;
	content: "";
	margin: auto;
	box-sizing: border-box;
	vertical-align: middle;
	top: 0;
	bottom: 0;
	left: 0;
	width: 14px;
	height: 16px;
	background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAQCAYAAAAmlE46AAAACXBIWXMAAAsTAAALEwEAmpwYAAAA80lEQVQokWM8xMD/n4EMwAIibP9/YCRF02FGgf9gjYcZBbAqsP3/AaYQzIbRIMBEjjNxajS5c05KKNRr+9ut2y1J0vjp6HH532/eyn85f4GPJI1Cnm7nWXh5vwu6OL0lSeMJMdUfbBLirxiZmbVI0qi5YUkEAzPT85fLVwZdDghplmupMPv1/AU3Xo1KUzvzHnV0VbIICJznkJNfysTKZv5ux851d0vKV6AoBKWc////M4Dwq9Vrs0+oav9/vWFTAkwMhF8uXxX2oK0r9RADP5gPTm3IGs87exx8vW5DMrKm/1gwhkZiMUgPdVMOMYCR3GwFAKi/rdEtBlGpAAAAAElFTkSuQmCC") no-repeat center center/100% auto;
}