@charset "UTF-8";
:root {
	--color-black: #272539;
	--color-little-light-black: #29292D;
	--color-white: #fff;
	--color-midnight: #272539;
	--color-blue-odakyu-ci: #004BA5;
	--color-white-gray: #EFEEF3;
	--color-line-blue-light: #3D5FAF;
	--color-blue-deep: #003A78;
	--color-yellow: #FFF200;
	--color-yellow-hover: #EFD300;
	--color-line-light: #CBC9D9;
	--color-gray-light: #D9DADE;
	--color-black-orange-line: #2A2320;
	--color-odakyu-blue: #0082CD;
	--color-orange-light: #FC8B04;
	--color-blue2: #156FBC;
	--color-orange: #E56330;
	--color-navy: #01103E;
	--color-red: #CF0303;
	--color-back: #E3E4E8;
	--color-blue-light: #426CCD;
	--color-sky-light: #CCE6F5;
	--color-slate: #76777E;
	--color-emot-yellow: #FFCB04;
	--color-facebook-blue: #1877F2;
	--color-gray: #9C9C9C;
	--color-check-green: #26A749;
	--color-cream: #FFFDD0;
	--font-mincho: "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-dm: "DM Sans", sans-serif;
	--font-rubik: "Rubik", sans-serif;
	--background-second-movie: linear-gradient(0deg, rgba(0, 78, 162, 0.8), rgba(0, 78, 162, 0.8));
	--background-second-movie-light: linear-gradient(0deg, rgba(0, 78, 162, 0.3), rgba(0, 78, 162, 0.3));
	--color-second-movie: rgba(0, 78, 162, 0.8);
}
html[lang="zh-Hans"] {
	--font-dm: "Noto Sans SC", sans-serif;
	--font-rubik: "Noto Sans SC", sans-serif;
}
html[lang="zh-TW"] {
	--font-dm: "Noto Sans TC", sans-serif;
	--font-rubik: "Noto Sans TC", sans-serif;
}
html[lang="ko-KR"] {
	--font-dm: "Noto Sans KR", sans-serif;
	--font-rubik: "Noto Sans KR", sans-serif;
}
body {
	background: var(--color-white);
	color: var(--color-black);
	font-family: var(--font-dm);
	overflow-wrap: break-word;
	font-weight: 300;
	font-size: 16px;
	line-height: 1.35;
}
html[lang="ko-KR"] body {
	font-weight: 400;
}
a {
	color: var(--color-blue2);
	caret-color: rgba(255, 255, 255, 0);
}
button {
	caret-color: rgba(255, 255, 255, 0);
}
a:focus-visible {
	outline-color: #025ecc;
	outline-offset: 1px;
	outline-style: auto;
}
a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	color: inherit;
	pointer-events: none;
}
button:focus-visible {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
textarea,
[type="search"],
[type="date"],
[type="date"],
[type="tel"],
[type="email"],
[type="number"],
[type="password"],
[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
	padding: 11px 19px;
	border: 1px solid var(--color-black);
	border-radius: 8px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 24px;
	background-color: var(--color-white);
	color: inherit;
}
[data-animation] {
	transition-duration: 1s;
	transition-delay: .2s;
	transition-property: opacity;
	opacity: 0;
}
[data-animation="after"] {
	opacity: 1;
}
[data-animation][data-animation-type="fadeInRight"] {
	transition-property: opacity, transform;
	transform: translateX(-20px);
}
[data-animation="after"][data-animation-type="fadeInRight"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInLeft"] {
	transition-property: opacity, transform;
	transform: translateX(20px);
}
[data-animation="after"][data-animation-type="fadeInLeft"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInUp"] {
	transition-property: opacity, transform;
	transform: translateY(20px);
}
[data-animation="after"][data-animation-type="fadeInUp"] {
	transform: translateY(0);
}
[data-animation][data-animation-type="fadeZoomOut"] {
	transition-property: opacity, transform;
	transform: scale(1.05);
}
[data-animation="after"][data-animation-type="fadeZoomOut"] {
	transform: scale(1);
}
::-webkit-input-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}
::placeholder {
	color: #ccc
}
.icon {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	min-width: 1em;
}
.icon::before {
	display: block;
}
.u-inner {
	max-width: 1112px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 40px;
	padding-right: 40px;
}
.u-inner-w1340 {
	max-width: 1340px;
}
.u-inner-w880 {
	max-width: 880px;
}
.u-inner-w996 {
	max-width: 996px;
}
.u-tbl {
	width: 100%;
	border-collapse: separate;
	position: relative;
}
.u-tbl > thead {}
.u-tbl > thead > tr {}
.u-tbl > thead > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	vertical-align: middle;
}
.u-tbl > tbody {}
.u-tbl > tbody > tr {}
.u-tbl > tbody > tr > th {
	padding: 15px 28px;
	border: none;
	white-space: nowrap;
	background: var(--color-blue-odakyu-ci);
	color: var(--color-white);
	font-family: var(--font-rubik);
	text-align: center;
	vertical-align: middle;
	font-weight: 500;
	box-sizing: border-box;
	height: 78px;
	border-bottom: 1px solid var(--color-line-light);
	border-left: 1px solid var(--color-line-light);
	border-right: 1px solid var(--color-line-light);
	letter-spacing: -0.03em;
	width: 301px;
}
.u-tbl > tbody > tr:first-child > th {
	border-top: 1px solid var(--color-line-light);
	border-top-left-radius: 12px;
}
.u-tbl > tbody > tr:first-child > th:first-child::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.1);
	pointer-events: none;
	z-index: 1;
}
.u-tbl > tbody > tr:last-child > th {
	border-bottom-left-radius: 12px;
}
.u-tbl > tbody > tr > td {
	padding: 15px 28px;
	border: none;
	background-color: var(--color-white-gray);
	box-sizing: border-box;
	vertical-align: middle;
	border-bottom: 1px solid var(--color-line-light);
	border-right: 1px solid var(--color-line-light);
}
.u-tbl > tbody > tr:first-child > td {
	border-top: 1px solid var(--color-line-light);
	border-top-right-radius: 12px;
}
.u-tbl > tbody > tr:last-child > td {
	border-bottom-right-radius: 12px;
}
.u-tblWrap {
	overflow: auto;
}
.u-tblWrap_caution {
	display: none;
}
.u-list {
	list-style: none;
	line-height: 1.6;
}
.u-list > li {
	margin-top: 5px;
	position: relative;
	z-index: 1;
	padding-left: 11px;
}
.u-list > li:first-child {
	margin-top: 0;
}
.u-list > li::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	width: 6px;
	height: 6px;
	background-color: var(--color-black);
	border-radius: 50%;
	left: 0;
	top: calc(0.8em - 3px);
}
.u-sect {
	padding-top: 10px;
	margin-top: -10px;
}
.u-selWrap {
	position: relative;
}
.u-selWrap::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	top: 50%;
	right: 20px;
	width: 9px;
	height: 9px;
	border: 1px solid currentColor;
	box-sizing: border-box;
	transform: translateY(-25%) translateY(-50%) rotate(45deg);
	border-left: none;
	border-top: none;
	pointer-events: none;
}
.u-selWrap::after {}
.u-selWrap > select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 54px;
	height: 56px;
	width: 100%;
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 25px;
	display: block;
	border: 1px solid var(--color-black);
	border-radius: 8px;
	padding-right: 40px;
	font-family: inherit;
	background-color: var(--color-white);
	color: inherit;
	font-size: 17px;
	font-weight: 500;
}
.u-selWrap > select::-ms-expand {
	display: none;
}
.u-chkLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-chkLbl > [type="checkbox"] {
	position: absolute;
	z-index: 2;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-chkLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	box-sizing: border-box;
	border: 1px solid #666;
	position: absolute;
	z-index: 0;
	top: calc(5px + 0.8em);
	transform: translateY(-50%);
	left: 0;
}
.u-chkLbl > [type="checkbox"]:focus-visible + .u-chkLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-chkLbl_icon::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 8px;
	box-sizing: border-box;
	border: 3px solid #666;
	border-top: none;
	border-right: none;
	transform: translate(-50%, -50%) rotate(-39deg);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
	margin-top: -2px;
}
.u-chkLbl_text {
	display: block;
	font-weight: normal;
}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-rdoLbl > [type="radio"] {
	position: absolute;
	z-index: 1;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-rdoLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	border: 1px solid #666;
	box-sizing: border-box;
	position: absolute;
	z-index: 0;
	top: calc(0.8em + 5px);
	left: 0;
	transform: translateY(-50%);
}
.u-rdoLbl_icon::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: #666;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-rdoLbl > [type="radio"]:focus-visible + .u-rdoLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl_text {
	display: block;
	font-weight: normal;
}
.u-hiddenSVG {
	height: 0;
	width: 0;
	overflow: hidden;
	position: absolute;
}
.u-spBlock {
	display: none;
}
.u-spInline {
	display: none;
}
.u-tabletBlock {
	display: none;
}
.u-tabletInline {
	display: none;
}
.u-spsInline {
	display: none;
}
.u-lowResInline {
	display: none;
}
.u-clamp {
	max-height: 3.6em;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
.u-switchImg > img:first-child {}
.u-switchImg > img:last-child {
	display: none;
}
.u-fitImg {
	position: relative;
	z-index: 1;
	padding-bottom: 100%;
	overflow: hidden;
}
.u-fitImg > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-editor {
	word-break: break-all;
	--margin-pt: 1.35em;
	--margin-pb: 1.35em;
	--margin-h2t: 56px;
	--margin-h2b: 24px;
}
.u-editor::after {
	content: "";
	display: block;
	clear: both;
}
.u-editor div {
	max-width: 100%;
}
.u-editor img {
	max-width: 100%;
	height: auto;
}
.u-editor iframe {
	max-width: 100%;
}
.u-editor video {
	max-width: 100%;
	height: auto;
}
.u-editor ul {
	padding-left: 1.5em;
}
.u-editor ol {
	padding-left: 1.5em;
}
.u-editor blockquote {
	background-color: #f6f6f6;
	padding: 30px;
	position: relative;
	z-index: 1;
}
.u-editor blockquote::before {
	content: "“";
	font-size: 50px;
	color: #999;
	position: absolute;
	left: 5px;
	top: 5px;
	line-height: 1;
}
.u-editor blockquote::after {
	content: "”";
	font-size: 50px;
	color: #999;
	position: absolute;
	right: 5px;
	bottom: -15px;
	line-height: 1;
}
.u-editor p {
	margin-top: var(--margin-pt);
	margin-bottom: var(--margin-pb);
}
.u-editor p:first-child {
	margin-top: 0;
}
.u-editor p:last-child {
	margin-bottom: 0;
}
.u-editor h2 {
	font-family: var(--font-rubik);
	font-weight: 500;
	font-size: 19px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	margin-top: var(--margin-h2t);
	margin-bottom: var(--margin-h2b);
}
.u-editor h2:first-child {
	margin-top: 0;
}
.u-editor h2:last-child {
	margin-bottom: 0;
}
.u-shadowImage {
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}
.u-shadowImage::before {
	content: "";
	box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.1);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	border-radius: inherit;
	pointer-events: none;
}
.u-shadowImage > img {
	display: block;
	width: 100%;
	height: auto;
}
.u-tag {
	border: 1px solid var(--color-black);
	border-radius: 40px;
	padding: 5px 11px;
	box-sizing: border-box;
	font-size: 12px;
	letter-spacing: -0.01em;
	font-weight: normal;
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.u-tag-black {
	background-color: var(--color-black);
	color: var(--color-white);
}
.u-tag-yellow {
	background-color: var(--color-yellow);
	color: var(--color-blue-deep);
	border-color: var(--color-yellow);
}
.u-tag-blue {
	background-color: var(--color-blue-odakyu-ci);
	border-color: var(--color-blue-odakyu-ci);
	color: var(--color-white);
}
.u-tag-sm {
	letter-spacing: -0.02em;
	padding: 3px 7px;
}
.u-shadowImageBorder {
	border-radius: 12px;
	overflow: hidden;
	position: relative;
}
.u-shadowImageBorder::before {
	content: "";
	box-shadow: inset 4px 4px 4px rgba(0, 0, 0, 0.1);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	border-radius: 12px;
	border: 5px solid var(--color-white);
	box-sizing: border-box;
}
.u-shadowImageBorder > img {
	width: 100%;
	height: auto;
	display: block;
}
.u-link {
	font-weight: 400;
	font-size: 13px;
	line-height: 1.1;
	letter-spacing: -0.02em;
	text-decoration-line: underline;
	display: flex;
	min-height: 36px;
	align-items: center;
	color: inherit;
}
.u-swiperPager {
	position: static;
	transform: none;
	display: flex;
	justify-content: center;
}
.u-swiperPager .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: var(--color-white);
	box-shadow: inset 1px 3px 2px rgba(0, 0, 0, 0.25);
	border-radius: 3px;
	opacity: 1;
	transition-duration: .3s;
	transition-property: width;
	margin: 0;
}
.u-swiperPager .swiper-pagination-bullet-active {
	width: 32px;
	background-color: var(--color-blue-odakyu-ci);
}
.u-swiperScrollbar {
	margin-top: 24px;
}
.swiper-horizontal > .u-swiperScrollbar {
	height: 2px;
	background-color: var(--color-line-light);
	border-radius: 1px;
	position: static;
	width: auto;
}
.u-swiperScrollbar .swiper-scrollbar-drag {
	background-color: var(--color-black);
	border-radius: 1px;
}
.u-head {
	padding-top: 19px;
	padding-bottom: 20px;
	border-top: 1px solid var(--color-line-light);
}
.u-caption {
	font-weight: 300;
	font-size: 13px;
	line-height: 1.25;
	letter-spacing: -0.01em;
}
.u-pdfIcon {
	background-color: var(--color-odakyu-blue);
	width: 64px;
	height: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	border-radius: 10px;
	line-height: 1;
	font-weight: 300;
	font-size: 14px;
}
.u-pdfIcon > .icon {
	display: block;
	font-size: 10px;
	margin-left: 3px;
}
.u-tbl-orange > tbody > tr > th {
	background-color: var(--color-orange);
}
.u-tbl-blueLight > tbody > tr > th {
	background-color: var(--color-blue2);
}
.u-cat {
	height: 19px;
	min-width: 50px;
	color: var(--color-white);
	line-height: 1;
	border-radius: 19px;
	font-size: 11px;
	letter-spacing: -0.01em;
	background-color: var(--color-black);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 3px 10px;
	box-sizing: border-box;
	font-weight: normal;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 100px;
	padding: 5px 19px;
	line-height: 1.2;
	background-color: var(--color-white-gray);
	border: 1px solid var(--color-black);
	justify-content: center;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
	color: inherit;
	min-height: 40px;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: -0.02em;
	column-gap: 10px;
}
.u-btn:active {}
.u-btn::before {
	display: none;
}
.u-btn::after {
	display: none;
}
.u-btn-cancel {
	background: #666;
	color: #fff;
}
.u-btn-yellow {
	border-color: var(--color-blue-deep);
	color: var(--color-blue-deep);
	background-color: var(--color-yellow);
}
.u-btn-lineBlue {
	border-color: var(--color-blue-deep);
	color: var(--color-blue-deep);
	background-color: rgba(255, 255, 255, 0);
}
.u-btn-white {
	border-color: var(--color-white);
	background-color: rgba(255, 255, 255, 0);
	color: var(--color-white);
}
.u-btn-trans {
	background-color: rgba(255, 255, 255, 0);
}
.u-btn-blue {
	background-color: var(--color-blue2);
	color: var(--color-white);
	border-color: var(--color-blue2);
}
.u-btn-black {
	background-color: var(--color-black);
	color: var(--color-white);
}
.u-btn-lg {
	min-height: 56px;
	font-size: 16px;
	font-weight: 600;
}
.u-btn-md {
	min-height: 46px;
	font-size: 16px;
}
.u-btn-sm {
	min-height: 36px;
	font-size: 13px;
	padding: 3px 15px;
}
.u-btn_blank {
	display: block;
	position: absolute;
	top: 50%;
	right: 18px;
	transform: translateY(-50%);
	font-size: 11px;
}
.u-btn-blank {
	padding-right: 35px;
	padding-left: 35px;
}
.u-btn > .icon-arrowLeftSimple {
	font-size: 10px;
}
.u-ttl {
	margin-bottom: 20px;
	font-family: var(--font-rubik);
	font-weight: 500;
	font-size: 28px;
	line-height: 1.1;
	letter-spacing: -0.03em;
}
.u-ttl-hr {
	padding-top: 19px;
	position: relative;
}
.u-ttl-hr::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-line-light);
}
.u-ttl-bar {
	padding-top: 19px;
	position: relative;
	padding-bottom: 19px;
}
.u-ttl-bar::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-line-light);
}
.u-ttl-bar::after {
	content: "";
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-line-light);
}
.u-ttlLg {
	font-family: var(--font-rubik);
	font-weight: 500;
	font-size: 36px;
	line-height: 1.1;
	letter-spacing: -0.03em;
	margin-bottom: 23px;
}
.u-ttlMd {
	letter-spacing: -0.01em;
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
}
.u-ttlMed {
	font-weight: 400;
	font-size: 20px;
	line-height: 1.3;
	letter-spacing: -0.01em;
}
.u-highlight {
	font-family: var(--font-rubik);
	font-weight: 500;
	font-size: 25px;
	line-height: 1;
	letter-spacing: -0.02em;
}
.u-highlight-hr {
	position: relative;
	padding-top: 20px;
}
.u-highlight-hr::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: var(--color-line-light);
}
.u-highlightSm {
	font-family: var(--font-rubik);
	font-weight: 500;
	font-size: 19px;
	line-height: 1.1;
	letter-spacing: -0.02em;
}
.u-textR {
	font-weight: 400;
}
.u-textSm {
	font-weight: 300;
	font-size: 14px;
	line-height: 1.35;
}
.u-tblHead {
	width: 100%;
	border-collapse: separate;
	position: relative;
	font-family: var(--font-rubik);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.03em;
	text-align: center;
}
.u-tblHead > thead {}
.u-tblHead > thead > tr {}
.u-tblHead > thead > tr > th {
	padding: 10px 28px;
	background-color: var(--color-blue-odakyu-ci);
	box-sizing: border-box;
	vertical-align: middle;
	border-bottom: 1px solid var(--color-line-light);
	border-right: 1px solid var(--color-line-light);
	border-top: 1px solid var(--color-line-light);
	color: var(--color-white);
	height: 48px;
	font-weight: inherit;
}
.u-tblHead-blueLight > thead > tr > th {
	background-color: var(--color-blue2);
}
.u-tblHead-red > thead > tr > th {
	background-color: var(--color-red);
}
.u-tblHead > thead > tr:first-child > th:first-child {
	border-top-left-radius: 12px;
}
.u-tblHead > thead > tr:first-child > th:first-child::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 12px;
	box-shadow: inset 3px 3px 3px rgba(0, 0, 0, 0.1);
	pointer-events: none;
	z-index: 1;
}
.u-tblHead > thead > tr:first-child > th:last-child {
	border-top-right-radius: 12px;
}
.u-tblHead > tbody > tr > td {
	padding: 15px 28px;
	background-color: var(--color-white-gray);
	box-sizing: border-box;
	vertical-align: middle;
	border-bottom: 1px solid var(--color-line-light);
	border-right: 1px solid var(--color-line-light);
	height: 78px;
}
.u-tblHead > tbody > tr:last-child > td:first-child {
	border-bottom-left-radius: 12px;
}
.u-tblHead > tbody > tr:last-child > td:last-child {
	border-bottom-right-radius: 12px;
}
.u-inner-w1230 {
	max-width: 1230px;
}
.u-inner-w1220 {
	max-width: 1220px;
}
.u-inner-w1088 {
	max-width: 1088px;
}
.u-inner-w1080 {
	max-width: 1080px;
}
.u-inner-w950 {
	max-width: 950px;
}
.u-tabBtn {
	text-decoration: none;
	color: inherit;
	display: flex;
	justify-content: center;
	min-height: 51px;
	height: 100%;
	align-items: center;
	position: relative;
	transition-duration: .3s;
	transition-property: background-color, color;
	padding: 0 10px;
	width: 100%;
	box-sizing: border-box;
}
.u-tabBtn[aria-selected="true"],
.u-tabBtn[aria-current="page"] {
	color: var(--color-blue-odakyu-ci);
}
.u-tabBtn::after {
	content: "";
	display: block;
	height: 4px;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: currentColor;
	opacity: 0;
}
.u-tabBtn[aria-selected="true"]::after,
.u-tabBtn[aria-current="page"]::after {
	opacity: 1;
}
.u-switchVideo > video:first-child {
	display: block;
}
.u-switchVideo > video:last-child {
	display: none;
}
@media screen and (max-width: 1199px) {
	.u-lowResInline {
		display: inline;
	}
	.u-lowResNone {
		display: none;
	}
	img {
		max-width: 100%;
		height: auto;
	}
}
@media screen and (min-width:1000px) and (hover:hover) {
	a:hover {
		text-decoration: none;
	}
	a:hover .u-link,
	.u-link:hover {
		text-decoration-line: none;
	}
	a:hover .u-btn,
	.u-btn:hover {
		background-color: var(--color-back);
	}
	.u-btn-black:hover {
		background-color: rgba(255, 255, 255, 0);
		color: var(--color-blka);
	}
	.u-btn-trans:hover {
		background-color: var(--color-white);
	}
	.u-btn-yellow:hover {
		background-color: var(--color-yellow-hover);
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
	a:hover .u-btn-white,
	.u-btn-white:hover {
		color: var(--color-blue-odakyu-ci);
	}
	.u-btn-blue:hover {
		color: var(--color-blue2);
		background-color: var(--color-white);
	}
	.u-tabBtn:hover {
		color: var(--color-blue-odakyu-ci);
	}
}
@media screen and (max-width: 999px) {
	body {
		font-size: 14px;
		line-height: 1.3;
	}
	a {}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	textarea,
	[type="search"],
	[type="date"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		width: 220px;
		padding-left: 20px;
		padding-right: 20px;
	}
	.u-tbl > tbody > tr > td {
		padding-left: 20px;
		padding-right: 20px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-tabletBlock {
		display: block;
	}
	.u-tabletInline {
		display: inline;
	}
	.u-tabletNone {
		display: none;
	}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-tag {}
	.u-tag-black {}
	.u-shadowImageBorder {}
	.u-shadowImageBorder::before {}
	.u-shadowImageBorder > img {}
	.u-link {}
	.u-swiperPager {}
	.u-swiperPager .swiper-pagination-bullet {}
	.u-swiperPager .swiper-pagination-bullet-active {}
	.u-head {}
	.u-caption {}
	.u-pdfIcon {}
	.u-pdfIcon > .icon {}
	.u-btn {}
	.u-btn:active {}
	.u-btn-lg {}
	.u-btn-md {}
	.u-btn_blank {}
	.u-btn-blank {}
	.u-ttl {
		font-size: 24px;
	}
	.u-ttl-hr {}
	.u-ttl-hr::before {}
	.u-ttl-bar {}
	.u-ttl-bar::before {}
	.u-ttl-bar::after {}
	.u-ttlMd {}
	.u-highlight {}
	.u-highlightSm {
		font-size: 18px;
	}
	.u-textSm {}
	.u-tblHead {}
	.u-tblHead > thead {}
	.u-tblHead > thead > tr {}
	.u-tblHead > thead > tr > th {
		padding: 10px 25px;
	}
	.u-tblHead-blueLight > thead > tr > th {}
	.u-tblHead > thead > tr:first-child > th:first-child {}
	.u-tblHead > thead > tr:first-child > th:first-child::before {}
	.u-tblHead > thead > tr:first-child > th:last-child {}
	.u-tblHead > tbody > tr > td {
		padding: 10px 25px;
		height: 60px;
	}
	.u-tblHead > tbody > tr:last-child > td:first-child {}
	.u-tblHead > tbody > tr:last-child > td:last-child {}
	.u-tabBtn {}
	.u-tabBtn::after {}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
	}
	a {}
	a[href^="tel:"] {}
	textarea,
	[type="search"],
	[type="date"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {
		font-size: 16px;
		padding: 8px 10px;
		border-radius: 5px;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {
		padding-left: 20px;
		padding-right: 20px;
	}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		width: auto;
		padding: 14px 14px;
		white-space: normal;
		height: 68px;
		font-size: 13px;
	}
	.u-tbl > tbody > tr > td {
		padding: 14px 14px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {
		margin: 0 5px 0 0;
		font-size: 13px;
	}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {
		padding-top: 54px;
		margin-top: -54px;
	}
	.u-selWrap {}
	.u-selWrap::before {
		right: 14px;
		width: 8px;
		height: 8px;
	}
	.u-selWrap::after {}
	.u-selWrap > select {
		font-size: 14px;
		height: 44px;
		line-height: 42px;
		padding-left: 18px;
		padding-right: 30px;
	}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-spBlock {
		display: block;
	}
	.u-spInline {
		display: inline;
	}
	.u-spNone {
		display: none;
	}
	.u-switchImg {}
	.u-switchImg > img:first-child {
		display: none;
	}
	.u-switchImg > img:last-child {
		display: block;
	}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-editor {
		--margin-h2t: 42px;
		--margin-h2b: 20px;
	}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-editor h2 {
		font-size: 15px;
		line-height: 1;
		letter-spacing: -0.03em;
	}
	.u-tag {
		padding: 3px 8px;
	}
	.u-tag-black {}
	.u-shadowImageBorder {}
	.u-shadowImageBorder::before {}
	.u-shadowImageBorder > img {}
	.u-link {}
	.u-swiperPager {}
	.u-swiperPager .swiper-pagination-bullet {}
	.u-swiperPager .swiper-pagination-bullet-active {}
	.u-head {
		padding-top: 15px;
		padding-bottom: 16px;
	}
	.u-caption {
		font-size: 12px;
		line-height: 1.2;
	}
	.u-pdfIcon {
		font-size: 12px;
		width: 54px;
		height: 18px;
	}
	.u-pdfIcon > .icon {}
	.u-shadowImage {
		border-radius: 12px;
	}
	.u-shadowImage::before {}
	.u-px0 {
		padding-left: 0;
		padding-right: 0;
	}
	.u-px27 {
		padding-left: 27px;
		padding-right: 27px;
	}
	.u-px35 {
		padding-left: 35px;
		padding-right: 35px;
	}
	.u-px40 {
		padding-left: 40px;
		padding-right: 40px;
	}
	.u-px42 {
		padding-left: 40px;
		padding-right: 40px;
	}
	.u-btn {
		min-height: 36px;
		font-size: 12px;
		padding-left: 15px;
		padding-right: 15px;
		column-gap: 8px;
		line-height: 1;
	}
	.u-btn-lg {
		min-height: 48px;
		font-size: 14px;
	}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-btn-white {}
	.u-btn_blank {
		right: 10px;
		font-size: 10px;
	}
	.u-btn-blank {
		padding-right: 24px;
		padding-left: 10px;
	}
	.u-btn-md {
		min-height: 40px;
		font-size: 14px;
	}
	.u-ttl {
		font-size: 22px;
		line-height: 1.1;
		letter-spacing: -0.03em;
		margin-bottom: 11px;
	}
	.u-ttl-hr {
		min-width: 320px;
		padding-top: 16px;
		padding-left: 16px;
		padding-right: 16px;
		width: 100vw;
		left: 50%;
		transform: translateX(-50%);
		box-sizing: border-box;
	}
	.u-ttl-hr::before {}
	.u-ttl-bar {
		min-width: 320px;
		padding-top: 16px;
		padding-bottom: 16px;
		padding-left: 16px;
		padding-right: 16px;
		width: 100vw;
		left: 50%;
		transform: translateX(-50%);
		box-sizing: border-box;
	}
	.u-ttl-bar::before {}
	.u-ttl-bar::after {}
	.u-ttlMd {
		font-style: normal;
		font-weight: 400;
		font-size: 14px;
		line-height: 1.2;
		letter-spacing: -0.03em;
	}
	.u-ttlMd-spLg {
		font-size: 16px;
	}
	.u-ttlLg {
		font-weight: 500;
		font-size: 28px;
		line-height: 1;
		letter-spacing: -0.03em;
		margin-bottom: 16px;
	}
	.u-highlight {
		font-weight: 500;
		font-size: 18px;
		line-height: 1;
		letter-spacing: -0.03em;
	}
	.u-highlight-hr {
		padding-top: 15px;
	}
	.u-highlight-hr::before {}
	.u-highlightSm {
		font-weight: 500;
		font-size: 15px;
		line-height: 1;
		letter-spacing: -0.03em;
	}
	.u-textSm {
		font-size: 13px;
		line-height: 1.3;
	}
	.u-swiperScrollbar {
		margin-top: 20px;
	}
	.u-tblHead {}
	.u-tblHead > thead {}
	.u-tblHead > thead > tr {}
	.u-tblHead > thead > tr > th {
		height: 51px;
		padding: 5px 10px;
	}
	.u-tblHead-blueLight > thead > tr > th {}
	.u-tblHead > thead > tr:first-child > th:first-child {
		border-top-left-radius: 8px;
	}
	.u-tblHead > thead > tr:first-child > th:first-child::before {
		border-radius: 8px;
	}
	.u-tblHead > thead > tr:first-child > th:last-child {
		border-top-right-radius: 8px;
	}
	.u-tblHead > tbody > tr > td {
		padding: 5px 10px;
		height: 60px;
	}
	.u-tblHead > tbody > tr:last-child > td:first-child {}
	.u-tblHead > tbody > tr:last-child > td:last-child {}
	.u-tabBtn {
		min-height: 47px;
		padding-left: 5px;
		padding-right: 5px;
	}
	.u-tabBtn::after {}
	.u-switchVideo > video:first-child {
		display: none;
	}
	.u-switchVideo > video:last-child {
		display: block;
	}
}
@media screen and (max-width:374px) {
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
}
