:root {
	--font-color: #fff;
	--main-color: #B7A230;
	--main-color-dark: #9E8C2C;
	--main-color-light: #f7ca86;
	--sub-color-1: #f6f9fc;
	--sub-color-2: #516f90;
	--bg-color-1: #060505;
	--bg-color-2: #060505;
	--main-font: "Cinzel", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Arial, Meiryo, sans-serif;
	--main-font-2: "Zen Kaku Gothic New";
	--sub-font: "Zen Old Mincho", serif;
	--header-height: 4.625rem;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

html {
	font-size: 16px;
}

body {
	background: var(--bg-color-1);
	color: var(--font-color);
	font-family: var(--main-font);
	font-size: 1rem;
	font-weight: 350;
	line-height: 1.5;
	margin: 0;
	width: 100%;
}

h1,
h2,
h3,
h4 {
	font-weight: inherit;
	line-height: inherit;
	margin: 0;
}

p {
	margin: 0;
}

figure {
	margin: 0;
}

iframe,
video,
img,
svg {
	height: auto;
	max-width: 100%;
}

b,
strong {
	font-weight: bold;
}

iframe,
img {
	vertical-align: bottom;
}

dl,
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

dd {
	margin: 0;
}

button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	border: none;
	cursor: pointer;
	outline: none;
}

a {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.5;
}

#autozip {
	display: none !important;
}

.l-header {
	background: var(--bg-color-1);
	color: var(--font-color);
	padding: 0 0.5rem;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 1000;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: var(--header-height);
	justify-content: space-between;
	margin: 0 auto;
	max-width: 75rem;
}

.l-header__contents {
	align-items: center;
	display: flex;
	gap: 2.5rem;
}

