:root {
	--font-color: #212529;
	--main-color: #E5AF5C;
	--main-color-dark: #e0d3ca;
	--main-color-light: #F7CA86;
	--sub-color-1: #f6f9fc;
	--sub-color-2: #516f90;
	--bg-color-1: #F3F5F6;
	--bg-color-2: #FFF8EC;
	--main-font: "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	--sub-font: "Noto Sans JP", "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	--en-font: "Helvetica Neue", "Arial", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	--header-height: 5rem;
}

*,
*: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: #fff;
	color: #2e475d;
	padding: 0 2rem;
	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;
}

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

.l-header__logo {
	display: flex;
}

.l-header__logo img {
	width: 12.375rem;
}

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

.l-header__menu-item a {
	color: #333;
	font-family: "Noto Sans JP";
	font-size: 0.875rem;
	font-style: normal;
	font-weight: 700;
	line-height: 1.3125rem; /* 150% */
}

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

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

.l-header__buttons {
	display: flex;
	gap: 0.5rem;
}

.l-header__button {
	font-size: 0.9375rem;
	height: 3.125rem;
	width: 10.625rem;
}

.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.125rem;
	color: #2c2c2c;
	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: #fff;
	display: flex;
	flex-direction: column;
	height: 100vh;
	left: 0;
	overflow-y: scroll;
	padding-top: 3.75rem;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 10;
}

.l-footer {
	padding-bottom: 4rem;
	padding-top: 4rem;
}

.l-footer__inner {
	display: flex;
}

.l-footer__logo img {
	width: 12.375rem;
}

.l-footer__text {
	font-size: 1rem;
	font-weight: 350;
	line-height: 1.5;
}

.l-footer__button-list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.l-footer__button-wrap {
	height: 3.125rem;
	width: 100%;
}

.l-footer__menu-item {
	color: #333;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 2rem;
}

.l-footer__sub-menu {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 0.625rem;
	padding-left: 1.375rem;
}

.l-footer__sub-menu-item {
	line-height: 2;
	position: relative;
}

.l-footer__sub-menu-item::before {
	background: currentColor;
	border-radius: 50%;
	content: "";
	display: inline-block;
	height: 0.375rem;
	position: absolute;
	right: calc(100% + 0.5em);
	top: 0.75em;
	width: 0.375rem;
}

.l-footer__copyright {
	color: #666;
	font-size: 0.875rem;
	font-weight: 350;
	line-height: 1.5;
	margin-top: 5rem;
}

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

.l-sp-menu {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

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

.l-sp-menu__item a {
	color: #333;
	font-size: 0.875rem;
	font-weight: 700;
	letter-spacing: 0.04375rem;
	line-height: 1.6;
}

.l-sp-menu__buttons {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 15.125rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.l-sp-menu__button {
	font-size: 1rem;
	height: 3.125rem;
}

.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.75rem;
	font-weight: 700;
	letter-spacing: 0.025rem;
	line-height: 1.5;
}

.c-form {
	color: #2e475d;
	display: flex;
	flex-direction: column;
	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: red;
	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: 12.5rem;
	resize: vertical;
}

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

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

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

.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-dlist__item {
	align-items: center;
	border-bottom: 0.0625rem solid #838383;
	display: flex;
	line-height: 1.7;
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.c-dlist__title {
	color: var(--main-color);
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	margin-left: 0.625rem;
	width: 25%;
}

.c-dlist__deta {
	color: #000;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	width: 75%;
}

.c-button1 {
	--button-border-radius: 6.25rem;
	--button-color: #fff;
	--button-bg-color: var(--main-color);
	align-items: center;
	background: var(--button-bg-color);
	border: 0.0625rem solid var(--button-bg-color);
	border-radius: var(--button-border-radius);
	color: var(--button-color);
	display: inline-flex;
	font-size: inherit;
	font-weight: 500;
	gap: 0.5rem;
	height: 4.5rem;
	justify-content: center;
	line-height: 1.57;
	max-height: 100%;
	max-width: 100%;
	overflow: hidden;
	padding: 0.625rem;
	position: relative;
	transition: ease 0.2s;
	width: 20rem;
	z-index: 0;
}

.c-button1:hover {
	color: var(--button-bg-color);
	opacity: 1;
}

.c-button1:hover path {
	fill: var(--button-bg-color);
}

.c-button1:hover::before {
	transform: scale(1, 1);
	transform-origin: left top;
}

.c-button1::before { /*色や形状*/
	background: var(--button-color); /*背景色*/
	content: "";
	height: 100%;
	left: 0; /*絶対配置で位置を指定*/
	position: absolute;
	top: 0;
	transform: scale(0, 1);
	transform-origin: right top; /*アニメーション*/
	transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
	width: 100%;
	z-index: -1;
}

.c-button1 svg path {
	transition: fill ease 0.2s;
}

.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--font-color::before {
	background: var(--button-color);
}

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

.c-button1--outline::before {
	background: var(--button-bg-color);
}

.c-button1--outline:hover {
	color: var(--button-color);
}

.c-button1--outline:hover path {
	fill: var(--button-color);
}

.c-button1--input input {
	background: unset;
	border: none;
	color: inherit;
	cursor: pointer;
	height: 100%;
	width: 100%;
}

.c-heading {
	background: var(--sub-color-1);
	color: #000;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.38;
	margin: 0;
	padding-bottom: 2.5rem;
	padding-top: 2.5rem;
	text-align: center;
}

.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 {
	background: #fff;
	border-radius: 0.625rem;
	box-shadow: 0px 0px 0.625rem 0px rgba(0, 0, 0, 0.25);
	display: flex;
}

.c-card-blog__link {
	display: flex;
	flex-direction: column;
}

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

.c-card-blog__content {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 1.5625rem 1.25rem;
}

.c-card-blog__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	margin-bottom: 0.8125rem;
}

.c-card-blog__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;
}

