@charset "UTF-8";
:root {
	--color-text: #2d3338;
	--color-white: #fff;
	--color-off-white: #f5f5f5;
	--color-red: #ec7475;
	--color-blue: #6bb9e3;
	--color-grayish-blue: #a6b4bd;
	--color-green: #58c5a1;
	--color-gray: #dddddd;
	--color-bluish-gray: #a4afb9;
	--color-light-gray: #f5f5f5;
	--font-gothic: 'Noto 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-inter: "Inter", 'Noto 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-text);
	font-family: var(--font-gothic);
	font-size: 16px;
	line-height: 1.875;
	overflow-wrap: break-word;
}
a {
	color: inherit;
}
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="tel"],
[type="email"],
[type="number"],
[type="password"],
[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
	padding: 8px 15px;
	border: 1px solid #aaa;
	border-radius: 4px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 24px;
}
[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: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 25px;
	padding-right: 26px;
}
.u-ttl {
	font-size: inherit;
	line-height: 1.4;
	margin-bottom: 32px;
	font-size: 28px;
	font-weight: bold;
	position: relative;
	padding-left: 22px;
}
.u-ttl::before {
	content: "";
	display: block;
	width: 4px;
	height: 33px;
	background-image: linear-gradient(to top, rgb(111, 221, 227) 0%, rgb(201, 245, 167) 52%, rgb(237, 117, 114) 100%);
	border-radius: 2px;
	position: absolute;
	top: 0.7em;
	left: 0;
	transform: translateY(-50%);
}
.u-ttl::after {
	content: "";
}
.u-tbl {
	width: 100%;
	border-collapse: separate;
	font-weight: 500;
}
.u-tbl > thead {}
.u-tbl > thead > tr {}
.u-tbl > thead > tr > th {
	padding: 18px 10px;
	border: none;
	white-space: nowrap;
	font-weight: normal;
	vertical-align: middle;
}
.u-tbl > thead > tr > th:nth-child(1) {
	background-image: linear-gradient(to right, #f8c8c7, #f7d9cb);
	border-top-left-radius: 10px;
}
.u-tbl > thead > tr > th:nth-child(2) {
	background-image: linear-gradient(to right, #f7d9cb, #e5fcde);
}
.u-tbl > thead > tr > th:nth-child(3) {
	background-image: linear-gradient(to right, #e5fcde, #d1f7ed);
}
.u-tbl > thead > tr > th:nth-child(4) {
	background-image: linear-gradient(to right, #d1f7ed, #c6f1f4);
	border-top-right-radius: 10px;
}
.u-tbl > thead > tr > th:last-child {
	border-right: none;
}
.u-tbl > tbody {}
.u-tbl > tbody > tr {}
.u-tbl > tbody > tr > th {
	padding: 22px 15px;
	border: none;
	white-space: nowrap;
	font-weight: inherit;
	text-align: left;
	width: 140px;
	vertical-align: middle;
	border-bottom: 1px solid var(--color-gray);
	border-left: 1px solid var(--color-gray);
	border-right: 1px solid var(--color-gray);
}
.u-tbl > tbody > tr > td {
	padding: 22px 15px;
	border: none;
	vertical-align: middle;
	border-bottom: 1px solid var(--color-gray);
	border-right: 1px solid var(--color-gray);
	text-align: center;
}
.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-text);
	border-radius: 50%;
	left: 0;
	top: calc(0.8em - 3px);
}
.u-sect {
	padding-top: 108px;
	margin-top: -108px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 50px;
	padding: 10px 10px;
	line-height: 1.2;
	background-color: var(--color-text);
	border: 1px solid var(--color-gray);
	justify-content: center;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color, box-shadow;
	position: relative;
	z-index: 1;
	min-height: 90px;
	color: var(--color-white);
	font-weight: normal;
	font-family: var(--font-inter);
	padding-left: 78px;
	padding-right: 51px;
	box-shadow: 7px 7px 10px rgba(0, 0, 0, .1);
	font-weight: bold;
}
.u-btn:active {}
.u-btn::after {
	content: "";
}
.u-btn-cancel {
	background: #666;
	color: #fff;
}
.u-selWrap {
	position: relative;
}
.u-selWrap::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	top: 50%;
	right: 15px;
	border: 2px solid currentColor;
	width: 9px;
	height: 9px;
	transform: translateY(-50%) rotate(45deg);
	pointer-events: none;
	box-sizing: border-box;
	border-left: none;
	border-top: none;
}
.u-selWrap::after {}
.u-selWrap > select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 45px;
	height: 47px;
	width: 100%;
	border-right: 25px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 17px;
	display: block;
	border: 1px solid var(--color-gray);
	border-radius: 8px;
	padding-right: 33px;
	font-family: inherit;
	background-color: var(--color-white);
	color: inherit;
	box-shadow: inset 0 4px 6px rgba(0, 0, 0, .07);
}
.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.75em;
	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-ttlVertical {
	font-size: 18px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	line-height: 1;
}
.u-ttlVertical_en {
	font-size: 56px;
	font-weight: 600;
	font-family: var(--font-inter);
	text-transform: uppercase;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	display: block;
	line-height: 1;
	white-space: nowrap;
	letter-spacing: 0.045em;
	margin-bottom: 38px;
	overflow: hidden;
}
.u-ttlVertical_en:last-child {
	margin-bottom: 0;
}
.u-ttlVertical_main {
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	display: block;
	line-height: 1;
	white-space: nowrap;
	display: block;
	color: rgba(45, 51, 56, 0.50);
	letter-spacing: 0.05em;
	transform: translateX(-10%);
	overflow: hidden;
}
.u-link {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	font-family: var(--font-inter);
	font-weight: normal;
}
.u-link_icon {
	background-image: url(/assets/img/common/bg-circle-grad@2x.png);
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: 100% 100%;
	background-repeat: repeat;
	background-position: 0 0;
	margin-right: 16px;
	transition-duration: .3s;
	transition-property: transform;
}
.u-link_icon::before {
	content: "";
	background-image: url(/assets/img/common/icn-arrow.svg);
	display: block;
	width: 14px;
	height: 14px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}
