@charset "UTF-8";
@keyframes arrowRight {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(100%, 0, 0);
	}
	50% {
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowRightTop {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(100%, -100%, 0);
	}
	50% {
		transform: translate3d(100%, -100%, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(-100%, 100%, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(-100%, 100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowLeft {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(-100%, 0, 0);
	}
	50% {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowUp {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(0, -100%, 0);
	}
	50% {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowDown {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(0, 100%, 0);
	}
	50% {
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
:root {
	--color-text: #333;
	--color-black: #000;
	--color-white: #fff;
	--color-dark-blue: #04376F;
	--color-light-blue: #EBF6FF;
	--color-blue: #1A73F0;
	--color-red: #FF0000;
	--color-yellow: #E3F9B0;
	--color-line-gray: #ddd;
	--color-light-gray: #E5E5E5;
	--font-gothic: "IBM Plex Sans JP", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-mincho: "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-jetbranins: "JetBrains Mono", "IBM Plex Sans JP", 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
body {
	background: var(--color-white);
	color: var(--color-dark-blue);
	font-family: var(--font-gothic);
	font-size: 16px;
	line-height: 2;
	overflow-wrap: break-word;
	font-weight: 500;
}
a {
	color: var(--color-blue);
}
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 {
	caret-color: rgba(255, 255, 255, 0);
}
button:focus-visible {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
textarea,
[type="search"],
[type="date"],
[type="tel"],
[type="email"],
[type="number"],
[type="password"],
[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
	padding: 19px 19px;
	border: 1px solid var(--color-light-gray);
	border-radius: 5px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 24px;
	font-size: 18px;
}
[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: #B5B5B5;
}
:-ms-input-placeholder {
	color: #B5B5B5;
}
::placeholder {
	color: #B5B5B5
}
.icon {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	min-width: 1em;
}
.icon::before {
	display: block;
}
.u-inner {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 35px;
	padding-right: 35px;
}
.u-ttl {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 60px;
	font-weight: 600;
	color: var(--color-blue);
}
.u-ttl_en {
	display: block;
	font-weight: bold;
	font-family: var(--font-jetbranins);
	font-size: 60px;
	padding-left: 0.7em;
	line-height: 1.3;
	position: relative;
	word-wrap: break-word;
	word-break: break-all;
}
.u-ttl_en_text[data-animation] {
	opacity: 1;
}
.u-ttl_main {
	display: block;
	margin-top: 5px;
}
.u-tbl {
	width: 100%;
	border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}
.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 {
	border-top: 1px solid rgba(0, 0, 0, 0.10);
}
.u-tbl > tbody > tr:first-child {
	border-top: none;
}
.u-tbl > tbody > tr > th {
	padding: 38px 20px;
	padding-left: 0;
	text-align: left;
	width: 195px;
	vertical-align: top;
	font-size: 125%;
	font-weight: 600;
	box-sizing: border-box;
}
.u-tbl > tbody > tr > td {
	padding: 38px 20px;
	padding-right: 0;
}
.u-tblWrap {
	overflow: auto;
}
.u-tblWrap_caution {
	display: none;
}
.u-list {
	list-style: none;
}
.u-list > li {
	position: relative;
	z-index: 1;
	padding-left: 20px;
}
.u-list > li:first-child {}
.u-list > li::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	width: 6px;
	height: 6px;
	background-color: var(--color-blue);
	left: 0;
	top: 1em;
	transform: translateY(-50%);
}
.u-sect {
	padding-top: 86px;
	margin-top: -86px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	width: 100%;
	cursor: pointer;
	border-radius: 6px;
	padding: 10px 28px;
	line-height: 1.2;
	background: var(--color-blue);
	justify-content: flex-start;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
	color: var(--color-white);
	min-height: 60px;
	font-family: var(--font-jetbranins);
	font-weight: bold;
	font-size: 16px;
	border: 1px solid var(--color-blue);
	box-sizing: border-box;
}
.u-btn:active {}
.u-btn-cancel {
	background: #666;
	color: #fff;
}
.u-selWrap {
	position: relative;
}
.u-selWrap > .icon-arrowDown {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 32px;
	right: 30px;
	transform: translateY(-50%);
	pointer-events: none;
	font-size: 11px;
}
.u-selWrap::after {}
.u-selWrap select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 62px;
	height: 64px;
	width: 100%;
	border-right: 25px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	cursor: pointer;
	padding-left: 19px;
	display: block;
	border: 1px solid var(--color-light-gray);
	border-radius: 5px;
	padding-right: 55px;
	font-family: inherit;
	background-color: var(--color-white);
	color: inherit;
	font-size: 18px;
}
.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;
}
.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 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-arrow {
	overflow: hidden;
	width: 1em;
	height: 1em;
	display: block;
}
.u-arrow_item {
	display: block;
}
.u-arrow_item-rightTop {}
.u-border {
	background-image: linear-gradient(to top, currentColor 1px, rgba(255, 255, 255, 0) 1px);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 0% 1px;
	transition-duration: .3s;
	transition-property: background-size;
}
.u-ttlBg {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 21px;
	line-height: 1.8;
}
.u-ttlBg_main {
	background-color: var(--color-dark-blue);
	color: var(--color-white);
	padding: 0 .1em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.u-ttlBgSmall {
	line-height: 1.5;
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 20px;
}
.u-ttlBgSmall_main {
	background-color: var(--color-dark-blue);
	color: var(--color-white);
	padding: 0 0.1em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.u-ttlBgLarge {
	line-height: 1.3;
	font-size: 58px;
	font-weight: 600;
	margin-bottom: 98px;
	display: flex;
}
.u-ttlBgLarge_main {
	color: var(--color-dark-blue);
	background-color: var(--color-white);
	display: block;
	padding-top: 0.1em;
	padding-right: 0.15em;
	padding-left: 0.2em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.u-ttlBgMini {}
.u-ttlBgMini_main {}
.u-ttlSmall {
	font-size: 25px;
	line-height: 1.5;
	font-family: var(--font-jetbranins);
	color: var(--color-blue);
	margin-bottom: 25px;
	font-weight: 500;
}
.u-btn-arrow {
	padding-right: 55px;
}
.u-btn_arrow {
	font-size: 11px;
	width: 28px;
	height: 28px;
	background-color: var(--color-white);
	border-radius: 6px;
	color: var(--color-blue);
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 16px;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
}
.u-btn_arrow-left {
	left: 16px;
}
.u-btn-whiteBorder {
	background-color: rgba(255, 255, 255, 0);
	border-color: var(--color-white);
}
.u-pointTxt {
	background-color: var(--color-yellow);
	color: var(--color-dark-blue);
	padding: 0 .1em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.u-dotTbl {
	width: 100%;
}
.u-dotTbl > tbody {}
.u-dotTbl > tbody > tr {}
.u-dotTbl > tbody > tr > th {
	white-space: nowrap;
	font-size: 38px;
	color: rgba(26, 115, 240, 0.15);
	font-family: var(--font-jetbranins);
	font-weight: bold;
	width: 194px;
	box-sizing: border-box;
	text-align: left;
	vertical-align: top;
	padding: 24px 10px;
	padding-left: 0;
	position: relative;
	line-height: 38px;
	letter-spacing: -0.05em;
}
.u-dotTbl > tbody > tr > th::after {
	content: "";
	display: block;
	width: 2px;
	height: 100%;
	position: absolute;
	top: 35px;
	left: 100%;
	background-color: var(--color-blue);
}
.u-dotTbl > tbody > tr:last-child > th::after {
	display: none;
}
.u-dotTbl > tbody > tr > td {
	padding: 24px 40px;
	vertical-align: top;
}
.u-dotTblCircle {
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: var(--color-blue);
	border-radius: 50%;
	left: 100%;
	top: 35px;
	transform: translateX(-50%);
	margin-left: 1px;
}
.u-btn-blue {
	border-color: var(--color-blue);
	background-color: rgba(255, 255, 255, 0);
	color: var(--color-blue);
	min-height: 46px;
	padding-left: 20px;
	font-weight: bold;
}
.u-arrow-right {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	font-size: 10px;
}
.u-ttlBg_main-white {
	color: var(--color-dark-blue);
	background-color: var(--color-white);
}
.u-ttlBgSmall_main-white {
	color: var(--color-dark-blue);
	background-color: var(--color-white);
}
.u-cat {
	color: var(--color-white);
	background-color: var(--color-blue);
	line-height: 22px;
	padding: 0px 3px;
	font-size: 14px;
	font-weight: 600;
	box-sizing: border-box;
	text-decoration: none;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-cat-large {
	font-size: 16px;
}
.u-update {
	color: rgba(4, 55, 111, 0.50);
	font-family: var(--font-jetbranins);
	line-height: 22px;
	letter-spacing: 0.04em;
}
.u-update > time {
	display: block;
}
.u-editor h2 {
	font-size: 36px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 40px;
	margin-top: 40px;
}
.u-editor h3 {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.5;
	margin-top: 30px;
	margin-bottom: 30px;
}
.u-editor h3 > span {
	background-color: var(--color-light-blue);
	padding-left: 0.1em;
	padding-right: 0.1em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.u-editor h5 {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5;
	margin-bottom: 20px;
	margin-top: 20px;
}
.u-editor h4 {
	color: var(--color-blue);
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	position: relative;
	padding-left: 20px;
	margin-bottom: 30px;
	margin-top: 30px;
}
.u-editor h4::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background-color: currentColor;
	position: absolute;
	top: 0.75em;
	left: 0;
	transform: translateY(-50%);
}
.u-editor ol {
	font-weight: normal;
	counter-reset: number;
	list-style: none;
	margin-top: 30px;
	margin-bottom: 30px;
}
.u-editor ol > li {
	counter-increment: number;
	position: relative;
	padding-left: 28px;
}
.u-editor ol > li::before {
	content: counter(number)".";
	display: block;
	font-family: var(--font-jetbranins);
	color: var(--color-blue);
	position: absolute;
	top: 1em;
	transform: translateY(-50%);
	left: 0;
}
.u-editor ol > li:nth-child(n+2) {
	margin-top: 8px;
}
.u-editor ol > li:nth-child(n+10) {
	padding-left: 36px;
}
.u-editor ul {
	list-style: none;
	font-weight: normal;
}
.u-editor ul > li {
	position: relative;
	padding-left: 25px;
}
.u-editor ul > li::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background-color: var(--color-blue);
	position: absolute;
	top: 1em;
	transform: translateY(-50%);
	left: 0;
}
.u-editor ul > li:nth-child(n+2) {
	margin-top: 8px;
}
.u-editor table {
	width: 100%;
	font-weight: normal;
	line-height: 1.5;
	border-top: 1px solid var(--color-line-gray);
	border-bottom: 1px solid var(--color-line-gray);
}
.u-editor table > thead {
	border-bottom: none;
}
.u-editor table > thead > tr {}
.u-editor table > thead > tr > th {
	text-align: center;
	width: 33%;
	background-color: var(--color-light-blue);
	padding: 18px;
	border-left: 1px solid var(--color-line-gray);
	border-right: 1px solid var(--color-line-gray);
	border-top: none;
	border-bottom: none;
}
.u-editor table > thead > tr > th:first-child {}
.u-editor table > thead > tr > td {}
.u-editor table > tbody {}
.u-editor table > tbody > tr {
	border-top: 1px solid var(--color-line-gray);
}
.u-editor table > tbody > tr > td {
	text-align: left;
	padding: 20px;
	border: none;
	border-left: 1px solid var(--color-line-gray);
	border-right: 1px solid var(--color-light-gray);
}
.u-editor table > tbody > tr > td:first-child {}
.u-editor p {
	margin-top: 15px;
	margin-bottom: 15px;
}
.u-editor p:first-child {
	margin-top: 0;
}
.u-editor p:last-child {
	margin-bottom: 0;
}
.u-editor p > a {}
.u-cat[data-slug="upcoming"] {
	background-color: var(--color-dark-blue);
}
.u-cat[data-slug="ongoing"] {
	background-color: var(--color-yellow);
	color: var(--color-dark-blue);
}
.u-cat[data-slug="closed"] {
	background-color: rgba(0, 0, 0, 0.20);
	color: var(--color-dark-blue);
}
.u-cat[data-slug="ended"] {
	background-color: rgba(0, 0, 0, 0.20);
}
.u-spsNone {
	display: block;
}
.u-ttlDot {
	font-size: 16px;
	font-weight: 600;
	color: var(--color-blue);
	line-height: 1.5;
	position: relative;
	padding-left: 20px;
}
.u-ttlDot::before {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background-color: var(--color-blue);
	position: absolute;
	top: 0.75em;
	left: 0;
	transform: translateY(-50%);
}
.u-editor .wp-element-caption {
	font-size: 14px;
	line-height: 1.75;
	margin-bottom: 0;
	margin-top: 15px;
}
.u-editor .wp-block-table {
	margin-top: 30px;
	margin-bottom: 30px;
}
.u-editor .wp-block-columns {
	margin: 40px 0;
}
.u-ttlBg_main-blue {
	background-color: var(--color-blue);
}
.u-oList {
	list-style: none;
	counter-reset: number;
}
.u-oList > li {
	counter-increment: number;
	position: relative;
	padding-left: 29px;
}
.u-oList > li::before {
	content: counter(number)".";
	display: block;
	color: var(--color-blue);
	position: absolute;
	top: 0;
	left: 0;
}
.u-oList > li:nth-child(n+2) {
	margin-top: 8px;
}
.u-oList > li:nth-child(n+10) {
	padding-left: 36px;
}
.u-tblBlue {
	width: 100%;
	border: 1px solid var(--color-light-gray);
	line-height: 1.5;
}
.u-tblBlue > thead {}
.u-tblBlue > thead > tr {}
.u-tblBlue > thead > tr > th {
	background-color: #005BAB;
	color: var(--color-white);
	font-weight: bold;
	padding: 20px 10px;
	border-left: 1px solid var(--color-light-gray);
}
.u-tblBlue > thead > tr > th:first-child {
	border-left: none;
}
.u-tblBlue > tbody {}
.u-tblBlue > tbody > tr {
	border-bottom: 1px solid var(--color-light-gray);
}
.u-tblBlue > tbody > tr:last-child {
	border-bottom: none;
}
.u-tblBlue > tbody > tr > th {
	font-weight: bold;
	text-align: left;
	padding: 20px 15px;
	vertical-align: middle;
	box-sizing: border-box;
	width: 400px;
	background-color: var(--color-light-blue);
}
.u-tblBlue > tbody > tr > td {
	text-align: left;
	vertical-align: middle;
	padding: 20px 15px;
	box-sizing: border-box;
	border-left: 1px solid var(--color-light-gray);
}
.u-ttl_en_arrow {
	text-indent: 0;
	position: absolute;
	top: 0.65em;
	left: 0.02em;
	transform: translateY(-50%) scale(0.56);
	transform-origin: left center;
}
.u-btn-border {
	background-color: var(--color-white);
	color: var(--color-blue);
}
.u-btn_arrow-white {
	background-color: var(--color-blue);
	color: var(--color-white);
}
.u-middleResInline {
	display: none;
}
.u-highResInline {
	display: none;
}
.u-ttl_en-large {
	font-size: 90px;
}
.u-swiperPager {
	position: static;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-top: 14px;
}
.u-swiperPager .swiper-pagination-bullet {
	display: block;
	width: 6px;
	height: 6px;
	border: 6px solid rgba(255, 255, 255, 0);
	box-sizing: content-box;
	background-clip: content-box;
	background-color: var(--color-white);
	border-radius: 50%;
	transition-duration: .3s;
	transition-property: background-color, color;
	opacity: 1;
	caret-color: rgba(255, 255, 255, 0);
	box-shadow: none;
}
.swiper .u-swiperPager .swiper-pagination-bullet {
	margin: 0;
}
.u-swiperPager .swiper-pagination-bullet-active {
	background-color: var(--color-blue);
}
.u-btn-white {
	background-color: var(--color-white);
	color: var(--color-blue);
}
.u-editor h2.entry_headline {
	font-size: 52px;
	line-height: 1.5;
	color: var(--color-blue);
	position: relative;
	padding-left: 35px;
	margin-bottom: 58px;
}
.u-editor h2.entry_headline > .icon {
	position: absolute;
	top: 0.75em;
	left: 0;
	transform-origin: left center;
	transform: translateY(-50%) scale(0.6);
}
.u-editor h3.entry_subhead {
	font-size: 26px;
	font-weight: 600;
	color: var(--color-white);
	margin-bottom: 23px;
}
.u-editor h3.entry_subhead .entry_subhead_inner {
	background-color: var(--color-dark-blue);
	padding: 0 0.1em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}
.u-ttlBg_main-light {
	background-color: var(--color-light-blue);
	color: var(--color-dark-blue);
}
@media screen and (max-width:1599px) {
	.u-highResInline {
		display: inline;
	}
}
@media screen and (max-width:1399px) {
	.u-middleResInline {
		display: inline;
	}
}
@media screen and (max-width:1364px) {
	.u-lowResInline {
		display: inline;
	}
	.u-lowResNone {
		display: none;
	}
	img {
		max-width: 100%;
		height: auto;
	}
	.u-ttl_en {
		font-size: 55px;
	}
	.u-ttl_en-large {
		font-size: 80px;
	}
}
@media screen and (min-width:1000px) and (max-height:751px) {
	.u-ttl_en-large {
		font-size: 75px;
	}
}
@media screen and (min-width: 1000px) and (hover: hover) {
	.u-swiperPager .swiper-pagination-bullet:hover {
		background-color: var(--color-blue);
	}
	a.u-cat:hover,
	a:hover > u-cat {
		opacity: 0.7;
	}
	.u-editor > p > a:hover {}
	.u-btn:hover .u-btn_arrow {
		background-color: var(--color-blue);
		color: var(--color-white);
	}
	.u-btn:hover .u-btn_arrow-white {}
	a:hover {
		text-decoration: none;
	}
	.u-btn:hover {
		background-color: var(--color-white);
		color: var(--color-blue);
	}
	.u-btn-white:hover {
		background-color: var(--color-blue);
		color: var(--color-white);
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
	button:hover .u-arrow_item,
	a:hover .u-arrow_item {
		display: block;
		animation-name: arrowRight;
		animation-duration: .6s;
		animation-fill-mode: backwards;
		animation-iteration-count: 1;
	}
	button:hover .u-arrow_item-up,
	a:hover .u-arrow_item-up {
		animation-name: arrowUp;
	}
	button:hover .u-arrow_item-down,
	a:hover .u-arrow_item-down {
		animation-name: arrowDown;
	}
	button:hover .u-arrow_item-rightTop,
	a:hover .u-arrow_item-rightTop {
		animation-name: arrowRightTop;
	}
	button:hover .u-arrow_item-left,
	a:hover .u-arrow_item-left {
		animation-name: arrowLeft;
	}
	a:hover .u-border {
		background-position: left bottom;
		background-size: 100% 1px;
	}
	.u-btn-whiteBorder:hover {}
	.u-btn-blue:hover {
		background-color: var(--color-blue);
		color: var(--color-white);
	}
	.u-btn-border:hover {
		background-color: var(--color-blue);
		color: var(--color-white);
	}
	.u-btn:hover .u-btn_arrow-white {
		background-color: var(--color-white);
		color: var(--color-blue);
	}
}
@media screen and (max-width:999px) {
	body {}
	a {}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	textarea,
	[type="search"],
	[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 {
		padding-left: 20px;
		padding-right: 20px;
	}
	.u-ttl {
		margin-bottom: 40px;
		font-size: 15px;
	}
	.u-ttl_en {
		font-size: 50px;
	}
	.u-ttl_en-large {
		font-size: 70px;
	}
	.u-ttl_main {}
	.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 {
		font-size: 110%;
		width: 175px;
		padding: 20px;
		padding-left: 0;
	}
	.u-tbl > tbody > tr > td {
		padding: 20px;
		padding-right: 0;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {
		padding-top: 76px;
		margin-top: -76px;
	}
	.u-btn {}
	.u-btn:active {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap > .icon-arrowDown {}
	.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 blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-arrow {}
	.u-arrow_item {}
	.u-arrow_item-rightTop {}
	.u-border {}
	.u-ttlBg {
		font-size: 24px;
		margin-bottom: 15px;
	}
	.u-ttlBg_main {}
	.u-ttlBgSmall {}
	.u-ttlBgSmall_main {}
	.u-ttlBgLarge {
		font-size: 46px;
		margin-bottom: 60px;
	}
	.u-ttlBgLarge_main {}
	.u-ttlBgMini {}
	.u-ttlBgMini_main {}
	.u-ttlSmall {
		font-size: 21px;
		margin-bottom: 15px;
	}
	.u-btn-arrow {}
	.u-dotTbl {}
	.u-dotTbl > tbody {}
	.u-dotTbl > tbody > tr {}
	.u-dotTbl > tbody > tr > th {
		font-size: 32px;
		line-height: 32px;
		width: 165px;
	}
	.u-dotTbl > tbody > tr > th::after {}
	.u-dotTbl > tbody > tr > td {}
	.u-dotTblCircle {}
	.u-btn-blue {}
	.u-arrow-right {}
	.u-ttlBg_main-white {}
	.u-cat {}
	.u-update {}
	.u-update > time {}
	.u-editor h2 {
		font-size: 28px;
	}
	.u-editor h3 {
		font-size: 24px;
	}
	.u-editor h3 > span {}
	.u-editor h5 {
		font-size: 18px;
	}
	.u-editor h4 {
		font-size: 21px;
	}
	.u-editor h4::before {}
	.u-editor ol {}
	.u-editor ol > li {}
	.u-editor ol > li::before {}
	.u-editor ol > li:nth-child(n+2) {}
	.u-editor ol > li:nth-child(n+10) {}
	.u-editor ul {}
	.u-editor ul > li {}
	.u-editor ul > li::before {}
	.u-editor ul > li:nth-child(n+2) {}
	.u-editor table {}
	.u-editor table > thead {}
	.u-editor table > thead > tr {}
	.u-editor table > thead > tr > th {}
	.u-editor table > thead > tr > th:first-child {}
	.u-editor table > thead > tr > td {}
	.u-editor table > tbody {}
	.u-editor table > tbody > tr {}
	.u-editor table > tbody > tr > td {}
	.u-editor table > tbody > tr > td:first-child {}
	.u-editor p {}
	.u-editor p > a {}
	.u-ttlDot {}
	.u-oList {}
	.u-oList > li {}
	.u-oList > li::before {}
	.u-tblBlue {
		font-size: 14px;
	}
	.u-tblBlue > thead {}
	.u-tblBlue > thead > tr {}
	.u-tblBlue > thead > tr > th {}
	.u-tblBlue > tbody {}
	.u-tblBlue > tbody > tr {}
	.u-tblBlue > tbody > tr > th {
		width: 280px;
	}
	.u-tblBlue > tbody > tr > td {}
	.u-ttl_en_arrow {}
	.u-editor h2.entry_headline {
		font-size: 42px;
		margin-bottom: 35px;
	}
	.u-editor h2.entry_headline > .icon {}
	.u-editor h3.entry_subhead {
		font-size: 22px;
		margin-bottom: 20px;
	}
	.u-editor h3.entry_subhead .entry_subhead_inner {}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
	}
	a {}
	a[href^="tel:"] {}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {
		font-size: 16px;
		padding: 12px 15px;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 14px;
		margin-bottom: 25px;
	}
	.u-ttl_en {
		font-size: 36px;
	}
	.u-ttl_en-large {
		font-size: 40px;
	}
	.u-ttl_main {}
	.u-tbl {
		display: block;
	}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {
		display: block;
	}
	.u-tbl > tbody > tr {
		display: block;
		margin-bottom: 15px;
		padding-top: 15px;
	}
	.u-tbl > tbody > tr > th {
		width: auto;
		padding: 0;
		display: block;
		margin-bottom: 10px;
	}
	.u-tbl > tbody > tr > td {
		padding: 0;
		display: block;
	}
	.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 {}
	.u-btn {}
	.u-btn:active {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap > .icon-arrowDown {
		top: 25px;
		right: 15px;
		font-size: 10px;
	}
	.u-selWrap::after {}
	.u-selWrap select {
		font-size: 16px;
		height: 50px;
		line-height: 48px;
		padding-left: 15px;
		padding-right: 37px;
	}
	.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 {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-arrow {}
	.u-arrow_item {}
	.u-arrow_item-rightTop {}
	.u-border {}
	.u-ttlBg {
		font-size: 20px;
		margin-bottom: 10px;
	}
	.u-ttlBg_main {}
	.u-ttlBgSmall {
		font-size: 18px;
	}
	.u-ttlBgSmall_main {}
	.u-ttlBgLarge {
		font-size: 28px;
		margin-bottom: 25px;
	}
	.u-ttlBgLarge_main {}
	.u-ttlBgMini {}
	.u-ttlBgMini_main {}
	.u-ttlSmall {
		font-size: 17px;
		margin-bottom: 10px;
	}
	.u-btn-arrow {}
	.u-dotTbl {
		line-height: 1.8;
		font-size: 15px;
	}
	.u-dotTbl > tbody {}
	.u-dotTbl > tbody > tr {}
	.u-dotTbl > tbody > tr > th {
		font-size: 18px;
		line-height: 24px;
		width: 90px;
		padding: 12px 10px;
		padding-left: 0;
	}
	.u-dotTbl > tbody > tr > th::after {
		top: 25px;
		width: 1px;
	}
	.u-dotTbl > tbody > tr > td {
		padding: 12px 15px;
		padding-right: 0;
	}
	.u-dotTblCircle {
		top: 20px;
		width: 8px;
		height: 8px;
	}
	.u-btn-blue {}
	.u-arrow-right {}
	.u-ttlBg_main-white {}
	.u-cat {
		font-size: 12px;
		line-height: 17px;
		padding-top: 1px;
	}
	.u-update {
		font-size: 14px;
	}
	.u-update > time {}
	.u-editor h2 {
		margin-top: 30px;
		margin-bottom: 30px;
		font-size: 22px;
	}
	.u-editor h3 {
		font-size: 20px;
	}
	.u-editor h3 > span {}
	.u-editor h5 {
		font-size: 17px;
	}
	.u-editor h4 {
		font-size: 18px;
		padding-left: 16px;
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.u-editor h4::before {
		margin-top: -1px;
	}
	.u-editor ol {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.u-editor ol > li {}
	.u-editor ol > li::before {}
	.u-editor ol > li:nth-child(n+2) {}
	.u-editor ol > li:nth-child(n+10) {}
	.u-editor ul {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.u-editor ul > li {}
	.u-editor ul > li::before {}
	.u-editor ul > li:nth-child(n+2) {}
	.u-editor table {
		margin-top: 25px;
		margin-bottom: 25px;
	}
	.u-editor table > thead {}
	.u-editor table > thead > tr {}
	.u-editor table > thead > tr > th {
		padding: 10px;
		text-align: left;
	}
	.u-editor table > thead > tr > th:first-child {}
	.u-editor table > thead > tr > td {}
	.u-editor table > tbody {}
	.u-editor table > tbody > tr {}
	.u-editor table > tbody > tr > td {
		padding: 10px;
	}
	.u-editor table > tbody > tr > td:first-child {}
	.u-editor p {}
	.u-editor p > a {}
	.u-ttlDot {}
	.u-oList {}
	.u-oList > li {}
	.u-oList > li::before {}
	.u-tblBlue {}
	.u-tblBlue > thead {}
	.u-tblBlue > thead > tr {}
	.u-tblBlue > thead > tr > th {
		padding: 15px 10px;
	}
	.u-tblBlue > tbody {}
	.u-tblBlue > tbody > tr {}
	.u-tblBlue > tbody > tr > th {
		padding: 15px;
		width: 160px;
	}
	.u-tblBlue > tbody > tr > td {}
	.u-ttl_en_arrow {}
	.u-editor h2.entry_headline {
		font-size: 26px;
		padding-left: 23px;
		margin-bottom: 18px;
	}
	.u-editor h2.entry_headline > .icon {}
	.u-editor h3.entry_subhead {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.u-editor h3.entry_subhead .entry_subhead_inner {}
}
@media screen and (max-width:374px) {
	body {
		font-size: 15px;
	}
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
	.u-spsNone {
		display: none;
	}
	.u-ttlBgLarge {
		font-size: 23px;
	}
	.u-ttl_en {
		font-size: 32px;
	}
	.u-ttlBg {
		font-size: 17px;
	}
}