.c-card-blog__title {
	flex-grow: 1;
	font-size: 0.9375rem;
	font-size: 0.9375rem;
	font-weight: 700;
	letter-spacing: 0.125rem;
	line-height: 1.6;
}

.c-card-blog__excerpt {
	font-family: YuGothic;
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.125rem;
	line-height: 1.6;
	margin-top: 1rem;
}

.c-card-blog__date {
	align-items: center;
	display: flex;
	font-family: YuGothic;
	font-size: 0.6875rem;
	font-weight: 700;
	gap: 0.25rem;
	letter-spacing: 0.125rem;
	line-height: 1.6;
	margin-top: 1.46875rem;
}

.c-card-blog__date svg {
	width: 0.9375rem;
}

.c-card-document {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	height: 100%;
}

.c-card-document__link {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.c-card-document__image {
	aspect-ratio: 340/200;
	border-radius: 0.5rem;
	box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, 0.16);
	overflow: clip;
}

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

.c-card-document__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #333;
	display: -webkit-box;
	flex-grow: 1;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	overflow: hidden;
}

.c-card-document__button-wrap {
	align-items: flex-end;
	display: flex;
	flex-grow: 1;
	height: 4.1875rem;
	justify-content: center;
	margin-left: auto;
	margin-right: auto;
	max-width: 100%;
	width: 16.25rem;
}

.c-heading2 {
	background: #2E475D;
	color: #fff;
	padding-top: 1.875rem;
}

.c-heading2__title {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.25;
}

.c-heading2__text {
	font-family: var(--sub-font);
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.75;
}

.c-heading2__image {
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: 50%;
}

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

.c-heading2--company {
	background: var(--sub-color-1);
	color: inherit;
}

.c-heading2--recruit {
	background: #FEF4EA;
	color: #FF5C35;
}

.c-list1 {
	display: flex;
	flex-direction: column;
	font-size: 1rem;
	gap: 0.5em;
}

.c-list1__item {
	font-weight: 500;
	gap: 0.5rem;
	padding-left: 1em;
	position: relative;
}

.c-list1__item::before {
	color: #516f90;
	content: "●";
	font-size: 0.625rem;
	font-style: normal;
	font-weight: 500;
	left: 0;
	position: absolute;
	top: 0.6em;
}

.c-section-contact {
	background: var(--main-color);
	color: #fff;
}

.c-section-contact__inner {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	padding-bottom: 1.25rem;
	padding-top: 1.25rem;
}