.u-link_text {
	display: block;
	line-height: 1.3;
}
.u-hoverText {
	background-image: linear-gradient(to top, currentColor 1px, rgba(255, 255, 255, 0) 1px);
	background-position: left bottom;
	background-size: 100% 1px;
	background-repeat: no-repeat;
	transition-duration: .3s;
	transition-property: background-size;
}
.u-rollText {
	display: block;
	position: relative;
	overflow: hidden;
}
.u-rollText_main {
	display: block;
	transition-duration: .3s;
	transition-property: transform, opacity;
}
.u-rollText_sub {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translateY(70%);
	transition-duration: .3s;
	transition-property: transform, opacity;
	opacity: 0;
}
.u-ttlVertical_en_inner {
	display: block;
}
.u-ttlVertical_main_inner {
	display: block;
}
.u-box {
	background-color: var(--color-white);
	border: 1px solid var(--color-gray);
	border-radius: 20px;
	box-shadow: 7px 7px 10px rgba(0, 0, 0, .1);
	transition-duration: .3s;
	transition-property: box-shadow;
}
.u-ttlGrad {
	font-size: 20px;
	font-weight: 600;
	font-family: var(--font-inter);
	position: relative;
	line-height: 32px;
	padding-left: 29px;
	margin-bottom: 20px;
	overflow: hidden;
}
.u-ttlGrad::before {
	content: "";
	background-image: url(/assets/img/common/bg-circle-grad@2x.png);
	display: block;
	width: 16px;
	height: 16px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: 0 0;
	position: absolute;
	top: 16px;
	left: 0;
	transform: translateY(-50%);
}
.u-ttlGrad[data-animation] {
	opacity: 1;
}
.u-ttlGrad[data-animation]::before {
	opacity: 0;
	transition-duration: 1s;
	transition-property: opacity;
	transition-delay: .15s;
}
.u-ttlGrad[data-animation="after"]::before {
	opacity: 1;
}
.u-ttlGrad_text {}
.u-btn_icon {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
}
.u-btn_icon::before {
	content: "";
	background-image: url(/assets/img/common/bg-circle-grad@2x.png);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition-duration: .3s;
	transition-property: transform;
}
.u-btn_icon::after {
	content: "";
	background-image: url(/assets/img/common/icn-arrow.svg);
	display: block;
	position: absolute;
	z-index: 1;
	width: 14px;
	height: 14px;
	background-size: 100% 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.u-btn_text {}
.u-icon {
	position: relative;
	width: 40px;
	height: 40px;
	border: 1px solid var(--color-gray);
	box-sizing: border-box;
	border-radius: 50%;
	box-shadow: inset 0 4px 6px rgba(0, 0, 0, .1);
	background-color: var(--color-white);
}
.u-icon::before {
	content: "";
	background-image: url(/assets/img/common/icn-arrow.svg);
	display: block;
	position: absolute;
	z-index: 1;
	width: 14px;
	height: 14px;
	background-size: 100% 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
[data-animation] .u-slideUp {
	transform: translate3d(0, 100%, 0);
	transition-duration: .7s;
	transition-property: transform;
	transition-delay: .15s;
	display: block;
}
[data-animation="after"] .u-slideUp {
	transform: translate3d(0, 0, 0);
}
[data-animation] .u-slideRight {
	transform: translate3d(-105%, 0, 0);
	transition-duration: .7s;
	transition-property: transform;
	transition-delay: .15s;
	display: block;
}
[data-animation="after"] .u-slideRight {
	transform: translate3d(0, 0, 0);
}
.u-editor h2 {
	font-size: 28px;
	line-height: 1.5;
	position: relative;
	padding-left: 20px;
	margin-bottom: 63px;
	font-weight: bold;
	margin-top: 35px;
}
[lang="en"] .u-editor h2 {
	font-family: var(--font-inter);
}
.u-editor h2:first-child {
	margin-top: 0;
}
.u-editor h2:last-child {
	margin-bottom: 0;
}
.u-editor h2::before {
	content: "";
	display: block;
	width: 4px;
	height: calc(100% - 12px);
	position: absolute;
	top: 50%;
	left: 0;
	background-image: linear-gradient(to top, #6fdde3, #c9f5a7, #ed7572);
	border-radius: 10px;
	transform: translateY(-50%);
}
.u-editor h3 {
	font-size: 24px;
	font-weight: bold;
	line-height: 38px;
	margin-bottom: 50px;
	margin-top: 50px;
	position: relative;
	padding-left: 32px;
}
[lang="en"] .u-editor h3 {
	font-family: var(--font-inter);
}
.u-editor h3:first-child {
	margin-top: 0;
}
.u-editor h3:last-child {
	margin-bottom: 0;
}
.u-editor h3::before {
	content: "";
	background-image: url(/assets/img/common/bg-circle-grad@2x.png);
	display: block;
	width: 16px;
	height: 16px;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: 0 0;
	position: absolute;
	top: 19px;
	left: 0;
	transform: translateY(-50%);
}
.u-editor h4 {
	font-size: 20px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 30px;
	margin-top: 30px;
}
[lang="en"] .u-editor h4 {
	font-family: var(--font-inter);
}
.u-editor h4:first-child {
	margin-top: 0;
}
.u-editor h4:last-child {
	margin-bottom: 0;
}
.u-editor p {
	margin-top: 30px;
	margin-bottom: 30px;
}
.u-editor p:first-child {
	margin-top: 0;
}
.u-editor p:last-child {
	margin-bottom: 0;
}
.u-editor ul {
	list-style: none;
	margin-top: 30px;
	margin-bottom: 30px;
	padding-left: 0.5em;
}
.u-editor ul:first-child {
	margin-top: 0;
}
.u-editor ul:last-child {
	margin-bottom: 0;
}
.u-editor ul > li {
	position: relative;
	padding-left: 20px;
	margin-top: 10px;
}
.u-editor ul > li::before {
	content: "";
	display: block;
	position: absolute;
	width: 4px;
	height: 4px;
	background-color: var(--color-bluish-gray);
	border-radius: 50%;
	left: 0;
	top: 0.9375em;
	transform: translateY(-50%);
	margin-top: 2px;
}
.u-editor ul > li:first-child {
	margin-top: 0;
}
.u-editor ol {
	list-style: none;
	counter-reset: number;
	margin-top: 30px;
	margin-bottom: 30px;
	padding-left: 0.5em;
}
.u-editor ol:first-child {
	margin-top: 0;
}
.u-editor ol:last-child {
	margin-bottom: 0;
}
.u-editor ol > li {
	margin-top: 12px;
	counter-increment: number;
	position: relative;
	padding-left: 20px;
}
.u-editor ol > li:nth-child(n+10) {
	padding-left: 25px;
}
.u-editor ol > li::before {
	content: counter(number)".";
	display: block;
	position: absolute;
	left: 0;
	top: 0.9375em;
	transform: translateY(-50%);
	font-family: var(--font-inter);
	color: var(--color-bluish-gray);
	margin-top: 1px;
}
.u-editor ol > li:first-child {
	margin-top: 0;
}
.u-editor p > a {
	text-decoration: underline;
	transition-duration: .3s;
	transition-property: color, background-color;
}
.u-editor p > strong {
	font-weight: bold;
}
.u-btn_icon-left {}
.u-btn_icon-left::after {
	transform: translate(-50%, -50%) rotate(1deg);
}
.u-ttlBox {
	position: relative;
	background-color: var(--color-white);
	border-radius: 20px;
	border: 1px solid var(--color-gray);
	padding: 20px 20px;
	padding-left: 62px;
	margin-bottom: 50px;
	font-size: 32px;
	line-height: 1.56;
	letter-spacing: 0.05em;
	position: relative;
}
[lang="en"] .u-ttlBox {
	font-family: var(--font-inter);
	letter-spacing: 0.02em;
}
.u-ttlBox::before {
	content: "";
	display: block;
	width: 4px;
	height: calc(100% - 40px);
	position: absolute;
	top: 50%;
	left: 30px;
	background-image: linear-gradient(to top, #6fdde3, #c9f5a7, #ed7572);
	border-radius: 2px;
	transform: translateY(-50%);
}
.u-btnRainbow {
	display: flex;
	text-decoration: none;
	background-image: linear-gradient(to right, #6fdde3, #c9f5a7 25%, #f5df80 49%, #ed7572 75%, #f5a9a9 100%);
	padding: 24px 38px;
	min-height: 90px;
	box-sizing: border-box;
	align-items: center;
	border-radius: 50px;
	font-size: 18px;
	line-height: 1.44;
	position: relative;
	padding-right: 75px;
	font-weight: bold;
	letter-spacing: 0.05em;
}
.u-btnRainbow_txt {
	position: relative;
	z-index: 1;
}
.u-btnRainbow::before {
	content: "";
	display: block;
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	background-color: var(--color-white);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50px;
	opacity: 1;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-btnRainbow::after {
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	border: 1px solid currentColor;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
	right: 35px;
	border-left: none;
	border-top: none;
}
.u-ttlBox-hasStatus {
	padding-right: 140px;
}
.u-ttlBox-red {
	border-color: var(--color-red);
}
.u-ttlBox-red::before {
	background-image: none;
	background-color: var(--color-red);
}
.u-ttlBox_status {
	width: 88px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--color-red);
	color: var(--color-white);
	font-weight: 500;
	border-radius: 20px;
	font-family: var(--font-inter);
	font-size: 19px;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 30px;
}
.u-ttlBox_status-red {}
.u-ttlBox-blue {
	border-color: var(--color-blue);
}
.u-ttlBox-blue::before {
	background-image: none;
	background-color: var(--color-blue);
}
.u-ttlBox_status-blue {
	background-color: var(--color-blue);
}
.u-ttlBox_status-rainbow {
	background-image: linear-gradient(to right, rgb(237, 117, 114) 0%, rgb(201, 245, 167) 48%, rgb(111, 221, 227) 100%);
}
.u-ttlBox-green {
	border-color: var(--color-green);
}
.u-ttlBox-green::before {
	background-image: none;
	background-color: var(--color-green);
}
.u-ttlBox_status-green {
	background-color: var(--color-green);
}
.u-ttlBox_gray {
	border-color: var(--color-gray);
}
.u-ttlBox_gray::before {
	background-image: none;
	background-color: var(--color-gray);
}
.u-cat {
	width: 105px;
	min-height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	font-size: 13px;
	background-color: var(--color-white);
	overflow: hidden;
	position: relative;
	line-height: 1;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
	box-sizing: border-box;
	font-feature-settings: "palt";
}
.u-cat_inner {
	display: block;
	position: relative;
	z-index: 1;
}
.u-cat::after {
	content: "";
	background-image: linear-gradient(to right, rgb(245, 223, 128), rgb(245, 169, 169));
	display: block;
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-cat[data-slug="conference"]::after {
	background-image: linear-gradient(to left, rgb(111, 221, 227) 0%, rgb(201, 245, 167) 100%);
}
.wp-block-embed-youtube {
	max-width: 1000px;
	margin-top: 75px;
	margin-bottom: 50px;
	margin-left: auto;
	margin-right: auto;
}
.wp-block-embed-youtube:first-child {
	margin-top: 0;
}
.wp-block-embed-youtube:last-child {
	margin-bottom: 0;
}
.wp-block-embed-youtube > .wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 58%;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid var(--color-gray);
}
.wp-block-embed-youtube > .wp-block-embed__wrapper > iframe {
	display: block;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.u-editor table {
	text-align: center;
	border: none;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {
	text-align: center;
}
.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td[rowspan] {
	text-align: left;
	font-weight: normal;
}
.u-editor .wp-block-flexible-table-block-table {}
.u-editor table > thead > tr > th {
	text-align: center;
	vertical-align: middle;
	padding: 10px 15px;
	border-right: 1px solid var(--color-white);
	font-size: 18px;
	height: 100px;
	box-sizing: border-box;
	line-height: 24px;
}
.u-editor table > thead > tr > th:nth-child(1) {
	background-image: linear-gradient(to right, #f8c8c7, #f7dccd);
	border-left: 1px solid #f8c8c7;
}
.u-editor table > thead > tr > th:nth-child(2) {
	background-image: linear-gradient(to right, #f7ddcd, #ebf9db, #dafae8);
}
.u-editor table > thead > tr > th:nth-child(3) {
	background-image: linear-gradient(to right, #dafae8, #c6f1f4);
}
.u-editor table > thead > tr > th:nth-child(n+4) {
	background-color: #c6f1f4;
}
.u-editor table > thead > tr > th:last-child {
	border-right: 1px solid #c6f1f4;
}
.u-editor table > tbody > tr > td {
	text-align: center;
	vertical-align: middle;
	padding: 24px 25px;
	border-left: 1px solid var(--color-gray);
	font-weight: 500;
	background-color: var(--color-white);
	border-bottom: 1px solid var(--color-gray);
	border-right: 1px solid var(--color-gray);
	background-color: var(--color-white);
	border-top: 1px solid var(--color-gray);
}
.u-editor table > thead > tr > th > sub {
	bottom: 0;
	line-height: inherit;
}
@media screen and (max-width:1299px) {
	img {
		max-width: 100%;
		height: auto;
	}
}
@media screen and (max-width:1199px) {
	.u-lowResInline {
		display: inline;
	}
	.u-lowResNone {
		display: none;
	}
	.u-cat {
		width: 78px;
		height: 36px;
		font-size: 13px;
	}
}
@media screen and (min-width:1000px) and (hover:hover) {
	a:hover .u-cat::after {
		opacity: 0;
	}
	.u-btnRainbow:hover::before {
		opacity: 0.7;
	}
	.u-editor p > a:hover {
		color: var(--color-red);
		text-decoration: none;
	}
	a:hover .u-box {
		box-shadow: 2px 2px 10px rgba(0, 0, 0, .1);
	}
	.u-btn:hover .u-btn_icon::before {
		transform: scale(1.25);
	}
	.u-link:hover .u-link_icon {
		transform: scale(1.1);
	}
	a:hover .u-hoverText {
		background-size: 0 1px;
		background-position: right bottom;
	}
	a:hover .u-rollText_main {
		transform: translateY(-70%);
		opacity: 0;
	}
	a:hover .u-rollText_sub {
		transform: translateY(0%);
		opacity: 1;
	}
	a:hover {
		text-decoration: none;
	}
	.u-btn:hover {
		background-color: var(--color-white);
		color: var(--color-text);
		border-color: var(--color-text);
		box-shadow: 2px 2px 10px rgba(0, 0, 0, .1);
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
}
@media screen and (max-width:999px) {
	body {
		font-size: 14px;
	}
	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 {
		font-size: 24px;
		margin-bottom: 21px;
	}
	.u-ttl::before {}
	.u-ttl::after {}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {
		white-space: nowrap;
		border-right: 1px solid var(--color-white);
		font-weight: bold;
		padding: 18px 10px;
	}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		padding: 10px 10px;
	}
	.u-tbl > tbody > tr > td {
		padding: 10px 10px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {
		padding-top: 82px;
		margin-top: -82px;
	}
	.u-btn {
		min-height: 80px;
	}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.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-ttlVertical {
		font-size: 16px;
	}
	.u-ttlVertical_en {
		font-size: 40px;
		margin-bottom: 20px;
	}
	.u-ttlVertical_main {}
	.u-link {}
	.u-link_icon {}
	.u-link_icon::before {}
	.u-link_text {}
	.u-hoverText {}
	.u-rollText {}
	.u-rollText_main {}
	.u-rollText_sub {}
	.u-ttlVertical_en_inner {}
	.u-ttlVertical_main_inner {}
	.u-box {}
	.u-ttlGrad {}
	.u-ttlGrad::before {}
	.u-ttlGrad_text {}
	.u-btn_icon {}
	.u-btn_icon::before {}
	.u-btn_icon::after {}
	.u-btn_text {}
	.u-icon {}
	.u-icon::before {}
	.u-editor h2 {
		font-size: 24px;
		margin-bottom: 40px;
	}
	.u-editor h2::before {}
	.u-editor h3 {
		font-size: 20px;
		line-height: 34px;
		margin-top: 30px;
		margin-bottom: 30px;
	}
	.u-editor h3::before {
		top: 17px;
	}
	.u-editor h4 {
		font-size: 18px;
	}
	.u-editor p {}
	.u-editor ul > li {}
	.u-editor ul > li::before {}
	.u-editor ul > li:first-child {}
	.u-editor ol > li {}
	.u-editor ol > li:nth-child(n + 10) {}
	.u-editor ol > li::before {}
	.u-editor ol > li:first-child {}
	.u-editor p > a {}
	.u-editor p > strong {}
	.u-btn_icon-left {}
	.u-btn_icon-left::after {}
	.u-ttlBox {
		font-size: 26px;
		padding-left: 50px;
		border-radius: 15px;
		margin-bottom: 35px;
	}
	.u-ttlBox::before {
		left: 25px;
	}
	.u-btnRainbow {
		font-size: 16px;
		min-height: 80px;
	}
	.u-btnRainbow_txt {}
	.u-btnRainbow::before {}
	.u-btnRainbow::after {}
	.u-ttlBox-hasStatus {}
	.u-ttlBox_status {}
	.wp-block-embed-youtube {
		margin-top: 50px;
		margin-bottom: 35px;
	}
	.wp-block-embed-youtube:first-child {}
	.wp-block-embed-youtube:last-child {}
	.wp-block-embed-youtube > .wp-block-embed__wrapper {}
	.wp-block-embed-youtube > .wp-block-embed__wrapper > iframe {}
	.u-editor table {}
	.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
	.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {}
	.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td[rowspan] {}
	.u-editor .wp-block-flexible-table-block-table {}
	.u-editor table > thead > tr > th {}
	.u-editor table > thead > tr > th:nth-child(1) {}
	.u-editor table > thead > tr > th:nth-child(2) {}
	.u-editor table > thead > tr > th:nth-child(3) {}
	.u-editor table > thead > tr > th:nth-child(n+4) {}
	.u-editor table > thead > tr > th:last-child {}
	.u-editor table > tbody > tr > td {}
	.u-editor table > thead > tr > th > sub {}
}
@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;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 20px;
		padding-left: 18px;
		margin-bottom: 13px;
	}
	.u-ttl::before {
		height: 23px;
	}
	.u-ttl::after {}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {
		padding: 10px 10px;
	}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		width: auto;
	}
	.u-tbl > tbody > tr > td {}
	.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 {
		min-height: 65px;
		padding-left: 57px;
		padding-right: 33px;
	}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.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-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 ul {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.u-editor ol {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-ttlVertical {
		font-size: 12px;
	}
	.u-ttlVertical_en {
		font-size: 32px;
	}
	.u-ttlVertical_main {}
	.u-link {
		font-size: 13px;
	}
	.u-link_icon {
		width: 30px;
		height: 30px;
		margin-right: 10px;
	}
	.u-link_icon::before {
		width: 10px;
		height: 10px;
	}
	.u-link_text {}
	.u-hoverText {}
	.u-rollText {}
	.u-rollText_main {}
	.u-rollText_sub {}
	.u-ttlVertical_en_inner {}
	.u-ttlVertical_main_inner {}
	.u-box {
		border-radius: 8px;
		box-shadow: 4px 4px 8px rgba(0, 0, 0, .1);
	}
	.u-ttlGrad {
		font-size: 12px;
		line-height: 20px;
		padding-left: 20px;
	}
	.u-ttlGrad::before {
		width: 12px;
		height: 12px;
		top: 10px;
	}
	.u-ttlGrad_text {}
	.u-btn_icon {
		width: 30px;
		height: 30px;
		left: 19px;
	}
	.u-btn_icon::before {}
	.u-btn_icon::after {
		width: 11px;
		height: 11px;
	}
	.u-btn_text {}
	.u-icon {}
	.u-icon::before {}
	.u-editor h2 {
		font-size: 20px;
		padding-left: 16px;
		margin-bottom: 30px;
	}
	.u-editor h2::before {
		width: 3px;
	}
	.u-editor h3 {
		font-size: 18px;
		line-height: 30px;
		padding-left: 22px;
		margin-top: 25px;
		margin-bottom: 25px;
	}
	.u-editor h3::before {
		width: 12px;
		height: 12px;
		top: 15px;
	}
	.u-editor h4 {
		font-size: 16px;
		margin-bottom: 20px;
		margin-top: 20px;
	}
	.u-editor ul > li {}
	.u-editor ul > li::before {}
	.u-editor ul > li:first-child {}
	.u-editor ol > li {
		margin-top: 10px;
	}
	.u-editor ol > li:nth-child(n + 10) {}
	.u-editor ol > li::before {}
	.u-editor ol > li:first-child {}
	.u-editor p {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.u-editor p > a {}
	.u-editor p > strong {}
	.u-btn_icon-left {}
	.u-btn_icon-left::after {}
	.u-ttlBox {
		font-size: 17px;
		padding: 15px;
		padding-left: 25px;
		margin-bottom: 21px;
		border-radius: 10px;
		line-height: 1.4;
	}
	.u-ttlBox::before {
		left: 12px;
		width: 2px;
		height: calc(100% - 24px);
	}
	.u-btnRainbow {
		min-height: 56px;
		padding: 15px 22px;
		padding-right: 40px;
		font-size: inherit;
	}
	.u-btnRainbow_txt {}
	.u-btnRainbow::before {
		width: calc(100% - 2px);
		height: calc(100% - 2px);
	}
	.u-btnRainbow::after {
		right: 19px;
		width: 8px;
		height: 8px;
	}
	.u-ttlBox-hasStatus {
		padding-right: 70px;
	}
	.u-ttlBox-red {}
	.u-ttlBox-red::before {}
	.u-ttlBox_status {
		height: 25px;
		width: 56px;
		font-size: 12px;
		right: 12px;
	}
	.u-cat {
		height: 24px;
		width: 70px;
		font-size: 12px;
	}
	.wp-block-embed-youtube {
		margin-top: 30px;
		margin-bottom: 20px;
	}
	.wp-block-embed-youtube:first-child {}
	.wp-block-embed-youtube:last-child {}
	.wp-block-embed-youtube > .wp-block-embed__wrapper {}
	.wp-block-embed-youtube > .wp-block-embed__wrapper > iframe {}
	.u-editor table {}
	.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr th,
	.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td {}
	.u-editor .wp-block-flexible-table-block-table.wp-block-flexible-table-block-table > table tr td[rowspan] {}
	.u-editor .wp-block-flexible-table-block-table {}
	.u-editor .wp-block-flexible-table-block-table.is-scroll-on-mobile {
		margin-right: -20px;
		padding-right: 20px;
		overflow: auto;
	}
	.u-editor .wp-block-flexible-table-block-table.is-scroll-on-mobile > table {
		min-width: 650px;
	}
	.u-editor table > thead > tr > th {
		font-size: 15px;
		line-height: 20px;
		padding: 10px 15px;
		height: 70px;
	}
	.u-editor table > thead > tr > th:nth-child(1) {}
	.u-editor table > thead > tr > th:nth-child(2) {}
	.u-editor table > thead > tr > th:nth-child(3) {}
	.u-editor table > thead > tr > th:nth-child(n+4) {}
	.u-editor table > thead > tr > th:last-child {}
	.u-editor table > tbody > tr > td {
		padding: 15px 15px;
	}
	.u-editor table > thead > tr > th > sub {
		display: block;
	}
}
@media screen and (max-width:374px) {
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
}