.l-header__logo a {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(94deg, #b7a230 -9.95%, #fff 32.73%, #b7a230 114.03%);
	background-clip: text;
	font-size: 2rem;
}

.l-header__menu {
	align-items: center;
	display: flex;
	justify-content: center;
}

.l-header__menu-item a {
	align-items: center;
	color: #c0c0c0;
	display: flex;
	flex-direction: column;
	font-size: 0.6875rem;
	font-weight: 300;
	line-height: 1.4;
}

.l-header__menu-item a:hover {
	color: var(--main-color);
	opacity: 1;
}

.l-header__menu-item a span {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(315deg, #a5a5a5 0%, #babac2 25%, #e8e8e8 50%, #a5a5a5 75%, #babac2 100%);
	background-clip: text;
	font-size: 1.1875rem;
	font-weight: 400;
	line-height: 1.5;
}

.l-header__menu-item--current {
	color: var(--main-color);
}

.l-header__hamburger {
	-webkit-appearance: none;
	-moz-appearance: none;
	align-items: center;
	appearance: none;
	border: none;
	cursor: pointer;
	display: flex;
	height: 2.5rem;
	justify-content: center;
	outline: none;
	padding: 0;
	text-decoration: none;
	width: 2.5rem;
	z-index: 10;
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line {
	background: transparent;
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:before,
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:after {
	top: 50%;
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:before {
	transform: rotate(30deg);
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-line:after {
	transform: rotate(-30deg);
}

.l-header__hamburger-line {
	background-color: currentColor;
	border-radius: 0.0625rem;
	color: #fff;
	display: block;
	height: 0.125rem;
	position: relative;
	transition: transform 0.3s ease-in-out;
	width: 1.875rem;
}

.l-header__hamburger-line:before,
.l-header__hamburger-line:after {
	background-color: currentColor;
	border-radius: inherit;
	content: "";
	display: block;
	height: 100%;
	position: absolute;
	transition: inherit;
	width: 100%;
}

.l-header__hamburger-line:before {
	top: -0.5rem;
}

.l-header__hamburger-line:after {
	top: 0.5rem;
}

.l-header__sp-menu {
	background: var(--bg-color-1);
	display: flex;
	flex-direction: column;
	height: 100vh;
	left: 0;
	overflow-y: scroll;
	padding-top: var(--header-height);
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 10;
}

.l-footer {
	border-top: 0.0625rem solid #c0c0c0;
	padding-bottom: 2.16125rem;
	padding-top: 1.75rem;
}

.l-footer__inner {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.l-footer__logo {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(94deg, #b7a230 -9.95%, #fff 32.73%, #b7a230 114.03%);
	background-clip: text;
	font-size: 2.5rem;
	font-weight: 400;
}

.l-footer__sns {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	justify-content: center;
}

.l-footer__sns-title {
	font-size: 1.1875rem;
	font-weight: 400;
	line-height: 1.6;
}

.l-footer__sns-list {
	display: flex;
	gap: 1.9375rem;
	justify-content: center;
}

.l-footer__sns-item {
	align-items: center;
	display: flex;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.l-footer a {
	align-items: center;
	display: flex;
	justify-content: center;
}

.l-footer a svg {
	max-width: 100%;
}

.l-footer__copy {
	color: #C0C0C0;
	font-size: 0.875rem;
	font-weight: 300;
	line-height: 1.4;
	margin-top: 0.625rem;
}

.l-container {
	margin: 0 auto;
	padding: 0 5%;
	width: 100%;
}

.l-sp-menu {
	background: var(--bg-color-1);
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}

.l-sp-menu__item {
	border-top: 0.0625rem solid #e6e6e6;
	padding: 0.5rem;
	text-align: center;
}

.l-sp-menu__item:last-of-type {
	border-bottom: 0.0625rem solid #e6e6e6;
}

.l-sp-menu__item a {
	align-items: center;
	display: flex;
	flex-direction: column;
	font-size: 0.6875rem;
	font-weight: 300;
	line-height: 1.4;
}

.l-sp-menu__item a span {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(315deg, #a5a5a5 0%, #babac2 25%, #e8e8e8 50%, #a5a5a5 75%, #babac2 100%);
	background-clip: text;
	font-size: 1.1875rem;
	line-height: 1.5;
}

.l-sp-menu__sns {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
	justify-content: center;
}

.l-sp-menu__sns-title {
	font-size: 1.1875rem;
	font-weight: 400;
	line-height: 1.6;
}

.l-sp-menu__sns-list {
	display: flex;
	gap: 1.9375rem;
	justify-content: center;
}

.l-sp-menu__sns-item {
	align-items: center;
	display: flex;
	height: 2.5rem;
	justify-content: center;
	width: 2.5rem;
}

.l-sp-menu__sns-item a {
	align-items: center;
	display: flex;
	justify-content: center;
}

.l-sp-menu__sns-item a svg {
	max-width: 100%;
}

.l-outer {
	margin-left: auto;
	margin-right: auto;
	max-width: 1440px;
}

.l-main {
	padding-top: var(--header-height);
}

.l-columns {
	display: grid;
	gap: 1rem;
}

.c-title1 {
	font-size: 2.5rem;
	font-weight: 400;
	letter-spacing: 0.09375rem;
	line-height: 1.2;
}

.c-title1__sm-text {
	font-size: 0.875rem;
	font-weight: 300;
	margin-top: 0.25rem;
}

.c-form {
	color: #2e475d;
	display: flex;
	flex-direction: column;
	font-family: "Lexend Deca";
	gap: 1rem;
}

.c-form__item-title {
	display: flex;
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.75;
}

.c-form__item-title--required::after {
	color: #516f90;
	content: "*";
}

.c-form__item-input input[type=text],
.c-form__item-input input[type=email],
.c-form__item-input input[type=number],
.c-form__item-input input[type=date],
.c-form__item-input input[type=tel],
.c-form__item-input textarea,
.c-form__item-input select {
	background: #f6f9fc;
	border: 0.0625rem solid #b6c7d6;
	border-radius: 0.1875rem;
	min-height: 2.5rem;
	padding: 0.625rem;
	width: 100%;
}

.c-form__item-input textarea {
	height: 2.5rem;
	resize: vertical;
}

.c-form__confirm {
	font-size: 1rem;
}

.c-form__confirm a {
	color: #4285f4;
}

.c-form__submit {
	font-size: 1rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 3.375rem;
	max-width: 100%;
	position: relative;
	text-align: center;
	width: 18.75rem;
}

.c-form__submit input {
	background: #F1AA00;
	border: none;
	cursor: pointer;
	height: 3.125rem;
}

.c-form__submit .wpcf7-spinner {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
}

.c-form .wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
	display: none;
	margin-top: 10px;
}

.c-form .wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
	display: block;
}

.c-button1 {
	--button-color: #fff;
	--button-bg-color: var(--bg-color-1);
	align-items: center;
	background: var(--button-bg-color);
	border: 0.0625rem solid currentColor;
	border-radius: 6.25rem;
	color: var(--button-color);
	display: inline-flex;
	font-size: inherit;
	font-weight: 500;
	gap: 0.5rem;
	height: 3.125rem;
	justify-content: center;
	line-height: 1.57;
	max-height: 100%;
	max-width: 100%;
	padding: 0.625rem;
	transition: 0.3s cubic-bezier(0.4, 0.4, 0, 1);
	width: 14.25rem;
}

.c-button1 img {
	height: 1lh;
	width: auto;
}

.c-button1--more {
	position: relative;
}

.c-button1--more::after {
	-webkit-mask-image: url("../img/common/icon_circle-arrow_forward.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 1lh;
	mask-image: url("../img/common/icon_circle-arrow_forward.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translateY(-50%);
	width: 1lh;
}

.c-button1--font-color {
	--button-color: #fff;
	--button-bg-color: var(--font-color);
}

.c-button1--outline {
	--button-outline-color: var(--button-bg-color);
	--button-outline-bg-color: var(--button-color);
	background: var(--button-outline-bg-color);
	border: 0.0625rem solid var(--button-outline-color);
	color: var(--button-outline-color);
}

.c-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.c-pagination .page-numbers {
	align-items: center;
	align-items: center;
	color: var(--main-color);
	display: flex;
	display: flex;
	font-size: 0.875rem;
	font-weight: 350;
	height: 1.375rem;
	justify-content: center;
	justify-content: center;
	line-height: 1.5;
	width: 1.375rem;
}

.c-pagination .page-numbers.current {
	background: var(--main-color);
	color: #fff;
	position: relative;
}

.c-pagination__arrow {
	-webkit-mask-image: url("../img/common/icon_arrow_forward.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	display: inline-block;
	height: 1lh;
	margin: 0 0.25rem;
	mask-image: url("../img/common/icon_arrow_forward.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 0.4375rem;
}

.c-pagination__arrow--prev {
	transform: rotate(180deg);
}

.c-card-blog {
	height: 100%;
}

.c-card-blog a {
	background: #fff;
	border-radius: 0.625rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: clip;
}

.c-card-blog__image img {
	-o-object-fit: cover;
	aspect-ratio: 340/200;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-card-blog__contents {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 0.8125rem;
	padding: 1.5625rem 1.25rem;
}

.c-card-blog__category {
	align-items: center;
	background: #B7A230;
	border-radius: 6.25rem;
	display: inline-flex;
	font-size: 0.75rem;
	font-weight: 700;
	justify-content: center;
	line-height: 1.4;
	padding: 0.1875rem 0.5rem 0.125rem;
}

.c-card-blog__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #060505;
	display: -webkit-box;
	flex-grow: 1;
	font-family: var(--main-font-2);
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.125rem;
	line-height: 1.6;
	overflow: hidden;
}

.c-card-blog__info {
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.c-card-blog__info-item {
	color: #333;
	display: grid;
	font-size: 0.875rem;
	font-weight: 350;
	gap: 1rem;
	grid-template-columns: auto 1fr;
	line-height: 1.5;
}

.c-card-blog__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: #060505;
	display: -webkit-box;
	font-family: var(--main-font-2);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.125rem;
	line-height: 1.6;
	overflow: hidden;
}

.c-card-blog__date {
	color: #060505;
	display: flex;
	font-family: var(--main-font-2);
	font-size: 0.6875rem;
	font-weight: 700;
	gap: 0.25rem;
	letter-spacing: 0.125rem;
	line-height: 1.6;
}

.c-card-blog--shadow {
	background: #fff;
	border-radius: 10px;
	box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.1);
}

.c-card-blog--shadow .c-card-blog__contents {
	padding: 0.625rem;
}

.c-page-title {
	align-items: center;
	background: url(../img/common/page-title_bg.jpg) center/cover no-repeat;
	display: flex;
	justify-content: center;
	min-height: 18.5625rem;
	padding: 1rem;
	padding-top: var(--header-height);
	position: relative;
	text-align: center;
}

.c-page-title__group {
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}

.c-page-title__title {
	color: #C0C0C0;
	font-size: 1rem;
	font-weight: 600;
	order: 2;
}

.c-page-title__title-en {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(315deg, #a5a5a5 0%, #babac2 25%, #e8e8e8 50%, #a5a5a5 75%, #babac2 100%);
	background-clip: text;
	font-size: 3.75rem;
	font-weight: 400;
	line-height: 1;
}

.c-page-title__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.c-page-title__bg--filter {
	filter: brightness(0.5);
}

.c-page-title__bg img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.c-underline {
	background: linear-gradient(transparent 60%, var(--main-color-light) 0%);
	display: inline;
	padding: 0 1px 0px;
}

.c-underline--white {
	background: linear-gradient(transparent 60%, #fff 0%);
}

.c-list-news__item {
	border-top: 0.0625rem solid currentColor;
	font-family: var(--main-font-2);
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.c-list-news__item:last-of-type {
	border-bottom: 0.0625rem solid currentColor;
}

.c-list-news__item-inner a {
	align-items: baseline;
	display: flex;
	gap: 0.9375rem;
}

.c-list-news__category {
	align-items: center;
	background: #fff;
	border-radius: 0.75rem;
	color: var(--bg-color-1);
	display: flex;
	flex-shrink: 0;
	font-size: 0.75rem;
	font-weight: 500;
	justify-content: center;
	min-height: 1.5rem;
	min-width: 6.25rem;
	padding: 0.25rem 1rem;
}

.c-list-news__date {
	font-size: 0.875rem;
	font-weight: 700;
	margin-right: 1.125rem;
}

.c-list-news__title {
	font-size: 0.875rem;
	font-weight: 700;
}

.c-button-sns {
	align-items: center;
	border: 0.0625rem solid currentColor;
	display: flex;
	gap: 1rem;
	justify-content: center;
	padding: 1rem;
}

.c-button-sns__icon {
	-o-object-fit: contain;
	flex-shrink: 0;
	height: 2.5rem;
	object-fit: contain;
	width: 2.5rem;
}

.c-button-sns__text {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.20625rem;
	line-height: 1.57;
	text-align: center;
}

.c-button-sns__text span {
	display: inline-block;
}

.c-button-sns__icon-arrow {
	flex-shrink: 0;
	width: 2.6875rem;
}

.c-button-sns__icon-arrow svg {
	width: 100%;
}

.p-fp-fv {
	align-items: center;
	background: url(../img/frontpage/fv_bg.jpg) center/cover no-repeat;
	display: flex;
	justify-content: center;
	min-height: calc(50.625rem - var(--header-height));
}

.p-fp-fv__inner {
	align-items: center;
	display: flex;
	flex-direction: column-reverse;
	gap: 6.0625rem;
	justify-content: center;
}

.p-fp-fv__title {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(94deg, #b7a230 -9.95%, #fff 32.73%, #b7a230 114.03%);
	background-clip: text;
	font-size: 3.75rem;
	font-weight: 400;
}

.p-fp-fv__text {
	font-family: var(--sub-font);
	font-size: 2.75rem;
	font-weight: 500;
	text-align: center;
	text-shadow: 0px 0.125rem 0.625rem rgba(0, 0, 0, 0.25);
}

.p-fp-about {
	background: url(../img/frontpage/about_bg.jpg) center/cover no-repeat;
}

.p-fp-about__text {
	font-family: var(--sub-font);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 2.65;
	margin-top: 2.8125rem;
	text-align: center;
	text-shadow: 0px 0.125rem 0.625rem rgba(0, 0, 0, 0.25);
}

.p-fp-about__text span {
	display: inline-block;
}

.p-fp-cast__text {
	font-family: Inter;
	font-size: 0.875rem;
	font-weight: 300;
	letter-spacing: 0.09375rem;
	line-height: 2.14;
	margin-top: 1.5rem;
	text-align: right;
}

.p-fp-cast__list {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	overflow: scroll;
	row-gap: 1rem;
}

.p-fp-cast__item {
	font-weight: 300;
	line-height: 1.2;
	min-width: 11.75rem;
	padding-left: 1.1875rem;
	padding-right: 1.1875rem;
	text-align: center;
}

.p-fp-cast__name {
	font-size: 0.9rem;
	margin-top: 0.375rem;
}

.p-fp-cast__name-en {
	font-size: 0.75rem;
}

.p-fp-access__text {
	font-family: Inter;
	font-size: 1.25rem;
	font-weight: 300;
	letter-spacing: 0.09375rem;
	line-height: 1.87;
	margin-top: 2.5rem;
	text-align: center;
}

.p-fp-access__map {
	margin-top: 1.875rem;
}

.p-fp-access__map iframe {
	height: 28.125rem;
	width: 100%;
}

.p-archive__heading {
	background: #192733;
	color: #fff;
	position: relative;
}

.p-archive__heading-sentense {
	font-family: "Lexend Deca";
}

.p-archive__heading-title {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.25;
}

.p-archive__heading-subtitle {
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
}

.p-archive__list {
	display: grid;
	gap: 2.5rem 1.5rem;
	grid-template-columns: repeat(3, 1fr);
}

.p-archive__list-item {
	display: flex;
}

.p-archive__pagination {
	display: flex;
	justify-content: center;
	margin-top: 2.5rem;
}

.p-single__thumbnail img {
	width: 100%;
}

.p-single__date {
	color: var(--main-color);
	display: block;
	font-family: var(--main-font-2);
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.05rem;
	line-height: 1.8;
	margin-bottom: 1rem;
}

.p-single__title {
	border-bottom: 0.1875rem solid var(--main-color);
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.63;
	margin-bottom: 2rem;
}

.p-single__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin-bottom: 1.5rem;
}

.p-single__tag {
	background: #ff7a59;
	border-radius: 6.25rem;
	color: #fff;
	display: block;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.4;
	padding: 0.1875rem 0.5rem;
}

.p-single__content {
	font-family: var(--main-font-2);
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}

.p-single__content > :first-child {
	margin-top: 0 !important;
}

.p-single__content > :last-child {
	margin-bottom: 0 !important;
}

.p-single__content h2.wp-block-heading {
	color: var(--main-color);
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
}

.p-single__content p:not([class]) {
	margin-bottom: 1.5rem;
}

.p-single__content a:not([class]) {
	text-decoration: underline;
}

.p-single__content ul:not([class]) {
	list-style: disc;
	padding-left: 1em;
}

.p-single__content ol:not([class]) {
	list-style: decimal;
	padding-left: 1em;
}

.p-single__content .has-medium-font-size {
	--wp--preset--font-size--medium: 1.25rem;
	font-weight: 300;
	line-height: 1.87;
}

.p-single__content .wp-block-table {
	border-bottom: 0.0625rem solid currentColor;
	border-top: 0.0625rem solid currentColor;
	padding-bottom: 1rem;
	padding-top: 1rem;
}

.p-single__content table {
	border-collapse: collapse;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.5;
	margin-left: auto;
	margin-right: auto;
	max-width: 52.0625rem;
}

.p-single__content table td,
.p-single__content table th {
	border: none;
	padding-bottom: 1rem;
	padding-top: 1rem;
	vertical-align: top;
}

.p-single__dates {
	border-bottom: 0.0625rem solid #516f90;
	color: #7691ad;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.05rem;
	line-height: 1.57;
	margin-top: 2rem;
	padding-bottom: 2.5rem;
}

.p-single__buttons {
	display: flex;
	gap: 0.5rem;
	justify-content: center;
	margin-top: 2.5rem;
}

.p-system {
	border-bottom: 0.0625rem solid currentColor;
	margin-left: auto;
	margin-right: auto;
	max-width: 61.25rem;
}

.p-system__item {
	border-top: 0.0625rem solid currentColor;
	font-family: var(--main-font-2);
}

.p-system__title {
	font-size: 1.65625rem;
	font-weight: 500;
	line-height: 2;
}

.p-system__list {
	align-items: baseline;
	display: flex;
	justify-content: space-between;
}

.p-system__list-title {
	font-size: 1.65625rem;
	font-weight: 500;
	line-height: 2.2;
}

.p-system__list-title small {
	font-size: 1.03125rem;
	font-weight: 500;
	line-height: 2;
}

.p-system__list-text {
	font-size: 2rem;
	font-weight: 400;
}

.p-system__list-text small {
	font-size: 1.8125rem;
}

.p-system__text {
	font-size: 1rem;
	font-weight: 500;
	letter-spacing: 0.09375rem;
	line-height: 2;
}

.p-recruit-contact {
	align-items: center;
	display: flex;
	gap: 1.5rem;
	justify-content: center;
}

.p-recruit-contact__link {
	align-items: center;
	background: #06C755;
	color: #fff;
	display: flex;
	font-size: 0.9375rem;
	font-weight: 700;
	height: 2.5rem;
	justify-content: center;
	letter-spacing: 0.09375rem;
	line-height: 2;
	text-decoration: none !important;
	width: 13.875rem;
}

.p-recruit-contact__tel {
	align-items: center;
	color: #B7A230;
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin: 0;
}

.p-recruit-contact__tel span {
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.09375rem;
	line-height: 1.7;
}

.p-recruit-contact__tel a {
	font-size: 1.6875rem;
	font-weight: 700;
	letter-spacing: 0.09375rem;
	line-height: 1.7;
	text-decoration: none !important;
}

.p-access-map iframe {
	height: 28.125rem;
	width: 100%;
}

/*=======================
display
=======================*/

.u-d-none {
	display: none !important;
}

.u-bg-1 {
	background: var(--bg-color-1);
}

.u-bg-2 {
	background: var(--bg-color-2);
}

.u-bg-main {
	background: var(--main-color);
}

.u-bg-main-light {
	background: var(--main-color-light);
}

.u-bg-main-dark {
	background: var(--main-color-dark);
}

.u-bg-sub {
	background: var(--sub-color-1);
}

.u-bg-white {
	background: #fff;
}

.u-mt-0 {
	margin-top: 0rem !important;
}

.u-mr-0 {
	margin-right: 0rem !important;
}

.u-mb-0 {
	margin-bottom: 0rem !important;
}

.u-ml-0 {
	margin-left: 0rem !important;
}

.u-my-0 {
	margin-bottom: 0rem !important;
	margin-top: 0rem !important;
}

.u-mx-0 {
	margin-left: 0rem !important;
	margin-right: 0rem !important;
}

.u-mt-1 {
	margin-top: 0.5rem !important;
}

.u-mr-1 {
	margin-right: 0.5rem !important;
}

.u-mb-1 {
	margin-bottom: 0.5rem !important;
}

.u-ml-1 {
	margin-left: 0.5rem !important;
}

.u-my-1 {
	margin-bottom: 0.5rem !important;
	margin-top: 0.5rem !important;
}

.u-mx-1 {
	margin-left: 0.5rem !important;
	margin-right: 0.5rem !important;
}

.u-mt-2 {
	margin-top: 1rem !important;
}

.u-mr-2 {
	margin-right: 1rem !important;
}

.u-mb-2 {
	margin-bottom: 1rem !important;
}

.u-ml-2 {
	margin-left: 1rem !important;
}

.u-my-2 {
	margin-bottom: 1rem !important;
	margin-top: 1rem !important;
}

.u-mx-2 {
	margin-left: 1rem !important;
	margin-right: 1rem !important;
}

.u-mt-3 {
	margin-top: 1.5rem !important;
}

.u-mr-3 {
	margin-right: 1.5rem !important;
}

.u-mb-3 {
	margin-bottom: 1.5rem !important;
}

.u-ml-3 {
	margin-left: 1.5rem !important;
}

.u-my-3 {
	margin-bottom: 1.5rem !important;
	margin-top: 1.5rem !important;
}

.u-mx-3 {
	margin-left: 1.5rem !important;
	margin-right: 1.5rem !important;
}

.u-mt-4 {
	margin-top: 2rem !important;
}

.u-mr-4 {
	margin-right: 2rem !important;
}

.u-mb-4 {
	margin-bottom: 2rem !important;
}

.u-ml-4 {
	margin-left: 2rem !important;
}

.u-my-4 {
	margin-bottom: 2rem !important;
	margin-top: 2rem !important;
}

.u-mx-4 {
	margin-left: 2rem !important;
	margin-right: 2rem !important;
}

.u-mt-5 {
	margin-top: 2.5rem !important;
}

.u-mr-5 {
	margin-right: 2.5rem !important;
}

.u-mb-5 {
	margin-bottom: 2.5rem !important;
}

.u-ml-5 {
	margin-left: 2.5rem !important;
}

.u-my-5 {
	margin-bottom: 2.5rem !important;
	margin-top: 2.5rem !important;
}

.u-mx-5 {
	margin-left: 2.5rem !important;
	margin-right: 2.5rem !important;
}

.u-mt-6 {
	margin-top: 3rem !important;
}

.u-mr-6 {
	margin-right: 3rem !important;
}

.u-mb-6 {
	margin-bottom: 3rem !important;
}

.u-ml-6 {
	margin-left: 3rem !important;
}

.u-my-6 {
	margin-bottom: 3rem !important;
	margin-top: 3rem !important;
}

.u-mx-6 {
	margin-left: 3rem !important;
	margin-right: 3rem !important;
}

.u-mt-7 {
	margin-top: 3.5rem !important;
}

.u-mr-7 {
	margin-right: 3.5rem !important;
}

.u-mb-7 {
	margin-bottom: 3.5rem !important;
}

.u-ml-7 {
	margin-left: 3.5rem !important;
}

.u-my-7 {
	margin-bottom: 3.5rem !important;
	margin-top: 3.5rem !important;
}

.u-mx-7 {
	margin-left: 3.5rem !important;
	margin-right: 3.5rem !important;
}

.u-mt-8 {
	margin-top: 4rem !important;
}

.u-mr-8 {
	margin-right: 4rem !important;
}

.u-mb-8 {
	margin-bottom: 4rem !important;
}

.u-ml-8 {
	margin-left: 4rem !important;
}

.u-my-8 {
	margin-bottom: 4rem !important;
	margin-top: 4rem !important;
}

.u-mx-8 {
	margin-left: 4rem !important;
	margin-right: 4rem !important;
}

.u-mt-9 {
	margin-top: 4.5rem !important;
}

.u-mr-9 {
	margin-right: 4.5rem !important;
}

.u-mb-9 {
	margin-bottom: 4.5rem !important;
}

.u-ml-9 {
	margin-left: 4.5rem !important;
}

.u-my-9 {
	margin-bottom: 4.5rem !important;
	margin-top: 4.5rem !important;
}

.u-mx-9 {
	margin-left: 4.5rem !important;
	margin-right: 4.5rem !important;
}

.u-mt-10 {
	margin-top: 5rem !important;
}

.u-mr-10 {
	margin-right: 5rem !important;
}

.u-mb-10 {
	margin-bottom: 5rem !important;
}

.u-ml-10 {
	margin-left: 5rem !important;
}

.u-my-10 {
	margin-bottom: 5rem !important;
	margin-top: 5rem !important;
}

.u-mx-10 {
	margin-left: 5rem !important;
	margin-right: 5rem !important;
}

.u-mt-11 {
	margin-top: 5.5rem !important;
}

.u-mr-11 {
	margin-right: 5.5rem !important;
}

.u-mb-11 {
	margin-bottom: 5.5rem !important;
}

.u-ml-11 {
	margin-left: 5.5rem !important;
}

.u-my-11 {
	margin-bottom: 5.5rem !important;
	margin-top: 5.5rem !important;
}

.u-mx-11 {
	margin-left: 5.5rem !important;
	margin-right: 5.5rem !important;
}

.u-mt-12 {
	margin-top: 6rem !important;
}

.u-mr-12 {
	margin-right: 6rem !important;
}

.u-mb-12 {
	margin-bottom: 6rem !important;
}

.u-ml-12 {
	margin-left: 6rem !important;
}

.u-my-12 {
	margin-bottom: 6rem !important;
	margin-top: 6rem !important;
}

.u-mx-12 {
	margin-left: 6rem !important;
	margin-right: 6rem !important;
}

.u-mt-13 {
	margin-top: 6.5rem !important;
}

.u-mr-13 {
	margin-right: 6.5rem !important;
}

.u-mb-13 {
	margin-bottom: 6.5rem !important;
}

.u-ml-13 {
	margin-left: 6.5rem !important;
}

.u-my-13 {
	margin-bottom: 6.5rem !important;
	margin-top: 6.5rem !important;
}

.u-mx-13 {
	margin-left: 6.5rem !important;
	margin-right: 6.5rem !important;
}

.u-mt-14 {
	margin-top: 7rem !important;
}

.u-mr-14 {
	margin-right: 7rem !important;
}

.u-mb-14 {
	margin-bottom: 7rem !important;
}

.u-ml-14 {
	margin-left: 7rem !important;
}

.u-my-14 {
	margin-bottom: 7rem !important;
	margin-top: 7rem !important;
}

.u-mx-14 {
	margin-left: 7rem !important;
	margin-right: 7rem !important;
}

.u-mt-15 {
	margin-top: 7.5rem !important;
}

.u-mr-15 {
	margin-right: 7.5rem !important;
}

.u-mb-15 {
	margin-bottom: 7.5rem !important;
}

.u-ml-15 {
	margin-left: 7.5rem !important;
}

.u-my-15 {
	margin-bottom: 7.5rem !important;
	margin-top: 7.5rem !important;
}

.u-mx-15 {
	margin-left: 7.5rem !important;
	margin-right: 7.5rem !important;
}

.u-mt-16 {
	margin-top: 8rem !important;
}

.u-mr-16 {
	margin-right: 8rem !important;
}

.u-mb-16 {
	margin-bottom: 8rem !important;
}

.u-ml-16 {
	margin-left: 8rem !important;
}

.u-my-16 {
	margin-bottom: 8rem !important;
	margin-top: 8rem !important;
}

.u-mx-16 {
	margin-left: 8rem !important;
	margin-right: 8rem !important;
}

.u-mt-17 {
	margin-top: 8.5rem !important;
}

.u-mr-17 {
	margin-right: 8.5rem !important;
}

.u-mb-17 {
	margin-bottom: 8.5rem !important;
}

.u-ml-17 {
	margin-left: 8.5rem !important;
}

.u-my-17 {
	margin-bottom: 8.5rem !important;
	margin-top: 8.5rem !important;
}

.u-mx-17 {
	margin-left: 8.5rem !important;
	margin-right: 8.5rem !important;
}

.u-mt-18 {
	margin-top: 9rem !important;
}

.u-mr-18 {
	margin-right: 9rem !important;
}

.u-mb-18 {
	margin-bottom: 9rem !important;
}

.u-ml-18 {
	margin-left: 9rem !important;
}

.u-my-18 {
	margin-bottom: 9rem !important;
	margin-top: 9rem !important;
}

.u-mx-18 {
	margin-left: 9rem !important;
	margin-right: 9rem !important;
}

.u-mt-19 {
	margin-top: 9.5rem !important;
}

.u-mr-19 {
	margin-right: 9.5rem !important;
}

.u-mb-19 {
	margin-bottom: 9.5rem !important;
}

.u-ml-19 {
	margin-left: 9.5rem !important;
}

.u-my-19 {
	margin-bottom: 9.5rem !important;
	margin-top: 9.5rem !important;
}

.u-mx-19 {
	margin-left: 9.5rem !important;
	margin-right: 9.5rem !important;
}

.u-mt-20 {
	margin-top: 10rem !important;
}

.u-mr-20 {
	margin-right: 10rem !important;
}

.u-mb-20 {
	margin-bottom: 10rem !important;
}

.u-ml-20 {
	margin-left: 10rem !important;
}

.u-my-20 {
	margin-bottom: 10rem !important;
	margin-top: 10rem !important;
}

.u-mx-20 {
	margin-left: 10rem !important;
	margin-right: 10rem !important;
}

.u-py-default {
	padding-bottom: 5rem;
	padding-top: 5rem;
}

.u-pt-0 {
	padding-top: 0rem !important;
}

.u-pr-0 {
	padding-right: 0rem !important;
}

.u-pb-0 {
	padding-bottom: 0rem !important;
}

.u-pl-0 {
	padding-left: 0rem !important;
}

.u-py-0 {
	padding-bottom: 0rem !important;
	padding-top: 0rem !important;
}

.u-px-0 {
	padding-left: 0rem !important;
	padding-right: 0rem !important;
}

.u-pt-1 {
	padding-top: 0.5rem !important;
}

.u-pr-1 {
	padding-right: 0.5rem !important;
}

.u-pb-1 {
	padding-bottom: 0.5rem !important;
}

.u-pl-1 {
	padding-left: 0.5rem !important;
}

.u-py-1 {
	padding-bottom: 0.5rem !important;
	padding-top: 0.5rem !important;
}

.u-px-1 {
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}

.u-pt-2 {
	padding-top: 1rem !important;
}

.u-pr-2 {
	padding-right: 1rem !important;
}

.u-pb-2 {
	padding-bottom: 1rem !important;
}

.u-pl-2 {
	padding-left: 1rem !important;
}

.u-py-2 {
	padding-bottom: 1rem !important;
	padding-top: 1rem !important;
}

.u-px-2 {
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}

.u-pt-3 {
	padding-top: 1.5rem !important;
}

.u-pr-3 {
	padding-right: 1.5rem !important;
}

.u-pb-3 {
	padding-bottom: 1.5rem !important;
}

.u-pl-3 {
	padding-left: 1.5rem !important;
}

.u-py-3 {
	padding-bottom: 1.5rem !important;
	padding-top: 1.5rem !important;
}

.u-px-3 {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

.u-pt-4 {
	padding-top: 2rem !important;
}

.u-pr-4 {
	padding-right: 2rem !important;
}

.u-pb-4 {
	padding-bottom: 2rem !important;
}

.u-pl-4 {
	padding-left: 2rem !important;
}

.u-py-4 {
	padding-bottom: 2rem !important;
	padding-top: 2rem !important;
}

.u-px-4 {
	padding-left: 2rem !important;
	padding-right: 2rem !important;
}

.u-pt-5 {
	padding-top: 2.5rem !important;
}

.u-pr-5 {
	padding-right: 2.5rem !important;
}

.u-pb-5 {
	padding-bottom: 2.5rem !important;
}

.u-pl-5 {
	padding-left: 2.5rem !important;
}

.u-py-5 {
	padding-bottom: 2.5rem !important;
	padding-top: 2.5rem !important;
}

.u-px-5 {
	padding-left: 2.5rem !important;
	padding-right: 2.5rem !important;
}

.u-pt-6 {
	padding-top: 3rem !important;
}

.u-pr-6 {
	padding-right: 3rem !important;
}

.u-pb-6 {
	padding-bottom: 3rem !important;
}

.u-pl-6 {
	padding-left: 3rem !important;
}

.u-py-6 {
	padding-bottom: 3rem !important;
	padding-top: 3rem !important;
}

.u-px-6 {
	padding-left: 3rem !important;
	padding-right: 3rem !important;
}

.u-pt-7 {
	padding-top: 3.5rem !important;
}

.u-pr-7 {
	padding-right: 3.5rem !important;
}

.u-pb-7 {
	padding-bottom: 3.5rem !important;
}

.u-pl-7 {
	padding-left: 3.5rem !important;
}

.u-py-7 {
	padding-bottom: 3.5rem !important;
	padding-top: 3.5rem !important;
}

.u-px-7 {
	padding-left: 3.5rem !important;
	padding-right: 3.5rem !important;
}

.u-pt-8 {
	padding-top: 4rem !important;
}

.u-pr-8 {
	padding-right: 4rem !important;
}

.u-pb-8 {
	padding-bottom: 4rem !important;
}

.u-pl-8 {
	padding-left: 4rem !important;
}

.u-py-8 {
	padding-bottom: 4rem !important;
	padding-top: 4rem !important;
}

.u-px-8 {
	padding-left: 4rem !important;
	padding-right: 4rem !important;
}

.u-pt-9 {
	padding-top: 4.5rem !important;
}

.u-pr-9 {
	padding-right: 4.5rem !important;
}

.u-pb-9 {
	padding-bottom: 4.5rem !important;
}

.u-pl-9 {
	padding-left: 4.5rem !important;
}

.u-py-9 {
	padding-bottom: 4.5rem !important;
	padding-top: 4.5rem !important;
}

.u-px-9 {
	padding-left: 4.5rem !important;
	padding-right: 4.5rem !important;
}

.u-pt-10 {
	padding-top: 5rem !important;
}

.u-pr-10 {
	padding-right: 5rem !important;
}

.u-pb-10 {
	padding-bottom: 5rem !important;
}

.u-pl-10 {
	padding-left: 5rem !important;
}

.u-py-10 {
	padding-bottom: 5rem !important;
	padding-top: 5rem !important;
}

.u-px-10 {
	padding-left: 5rem !important;
	padding-right: 5rem !important;
}

.u-pt-11 {
	padding-top: 5.5rem !important;
}

.u-pr-11 {
	padding-right: 5.5rem !important;
}

.u-pb-11 {
	padding-bottom: 5.5rem !important;
}

.u-pl-11 {
	padding-left: 5.5rem !important;
}

.u-py-11 {
	padding-bottom: 5.5rem !important;
	padding-top: 5.5rem !important;
}

.u-px-11 {
	padding-left: 5.5rem !important;
	padding-right: 5.5rem !important;
}

.u-pt-12 {
	padding-top: 6rem !important;
}

.u-pr-12 {
	padding-right: 6rem !important;
}

.u-pb-12 {
	padding-bottom: 6rem !important;
}

.u-pl-12 {
	padding-left: 6rem !important;
}

.u-py-12 {
	padding-bottom: 6rem !important;
	padding-top: 6rem !important;
}

.u-px-12 {
	padding-left: 6rem !important;
	padding-right: 6rem !important;
}

.u-pt-13 {
	padding-top: 6.5rem !important;
}

.u-pr-13 {
	padding-right: 6.5rem !important;
}

.u-pb-13 {
	padding-bottom: 6.5rem !important;
}

.u-pl-13 {
	padding-left: 6.5rem !important;
}

.u-py-13 {
	padding-bottom: 6.5rem !important;
	padding-top: 6.5rem !important;
}

.u-px-13 {
	padding-left: 6.5rem !important;
	padding-right: 6.5rem !important;
}

.u-pt-14 {
	padding-top: 7rem !important;
}

.u-pr-14 {
	padding-right: 7rem !important;
}

.u-pb-14 {
	padding-bottom: 7rem !important;
}

.u-pl-14 {
	padding-left: 7rem !important;
}

.u-py-14 {
	padding-bottom: 7rem !important;
	padding-top: 7rem !important;
}

.u-px-14 {
	padding-left: 7rem !important;
	padding-right: 7rem !important;
}

.u-pt-15 {
	padding-top: 7.5rem !important;
}

.u-pr-15 {
	padding-right: 7.5rem !important;
}

.u-pb-15 {
	padding-bottom: 7.5rem !important;
}

.u-pl-15 {
	padding-left: 7.5rem !important;
}

.u-py-15 {
	padding-bottom: 7.5rem !important;
	padding-top: 7.5rem !important;
}

.u-px-15 {
	padding-left: 7.5rem !important;
	padding-right: 7.5rem !important;
}

.u-pt-16 {
	padding-top: 8rem !important;
}

.u-pr-16 {
	padding-right: 8rem !important;
}

.u-pb-16 {
	padding-bottom: 8rem !important;
}

.u-pl-16 {
	padding-left: 8rem !important;
}

.u-py-16 {
	padding-bottom: 8rem !important;
	padding-top: 8rem !important;
}

.u-px-16 {
	padding-left: 8rem !important;
	padding-right: 8rem !important;
}

.u-pt-17 {
	padding-top: 8.5rem !important;
}

.u-pr-17 {
	padding-right: 8.5rem !important;
}

.u-pb-17 {
	padding-bottom: 8.5rem !important;
}

.u-pl-17 {
	padding-left: 8.5rem !important;
}

.u-py-17 {
	padding-bottom: 8.5rem !important;
	padding-top: 8.5rem !important;
}

.u-px-17 {
	padding-left: 8.5rem !important;
	padding-right: 8.5rem !important;
}

.u-pt-18 {
	padding-top: 9rem !important;
}

.u-pr-18 {
	padding-right: 9rem !important;
}

.u-pb-18 {
	padding-bottom: 9rem !important;
}

.u-pl-18 {
	padding-left: 9rem !important;
}

.u-py-18 {
	padding-bottom: 9rem !important;
	padding-top: 9rem !important;
}

.u-px-18 {
	padding-left: 9rem !important;
	padding-right: 9rem !important;
}

.u-pt-19 {
	padding-top: 9.5rem !important;
}

.u-pr-19 {
	padding-right: 9.5rem !important;
}

.u-pb-19 {
	padding-bottom: 9.5rem !important;
}

.u-pl-19 {
	padding-left: 9.5rem !important;
}

.u-py-19 {
	padding-bottom: 9.5rem !important;
	padding-top: 9.5rem !important;
}

.u-px-19 {
	padding-left: 9.5rem !important;
	padding-right: 9.5rem !important;
}

.u-pt-20 {
	padding-top: 10rem !important;
}

.u-pr-20 {
	padding-right: 10rem !important;
}

.u-pb-20 {
	padding-bottom: 10rem !important;
}

.u-pl-20 {
	padding-left: 10rem !important;
}

.u-py-20 {
	padding-bottom: 10rem !important;
	padding-top: 10rem !important;
}

.u-px-20 {
	padding-left: 10rem !important;
	padding-right: 10rem !important;
}

.u-color-font {
	color: var(--font-color);
}

.u-color-main {
	color: var(--main-color);
}

.u-color-sub2 {
	color: var(--sub-color-2);
}

.u-color-white {
	color: #fff;
}

.u-text-center {
	text-align: center;
}

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

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

.u-font-en {
	font-family: var(--en-font);
}

.u-gap--0 {
	gap: 0rem !important;
}

.u-gap-column-0 {
	-moz-column-gap: 0rem !important;
	column-gap: 0rem !important;
}

.u-gap-row-0 {
	row-gap: 0rem !important;
}

.u-gap--1 {
	gap: 0.5rem !important;
}

.u-gap-column-1 {
	-moz-column-gap: 0.5rem !important;
	column-gap: 0.5rem !important;
}

.u-gap-row-1 {
	row-gap: 0.5rem !important;
}

.u-gap--2 {
	gap: 1rem !important;
}

.u-gap-column-2 {
	-moz-column-gap: 1rem !important;
	column-gap: 1rem !important;
}

.u-gap-row-2 {
	row-gap: 1rem !important;
}

.u-gap--3 {
	gap: 1.5rem !important;
}

.u-gap-column-3 {
	-moz-column-gap: 1.5rem !important;
	column-gap: 1.5rem !important;
}

.u-gap-row-3 {
	row-gap: 1.5rem !important;
}

.u-gap--4 {
	gap: 2rem !important;
}

.u-gap-column-4 {
	-moz-column-gap: 2rem !important;
	column-gap: 2rem !important;
}

.u-gap-row-4 {
	row-gap: 2rem !important;
}

.u-gap--5 {
	gap: 2.5rem !important;
}

.u-gap-column-5 {
	-moz-column-gap: 2.5rem !important;
	column-gap: 2.5rem !important;
}

.u-gap-row-5 {
	row-gap: 2.5rem !important;
}

.u-gap--6 {
	gap: 3rem !important;
}

.u-gap-column-6 {
	-moz-column-gap: 3rem !important;
	column-gap: 3rem !important;
}

.u-gap-row-6 {
	row-gap: 3rem !important;
}

.u-gap--7 {
	gap: 3.5rem !important;
}

.u-gap-column-7 {
	-moz-column-gap: 3.5rem !important;
	column-gap: 3.5rem !important;
}

.u-gap-row-7 {
	row-gap: 3.5rem !important;
}

.u-gap--8 {
	gap: 4rem !important;
}

.u-gap-column-8 {
	-moz-column-gap: 4rem !important;
	column-gap: 4rem !important;
}

.u-gap-row-8 {
	row-gap: 4rem !important;
}

.u-gap--9 {
	gap: 4.5rem !important;
}

.u-gap-column-9 {
	-moz-column-gap: 4.5rem !important;
	column-gap: 4.5rem !important;
}

.u-gap-row-9 {
	row-gap: 4.5rem !important;
}

.u-gap--10 {
	gap: 5rem !important;
}

.u-gap-column-10 {
	-moz-column-gap: 5rem !important;
	column-gap: 5rem !important;
}

.u-gap-row-10 {
	row-gap: 5rem !important;
}

.u-gap--11 {
	gap: 5.5rem !important;
}

.u-gap-column-11 {
	-moz-column-gap: 5.5rem !important;
	column-gap: 5.5rem !important;
}

.u-gap-row-11 {
	row-gap: 5.5rem !important;
}

.u-gap--12 {
	gap: 6rem !important;
}

.u-gap-column-12 {
	-moz-column-gap: 6rem !important;
	column-gap: 6rem !important;
}

.u-gap-row-12 {
	row-gap: 6rem !important;
}

.u-gap--13 {
	gap: 6.5rem !important;
}

.u-gap-column-13 {
	-moz-column-gap: 6.5rem !important;
	column-gap: 6.5rem !important;
}

.u-gap-row-13 {
	row-gap: 6.5rem !important;
}

.u-gap--14 {
	gap: 7rem !important;
}

.u-gap-column-14 {
	-moz-column-gap: 7rem !important;
	column-gap: 7rem !important;
}

.u-gap-row-14 {
	row-gap: 7rem !important;
}

.u-gap--15 {
	gap: 7.5rem !important;
}

.u-gap-column-15 {
	-moz-column-gap: 7.5rem !important;
	column-gap: 7.5rem !important;
}

.u-gap-row-15 {
	row-gap: 7.5rem !important;
}

.u-gap--16 {
	gap: 8rem !important;
}

.u-gap-column-16 {
	-moz-column-gap: 8rem !important;
	column-gap: 8rem !important;
}

.u-gap-row-16 {
	row-gap: 8rem !important;
}

.u-gap--17 {
	gap: 8.5rem !important;
}

.u-gap-column-17 {
	-moz-column-gap: 8.5rem !important;
	column-gap: 8.5rem !important;
}

.u-gap-row-17 {
	row-gap: 8.5rem !important;
}

.u-gap--18 {
	gap: 9rem !important;
}

.u-gap-column-18 {
	-moz-column-gap: 9rem !important;
	column-gap: 9rem !important;
}

.u-gap-row-18 {
	row-gap: 9rem !important;
}

.u-gap--19 {
	gap: 9.5rem !important;
}

.u-gap-column-19 {
	-moz-column-gap: 9.5rem !important;
	column-gap: 9.5rem !important;
}

.u-gap-row-19 {
	row-gap: 9.5rem !important;
}

.u-gap--20 {
	gap: 10rem !important;
}

.u-gap-column-20 {
	-moz-column-gap: 10rem !important;
	column-gap: 10rem !important;
}

.u-gap-row-20 {
	row-gap: 10rem !important;
}

.u-weight-bold {
	font-weight: 700 !important;
}

.u-weight-light {
	font-weight: 300 !important;
}

.u-weight-medium {
	font-weight: 500 !important;
}

@media (min-width: 768px) and (max-width: 1280px) {

html {
	font-size: 1.25vw;
}

}

@media (min-width: 768px) {

.l-header__menu-item {
	align-items: center;
	border-left: 0.0625rem solid currentColor;
	display: flex;
	justify-content: center;
	min-width: 10rem;
	padding: 0.1875rem 1.5rem;
}

.l-header__menu-item:last-of-type {
	border-right: 0.0625rem solid currentColor;
}

.l-container {
	max-width: calc(1000px + 5% * 2);
}

.l-columns {
	grid-template-columns: repeat(2, 1fr);
}

.l-columns--3 {
	grid-template-columns: repeat(3, 1fr);
}

.p-fp-cast__text {
	display: none;
}

.p-fp-cast__list {
	margin-top: 3.59375rem;
}

.p-archive__heading {
	padding: 6rem 0;
}

.p-archive__heading-sentense {
	width: 50%;
}

.p-archive__heading-image {
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
}

.p-archive__heading-image img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-single__content table tr > *:first-of-type {
	width: 20%;
}

.p-system__item {
	padding-bottom: 3.125rem;
	padding-left: 5.625rem;
	padding-right: 5.625rem;
	padding-top: 3.125rem;
}

.p-system__title {
	font-size: 1.25rem;
	line-height: 2.7;
}

.p-access-map {
	left: calc((100% - 100vw) * 0.5);
	position: relative;
	width: 100vw;
}

.u-d-md-none {
	display: none !important;
}

.u-mt-md-0 {
	margin-top: 0rem !important;
}

.u-mr-md-0 {
	margin-right: 0rem !important;
}

.u-mb-md-0 {
	margin-bottom: 0rem !important;
}

.u-ml-md-0 {
	margin-left: 0rem !important;
}

.u-my-md-0 {
	margin-bottom: 0rem !important;
	margin-top: 0rem !important;
}

.u-mx-md-0 {
	margin-left: 0rem !important;
	margin-right: 0rem !important;
}

.u-mt-md-1 {
	margin-top: 0.5rem !important;
}

.u-mr-md-1 {
	margin-right: 0.5rem !important;
}

.u-mb-md-1 {
	margin-bottom: 0.5rem !important;
}

.u-ml-md-1 {
	margin-left: 0.5rem !important;
}

.u-my-md-1 {
	margin-bottom: 0.5rem !important;
	margin-top: 0.5rem !important;
}

.u-mx-md-1 {
	margin-left: 0.5rem !important;
	margin-right: 0.5rem !important;
}

.u-mt-md-2 {
	margin-top: 1rem !important;
}

.u-mr-md-2 {
	margin-right: 1rem !important;
}

.u-mb-md-2 {
	margin-bottom: 1rem !important;
}

.u-ml-md-2 {
	margin-left: 1rem !important;
}

.u-my-md-2 {
	margin-bottom: 1rem !important;
	margin-top: 1rem !important;
}

.u-mx-md-2 {
	margin-left: 1rem !important;
	margin-right: 1rem !important;
}

.u-mt-md-3 {
	margin-top: 1.5rem !important;
}

.u-mr-md-3 {
	margin-right: 1.5rem !important;
}

.u-mb-md-3 {
	margin-bottom: 1.5rem !important;
}

.u-ml-md-3 {
	margin-left: 1.5rem !important;
}

.u-my-md-3 {
	margin-bottom: 1.5rem !important;
	margin-top: 1.5rem !important;
}

.u-mx-md-3 {
	margin-left: 1.5rem !important;
	margin-right: 1.5rem !important;
}

.u-mt-md-4 {
	margin-top: 2rem !important;
}

.u-mr-md-4 {
	margin-right: 2rem !important;
}

.u-mb-md-4 {
	margin-bottom: 2rem !important;
}

.u-ml-md-4 {
	margin-left: 2rem !important;
}

.u-my-md-4 {
	margin-bottom: 2rem !important;
	margin-top: 2rem !important;
}

.u-mx-md-4 {
	margin-left: 2rem !important;
	margin-right: 2rem !important;
}

.u-mt-md-5 {
	margin-top: 2.5rem !important;
}

.u-mr-md-5 {
	margin-right: 2.5rem !important;
}

.u-mb-md-5 {
	margin-bottom: 2.5rem !important;
}

.u-ml-md-5 {
	margin-left: 2.5rem !important;
}

.u-my-md-5 {
	margin-bottom: 2.5rem !important;
	margin-top: 2.5rem !important;
}

.u-mx-md-5 {
	margin-left: 2.5rem !important;
	margin-right: 2.5rem !important;
}

.u-mt-md-6 {
	margin-top: 3rem !important;
}

.u-mr-md-6 {
	margin-right: 3rem !important;
}

.u-mb-md-6 {
	margin-bottom: 3rem !important;
}

.u-ml-md-6 {
	margin-left: 3rem !important;
}

.u-my-md-6 {
	margin-bottom: 3rem !important;
	margin-top: 3rem !important;
}

.u-mx-md-6 {
	margin-left: 3rem !important;
	margin-right: 3rem !important;
}

.u-mt-md-7 {
	margin-top: 3.5rem !important;
}

.u-mr-md-7 {
	margin-right: 3.5rem !important;
}

.u-mb-md-7 {
	margin-bottom: 3.5rem !important;
}

.u-ml-md-7 {
	margin-left: 3.5rem !important;
}

.u-my-md-7 {
	margin-bottom: 3.5rem !important;
	margin-top: 3.5rem !important;
}

.u-mx-md-7 {
	margin-left: 3.5rem !important;
	margin-right: 3.5rem !important;
}

.u-mt-md-8 {
	margin-top: 4rem !important;
}

.u-mr-md-8 {
	margin-right: 4rem !important;
}

.u-mb-md-8 {
	margin-bottom: 4rem !important;
}

.u-ml-md-8 {
	margin-left: 4rem !important;
}

.u-my-md-8 {
	margin-bottom: 4rem !important;
	margin-top: 4rem !important;
}

.u-mx-md-8 {
	margin-left: 4rem !important;
	margin-right: 4rem !important;
}

.u-mt-md-9 {
	margin-top: 4.5rem !important;
}

.u-mr-md-9 {
	margin-right: 4.5rem !important;
}

.u-mb-md-9 {
	margin-bottom: 4.5rem !important;
}

.u-ml-md-9 {
	margin-left: 4.5rem !important;
}

.u-my-md-9 {
	margin-bottom: 4.5rem !important;
	margin-top: 4.5rem !important;
}

.u-mx-md-9 {
	margin-left: 4.5rem !important;
	margin-right: 4.5rem !important;
}

.u-mt-md-10 {
	margin-top: 5rem !important;
}

.u-mr-md-10 {
	margin-right: 5rem !important;
}

.u-mb-md-10 {
	margin-bottom: 5rem !important;
}

.u-ml-md-10 {
	margin-left: 5rem !important;
}

.u-my-md-10 {
	margin-bottom: 5rem !important;
	margin-top: 5rem !important;
}

.u-mx-md-10 {
	margin-left: 5rem !important;
	margin-right: 5rem !important;
}

.u-mt-md-11 {
	margin-top: 5.5rem !important;
}

.u-mr-md-11 {
	margin-right: 5.5rem !important;
}

.u-mb-md-11 {
	margin-bottom: 5.5rem !important;
}

.u-ml-md-11 {
	margin-left: 5.5rem !important;
}

.u-my-md-11 {
	margin-bottom: 5.5rem !important;
	margin-top: 5.5rem !important;
}

.u-mx-md-11 {
	margin-left: 5.5rem !important;
	margin-right: 5.5rem !important;
}

.u-mt-md-12 {
	margin-top: 6rem !important;
}

.u-mr-md-12 {
	margin-right: 6rem !important;
}

.u-mb-md-12 {
	margin-bottom: 6rem !important;
}

.u-ml-md-12 {
	margin-left: 6rem !important;
}

.u-my-md-12 {
	margin-bottom: 6rem !important;
	margin-top: 6rem !important;
}

.u-mx-md-12 {
	margin-left: 6rem !important;
	margin-right: 6rem !important;
}

.u-mt-md-13 {
	margin-top: 6.5rem !important;
}

.u-mr-md-13 {
	margin-right: 6.5rem !important;
}

.u-mb-md-13 {
	margin-bottom: 6.5rem !important;
}

.u-ml-md-13 {
	margin-left: 6.5rem !important;
}

.u-my-md-13 {
	margin-bottom: 6.5rem !important;
	margin-top: 6.5rem !important;
}

.u-mx-md-13 {
	margin-left: 6.5rem !important;
	margin-right: 6.5rem !important;
}

.u-mt-md-14 {
	margin-top: 7rem !important;
}

.u-mr-md-14 {
	margin-right: 7rem !important;
}

.u-mb-md-14 {
	margin-bottom: 7rem !important;
}

.u-ml-md-14 {
	margin-left: 7rem !important;
}

.u-my-md-14 {
	margin-bottom: 7rem !important;
	margin-top: 7rem !important;
}

.u-mx-md-14 {
	margin-left: 7rem !important;
	margin-right: 7rem !important;
}

.u-mt-md-15 {
	margin-top: 7.5rem !important;
}

.u-mr-md-15 {
	margin-right: 7.5rem !important;
}

.u-mb-md-15 {
	margin-bottom: 7.5rem !important;
}

.u-ml-md-15 {
	margin-left: 7.5rem !important;
}

.u-my-md-15 {
	margin-bottom: 7.5rem !important;
	margin-top: 7.5rem !important;
}

.u-mx-md-15 {
	margin-left: 7.5rem !important;
	margin-right: 7.5rem !important;
}

.u-mt-md-16 {
	margin-top: 8rem !important;
}

.u-mr-md-16 {
	margin-right: 8rem !important;
}

.u-mb-md-16 {
	margin-bottom: 8rem !important;
}

.u-ml-md-16 {
	margin-left: 8rem !important;
}

.u-my-md-16 {
	margin-bottom: 8rem !important;
	margin-top: 8rem !important;
}

.u-mx-md-16 {
	margin-left: 8rem !important;
	margin-right: 8rem !important;
}

.u-mt-md-17 {
	margin-top: 8.5rem !important;
}

.u-mr-md-17 {
	margin-right: 8.5rem !important;
}

.u-mb-md-17 {
	margin-bottom: 8.5rem !important;
}

.u-ml-md-17 {
	margin-left: 8.5rem !important;
}

.u-my-md-17 {
	margin-bottom: 8.5rem !important;
	margin-top: 8.5rem !important;
}

.u-mx-md-17 {
	margin-left: 8.5rem !important;
	margin-right: 8.5rem !important;
}

.u-mt-md-18 {
	margin-top: 9rem !important;
}

.u-mr-md-18 {
	margin-right: 9rem !important;
}

.u-mb-md-18 {
	margin-bottom: 9rem !important;
}

.u-ml-md-18 {
	margin-left: 9rem !important;
}

.u-my-md-18 {
	margin-bottom: 9rem !important;
	margin-top: 9rem !important;
}

.u-mx-md-18 {
	margin-left: 9rem !important;
	margin-right: 9rem !important;
}

.u-mt-md-19 {
	margin-top: 9.5rem !important;
}

.u-mr-md-19 {
	margin-right: 9.5rem !important;
}

.u-mb-md-19 {
	margin-bottom: 9.5rem !important;
}

.u-ml-md-19 {
	margin-left: 9.5rem !important;
}

.u-my-md-19 {
	margin-bottom: 9.5rem !important;
	margin-top: 9.5rem !important;
}

.u-mx-md-19 {
	margin-left: 9.5rem !important;
	margin-right: 9.5rem !important;
}

.u-mt-md-20 {
	margin-top: 10rem !important;
}

.u-mr-md-20 {
	margin-right: 10rem !important;
}

.u-mb-md-20 {
	margin-bottom: 10rem !important;
}

.u-ml-md-20 {
	margin-left: 10rem !important;
}

.u-my-md-20 {
	margin-bottom: 10rem !important;
	margin-top: 10rem !important;
}

.u-mx-md-20 {
	margin-left: 10rem !important;
	margin-right: 10rem !important;
}

.u-pt-md-0 {
	padding-top: 0rem !important;
}

.u-pr-md-0 {
	padding-right: 0rem !important;
}

.u-pb-md-0 {
	padding-bottom: 0rem !important;
}

.u-pl-md-0 {
	padding-left: 0rem !important;
}

.u-py-md-0 {
	padding-bottom: 0rem !important;
	padding-top: 0rem !important;
}

.u-px-md-0 {
	padding-left: 0rem !important;
	padding-right: 0rem !important;
}

.u-pt-md-1 {
	padding-top: 0.5rem !important;
}

.u-pr-md-1 {
	padding-right: 0.5rem !important;
}

.u-pb-md-1 {
	padding-bottom: 0.5rem !important;
}

.u-pl-md-1 {
	padding-left: 0.5rem !important;
}

.u-py-md-1 {
	padding-bottom: 0.5rem !important;
	padding-top: 0.5rem !important;
}

.u-px-md-1 {
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}

.u-pt-md-2 {
	padding-top: 1rem !important;
}

.u-pr-md-2 {
	padding-right: 1rem !important;
}

.u-pb-md-2 {
	padding-bottom: 1rem !important;
}

.u-pl-md-2 {
	padding-left: 1rem !important;
}

.u-py-md-2 {
	padding-bottom: 1rem !important;
	padding-top: 1rem !important;
}

.u-px-md-2 {
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}

.u-pt-md-3 {
	padding-top: 1.5rem !important;
}

.u-pr-md-3 {
	padding-right: 1.5rem !important;
}

.u-pb-md-3 {
	padding-bottom: 1.5rem !important;
}

.u-pl-md-3 {
	padding-left: 1.5rem !important;
}

.u-py-md-3 {
	padding-bottom: 1.5rem !important;
	padding-top: 1.5rem !important;
}

.u-px-md-3 {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

.u-pt-md-4 {
	padding-top: 2rem !important;
}

.u-pr-md-4 {
	padding-right: 2rem !important;
}

.u-pb-md-4 {
	padding-bottom: 2rem !important;
}

.u-pl-md-4 {
	padding-left: 2rem !important;
}

.u-py-md-4 {
	padding-bottom: 2rem !important;
	padding-top: 2rem !important;
}

.u-px-md-4 {
	padding-left: 2rem !important;
	padding-right: 2rem !important;
}

.u-pt-md-5 {
	padding-top: 2.5rem !important;
}

.u-pr-md-5 {
	padding-right: 2.5rem !important;
}

.u-pb-md-5 {
	padding-bottom: 2.5rem !important;
}

.u-pl-md-5 {
	padding-left: 2.5rem !important;
}

.u-py-md-5 {
	padding-bottom: 2.5rem !important;
	padding-top: 2.5rem !important;
}

.u-px-md-5 {
	padding-left: 2.5rem !important;
	padding-right: 2.5rem !important;
}

.u-pt-md-6 {
	padding-top: 3rem !important;
}

.u-pr-md-6 {
	padding-right: 3rem !important;
}

.u-pb-md-6 {
	padding-bottom: 3rem !important;
}

.u-pl-md-6 {
	padding-left: 3rem !important;
}

.u-py-md-6 {
	padding-bottom: 3rem !important;
	padding-top: 3rem !important;
}

.u-px-md-6 {
	padding-left: 3rem !important;
	padding-right: 3rem !important;
}

.u-pt-md-7 {
	padding-top: 3.5rem !important;
}

.u-pr-md-7 {
	padding-right: 3.5rem !important;
}

.u-pb-md-7 {
	padding-bottom: 3.5rem !important;
}

.u-pl-md-7 {
	padding-left: 3.5rem !important;
}

.u-py-md-7 {
	padding-bottom: 3.5rem !important;
	padding-top: 3.5rem !important;
}

.u-px-md-7 {
	padding-left: 3.5rem !important;
	padding-right: 3.5rem !important;
}

.u-pt-md-8 {
	padding-top: 4rem !important;
}

.u-pr-md-8 {
	padding-right: 4rem !important;
}

.u-pb-md-8 {
	padding-bottom: 4rem !important;
}

.u-pl-md-8 {
	padding-left: 4rem !important;
}

.u-py-md-8 {
	padding-bottom: 4rem !important;
	padding-top: 4rem !important;
}

.u-px-md-8 {
	padding-left: 4rem !important;
	padding-right: 4rem !important;
}

.u-pt-md-9 {
	padding-top: 4.5rem !important;
}

.u-pr-md-9 {
	padding-right: 4.5rem !important;
}

.u-pb-md-9 {
	padding-bottom: 4.5rem !important;
}

.u-pl-md-9 {
	padding-left: 4.5rem !important;
}

.u-py-md-9 {
	padding-bottom: 4.5rem !important;
	padding-top: 4.5rem !important;
}

.u-px-md-9 {
	padding-left: 4.5rem !important;
	padding-right: 4.5rem !important;
}

.u-pt-md-10 {
	padding-top: 5rem !important;
}

.u-pr-md-10 {
	padding-right: 5rem !important;
}

.u-pb-md-10 {
	padding-bottom: 5rem !important;
}

.u-pl-md-10 {
	padding-left: 5rem !important;
}

.u-py-md-10 {
	padding-bottom: 5rem !important;
	padding-top: 5rem !important;
}

.u-px-md-10 {
	padding-left: 5rem !important;
	padding-right: 5rem !important;
}

.u-pt-md-11 {
	padding-top: 5.5rem !important;
}

.u-pr-md-11 {
	padding-right: 5.5rem !important;
}

.u-pb-md-11 {
	padding-bottom: 5.5rem !important;
}

.u-pl-md-11 {
	padding-left: 5.5rem !important;
}

.u-py-md-11 {
	padding-bottom: 5.5rem !important;
	padding-top: 5.5rem !important;
}

.u-px-md-11 {
	padding-left: 5.5rem !important;
	padding-right: 5.5rem !important;
}

.u-pt-md-12 {
	padding-top: 6rem !important;
}

.u-pr-md-12 {
	padding-right: 6rem !important;
}

.u-pb-md-12 {
	padding-bottom: 6rem !important;
}

.u-pl-md-12 {
	padding-left: 6rem !important;
}

.u-py-md-12 {
	padding-bottom: 6rem !important;
	padding-top: 6rem !important;
}

.u-px-md-12 {
	padding-left: 6rem !important;
	padding-right: 6rem !important;
}

.u-pt-md-13 {
	padding-top: 6.5rem !important;
}

.u-pr-md-13 {
	padding-right: 6.5rem !important;
}

.u-pb-md-13 {
	padding-bottom: 6.5rem !important;
}

.u-pl-md-13 {
	padding-left: 6.5rem !important;
}

.u-py-md-13 {
	padding-bottom: 6.5rem !important;
	padding-top: 6.5rem !important;
}

.u-px-md-13 {
	padding-left: 6.5rem !important;
	padding-right: 6.5rem !important;
}

.u-pt-md-14 {
	padding-top: 7rem !important;
}

.u-pr-md-14 {
	padding-right: 7rem !important;
}

.u-pb-md-14 {
	padding-bottom: 7rem !important;
}

.u-pl-md-14 {
	padding-left: 7rem !important;
}

.u-py-md-14 {
	padding-bottom: 7rem !important;
	padding-top: 7rem !important;
}

.u-px-md-14 {
	padding-left: 7rem !important;
	padding-right: 7rem !important;
}

.u-pt-md-15 {
	padding-top: 7.5rem !important;
}

.u-pr-md-15 {
	padding-right: 7.5rem !important;
}

.u-pb-md-15 {
	padding-bottom: 7.5rem !important;
}

.u-pl-md-15 {
	padding-left: 7.5rem !important;
}

.u-py-md-15 {
	padding-bottom: 7.5rem !important;
	padding-top: 7.5rem !important;
}

.u-px-md-15 {
	padding-left: 7.5rem !important;
	padding-right: 7.5rem !important;
}

.u-pt-md-16 {
	padding-top: 8rem !important;
}

.u-pr-md-16 {
	padding-right: 8rem !important;
}

.u-pb-md-16 {
	padding-bottom: 8rem !important;
}

.u-pl-md-16 {
	padding-left: 8rem !important;
}

.u-py-md-16 {
	padding-bottom: 8rem !important;
	padding-top: 8rem !important;
}

.u-px-md-16 {
	padding-left: 8rem !important;
	padding-right: 8rem !important;
}

.u-pt-md-17 {
	padding-top: 8.5rem !important;
}

.u-pr-md-17 {
	padding-right: 8.5rem !important;
}

.u-pb-md-17 {
	padding-bottom: 8.5rem !important;
}

.u-pl-md-17 {
	padding-left: 8.5rem !important;
}

.u-py-md-17 {
	padding-bottom: 8.5rem !important;
	padding-top: 8.5rem !important;
}

.u-px-md-17 {
	padding-left: 8.5rem !important;
	padding-right: 8.5rem !important;
}

.u-pt-md-18 {
	padding-top: 9rem !important;
}

.u-pr-md-18 {
	padding-right: 9rem !important;
}

.u-pb-md-18 {
	padding-bottom: 9rem !important;
}

.u-pl-md-18 {
	padding-left: 9rem !important;
}

.u-py-md-18 {
	padding-bottom: 9rem !important;
	padding-top: 9rem !important;
}

.u-px-md-18 {
	padding-left: 9rem !important;
	padding-right: 9rem !important;
}

.u-pt-md-19 {
	padding-top: 9.5rem !important;
}

.u-pr-md-19 {
	padding-right: 9.5rem !important;
}

.u-pb-md-19 {
	padding-bottom: 9.5rem !important;
}

.u-pl-md-19 {
	padding-left: 9.5rem !important;
}

.u-py-md-19 {
	padding-bottom: 9.5rem !important;
	padding-top: 9.5rem !important;
}

.u-px-md-19 {
	padding-left: 9.5rem !important;
	padding-right: 9.5rem !important;
}

.u-pt-md-20 {
	padding-top: 10rem !important;
}

.u-pr-md-20 {
	padding-right: 10rem !important;
}

.u-pb-md-20 {
	padding-bottom: 10rem !important;
}

.u-pl-md-20 {
	padding-left: 10rem !important;
}

.u-py-md-20 {
	padding-bottom: 10rem !important;
	padding-top: 10rem !important;
}

.u-px-md-20 {
	padding-left: 10rem !important;
	padding-right: 10rem !important;
}

.u-text-md-center {
	text-align: center !important;
}

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

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

.u-gap--md-0 {
	gap: 0rem !important;
}

.u-gap-column-md-0 {
	-moz-column-gap: 0rem !important;
	column-gap: 0rem !important;
}

.u-gap-row-md-0 {
	row-gap: 0rem !important;
}

.u-gap--md-1 {
	gap: 0.5rem !important;
}

.u-gap-column-md-1 {
	-moz-column-gap: 0.5rem !important;
	column-gap: 0.5rem !important;
}

.u-gap-row-md-1 {
	row-gap: 0.5rem !important;
}

.u-gap--md-2 {
	gap: 1rem !important;
}

.u-gap-column-md-2 {
	-moz-column-gap: 1rem !important;
	column-gap: 1rem !important;
}

.u-gap-row-md-2 {
	row-gap: 1rem !important;
}

.u-gap--md-3 {
	gap: 1.5rem !important;
}

.u-gap-column-md-3 {
	-moz-column-gap: 1.5rem !important;
	column-gap: 1.5rem !important;
}

.u-gap-row-md-3 {
	row-gap: 1.5rem !important;
}

.u-gap--md-4 {
	gap: 2rem !important;
}

.u-gap-column-md-4 {
	-moz-column-gap: 2rem !important;
	column-gap: 2rem !important;
}

.u-gap-row-md-4 {
	row-gap: 2rem !important;
}

.u-gap--md-5 {
	gap: 2.5rem !important;
}

.u-gap-column-md-5 {
	-moz-column-gap: 2.5rem !important;
	column-gap: 2.5rem !important;
}

.u-gap-row-md-5 {
	row-gap: 2.5rem !important;
}

.u-gap--md-6 {
	gap: 3rem !important;
}

.u-gap-column-md-6 {
	-moz-column-gap: 3rem !important;
	column-gap: 3rem !important;
}

.u-gap-row-md-6 {
	row-gap: 3rem !important;
}

.u-gap--md-7 {
	gap: 3.5rem !important;
}

.u-gap-column-md-7 {
	-moz-column-gap: 3.5rem !important;
	column-gap: 3.5rem !important;
}

.u-gap-row-md-7 {
	row-gap: 3.5rem !important;
}

.u-gap--md-8 {
	gap: 4rem !important;
}

.u-gap-column-md-8 {
	-moz-column-gap: 4rem !important;
	column-gap: 4rem !important;
}

.u-gap-row-md-8 {
	row-gap: 4rem !important;
}

.u-gap--md-9 {
	gap: 4.5rem !important;
}

.u-gap-column-md-9 {
	-moz-column-gap: 4.5rem !important;
	column-gap: 4.5rem !important;
}

.u-gap-row-md-9 {
	row-gap: 4.5rem !important;
}

.u-gap--md-10 {
	gap: 5rem !important;
}

.u-gap-column-md-10 {
	-moz-column-gap: 5rem !important;
	column-gap: 5rem !important;
}

.u-gap-row-md-10 {
	row-gap: 5rem !important;
}

.u-gap--md-11 {
	gap: 5.5rem !important;
}

.u-gap-column-md-11 {
	-moz-column-gap: 5.5rem !important;
	column-gap: 5.5rem !important;
}

.u-gap-row-md-11 {
	row-gap: 5.5rem !important;
}

.u-gap--md-12 {
	gap: 6rem !important;
}

.u-gap-column-md-12 {
	-moz-column-gap: 6rem !important;
	column-gap: 6rem !important;
}

.u-gap-row-md-12 {
	row-gap: 6rem !important;
}

.u-gap--md-13 {
	gap: 6.5rem !important;
}

.u-gap-column-md-13 {
	-moz-column-gap: 6.5rem !important;
	column-gap: 6.5rem !important;
}

.u-gap-row-md-13 {
	row-gap: 6.5rem !important;
}

.u-gap--md-14 {
	gap: 7rem !important;
}

.u-gap-column-md-14 {
	-moz-column-gap: 7rem !important;
	column-gap: 7rem !important;
}

.u-gap-row-md-14 {
	row-gap: 7rem !important;
}

.u-gap--md-15 {
	gap: 7.5rem !important;
}

.u-gap-column-md-15 {
	-moz-column-gap: 7.5rem !important;
	column-gap: 7.5rem !important;
}

.u-gap-row-md-15 {
	row-gap: 7.5rem !important;
}

.u-gap--md-16 {
	gap: 8rem !important;
}

.u-gap-column-md-16 {
	-moz-column-gap: 8rem !important;
	column-gap: 8rem !important;
}

.u-gap-row-md-16 {
	row-gap: 8rem !important;
}

.u-gap--md-17 {
	gap: 8.5rem !important;
}

.u-gap-column-md-17 {
	-moz-column-gap: 8.5rem !important;
	column-gap: 8.5rem !important;
}

.u-gap-row-md-17 {
	row-gap: 8.5rem !important;
}

.u-gap--md-18 {
	gap: 9rem !important;
}

.u-gap-column-md-18 {
	-moz-column-gap: 9rem !important;
	column-gap: 9rem !important;
}

.u-gap-row-md-18 {
	row-gap: 9rem !important;
}

.u-gap--md-19 {
	gap: 9.5rem !important;
}

.u-gap-column-md-19 {
	-moz-column-gap: 9.5rem !important;
	column-gap: 9.5rem !important;
}

.u-gap-row-md-19 {
	row-gap: 9.5rem !important;
}

.u-gap--md-20 {
	gap: 10rem !important;
}

.u-gap-column-md-20 {
	-moz-column-gap: 10rem !important;
	column-gap: 10rem !important;
}

.u-gap-row-md-20 {
	row-gap: 10rem !important;
}

}

@media (min-width: 1280px) {

html {
	font-size: 16px;
}

}

@media (max-width: 767px) {

:root {
	--header-height: 3.75rem;
}

body {
	font-size: 0.75rem;
	overflow-x: hidden;
}

.l-header {
	padding-left: 1rem;
	padding-right: 1rem;
}

.l-header__logo a {
	font-size: 1.25rem;
}

.l-footer {
	padding-top: 2.1875rem;
}

.l-footer__logo {
	font-size: 2rem;
}

.l-container {
	padding: 0 1rem;
}

.l-columns {
	grid-template-columns: repeat(1, 1fr);
}

.c-title1 {
	font-size: 1.625rem;
}

.c-form__confirm {
	font-size: 0.875rem;
}

.c-button1 {
	height: 3.125rem;
	width: 15.125rem;
}

.c-page-title {
	background: url(../img/common/page-title_bg-sp.jpg) center/cover no-repeat;
}

.c-page-title__group {
	gap: 1.25rem;
}

.c-page-title__title {
	font-size: 0.875rem;
}

.c-page-title__title-en {
	font-size: 2.5rem;
}

.c-list-news__item-inner a {
	flex-wrap: wrap;
}

.c-list-news__title {
	width: 100%;
}

.p-fp-fv {
	min-height: calc(38.6875rem - var(--header-height));
}

.p-fp-fv__inner {
	gap: 4.25rem;
}

.p-fp-fv__title {
	font-size: 2.5rem;
}

.p-fp-fv__text {
	font-size: 1.125rem;
}

.p-fp-about {
	background: url(../img/frontpage/about_bg-sp.jpg) center/cover no-repeat;
}

.p-fp-about__text {
	font-size: 0.875rem;
}

.p-fp-access__text {
	font-size: 1rem;
	line-height: 2.34;
}

.p-fp-access__map iframe {
	height: 14.625rem;
}

.p-archive__heading-sentense {
	padding: 1.625rem 1rem;
}

.p-archive__heading-title {
	font-size: 1.5rem;
	line-height: 2.5;
}

.p-archive__list {
	gap: 1.5rem;
	grid-template-columns: 1fr;
}

.p-archive__pagination {
	margin-top: 1.5rem;
}

.p-single__title {
	font-size: 1.5rem;
	line-height: 2;
	margin-bottom: 1.5rem;
}

.p-single__content .has-medium-font-size {
	--wp--preset--font-size--medium: 1rem;
	line-height: 2.6;
}

.p-single__content table td,
.p-single__content table th {
	display: block;
	padding-bottom: 0.5rem;
	padding-top: 0.5rem;
}

.p-single__content table tr > *:first-of-type {
	padding-top: 1.5rem;
}

.p-single__content table tr > *:last-of-type {
	padding-bottom: 1.5rem;
}

.p-system__list {
	align-items: end;
	flex-wrap: wrap;
}

.p-system__list-title {
	font-size: 1.25rem;
	line-height: 3.5;
}

.p-system__list-title small {
	display: block;
	font-size: 0.875rem;
	line-height: 2.4;
}

.p-system__list-text {
	flex-grow: 1;
	font-size: 1.75rem;
	line-height: 4.375rem;
	text-align: right;
}

.p-system__list-text small {
	font-size: 1.25rem;
}

.p-system__list-text--vip-price {
	line-height: 1.5;
}

.p-system__text {
	font-size: 0.875rem;
	line-height: 2.2;
	padding-bottom: 3.125rem;
}

.p-recruit-contact {
	flex-direction: column;
}

.p-access-map iframe {
	height: 12.5rem;
}

.u-d-sm-none {
	display: none !important;
}

.u-mt-sm-0 {
	margin-top: 0rem !important;
}

.u-mr-sm-0 {
	margin-right: 0rem !important;
}

.u-mb-sm-0 {
	margin-bottom: 0rem !important;
}

.u-ml-sm-0 {
	margin-left: 0rem !important;
}

.u-my-sm-0 {
	margin-bottom: 0rem !important;
	margin-top: 0rem !important;
}

.u-mx-sm-0 {
	margin-left: 0rem !important;
	margin-right: 0rem !important;
}

.u-mt-sm-1 {
	margin-top: 0.5rem !important;
}

.u-mr-sm-1 {
	margin-right: 0.5rem !important;
}

.u-mb-sm-1 {
	margin-bottom: 0.5rem !important;
}

.u-ml-sm-1 {
	margin-left: 0.5rem !important;
}

.u-my-sm-1 {
	margin-bottom: 0.5rem !important;
	margin-top: 0.5rem !important;
}

.u-mx-sm-1 {
	margin-left: 0.5rem !important;
	margin-right: 0.5rem !important;
}

.u-mt-sm-2 {
	margin-top: 1rem !important;
}

.u-mr-sm-2 {
	margin-right: 1rem !important;
}

.u-mb-sm-2 {
	margin-bottom: 1rem !important;
}

.u-ml-sm-2 {
	margin-left: 1rem !important;
}

.u-my-sm-2 {
	margin-bottom: 1rem !important;
	margin-top: 1rem !important;
}

.u-mx-sm-2 {
	margin-left: 1rem !important;
	margin-right: 1rem !important;
}

.u-mt-sm-3 {
	margin-top: 1.5rem !important;
}

.u-mr-sm-3 {
	margin-right: 1.5rem !important;
}

.u-mb-sm-3 {
	margin-bottom: 1.5rem !important;
}

.u-ml-sm-3 {
	margin-left: 1.5rem !important;
}

.u-my-sm-3 {
	margin-bottom: 1.5rem !important;
	margin-top: 1.5rem !important;
}

.u-mx-sm-3 {
	margin-left: 1.5rem !important;
	margin-right: 1.5rem !important;
}

.u-mt-sm-4 {
	margin-top: 2rem !important;
}

.u-mr-sm-4 {
	margin-right: 2rem !important;
}

.u-mb-sm-4 {
	margin-bottom: 2rem !important;
}

.u-ml-sm-4 {
	margin-left: 2rem !important;
}

.u-my-sm-4 {
	margin-bottom: 2rem !important;
	margin-top: 2rem !important;
}

.u-mx-sm-4 {
	margin-left: 2rem !important;
	margin-right: 2rem !important;
}

.u-mt-sm-5 {
	margin-top: 2.5rem !important;
}

.u-mr-sm-5 {
	margin-right: 2.5rem !important;
}

.u-mb-sm-5 {
	margin-bottom: 2.5rem !important;
}

.u-ml-sm-5 {
	margin-left: 2.5rem !important;
}

.u-my-sm-5 {
	margin-bottom: 2.5rem !important;
	margin-top: 2.5rem !important;
}

.u-mx-sm-5 {
	margin-left: 2.5rem !important;
	margin-right: 2.5rem !important;
}

.u-mt-sm-6 {
	margin-top: 3rem !important;
}

.u-mr-sm-6 {
	margin-right: 3rem !important;
}

.u-mb-sm-6 {
	margin-bottom: 3rem !important;
}

.u-ml-sm-6 {
	margin-left: 3rem !important;
}

.u-my-sm-6 {
	margin-bottom: 3rem !important;
	margin-top: 3rem !important;
}

.u-mx-sm-6 {
	margin-left: 3rem !important;
	margin-right: 3rem !important;
}

.u-mt-sm-7 {
	margin-top: 3.5rem !important;
}

.u-mr-sm-7 {
	margin-right: 3.5rem !important;
}

.u-mb-sm-7 {
	margin-bottom: 3.5rem !important;
}

.u-ml-sm-7 {
	margin-left: 3.5rem !important;
}

.u-my-sm-7 {
	margin-bottom: 3.5rem !important;
	margin-top: 3.5rem !important;
}

.u-mx-sm-7 {
	margin-left: 3.5rem !important;
	margin-right: 3.5rem !important;
}

.u-mt-sm-8 {
	margin-top: 4rem !important;
}

.u-mr-sm-8 {
	margin-right: 4rem !important;
}

.u-mb-sm-8 {
	margin-bottom: 4rem !important;
}

.u-ml-sm-8 {
	margin-left: 4rem !important;
}

.u-my-sm-8 {
	margin-bottom: 4rem !important;
	margin-top: 4rem !important;
}

.u-mx-sm-8 {
	margin-left: 4rem !important;
	margin-right: 4rem !important;
}

.u-mt-sm-9 {
	margin-top: 4.5rem !important;
}

.u-mr-sm-9 {
	margin-right: 4.5rem !important;
}

.u-mb-sm-9 {
	margin-bottom: 4.5rem !important;
}

.u-ml-sm-9 {
	margin-left: 4.5rem !important;
}

.u-my-sm-9 {
	margin-bottom: 4.5rem !important;
	margin-top: 4.5rem !important;
}

.u-mx-sm-9 {
	margin-left: 4.5rem !important;
	margin-right: 4.5rem !important;
}

.u-mt-sm-10 {
	margin-top: 5rem !important;
}

.u-mr-sm-10 {
	margin-right: 5rem !important;
}

.u-mb-sm-10 {
	margin-bottom: 5rem !important;
}

.u-ml-sm-10 {
	margin-left: 5rem !important;
}

.u-my-sm-10 {
	margin-bottom: 5rem !important;
	margin-top: 5rem !important;
}

.u-mx-sm-10 {
	margin-left: 5rem !important;
	margin-right: 5rem !important;
}

.u-mt-sm-11 {
	margin-top: 5.5rem !important;
}

.u-mr-sm-11 {
	margin-right: 5.5rem !important;
}

.u-mb-sm-11 {
	margin-bottom: 5.5rem !important;
}

.u-ml-sm-11 {
	margin-left: 5.5rem !important;
}

.u-my-sm-11 {
	margin-bottom: 5.5rem !important;
	margin-top: 5.5rem !important;
}

.u-mx-sm-11 {
	margin-left: 5.5rem !important;
	margin-right: 5.5rem !important;
}

.u-mt-sm-12 {
	margin-top: 6rem !important;
}

.u-mr-sm-12 {
	margin-right: 6rem !important;
}

.u-mb-sm-12 {
	margin-bottom: 6rem !important;
}

.u-ml-sm-12 {
	margin-left: 6rem !important;
}

.u-my-sm-12 {
	margin-bottom: 6rem !important;
	margin-top: 6rem !important;
}

.u-mx-sm-12 {
	margin-left: 6rem !important;
	margin-right: 6rem !important;
}

.u-mt-sm-13 {
	margin-top: 6.5rem !important;
}

.u-mr-sm-13 {
	margin-right: 6.5rem !important;
}

.u-mb-sm-13 {
	margin-bottom: 6.5rem !important;
}

.u-ml-sm-13 {
	margin-left: 6.5rem !important;
}

.u-my-sm-13 {
	margin-bottom: 6.5rem !important;
	margin-top: 6.5rem !important;
}

.u-mx-sm-13 {
	margin-left: 6.5rem !important;
	margin-right: 6.5rem !important;
}

.u-mt-sm-14 {
	margin-top: 7rem !important;
}

.u-mr-sm-14 {
	margin-right: 7rem !important;
}

.u-mb-sm-14 {
	margin-bottom: 7rem !important;
}

.u-ml-sm-14 {
	margin-left: 7rem !important;
}

.u-my-sm-14 {
	margin-bottom: 7rem !important;
	margin-top: 7rem !important;
}

.u-mx-sm-14 {
	margin-left: 7rem !important;
	margin-right: 7rem !important;
}

.u-mt-sm-15 {
	margin-top: 7.5rem !important;
}

.u-mr-sm-15 {
	margin-right: 7.5rem !important;
}

.u-mb-sm-15 {
	margin-bottom: 7.5rem !important;
}

.u-ml-sm-15 {
	margin-left: 7.5rem !important;
}

.u-my-sm-15 {
	margin-bottom: 7.5rem !important;
	margin-top: 7.5rem !important;
}

.u-mx-sm-15 {
	margin-left: 7.5rem !important;
	margin-right: 7.5rem !important;
}

.u-mt-sm-16 {
	margin-top: 8rem !important;
}

.u-mr-sm-16 {
	margin-right: 8rem !important;
}

.u-mb-sm-16 {
	margin-bottom: 8rem !important;
}

.u-ml-sm-16 {
	margin-left: 8rem !important;
}

.u-my-sm-16 {
	margin-bottom: 8rem !important;
	margin-top: 8rem !important;
}

.u-mx-sm-16 {
	margin-left: 8rem !important;
	margin-right: 8rem !important;
}

.u-mt-sm-17 {
	margin-top: 8.5rem !important;
}

.u-mr-sm-17 {
	margin-right: 8.5rem !important;
}

.u-mb-sm-17 {
	margin-bottom: 8.5rem !important;
}

.u-ml-sm-17 {
	margin-left: 8.5rem !important;
}

.u-my-sm-17 {
	margin-bottom: 8.5rem !important;
	margin-top: 8.5rem !important;
}

.u-mx-sm-17 {
	margin-left: 8.5rem !important;
	margin-right: 8.5rem !important;
}

.u-mt-sm-18 {
	margin-top: 9rem !important;
}

.u-mr-sm-18 {
	margin-right: 9rem !important;
}

.u-mb-sm-18 {
	margin-bottom: 9rem !important;
}

.u-ml-sm-18 {
	margin-left: 9rem !important;
}

.u-my-sm-18 {
	margin-bottom: 9rem !important;
	margin-top: 9rem !important;
}

.u-mx-sm-18 {
	margin-left: 9rem !important;
	margin-right: 9rem !important;
}

.u-mt-sm-19 {
	margin-top: 9.5rem !important;
}

.u-mr-sm-19 {
	margin-right: 9.5rem !important;
}

.u-mb-sm-19 {
	margin-bottom: 9.5rem !important;
}

.u-ml-sm-19 {
	margin-left: 9.5rem !important;
}

.u-my-sm-19 {
	margin-bottom: 9.5rem !important;
	margin-top: 9.5rem !important;
}

.u-mx-sm-19 {
	margin-left: 9.5rem !important;
	margin-right: 9.5rem !important;
}

.u-mt-sm-20 {
	margin-top: 10rem !important;
}

.u-mr-sm-20 {
	margin-right: 10rem !important;
}

.u-mb-sm-20 {
	margin-bottom: 10rem !important;
}

.u-ml-sm-20 {
	margin-left: 10rem !important;
}

.u-my-sm-20 {
	margin-bottom: 10rem !important;
	margin-top: 10rem !important;
}

.u-mx-sm-20 {
	margin-left: 10rem !important;
	margin-right: 10rem !important;
}

.u-py-default {
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.u-pt-sm-0 {
	padding-top: 0rem !important;
}

.u-pr-sm-0 {
	padding-right: 0rem !important;
}

.u-pb-sm-0 {
	padding-bottom: 0rem !important;
}

.u-pl-sm-0 {
	padding-left: 0rem !important;
}

.u-py-sm-0 {
	padding-bottom: 0rem !important;
	padding-top: 0rem !important;
}

.u-px-sm-0 {
	padding-left: 0rem !important;
	padding-right: 0rem !important;
}

.u-pt-sm-1 {
	padding-top: 0.5rem !important;
}

.u-pr-sm-1 {
	padding-right: 0.5rem !important;
}

.u-pb-sm-1 {
	padding-bottom: 0.5rem !important;
}

.u-pl-sm-1 {
	padding-left: 0.5rem !important;
}

.u-py-sm-1 {
	padding-bottom: 0.5rem !important;
	padding-top: 0.5rem !important;
}

.u-px-sm-1 {
	padding-left: 0.5rem !important;
	padding-right: 0.5rem !important;
}

.u-pt-sm-2 {
	padding-top: 1rem !important;
}

.u-pr-sm-2 {
	padding-right: 1rem !important;
}

.u-pb-sm-2 {
	padding-bottom: 1rem !important;
}

.u-pl-sm-2 {
	padding-left: 1rem !important;
}

.u-py-sm-2 {
	padding-bottom: 1rem !important;
	padding-top: 1rem !important;
}

.u-px-sm-2 {
	padding-left: 1rem !important;
	padding-right: 1rem !important;
}

.u-pt-sm-3 {
	padding-top: 1.5rem !important;
}

.u-pr-sm-3 {
	padding-right: 1.5rem !important;
}

.u-pb-sm-3 {
	padding-bottom: 1.5rem !important;
}

.u-pl-sm-3 {
	padding-left: 1.5rem !important;
}

.u-py-sm-3 {
	padding-bottom: 1.5rem !important;
	padding-top: 1.5rem !important;
}

.u-px-sm-3 {
	padding-left: 1.5rem !important;
	padding-right: 1.5rem !important;
}

.u-pt-sm-4 {
	padding-top: 2rem !important;
}

.u-pr-sm-4 {
	padding-right: 2rem !important;
}

.u-pb-sm-4 {
	padding-bottom: 2rem !important;
}

.u-pl-sm-4 {
	padding-left: 2rem !important;
}

.u-py-sm-4 {
	padding-bottom: 2rem !important;
	padding-top: 2rem !important;
}

.u-px-sm-4 {
	padding-left: 2rem !important;
	padding-right: 2rem !important;
}

.u-pt-sm-5 {
	padding-top: 2.5rem !important;
}

.u-pr-sm-5 {
	padding-right: 2.5rem !important;
}

.u-pb-sm-5 {
	padding-bottom: 2.5rem !important;
}

.u-pl-sm-5 {
	padding-left: 2.5rem !important;
}

.u-py-sm-5 {
	padding-bottom: 2.5rem !important;
	padding-top: 2.5rem !important;
}

.u-px-sm-5 {
	padding-left: 2.5rem !important;
	padding-right: 2.5rem !important;
}

.u-pt-sm-6 {
	padding-top: 3rem !important;
}

.u-pr-sm-6 {
	padding-right: 3rem !important;
}

.u-pb-sm-6 {
	padding-bottom: 3rem !important;
}

.u-pl-sm-6 {
	padding-left: 3rem !important;
}

.u-py-sm-6 {
	padding-bottom: 3rem !important;
	padding-top: 3rem !important;
}

.u-px-sm-6 {
	padding-left: 3rem !important;
	padding-right: 3rem !important;
}

.u-pt-sm-7 {
	padding-top: 3.5rem !important;
}

.u-pr-sm-7 {
	padding-right: 3.5rem !important;
}

.u-pb-sm-7 {
	padding-bottom: 3.5rem !important;
}

.u-pl-sm-7 {
	padding-left: 3.5rem !important;
}

.u-py-sm-7 {
	padding-bottom: 3.5rem !important;
	padding-top: 3.5rem !important;
}

.u-px-sm-7 {
	padding-left: 3.5rem !important;
	padding-right: 3.5rem !important;
}

.u-pt-sm-8 {
	padding-top: 4rem !important;
}

.u-pr-sm-8 {
	padding-right: 4rem !important;
}

.u-pb-sm-8 {
	padding-bottom: 4rem !important;
}

.u-pl-sm-8 {
	padding-left: 4rem !important;
}

.u-py-sm-8 {
	padding-bottom: 4rem !important;
	padding-top: 4rem !important;
}

.u-px-sm-8 {
	padding-left: 4rem !important;
	padding-right: 4rem !important;
}

.u-pt-sm-9 {
	padding-top: 4.5rem !important;
}

.u-pr-sm-9 {
	padding-right: 4.5rem !important;
}

.u-pb-sm-9 {
	padding-bottom: 4.5rem !important;
}

.u-pl-sm-9 {
	padding-left: 4.5rem !important;
}

.u-py-sm-9 {
	padding-bottom: 4.5rem !important;
	padding-top: 4.5rem !important;
}

.u-px-sm-9 {
	padding-left: 4.5rem !important;
	padding-right: 4.5rem !important;
}

.u-pt-sm-10 {
	padding-top: 5rem !important;
}

.u-pr-sm-10 {
	padding-right: 5rem !important;
}

.u-pb-sm-10 {
	padding-bottom: 5rem !important;
}

.u-pl-sm-10 {
	padding-left: 5rem !important;
}

.u-py-sm-10 {
	padding-bottom: 5rem !important;
	padding-top: 5rem !important;
}

.u-px-sm-10 {
	padding-left: 5rem !important;
	padding-right: 5rem !important;
}

.u-pt-sm-11 {
	padding-top: 5.5rem !important;
}

.u-pr-sm-11 {
	padding-right: 5.5rem !important;
}

.u-pb-sm-11 {
	padding-bottom: 5.5rem !important;
}

.u-pl-sm-11 {
	padding-left: 5.5rem !important;
}

.u-py-sm-11 {
	padding-bottom: 5.5rem !important;
	padding-top: 5.5rem !important;
}

.u-px-sm-11 {
	padding-left: 5.5rem !important;
	padding-right: 5.5rem !important;
}

.u-pt-sm-12 {
	padding-top: 6rem !important;
}

.u-pr-sm-12 {
	padding-right: 6rem !important;
}

.u-pb-sm-12 {
	padding-bottom: 6rem !important;
}

.u-pl-sm-12 {
	padding-left: 6rem !important;
}

.u-py-sm-12 {
	padding-bottom: 6rem !important;
	padding-top: 6rem !important;
}

.u-px-sm-12 {
	padding-left: 6rem !important;
	padding-right: 6rem !important;
}

.u-pt-sm-13 {
	padding-top: 6.5rem !important;
}

.u-pr-sm-13 {
	padding-right: 6.5rem !important;
}

.u-pb-sm-13 {
	padding-bottom: 6.5rem !important;
}

.u-pl-sm-13 {
	padding-left: 6.5rem !important;
}

.u-py-sm-13 {
	padding-bottom: 6.5rem !important;
	padding-top: 6.5rem !important;
}

.u-px-sm-13 {
	padding-left: 6.5rem !important;
	padding-right: 6.5rem !important;
}

.u-pt-sm-14 {
	padding-top: 7rem !important;
}

.u-pr-sm-14 {
	padding-right: 7rem !important;
}

.u-pb-sm-14 {
	padding-bottom: 7rem !important;
}

.u-pl-sm-14 {
	padding-left: 7rem !important;
}

.u-py-sm-14 {
	padding-bottom: 7rem !important;
	padding-top: 7rem !important;
}

.u-px-sm-14 {
	padding-left: 7rem !important;
	padding-right: 7rem !important;
}

.u-pt-sm-15 {
	padding-top: 7.5rem !important;
}

.u-pr-sm-15 {
	padding-right: 7.5rem !important;
}

.u-pb-sm-15 {
	padding-bottom: 7.5rem !important;
}

.u-pl-sm-15 {
	padding-left: 7.5rem !important;
}

.u-py-sm-15 {
	padding-bottom: 7.5rem !important;
	padding-top: 7.5rem !important;
}

.u-px-sm-15 {
	padding-left: 7.5rem !important;
	padding-right: 7.5rem !important;
}

.u-pt-sm-16 {
	padding-top: 8rem !important;
}

.u-pr-sm-16 {
	padding-right: 8rem !important;
}

.u-pb-sm-16 {
	padding-bottom: 8rem !important;
}

.u-pl-sm-16 {
	padding-left: 8rem !important;
}

.u-py-sm-16 {
	padding-bottom: 8rem !important;
	padding-top: 8rem !important;
}

.u-px-sm-16 {
	padding-left: 8rem !important;
	padding-right: 8rem !important;
}

.u-pt-sm-17 {
	padding-top: 8.5rem !important;
}

.u-pr-sm-17 {
	padding-right: 8.5rem !important;
}

.u-pb-sm-17 {
	padding-bottom: 8.5rem !important;
}

.u-pl-sm-17 {
	padding-left: 8.5rem !important;
}

.u-py-sm-17 {
	padding-bottom: 8.5rem !important;
	padding-top: 8.5rem !important;
}

.u-px-sm-17 {
	padding-left: 8.5rem !important;
	padding-right: 8.5rem !important;
}

.u-pt-sm-18 {
	padding-top: 9rem !important;
}

.u-pr-sm-18 {
	padding-right: 9rem !important;
}

.u-pb-sm-18 {
	padding-bottom: 9rem !important;
}

.u-pl-sm-18 {
	padding-left: 9rem !important;
}

.u-py-sm-18 {
	padding-bottom: 9rem !important;
	padding-top: 9rem !important;
}

.u-px-sm-18 {
	padding-left: 9rem !important;
	padding-right: 9rem !important;
}

.u-pt-sm-19 {
	padding-top: 9.5rem !important;
}

.u-pr-sm-19 {
	padding-right: 9.5rem !important;
}

.u-pb-sm-19 {
	padding-bottom: 9.5rem !important;
}

.u-pl-sm-19 {
	padding-left: 9.5rem !important;
}

.u-py-sm-19 {
	padding-bottom: 9.5rem !important;
	padding-top: 9.5rem !important;
}

.u-px-sm-19 {
	padding-left: 9.5rem !important;
	padding-right: 9.5rem !important;
}

.u-pt-sm-20 {
	padding-top: 10rem !important;
}

.u-pr-sm-20 {
	padding-right: 10rem !important;
}

.u-pb-sm-20 {
	padding-bottom: 10rem !important;
}

.u-pl-sm-20 {
	padding-left: 10rem !important;
}

.u-py-sm-20 {
	padding-bottom: 10rem !important;
	padding-top: 10rem !important;
}

.u-px-sm-20 {
	padding-left: 10rem !important;
	padding-right: 10rem !important;
}

.u-gap--sm-0 {
	gap: 0rem !important;
}

.u-gap-column-sm-0 {
	-moz-column-gap: 0rem !important;
	column-gap: 0rem !important;
}

.u-gap-row-sm-0 {
	row-gap: 0rem !important;
}

.u-gap--sm-1 {
	gap: 0.5rem !important;
}

.u-gap-column-sm-1 {
	-moz-column-gap: 0.5rem !important;
	column-gap: 0.5rem !important;
}

.u-gap-row-sm-1 {
	row-gap: 0.5rem !important;
}

.u-gap--sm-2 {
	gap: 1rem !important;
}

.u-gap-column-sm-2 {
	-moz-column-gap: 1rem !important;
	column-gap: 1rem !important;
}

.u-gap-row-sm-2 {
	row-gap: 1rem !important;
}

.u-gap--sm-3 {
	gap: 1.5rem !important;
}

.u-gap-column-sm-3 {
	-moz-column-gap: 1.5rem !important;
	column-gap: 1.5rem !important;
}

.u-gap-row-sm-3 {
	row-gap: 1.5rem !important;
}

.u-gap--sm-4 {
	gap: 2rem !important;
}

.u-gap-column-sm-4 {
	-moz-column-gap: 2rem !important;
	column-gap: 2rem !important;
}

.u-gap-row-sm-4 {
	row-gap: 2rem !important;
}

.u-gap--sm-5 {
	gap: 2.5rem !important;
}

.u-gap-column-sm-5 {
	-moz-column-gap: 2.5rem !important;
	column-gap: 2.5rem !important;
}

.u-gap-row-sm-5 {
	row-gap: 2.5rem !important;
}

.u-gap--sm-6 {
	gap: 3rem !important;
}

.u-gap-column-sm-6 {
	-moz-column-gap: 3rem !important;
	column-gap: 3rem !important;
}

.u-gap-row-sm-6 {
	row-gap: 3rem !important;
}

.u-gap--sm-7 {
	gap: 3.5rem !important;
}

.u-gap-column-sm-7 {
	-moz-column-gap: 3.5rem !important;
	column-gap: 3.5rem !important;
}

.u-gap-row-sm-7 {
	row-gap: 3.5rem !important;
}

.u-gap--sm-8 {
	gap: 4rem !important;
}

.u-gap-column-sm-8 {
	-moz-column-gap: 4rem !important;
	column-gap: 4rem !important;
}

.u-gap-row-sm-8 {
	row-gap: 4rem !important;
}

.u-gap--sm-9 {
	gap: 4.5rem !important;
}

.u-gap-column-sm-9 {
	-moz-column-gap: 4.5rem !important;
	column-gap: 4.5rem !important;
}

.u-gap-row-sm-9 {
	row-gap: 4.5rem !important;
}

.u-gap--sm-10 {
	gap: 5rem !important;
}

.u-gap-column-sm-10 {
	-moz-column-gap: 5rem !important;
	column-gap: 5rem !important;
}

.u-gap-row-sm-10 {
	row-gap: 5rem !important;
}

.u-gap--sm-11 {
	gap: 5.5rem !important;
}

.u-gap-column-sm-11 {
	-moz-column-gap: 5.5rem !important;
	column-gap: 5.5rem !important;
}

.u-gap-row-sm-11 {
	row-gap: 5.5rem !important;
}

.u-gap--sm-12 {
	gap: 6rem !important;
}

.u-gap-column-sm-12 {
	-moz-column-gap: 6rem !important;
	column-gap: 6rem !important;
}

.u-gap-row-sm-12 {
	row-gap: 6rem !important;
}

.u-gap--sm-13 {
	gap: 6.5rem !important;
}

.u-gap-column-sm-13 {
	-moz-column-gap: 6.5rem !important;
	column-gap: 6.5rem !important;
}

.u-gap-row-sm-13 {
	row-gap: 6.5rem !important;
}

.u-gap--sm-14 {
	gap: 7rem !important;
}

.u-gap-column-sm-14 {
	-moz-column-gap: 7rem !important;
	column-gap: 7rem !important;
}

.u-gap-row-sm-14 {
	row-gap: 7rem !important;
}

.u-gap--sm-15 {
	gap: 7.5rem !important;
}

.u-gap-column-sm-15 {
	-moz-column-gap: 7.5rem !important;
	column-gap: 7.5rem !important;
}

.u-gap-row-sm-15 {
	row-gap: 7.5rem !important;
}

.u-gap--sm-16 {
	gap: 8rem !important;
}

.u-gap-column-sm-16 {
	-moz-column-gap: 8rem !important;
	column-gap: 8rem !important;
}

.u-gap-row-sm-16 {
	row-gap: 8rem !important;
}

.u-gap--sm-17 {
	gap: 8.5rem !important;
}

.u-gap-column-sm-17 {
	-moz-column-gap: 8.5rem !important;
	column-gap: 8.5rem !important;
}

.u-gap-row-sm-17 {
	row-gap: 8.5rem !important;
}

.u-gap--sm-18 {
	gap: 9rem !important;
}

.u-gap-column-sm-18 {
	-moz-column-gap: 9rem !important;
	column-gap: 9rem !important;
}

.u-gap-row-sm-18 {
	row-gap: 9rem !important;
}

.u-gap--sm-19 {
	gap: 9.5rem !important;
}

.u-gap-column-sm-19 {
	-moz-column-gap: 9.5rem !important;
	column-gap: 9.5rem !important;
}

.u-gap-row-sm-19 {
	row-gap: 9.5rem !important;
}

.u-gap--sm-20 {
	gap: 10rem !important;
}

.u-gap-column-sm-20 {
	-moz-column-gap: 10rem !important;
	column-gap: 10rem !important;
}

.u-gap-row-sm-20 {
	row-gap: 10rem !important;
}

.u-weight-sm-bold {
	font-weight: 700 !important;
}

}

@media (max-width: 580px) {

.u-text-sm-center {
	text-align: center !important;
}

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

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

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