.c-section-contact__box {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

.c-section-contact__title {
	align-items: center;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	gap: 2.5rem;
	line-height: 1.2;
}

.c-section-contact__title svg {
	height: 2rem;
}

.c-section-contact__text {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.7;
}

.c-section-contact__button-wrap {
	font-size: 1rem;
}

.c-list-logo {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(6, 1fr);
}

.c-service-heading {
	color: #333;
	display: flex;
	gap: 1.5rem;
}

.c-service-heading__main {
	order: 1;
}

.c-service-heading__number {
	font-family: var(--en-font);
	font-size: 3rem;
	font-weight: 900;
	line-height: 1;
}

.c-service-heading__title span {
	display: block;
	font-size: 6.25rem;
	font-weight: 900;
	letter-spacing: 0.2375rem;
	line-height: 1;
}

.c-service-heading__title--service1 strong {
	color: #06c655;
	font-size: 9.0625rem;
	font-style: normal;
	font-weight: 900;
	letter-spacing: -0.625rem;
	line-height: 1;
}

.c-service-heading__title--service2 strong {
	color: var(--main-color);
	font-size: 7.3125rem;
	line-height: 1.1;
}

.c-service-heading__title--service2 strong small {
	font-size: 6.625rem;
}

.c-service-heading__title--service2 span {
	font-size: 4.5rem;
}

.c-service-heading__title--service3 strong {
	color: var(--main-color);
	font-size: 9.0625rem;
	line-height: 1;
}

.c-service-heading__side-text {
	font-family: var(--en-font);
	font-size: 1.25rem;
	font-weight: 900;
	letter-spacing: 0;
	line-height: 1;
	order: 0;
	writing-mode: vertical-rl;
}

.c-title-left-line {
	border-left: 0.25rem solid var(--main-color);
	display: flex;
	flex-direction: column;
	padding-left: 1.25rem;
}

.c-title-left-line__lg {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(75deg, #e5af5c 0%, #f7ca86 100%);
	background-clip: text;
	font-size: 3.75rem;
	font-weight: 900;
	line-height: 1.3;
}

.c-title-left-line__sm {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	order: 2;
}

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

.c-card-post a {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.c-card-post__image {
	aspect-ratio: 340/200;
	border-radius: 0.5rem;
	overflow: clip;
}

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

.c-card-post__contents {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 0.5rem;
	padding-top: 0.5rem;
}

.c-card-post__category {
	color: var(--main-color);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
}

.c-card-post__title {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	color: #333;
	display: -webkit-box;
	flex-grow: 1;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	overflow: hidden;
}

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

.c-card-post__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-post__excerpt {
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	color: #666;
	display: -webkit-box;
	font-size: 0.875rem;
	font-weight: 350;
	line-height: 1.6;
	overflow: hidden;
}

.c-card-post__date {
	color: #666;
	font-size: 0.75rem;
	font-weight: 350;
	line-height: 1.4;
}

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

.c-card-post--shadow .c-card-post__contents {
	padding: 0.625rem;
}

.c-modal {
	display: none;
	left: 50%;
	max-width: 90%;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1003;
}

.c-modal--bg {
	background: rgba(0, 0, 0, 0.8);
	display: none;
	height: 100vh;
	left: 0;
	position: fixed;
	top: 0;
	width: 100vw;
	z-index: 1002;
}

.c-page-title {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 18.25rem;
	padding: 1rem;
	position: relative;
	text-align: center;
}

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

.c-page-title__title {
	font-size: 1.5rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	line-height: 1.6;
	order: 2;
}

.c-page-title__title-en {
	font-family: var(--en-font);
	font-size: 5rem;
	font-weight: 900;
	letter-spacing: -0.2rem;
	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-breadcrumb {
	color: #6C757D;
	display: flex;
	flex-wrap: wrap;
	font-size: 0.875rem;
	font-weight: 400;
	gap: 0.5em;
	line-height: 2;
	padding: 0.75rem 3.125rem;
}

.c-breadcrumb span {
	color: #000;
}

.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%);
}

.p-fp-fv {
	background: var(--main-color-light);
}

.p-fp-service {
	overflow: clip;
	padding-bottom: 10.4375rem;
	padding-top: 13.5rem;
	position: relative;
	transform: skewY(-3.85001deg);
}

.p-fp-service__wrap {
	position: relative;
	transform: skewY(3.85deg);
	z-index: 1;
}

.p-fp-service__outer {
	position: relative;
}

.p-fp-service__container {
	padding-left: 1rem;
	padding-right: 1rem;
}

.p-fp-service__contents {
	position: relative;
	z-index: 1;
}

.p-fp-service__side-text {
	color: #f9ebd6;
	font-family: Outfit;
	font-size: 11.625rem;
	font-style: normal;
	font-weight: 900;
	left: -0.15em;
	letter-spacing: -0.465rem;
	line-height: 11.625rem;
	position: absolute;
	top: -0.05em;
	transform: skewY(3.85deg);
	writing-mode: vertical-rl;
}

.p-fp-service--service1 {
	background: #fff;
}

.p-fp-service--service1 .p-fp-service__image img {
	width: 100%;
}

.p-fp-service--service3 {
	background: #fff;
}

.p-fp-service--service3 .p-fp-service__image img {
	width: 100%;
}

.p-fp-about {
	padding-bottom: 3.3125rem;
	padding-top: 7.5rem;
}

.p-fp-about__columns {
	display: flex;
	gap: 4.375rem;
}

.p-fp-about__text {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.75;
}

.p-fp-member__card {
	display: block;
	position: relative;
}

.p-fp-member__card:hover {
	opacity: 1;
}

.p-fp-member__card:hover .p-fp-member__image img {
	scale: 1.1;
}

.p-fp-member__card--modal {
	max-width: 100%;
	width: 30rem;
}

.p-fp-member__card--modal:hover .p-fp-member__image img {
	scale: 1;
}

.p-fp-member__card--modal .p-fp-member__image {
	filter: brightness(0.5);
}

.p-fp-member__card--modal .p-fp-member__contents {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
	justify-content: flex-end;
	padding-bottom: 1.25rem;
}

.p-fp-member__card--modal .p-fp-member__contents::after {
	display: none;
}

.p-fp-member__card--modal .p-fp-member__name {
	font-size: 2rem;
}

.p-fp-member__card--modal .p-fp-member__position {
	font-size: 1.25rem;
}

.p-fp-member__card--modal .p-fp-member__catchcopy {
	font-size: 1rem;
}

.p-fp-member__card--modal .p-fp-member__info {
	font-size: 1rem;
}

.p-fp-member__card--modal .p-fp-member__skill {
	font-size: 1rem;
}

.p-fp-member__card--modal .p-fp-member__close-button svg {
	width: 1rem;
}

.p-fp-member__image {
	aspect-ratio: 48/64;
	filter: brightness(0.9);
	overflow: hidden;
	position: relative;
}

.p-fp-member__image img {
	-o-object-fit: cover;
	height: 100%;
	left: 0;
	object-fit: cover;
	position: absolute;
	top: 0;
	transition: scale 0.3s;
	width: 100%;
}

.p-fp-member__contents {
	align-items: center;
	color: #fff;
	display: flex;
	flex-direction: column;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: -moz-max-content;
	width: max-content;
}

.p-fp-member__contents::after {
	-webkit-mask-image: url("../img/common/icon_circle-arrow_down-outlined.svg");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	background-color: currentColor;
	content: "";
	display: inline-block;
	height: 2.625rem;
	margin-top: 3rem;
	mask-image: url("../img/common/icon_circle-arrow_down-outlined.svg");
	mask-position: center;
	mask-repeat: no-repeat;
	mask-size: contain;
	width: 2.625rem;
}

.p-fp-member__name {
	font-size: 3.4375rem;
	font-weight: 700;
	line-height: 1;
	width: 100%;
}

.p-fp-member__position {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1;
	width: 100%;
}

.p-fp-member__catchcopy {
	color: #B6C7D6;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.p-fp-member__info {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.p-fp-member__skill {
	color: #B6C7D6;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.p-fp-member .swiper-pagination-bullet {
	background-color: #fff;
}

.p-fp-member .swiper-button-prev,
.p-fp-member .swiper-button-next {
	color: #fff;
}

.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__title {
	border: 0.1875rem solid var(--main-color);
	color: #000;
	font-size: 1.875rem;
	font-weight: 700;
	line-height: 1.63;
	margin-bottom: 1.5rem;
	padding: 0.5rem 1rem;
}

.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 {
	color: #000;
	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 #toc_container {
	background: #FEF4EA;
	box-shadow: 0px 0.0625rem 0.0625rem 0px rgba(0, 0, 0, 0.05);
	margin-bottom: 1.5rem;
	margin-top: 1.5rem;
	padding: 2.25rem 3rem;
}

.p-single__content #toc_container .toc_title {
	align-items: center;
	color: #1f1f1f;
	display: flex;
	font-size: 1.25rem;
	font-weight: 700;
	gap: 0.75rem;
	letter-spacing: 0.05rem;
	line-height: 1.45;
	margin: 0;
}

.p-single__content #toc_container .toc_title::before {
	background: url("../img/common/icon_list.svg") center/contain no-repeat;
	content: "";
	display: block;
	height: 1.0625rem;
	width: 1.6826875rem;
}

.p-single__content #toc_container .toc_list {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	list-style: none;
	margin-top: 1.25rem;
	padding-left: 0;
}

.p-single__content #toc_container .toc_list a {
	font-size: 1rem;
	letter-spacing: 0.05rem;
	line-height: 1.6;
	text-decoration: none;
}

.p-single__content h2 {
	background: #FEF4EA;
	color: #333;
	font-size: 1rem;
	font-weight: 700;
	line-height: 2.12;
	margin-top: 1.5rem;
	padding: 1rem;
}

.p-single__content p {
	margin-top: 1.5rem;
}

.p-single__content a {
	text-decoration: underline;
}

.p-single__content ul {
	list-style: disc;
	padding-left: 1em;
}

.p-single__content ol {
	list-style: decimal;
	padding-left: 1em;
}

.p-single__content table {
	background: #fafafa;
	border-collapse: collapse;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
}

.p-single__content table td,
.p-single__content table th {
	border: 0.125rem solid #fff;
	padding: 1.5rem;
}

.p-single__content table tr:last-of-type > * {
	border-bottom: none;
}

.p-single__content table tr > *:first-child {
	border-left: none;
}

.p-single__content table tr > *:last-child {
	border-right: none;
}

.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-single__button-wrap a {
	height: 4.5rem;
	width: 20rem;
}

.p-single-document__heading {
	display: flex;
	gap: 3.625rem;
}

.p-single-document__title {
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.25;
}

.p-single-document__excerpt {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.75;
	margin-top: 3.5625rem;
}

.p-single-document__heading-thumbnail {
	display: flex;
	justify-content: center;
}

.p-single-document__heading-thumbnail img {
	-o-object-fit: contain;
	object-fit: contain;
}

.p-single-document__text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.75;
	margin-top: 2.5rem;
}

.p-single-document__form {
	border-top: solid 0.0625rem var(--sub-color-2);
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.5rem;
	max-width: 57.96875rem;
	padding-top: 2.5rem;
}

.p-single-document__form-inner {
	background: #fff;
	border-radius: 0.1875rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 37.5rem;
	padding: 3rem 1.5rem 3.75rem;
}

.p-company__buttons {
	display: grid;
	gap: 1.25rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-company__button {
	align-items: center;
	border-radius: 0.5rem;
	color: #fff;
	display: flex;
	font-size: 3rem;
	font-weight: 500;
	height: 10.0625rem;
	justify-content: center;
	line-height: 1.25;
	width: 100%;
}

.p-company__button--member {
	background: url(../img/company/button_bg-member.png) center/cover no-repeat;
}

.p-company__button--recruit {
	background: url(../img/company/button_bg-recruit.png) center/cover no-repeat;
}

.p-link-section {
	color: #fff;
	padding-bottom: 7.5rem;
	padding-top: 7.5rem;
	position: relative;
}

.p-link-section__bg {
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

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

.p-link-section__inner {
	align-items: center;
	display: flex;
	gap: 2.5rem;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.p-link-section__title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.2;
}

.p-link-section__text {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	margin-top: 2rem;
}

.p-related__subtitle {
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.25;
	text-align: center;
}

.p-works__text {
	color: #000;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
}

.p-works__card {
	background: #fff;
	border-radius: 0.625rem;
	box-shadow: 0px 0.125rem 0.625rem 0px rgba(0, 0, 0, 0.1);
	padding: 2.5rem 1.5rem;
}

.p-works__card-content {
	margin-top: 1.875rem;
}

.p-works__card-title {
	font-size: 1.73125rem;
	font-weight: 700;
	line-height: 1.39;
	padding-bottom: 0.9375rem;
	position: relative;
	text-align: center;
}

.p-works__card-title::after {
	background: #333;
	bottom: 0;
	content: "";
	height: 0.125rem;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 1.875rem;
}

.p-works__card-title span {
	display: inline-block;
}

.p-works__card-button-wrap {
	font-size: 0.85rem;
	height: 2.75rem;
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.25rem;
	width: 9.375rem;
}

.p-works__case {
	padding-bottom: 6rem;
	padding-top: 6rem;
}

.p-works__case-columns {
	display: flex;
	gap: 2rem;
}

.p-works__case-title {
	font-size: 1.73125rem;
	font-weight: 700;
	line-height: 1.39;
}

.p-works__case-subtitle {
	background: #DADADA;
	display: inline-block;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	margin-bottom: 0.5rem;
	margin-top: 0.5rem;
	padding-left: 0.3125rem;
	padding-right: 0.3125rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-works__case-button-wrap {
	height: 4.5rem;
	margin-top: 0.875rem;
	width: 18.75rem;
}

.p-works__case-info {
	background: #fff;
	margin-top: 1.25rem;
}

.p-works__case-info-list {
	border-top: 0.0625rem solid rgba(0, 0, 0, 0.2);
	display: grid;
	font-size: 1.0625rem;
	gap: 0.625rem;
	grid-template-columns: 1fr 4fr;
	line-height: 1.5;
	padding: 1.25rem 0.625rem;
}

.p-works__case-info-list:last-of-type {
	border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
}

.p-works__case-info-title {
	font-weight: 700;
}

.p-line-construction__worry-contents {
	align-items: center;
	display: flex;
	gap: 0.3125rem;
}

.p-line-construction__worry-list {
	display: flex;
	flex-direction: column;
	gap: 1em;
}

.p-line-construction__worry-item {
	color: #000;
	font-size: 1.1875rem;
	font-weight: 700;
	padding-left: 1em;
	position: relative;
}

.p-line-construction__worry-item::before {
	content: "・";
	left: 0;
	position: absolute;
	top: 0;
}

.p-line-construction__strength-contents {
	align-items: center;
	display: flex;
	gap: 1.8125rem;
}

.p-line-construction__strength-sentense {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.p-line-construction__strength-title {
	background: #fff;
	color: #000;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.p-line-construction__strength-subtitle {
	border-bottom: 0.0625rem solid currentColor;
	color: #000;
	font-size: 1.5rem;
	font-weight: 700;
	padding-bottom: 0.3125rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-line-construction__strength-text {
	color: #000;
	font-size: 1rem;
	font-weight: 500;
	line-height: 2;
}

.p-line-construction__service-text {
	color: #333;
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.0125rem;
	line-height: 2;
}

.p-line-construction__service-box {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.p-line-construction__service-subtitle {
	color: #000;
	font-size: 1.875rem;
	font-weight: 900;
	letter-spacing: 0.0125rem;
	line-height: 2;
	text-align: center;
}

.p-line-construction__service-price {
	align-items: center;
	background: #fff;
	display: flex;
	flex-direction: column;
	font-weight: 700;
	justify-content: center;
	padding: 2.4375rem 1rem;
}

.p-line-construction__service-price-title {
	color: #08BF5A;
	font-size: 2rem;
	line-height: 1;
}

.p-line-construction__service-price-number {
	background: linear-gradient(transparent 70%, #FCFF58 0%);
	color: var(--main-color);
	font-size: 3.75rem;
	line-height: 1;
	margin-top: 2.25rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-line-construction__service-price-number strong {
	font-size: 7.5rem;
}

.p-line-construction__service-price-text {
	color: #000;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.p-line-construction__flow-list {
	counter-reset: flow-item;
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.p-line-construction__flow-item {
	align-items: center;
	background: #fff;
	color: #333;
	display: flex;
	font-size: 1.5rem;
	font-weight: 700;
	gap: 1.5rem;
	line-height: 1.2;
	padding: 1.5rem;
	position: relative;
}

.p-line-construction__flow-item::before {
	color: var(--main-color);
	content: counter(flow-item, decimal-leading-zero);
	counter-increment: flow-item;
	font-size: 3.375rem;
	line-height: 1;
	margin-top: -0.1em;
}

.p-line-construction__flow-item::after {
	background: var(--main-color);
	content: "";
	height: calc(100% + 2rem);
	position: absolute;
	right: 2.6875rem;
	top: 0;
	width: 0.0625rem;
}

.p-line-construction__flow-item:first-of-type::after {
	height: calc(50% + 2rem);
	top: 50%;
}

.p-line-construction__flow-item:last-of-type::after {
	height: 50%;
}

.p-line-construction__flow-item span {
	display: inline-block;
}

.p-line-construction__flow-dot {
	background: var(--main-color);
	border-radius: 50%;
	display: block;
	flex-shrink: 0;
	height: 2.375rem;
	margin-left: auto;
	width: 2.375rem;
}

/*=======================
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-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;
}

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

html {
	font-size: 1.25vw;
}

}

@media (min-width: 768px) {

.l-header__menu-item {
	padding: 0 0.9375rem;
}

.l-footer__info {
	flex-grow: 1;
	width: 25.4375rem;
}

.l-footer__button-list {
	order: 2;
	width: 15.3125rem;
}

.l-footer__menu {
	-moz-column-count: 2;
	column-count: 2;
}

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

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

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

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

.c-heading2 {
	align-items: center;
	display: flex;
	min-height: 19.25rem;
	padding-bottom: 1.875rem;
	position: relative;
}

.c-section-contact__box {
	align-items: center;
	padding: 5rem 1.875rem;
}

.c-section-contact__box:nth-child(odd) {
	padding-right: 4.375rem;
}

.c-section-contact__box:nth-child(even) {
	border-left: 0.0625rem solid currentColor;
	padding-left: 4.375rem;
}

.c-section-contact__title {
	flex-direction: column;
}

.c-section-contact__text {
	text-align: center;
}

.p-fp-service__container {
	margin: 0 auto;
	max-width: 1660px;
	padding-left: 11.25rem;
	padding-right: 11.25rem;
}

.p-fp-service__image {
	max-width: 50%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-fp-service--service1 .p-fp-service__contents {
	max-width: 50%;
}

.p-fp-service--service1 .p-fp-service__image {
	right: -1.6875rem;
	width: 44.1875rem;
}

.p-fp-service--service2 .p-fp-service__contents {
	margin-left: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.p-fp-service--service3 .p-fp-service__contents {
	max-width: 50%;
}

.p-fp-service--service3 .p-fp-service__image {
	right: 0rem;
	width: 44.1875rem;
}

.p-fp-about__sentense {
	width: 31.75rem;
}

.p-fp-about__image {
	width: 31.25rem;
}

.p-fp-member__card--modal .p-fp-member__name {
	font-size: 3.4375rem;
}

.p-fp-member__card--modal .p-fp-member__position {
	font-size: 1.5rem;
}

.p-fp-member__card--modal .p-fp-member__catchcopy {
	font-size: 1.5rem;
}

.p-fp-member__card--modal .p-fp-member__info {
	font-size: 1.5rem;
}

.p-fp-member__card--modal .p-fp-member__skill {
	font-size: 1.5rem;
}

.p-fp-member__card--modal .p-fp-member__close-button svg {
	width: 2.625rem;
}

.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-child {
	padding-left: 4.375rem;
}

.p-single-document__heading-sentense {
	padding-left: 1.125rem;
	width: 33.5625rem;
}

.p-single-document__heading-thumbnail {
	padding-left: 2.3125rem;
	padding-right: 2.3125rem;
	width: 28.125rem;
}

.p-single-document__text {
	text-align: center;
}

.p-link-section__sentense {
	flex-grow: 1;
	width: -moz-fit-content;
	width: fit-content;
}

.p-works__case-contents {
	width: 21.3975rem;
}

.p-works__case-eyecatch {
	width: 42.1025rem;
}

.p-line-construction__worry-list {
	width: 37.625rem;
}

.p-line-construction__worry-image {
	width: 19.25rem;
}

.p-line-construction__strength-contents {
	flex-direction: row-reverse;
}

.p-line-construction__strength-sentense {
	width: 37.625rem;
}

.p-line-construction__strength-image {
	width: 28rem;
}

.p-line-construction__strength-title {
	width: -moz-fit-content;
	width: fit-content;
}

.p-line-construction__flow-item {
	min-height: 8.625rem;
}

.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 img {
	width: 8.4375rem;
}

.l-footer {
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.l-footer__inner {
	flex-direction: column;
	gap: 2.5rem;
	margin-left: auto;
	margin-right: auto;
	max-width: 21.4375rem;
}

.l-footer__button-wrap {
	text-align: center;
}

.l-footer__copyright {
	margin-left: auto;
	margin-right: auto;
	margin-top: 0.5rem;
	max-width: 21.4375rem;
}

.l-container {
	padding: 0 1rem;
}

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

.c-title1 {
	font-size: 1.5rem;
}

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

.c-dlist__title {
	flex-shrink: 0;
	font-size: 0.6875rem;
	margin-left: 0;
}

.c-dlist__deta {
	font-size: 0.6875rem;
	margin-left: 1.25rem;
}

.c-button1 {
	height: 3.125rem;
	width: 15.125rem;
}

.c-heading {
	font-size: 1.5rem;
}

.c-heading2 {
	padding-top: 3.75rem;
}

.c-heading2__title {
	font-size: 2rem;
}

.c-heading2__text {
	font-size: 0.875rem;
}

.c-heading2__image {
	height: auto;
	margin-top: 3.75rem;
	position: static;
	width: 100%;
}

.c-section-contact__inner {
	grid-template-columns: repeat(1, 1fr);
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.c-section-contact__box {
	gap: 1.5rem;
}

.c-section-contact__box:not(:first-of-type) {
	border-top: 0.0625rem solid currentColor;
	margin-top: 2.5rem;
	padding-top: 2.5rem;
}

.c-section-contact__title {
	font-size: 1.5rem;
	gap: 1rem;
}

.c-section-contact__button-wrap {
	text-align: center;
}

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

.c-service-heading__number {
	font-size: 2.5rem;
}

.c-service-heading__title {
	margin-top: 1.25rem;
}

.c-service-heading__title span {
	font-size: 4.125rem;
}

.c-service-heading__title--service1 strong {
	font-size: 4.375rem;
}

.c-service-heading__title--service2 strong {
	font-size: 4.125rem;
}

.c-service-heading__title--service2 strong small {
	font-size: 3.75rem;
}

.c-service-heading__title--service2 span {
	font-size: 1.875rem;
}

.c-service-heading__title--service3 strong {
	font-size: 4.375rem;
}

.c-service-heading__side-text {
	font-size: 1rem;
}

.c-title-left-line__lg {
	font-size: 3.125rem;
}

.c-page-title {
	min-height: 12.375rem;
}

.c-page-title__title {
	font-size: 1.125rem;
}

.c-page-title__title-en {
	font-size: 3.125rem;
}

.c-breadcrumb {
	padding-bottom: 1.5rem;
	padding-top: 1.5rem;
}

.p-fp-service {
	padding-bottom: 6.25rem;
	padding-top: 8.75rem;
}

.p-fp-service__image {
	margin-top: 2.5rem;
}

.p-fp-service__image img {
	text-align: center;
}

.p-fp-service--service2 {
	padding-bottom: 0;
	padding-top: 5rem;
}

.p-fp-service--service2 .p-fp-service__container {
	padding-right: 0;
}

.p-fp-service--service3 {
	margin-top: -1.875rem;
	padding-top: 5rem;
}

.p-fp-service--service3 .p-fp-service__image {
	padding-left: 1rem;
	padding-right: 1rem;
}

.p-fp-about {
	padding-bottom: 3.75rem;
	padding-top: 5rem;
}

.p-fp-about__columns {
	flex-direction: column;
	gap: 2.5rem;
}

.p-fp-about__text {
	font-size: 0.96875rem;
	line-height: 2.5;
}

.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.25rem;
	line-height: 1.5;
}

.p-single__content #toc_container {
	padding: 1.5rem 0.625rem;
}

.p-single__content #toc_container .toc_title {
	font-size: 1rem;
}

.p-single__content #toc_container .toc_list a {
	font-size: 0.875rem;
}

.p-single__content {
	font-size: 0.875rem;
}

.p-single__content table td,
.p-single__content table th {
	border-bottom: none;
	border-left: none;
	border-right: none;
	display: block;
}

.p-single-document__heading {
	flex-direction: column;
	gap: 1rem;
	padding-left: 1rem;
	padding-right: 1rem;
}

.p-single-document__title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.56;
}

.p-single-document__excerpt {
	margin-top: 1rem;
}

.p-single-document__heading-thumbnail {
	padding-left: 0;
	padding-right: 0;
}

.p-single-document__form {
	margin-top: 0.875rem;
}

.p-single-document__form-inner {
	padding-bottom: 3.375rem;
	padding-left: 0.625rem;
	padding-right: 0.625rem;
}

.p-company__buttons {
	grid-template-columns: repeat(1, 1fr);
}

.p-company__button {
	font-size: 2rem;
}

.p-link-section {
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.p-link-section__inner {
	flex-direction: column;
}

.p-link-section__title {
	font-size: 1.5rem;
}

.p-link-section__text {
	margin-top: 0.625rem;
}

.p-works__text {
	font-size: 0.875rem;
}

.p-works__card {
	padding: 1.5625rem;
}

.p-works__card-content {
	margin-top: 0.8875rem;
}

.p-works__card-title {
	font-size: 1rem;
	line-height: 2.42;
}

.p-works__case {
	padding-bottom: 3.75rem;
	padding-top: 3.75rem;
}

.p-works__case-columns {
	flex-direction: column;
}

.p-works__case-title {
	font-size: 1.5rem;
}

.p-works__case-button-wrap {
	height: 3.125rem;
	margin-left: auto;
	margin-right: auto;
	width: 15.125rem;
}

.p-works__case-info {
	margin-top: 1rem;
}

.p-works__case-info-list {
	grid-template-columns: 1fr;
	padding: 0.625rem;
}

.p-works__case-info-text {
	font-size: 0.875rem;
}

.p-line-construction__worry-contents {
	flex-direction: column;
	gap: 2.5rem;
}

.p-line-construction__strength-contents {
	flex-direction: column;
	gap: 3.6875rem;
}

.p-line-construction__strength-title {
	padding: 0.625rem;
	text-align: center;
}

.p-line-construction__strength-subtitle {
	font-size: 1.125rem;
	padding-bottom: 0.1875rem;
}

.p-line-construction__strength-text {
	font-size: 0.875rem;
}

.p-line-construction__service-text {
	font-size: 0.875rem;
}

.p-line-construction__service-subtitle {
	font-size: 1.5rem;
}

.p-line-construction__service-price {
	padding-bottom: 2.1875rem;
	padding-top: 2.1875rem;
}

.p-line-construction__service-price-title {
	font-size: 1.75rem;
}

.p-line-construction__service-price-number {
	font-size: 2.5rem;
	margin-top: 1.375rem;
}

.p-line-construction__service-price-number strong {
	font-size: 5.625rem;
}

.p-line-construction__service-price-text {
	font-size: 0.875rem;
	text-align: left;
}

.p-line-construction__flow-item {
	align-items: flex-start;
	flex-direction: column;
	font-size: 1.1875rem;
	line-height: 1.4;
}

.p-line-construction__flow-item::after {
	right: 1.5rem;
}

.p-line-construction__flow-item:last-of-type::after {
	height: 3em;
}

.p-line-construction__flow-dot {
	border-radius: 50%;
	height: 1.5rem;
	position: absolute;
	right: 0.75rem;
	top: 2.5em;
	width: 1.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;
}

}

@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;
}

}

