:root {
	--warning: #897a4d;
	--primary: #748a96;
	--dark: #1d2020;
	--font-weight-base: 300;
	--font-en: "Times New Roman", Times, serif;
	--font-jp: "Noto Sans JP", sans-serif;
	--font-yugo: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック",
  	"MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	--gutter-sp: 7rem;
}

* {
	box-sizing: border-box;
}

html {
	--font-family-base: Noto Serif JP, serif;
	--font-weight-base: 300;
	--lineheight-base: 1.5;
	font-size: 1.3020833333vw;
	overflow-x: hidden;
}

html.noscroll {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
}

body {
	background-color: #fff;
	color: #231f20;
	margin: 0;
	font-family: var(--font-family-base);
	font-weight: var(--font-weight-base);
	font-size: 1.6rem;
	line-height: var(--lineheight-base);
	text-align: left;
	position: relative;
	overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}

ol,
ul,
dl {
	list-style-type: none;
	margin: 0;
	padding-left: 0;
}

b,
strong {
	font-weight: 700;
}

a {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}

img {
	vertical-align: middle;
	border-style: none;
	max-width: 100%;
	height: auto;
}

table {
	border-collapse: collapse;
}

th {
	font-weight: 300;
	text-align: inherit;
	text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

select {
	word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
	-webkit-appearance: button;
}

textarea {
	overflow: auto;
	resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
	height: auto;
}

[type=search] {
	outline-offset: -2px;
	-webkit-appearance: none;
}

[type=search]::-webkit-search-decoration {
	-webkit-appearance: none;
}

[hidden] {
	display: none !important;
}

.container {
	margin-inline: auto;
	padding-left: var(--gutter-sp);
	padding-right: var(--gutter-sp);
	width: 100%;
}

.inner {
	margin-inline: auto;
	padding-left: var(--gutter-sp);
	padding-right: var(--gutter-sp);
	width: 100%;
}

.d-none {
	display: none !important;
}

.d-block {
	display: block !important;
}

.d-flex {
	display: flex !important;
}

.m-0 {
	margin: 0 !important;
}

.mt-0,
.my-0 {
	margin-top: 0 !important;
}

.mr-0,
.mx-0 {
	margin-right: 0 !important;
}

.mb-0,
.my-0 {
	margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
	margin-left: 0 !important;
}

.m-5 {
	margin: 0.5rem !important;
}

.mt-5,
.my-5 {
	margin-top: 0.5rem !important;
}

.mr-5,
.mx-5 {
	margin-right: 0.5rem !important;
}

.mb-5,
.my-5 {
	margin-bottom: 0.5rem !important;
}

.ml-5,
.mx-5 {
	margin-left: 0.5rem !important;
}

.m-10 {
	margin: 1rem !important;
}

.mt-10,
.my-10 {
	margin-top: 1rem !important;
}

.mr-10,
.mx-10 {
	margin-right: 1rem !important;
}

.mb-10,
.my-10 {
	margin-bottom: 1rem !important;
}

.ml-10,
.mx-10 {
	margin-left: 1rem !important;
}

.m-20 {
	margin: 2rem !important;
}

.mt-20,
.my-20 {
	margin-top: 2rem !important;
}

.mr-20,
.mx-20 {
	margin-right: 2rem !important;
}

.mb-20,
.my-20 {
	margin-bottom: 2rem !important;
}

.ml-20,
.mx-20 {
	margin-left: 2rem !important;
}

.m-30 {
	margin: 3rem !important;
}

.mt-30,
.my-30 {
	margin-top: 3rem !important;
}

.mr-30,
.mx-30 {
	margin-right: 3rem !important;
}

.mb-30,
.my-30 {
	margin-bottom: 3rem !important;
}

.ml-30,
.mx-30 {
	margin-left: 3rem !important;
}

.p-0 {
	padding: 0 !important;
}

.pt-0,
.py-0 {
	padding-top: 0 !important;
}

.pr-0,
.px-0 {
	padding-right: 0 !important;
}

.pb-0,
.py-0 {
	padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
	padding-left: 0 !important;
}

.p-5 {
	padding: 0.5rem !important;
}

.pt-5,
.py-5 {
	padding-top: 0.5rem !important;
}

.pr-5,
.px-5 {
	padding-right: 0.5rem !important;
}

.pb-5,
.py-5 {
	padding-bottom: 0.5rem !important;
}

.pl-5,
.px-5 {
	padding-left: 0.5rem !important;
}

.p-10 {
	padding: 1rem !important;
}

.pt-10,
.py-10 {
	padding-top: 1rem !important;
}

.pr-10,
.px-10 {
	padding-right: 1rem !important;
}

.pb-10,
.py-10 {
	padding-bottom: 1rem !important;
}

.pl-10,
.px-10 {
	padding-left: 1rem !important;
}

.p-20 {
	padding: 2rem !important;
}

.pt-20,
.py-20 {
	padding-top: 2rem !important;
}

.pr-20,
.px-20 {
	padding-right: 2rem !important;
}

.pb-20,
.py-20 {
	padding-bottom: 2rem !important;
}

.pl-20,
.px-20 {
	padding-left: 2rem !important;
}

.p-30 {
	padding: 3rem !important;
}

.pt-30,
.py-30 {
	padding-top: 3rem !important;
}

.pr-30,
.px-30 {
	padding-right: 3rem !important;
}

.pb-30,
.py-30 {
	padding-bottom: 3rem !important;
}

.pl-30,
.px-30 {
	padding-left: 3rem !important;
}

.m-n5 {
	margin: -0.5rem !important;
}

.mt-n5,
.my-n5 {
	margin-top: -0.5rem !important;
}

.mr-n5,
.mx-n5 {
	margin-right: -0.5rem !important;
}

.mb-n5,
.my-n5 {
	margin-bottom: -0.5rem !important;
}

.ml-n5,
.mx-n5 {
	margin-left: -0.5rem !important;
}

.m-n10 {
	margin: -1rem !important;
}

.mt-n10,
.my-n10 {
	margin-top: -1rem !important;
}

.mr-n10,
.mx-n10 {
	margin-right: -1rem !important;
}

.mb-n10,
.my-n10 {
	margin-bottom: -1rem !important;
}

.ml-n10,
.mx-n10 {
	margin-left: -1rem !important;
}

.m-n20 {
	margin: -2rem !important;
}

.mt-n20,
.my-n20 {
	margin-top: -2rem !important;
}

.mr-n20,
.mx-n20 {
	margin-right: -2rem !important;
}

.mb-n20,
.my-n20 {
	margin-bottom: -2rem !important;
}

.ml-n20,
.mx-n20 {
	margin-left: -2rem !important;
}

.m-n30 {
	margin: -3rem !important;
}

.mt-n30,
.my-n30 {
	margin-top: -3rem !important;
}

.mr-n30,
.mx-n30 {
	margin-right: -3rem !important;
}

.mb-n30,
.my-n30 {
	margin-bottom: -3rem !important;
}

.ml-n30,
.mx-n30 {
	margin-left: -3rem !important;
}

.m-auto {
	margin: auto !important;
}

.mt-auto,
.my-auto {
	margin-top: auto !important;
}

.mr-auto,
.mx-auto {
	margin-right: auto !important;
}

.mb-auto,
.my-auto {
	margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
	margin-left: auto !important;
}

.text-justify {
	text-align: justify !important;
}

.text-wrap {
	white-space: normal !important;
}

.text-nowrap {
	white-space: nowrap !important;
}

.text-left {
	text-align: left !important;
}

.text-right {
	text-align: right !important;
}

.text-center {
	text-align: center !important;
}

.text-lowercase {
	text-transform: lowercase !important;
}

.text-uppercase {
	text-transform: uppercase !important;
}

.text-capitalize {
	text-transform: capitalize !important;
}

.text-underline {
	text-decoration: underline;
}

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "Noto Sans JP", sans-serif;
	color: #231f20;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	background-color: transparent;
	line-height: 1;
}

.btn:hover {
	color: #231f20;
	text-decoration: none;
}

.btn:focus,
.btn.focus {
	outline: 0;
}

.btn:not(:disabled):not(.disabled) {
	cursor: pointer;
}

.btn.--arrow {
	width: 23rem;
	height: 6rem;
	font-weight: 500;
	font-size: 1.8rem;
	border-radius: 6rem;
	letter-spacing: 0.2em;
	position: relative;
	transition: all 0.25s ease-in-out;
}

.btn.--arrow:hover {
	opacity: 0.75;
}

.btn.--arrow::after {
	content: "";
	width: 1.8rem;
	aspect-ratio: 1;
	background: url(../images/common/arrow_icon_01.svg) no-repeat center/contain;
	position: absolute;
	top: calc(50% - 0.9rem);
	right: 2.3rem;
}

.btn.--warning {
	background-color: var(--warning);
	color: #fff;
}

.btn.--primary {
	background-color: var(--primary);
	color: #fff;
}

.btn.--black {
	background-color: #231f20;
	color: #fff;
}

.btn.--white {
	background-color: #fff;
	border: 1px solid #231f20;
}

.btn.--white::after {
	filter: invert(1) brightness(1);
}

.btn.--txt-en {
	padding-bottom: 0.4rem;
}

.p-header {
	background-color: #fff;
	position: fixed;
	z-index: 19;
	right: 0;
	top: 0;
	left: 0;
}

.p-header__wrap {
	padding-block: 2rem;
	display: flex;
	justify-content: space-between;
}

.p-header__logo {
	width: 31.9rem;
}

.p-header-menu__link {
	display: block;
	transition: all 0.25s ease-in-out;
}

.p-header-menu__link:hover {
	opacity: 0.8;
}

.p-header-model {
	position: fixed;
	z-index: 19;
	right: 0;
	top: 0;
	left: 0;
}

.p-header-model .hamburger-box {
	display: flex;
}

.p-header-model__wrap {
	position: fixed;
	height: 100vh;
	width: 100vw;
	background: rgba(0, 0, 0, 0.9);
	overflow-y: auto;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out;
}

.p-header-model__wrap.is-active {
	opacity: 1;
	visibility: visible;
}

.p-header-model .header-menu {
	color: #fff;
	max-height: 100vh;
}

.p-header-model .header-menu__top {
	display: block;
	width: 38rem;
	margin-bottom: 8rem;
}

.p-header-model .header-menu__item {
	padding-block: 3rem;
	display: block;
}

.p-header-model .header-menu__item:not(:last-child) {
	border-bottom: 1px solid #fff;
}

.p-header-model .header-menu__ttl {
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.p-header-model .header-menu__sub {
	font-weight: 500;
	font-family: var(--font-en);
	letter-spacing: 0.05em;
	font-size: 1.2rem;
}

.hamburger-box {
	cursor: pointer;
	position: absolute;
	z-index: 1100;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 10rem;
	width: 10rem;
	top: 0;
	right: 0;
	background-color: #4d4d4f;
}

.hamburger-box.is-active .hamburger-inner {
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transform: rotate(45deg);
}

.hamburger-box.is-active .hamburger-inner:before {
	transition: top 75ms ease, opacity 75ms ease 0.12s;
	opacity: 0;
	top: 0;
}

.hamburger-box.is-active .hamburger-inner:after {
	transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
	transform: rotate(-90deg);
	bottom: 0;
}

.hamburger-inner:after,
.hamburger-inner:before {
	display: block;
	content: "";
}

.hamburger-inner::before,
.hamburger-inner:after,
.hamburger-inner {
	height: 1px;
	background-color: #fff;
	transition: transform 0.15s ease;
	border-radius: 1.5px;
}

.hamburger-inner {
	width: 43%;
	position: relative;
	display: block;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	transition-duration: 75ms;
}

.hamburger-inner::before,
.hamburger-inner:after {
	width: 100%;
	position: absolute;
}

.hamburger-inner:before {
	top: -1.1rem;
	transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger-inner:after {
	bottom: -1.1rem;
	transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.c-bnr-float {
	position: fixed;
	z-index: 3;
	right: 3rem;
	width: 25rem;
	aspect-ratio: 1;
	bottom: 16rem;
}

.c-bnr-float.is-hide {
	display: none;
}

.c-bnr-float a {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.c-bnr-float .btn-close {
	position: absolute;
	cursor: pointer;
	right: 1rem;
	top: 1rem;
	width: 3rem;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.c-bnr-float .btn-close::before,
.c-bnr-float .btn-close::after {
	content: "";
	position: absolute;
	width: 70%;
	height: 1px;
	background-color: #000;
}

.c-bnr-float .btn-close::before {
	transform: rotate(45deg);
}

.c-bnr-float .btn-close::after {
	transform: rotate(-45deg);
}

.back-top {
	position: fixed;
	cursor: pointer;
	z-index: 20;
	width: 5.9rem;
	right: 3rem;
	bottom: 8.5rem;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 1px solid #000;
	background: #fff url(../images/common/arrow_backtop.svg) no-repeat center/1.7rem auto;
	transition: all 0.25s ease-in-out;
}

.back-top:hover {
	opacity: 0.8;
}

.p-float {
	position: fixed;
	z-index: 50;
	display: flex;
	justify-content: center;
}

.p-float__item {
	color: #fff;
	font-weight: 400;
	font-family: "Noto Sans JP", sans-serif;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 0.2em;
	font-size: 2.6rem;
	min-height: 8rem;
}

.p-float__item:first-child {
	background-color: #897a4d;
}

.p-float__item:last-child {
	background-color: #748a96;
}

.p-footer {
	background: url(../images/common/footer_bg.webp) no-repeat center top/cover;
	padding-top: 10rem;
}

.p-footer-bnr {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 0 auto 10rem;
	width: calc(100% - 7rem);
}

.p-footer-bnr::after {
	content: "";
	width: 1.8rem;
	aspect-ratio: 1;
	background: url(../images/common/blank_icon.svg) no-repeat center/contain;
	position: absolute;
	bottom: 2rem;
	right: 2rem;
}

.p-footer-bnr__body {
	color: #fff;
	position: absolute;
	display: flex;
	flex-direction: column;
	text-align: center;
	letter-spacing: 0.16em;
	font-weight: 200;
}

.p-footer-bnr__ttl {
	font-size: 2.6rem;
	line-height: 1.2;
}

.p-footer-bnr__sub {
	font-size: 1.8rem;
}

.p-footer-list {
	display: flex;
	flex-flow: wrap;
}

.p-footer-list__item {
	z-index: 1;
	position: relative;
	overflow: hidden;
}

.p-footer-list__item::before,
.p-footer-list__item::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	mix-blend-mode: multiply;
}

.p-footer-list__item::before {
	background: rgba(70, 80, 87, 0.35);
}

.p-footer-list__item::after {
	background: rgba(0, 0, 0, 0.35);
}

.p-footer-list__item:hover img {
	transform: scale(1.1);
}

.p-footer-list__image {
	width: 100%;
}

.p-footer-list__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: all 0.25s ease-in-out;
}

.p-footer-list__body {
	color: #fff;
	position: absolute;
	inset: 0;
	z-index: 2;
	display: flex;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	letter-spacing: 0.16em;
	font-weight: 200;
}

.p-footer-list__body::after {
	content: "";
	z-index: 3;
	aspect-ratio: 1;
	background: url(../images/common/arrow_icon_01.svg) no-repeat center/contain;
	position: absolute;
	width: 1.8rem;
	bottom: 3.5rem;
	right: 3.5rem;
}

.p-footer-list__ttl {
	font-size: 3.1rem;
	letter-spacing: 0.05em;
	font-family: var(--font-en);
	font-weight: 200;
}

.p-footer-list__sub {
	font-size: 1.7rem;
	letter-spacing: 0.1em;
}

.p-footer-contact {
	background-color: #1d2020;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-family: "Noto Sans JP", sans-serif;
	padding-block: 8.5rem;
}

.p-footer-contact__des {
	margin-bottom: 3rem;
	font-size: 2rem;
	letter-spacing: 0.03em;
}

.p-footer-contact__sub {
	margin-bottom: 1.2rem;
	letter-spacing: 0.1em;
}

.p-footer-contact__phone {
	margin-bottom: 1rem;
	width: 31.6rem;
}

.p-footer-contact__time {
	margin-bottom: 2.5rem;
}

.p-footer-contact__info {
	margin-bottom: 1.2rem;
}

.p-footer-contact__row {
	display: flex;
	justify-content: center;
	gap: 2rem;
}

.p-footer-copyright {
	background-color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 5rem 0 3.5rem;
}

.p-footer-copyright__ttl {
	width: 38.3rem;
	margin-bottom: 0.8rem;
}

.p-footer-copyright__txt {
	font-family: "Noto Sans JP", sans-serif;
}

.form-control {
	display: block;
	width: 100%;
	height: 6rem;
	padding: 0.5rem 1rem;
	font-family: "Noto Serif JP", serif;
	font-size: 1.4rem;
	font-weight: 300;
	line-height: 1.5;
	color: #231f20;
	background-color: #fff;
	background-clip: padding-box;
	border: 0.1rem solid #e6e6e6;
}

.form-control::-ms-expand {
	background-color: transparent;
	border: 0;
}

.form-control:-moz-focusring {
	color: transparent;
	text-shadow: 0 0 0 #231f20;
}

.form-control::-moz-placeholder {
	color: #e6e6e6;
	opacity: 1;
}

.form-control::placeholder {
	color: #e6e6e6;
	opacity: 1;
}

.form-control:disabled,
.form-control[readonly] {
	background-color: #777777;
	opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.table {
	width: 100%;
}

.hline01 {
	margin-bottom: 4.3rem;
	text-align: center;
}

.hline01__ttl {
	color: #897a4d;
	font-family: var(--font-en);
	font-size: 4rem;
	letter-spacing: 0.1em;
	font-weight: 500;
	line-height: 1.2;
	position: relative;
}

.hline01__ttl::after {
	content: "";
	display: block;
	background-color: #897a4d;
	height: 1px;
	margin: 0.3rem auto 0.7rem;
	width: 8.2rem;
}

.hline01__sub {
	font-size: 2rem;
	font-weight: var(--font-weight-base);
	letter-spacing: 0.15em;
}

.hline02 {
	margin-bottom: 3rem;
}

.hline02__ttl {
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.3;
	font-size: 5.2rem;
	font-family: var(--font-en);
}

.hline02__sub {
	font-weight: 500;
	letter-spacing: 0.2em;
	font-size: 1.8rem;
}

.hline02.hline02--center {
	text-align: center;
}

.nowrap {
	white-space: nowrap;
}

.trim::before,
.trim::after {
	content: "";
	display: block flow;
	inline-size: 0;
	block-size: 1px;
}

.trim::before {
	margin-block-end: calc((1 - 1.5) * 0.5em);
}

.trim::after {
	margin-block-start: calc((1 - 1.5) * 0.5em);
}

.byte {
	font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
	font-family: serif;
}

.byte1 {
	font-feature-settings: "palt" 1, "pkna" 1, "pwid" 1, "pkna" 1;
	font-family: serif;
}

main {
	padding-top: var(--headHeight);
}

.c-overlay {
	position: fixed;
	z-index: 9;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
}

.p-subMv {
	margin-bottom: 10.6rem;
	position: relative;
}

.p-subMv__ttl {
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 2.08rem;
	font-weight: 200;
	letter-spacing: 0.15em;
	line-height: 1;
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.p-subMv__ttl-en {
	font-family: var(--font-en);
	font-size: 3.9rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.p-subMv__bg img {
	width: 100%;
}

.c-note {
	display: flex;
	font-size: 1.8rem;
	line-height: 1.28;
}

.c-note::before {
	content: "※";
}

.indent-left {
	margin-left: -0.45em;
}

.indent-right {
	margin-right: -0.45em;
}

@media (min-width: 385px) {

.d-sm-none {
	display: none !important;
}

.d-sm-block {
	display: block !important;
}

.d-sm-flex {
	display: flex !important;
}

.m-sm-0 {
	margin: 0 !important;
}

.mt-sm-0,
.my-sm-0 {
	margin-top: 0 !important;
}

.mr-sm-0,
.mx-sm-0 {
	margin-right: 0 !important;
}

.mb-sm-0,
.my-sm-0 {
	margin-bottom: 0 !important;
}

.ml-sm-0,
.mx-sm-0 {
	margin-left: 0 !important;
}

.m-sm-5 {
	margin: 0.5rem !important;
}

.mt-sm-5,
.my-sm-5 {
	margin-top: 0.5rem !important;
}

.mr-sm-5,
.mx-sm-5 {
	margin-right: 0.5rem !important;
}

.mb-sm-5,
.my-sm-5 {
	margin-bottom: 0.5rem !important;
}

.ml-sm-5,
.mx-sm-5 {
	margin-left: 0.5rem !important;
}

.m-sm-10 {
	margin: 1rem !important;
}

.mt-sm-10,
.my-sm-10 {
	margin-top: 1rem !important;
}

.mr-sm-10,
.mx-sm-10 {
	margin-right: 1rem !important;
}

.mb-sm-10,
.my-sm-10 {
	margin-bottom: 1rem !important;
}

.ml-sm-10,
.mx-sm-10 {
	margin-left: 1rem !important;
}

.m-sm-20 {
	margin: 2rem !important;
}

.mt-sm-20,
.my-sm-20 {
	margin-top: 2rem !important;
}

.mr-sm-20,
.mx-sm-20 {
	margin-right: 2rem !important;
}

.mb-sm-20,
.my-sm-20 {
	margin-bottom: 2rem !important;
}

.ml-sm-20,
.mx-sm-20 {
	margin-left: 2rem !important;
}

.m-sm-30 {
	margin: 3rem !important;
}

.mt-sm-30,
.my-sm-30 {
	margin-top: 3rem !important;
}

.mr-sm-30,
.mx-sm-30 {
	margin-right: 3rem !important;
}

.mb-sm-30,
.my-sm-30 {
	margin-bottom: 3rem !important;
}

.ml-sm-30,
.mx-sm-30 {
	margin-left: 3rem !important;
}

.p-sm-0 {
	padding: 0 !important;
}

.pt-sm-0,
.py-sm-0 {
	padding-top: 0 !important;
}

.pr-sm-0,
.px-sm-0 {
	padding-right: 0 !important;
}

.pb-sm-0,
.py-sm-0 {
	padding-bottom: 0 !important;
}

.pl-sm-0,
.px-sm-0 {
	padding-left: 0 !important;
}

.p-sm-5 {
	padding: 0.5rem !important;
}

.pt-sm-5,
.py-sm-5 {
	padding-top: 0.5rem !important;
}

.pr-sm-5,
.px-sm-5 {
	padding-right: 0.5rem !important;
}

.pb-sm-5,
.py-sm-5 {
	padding-bottom: 0.5rem !important;
}

.pl-sm-5,
.px-sm-5 {
	padding-left: 0.5rem !important;
}

.p-sm-10 {
	padding: 1rem !important;
}

.pt-sm-10,
.py-sm-10 {
	padding-top: 1rem !important;
}

.pr-sm-10,
.px-sm-10 {
	padding-right: 1rem !important;
}

.pb-sm-10,
.py-sm-10 {
	padding-bottom: 1rem !important;
}

.pl-sm-10,
.px-sm-10 {
	padding-left: 1rem !important;
}

.p-sm-20 {
	padding: 2rem !important;
}

.pt-sm-20,
.py-sm-20 {
	padding-top: 2rem !important;
}

.pr-sm-20,
.px-sm-20 {
	padding-right: 2rem !important;
}

.pb-sm-20,
.py-sm-20 {
	padding-bottom: 2rem !important;
}

.pl-sm-20,
.px-sm-20 {
	padding-left: 2rem !important;
}

.p-sm-30 {
	padding: 3rem !important;
}

.pt-sm-30,
.py-sm-30 {
	padding-top: 3rem !important;
}

.pr-sm-30,
.px-sm-30 {
	padding-right: 3rem !important;
}

.pb-sm-30,
.py-sm-30 {
	padding-bottom: 3rem !important;
}

.pl-sm-30,
.px-sm-30 {
	padding-left: 3rem !important;
}

.m-sm-n5 {
	margin: -0.5rem !important;
}

.mt-sm-n5,
.my-sm-n5 {
	margin-top: -0.5rem !important;
}

.mr-sm-n5,
.mx-sm-n5 {
	margin-right: -0.5rem !important;
}

.mb-sm-n5,
.my-sm-n5 {
	margin-bottom: -0.5rem !important;
}

.ml-sm-n5,
.mx-sm-n5 {
	margin-left: -0.5rem !important;
}

.m-sm-n10 {
	margin: -1rem !important;
}

.mt-sm-n10,
.my-sm-n10 {
	margin-top: -1rem !important;
}

.mr-sm-n10,
.mx-sm-n10 {
	margin-right: -1rem !important;
}

.mb-sm-n10,
.my-sm-n10 {
	margin-bottom: -1rem !important;
}

.ml-sm-n10,
.mx-sm-n10 {
	margin-left: -1rem !important;
}

.m-sm-n20 {
	margin: -2rem !important;
}

.mt-sm-n20,
.my-sm-n20 {
	margin-top: -2rem !important;
}

.mr-sm-n20,
.mx-sm-n20 {
	margin-right: -2rem !important;
}

.mb-sm-n20,
.my-sm-n20 {
	margin-bottom: -2rem !important;
}

.ml-sm-n20,
.mx-sm-n20 {
	margin-left: -2rem !important;
}

.m-sm-n30 {
	margin: -3rem !important;
}

.mt-sm-n30,
.my-sm-n30 {
	margin-top: -3rem !important;
}

.mr-sm-n30,
.mx-sm-n30 {
	margin-right: -3rem !important;
}

.mb-sm-n30,
.my-sm-n30 {
	margin-bottom: -3rem !important;
}

.ml-sm-n30,
.mx-sm-n30 {
	margin-left: -3rem !important;
}

.m-sm-auto {
	margin: auto !important;
}

.mt-sm-auto,
.my-sm-auto {
	margin-top: auto !important;
}

.mr-sm-auto,
.mx-sm-auto {
	margin-right: auto !important;
}

.mb-sm-auto,
.my-sm-auto {
	margin-bottom: auto !important;
}

.ml-sm-auto,
.mx-sm-auto {
	margin-left: auto !important;
}

.text-sm-left {
	text-align: left !important;
}

.text-sm-right {
	text-align: right !important;
}

.text-sm-center {
	text-align: center !important;
}

}

@media (min-width: 768px) {

html {
	font-size: 0.5208333333vw;
}

body {
	font-size: 1.5rem;
}

.container {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	max-width: 131rem;
}

.inner {
	padding-left: 1.5rem;
	padding-right: 1.5rem;
	max-width: 103rem;
}

.d-md-none {
	display: none !important;
}

.d-md-block {
	display: block !important;
}

.d-md-flex {
	display: flex !important;
}

.m-md-0 {
	margin: 0 !important;
}

.mt-md-0,
.my-md-0 {
	margin-top: 0 !important;
}

.mr-md-0,
.mx-md-0 {
	margin-right: 0 !important;
}

.mb-md-0,
.my-md-0 {
	margin-bottom: 0 !important;
}

.ml-md-0,
.mx-md-0 {
	margin-left: 0 !important;
}

.m-md-5 {
	margin: 0.5rem !important;
}

.mt-md-5,
.my-md-5 {
	margin-top: 0.5rem !important;
}

.mr-md-5,
.mx-md-5 {
	margin-right: 0.5rem !important;
}

.mb-md-5,
.my-md-5 {
	margin-bottom: 0.5rem !important;
}

.ml-md-5,
.mx-md-5 {
	margin-left: 0.5rem !important;
}

.m-md-10 {
	margin: 1rem !important;
}

.mt-md-10,
.my-md-10 {
	margin-top: 1rem !important;
}

.mr-md-10,
.mx-md-10 {
	margin-right: 1rem !important;
}

.mb-md-10,
.my-md-10 {
	margin-bottom: 1rem !important;
}

.ml-md-10,
.mx-md-10 {
	margin-left: 1rem !important;
}

.m-md-20 {
	margin: 2rem !important;
}

.mt-md-20,
.my-md-20 {
	margin-top: 2rem !important;
}

.mr-md-20,
.mx-md-20 {
	margin-right: 2rem !important;
}

.mb-md-20,
.my-md-20 {
	margin-bottom: 2rem !important;
}

.ml-md-20,
.mx-md-20 {
	margin-left: 2rem !important;
}

.m-md-30 {
	margin: 3rem !important;
}

.mt-md-30,
.my-md-30 {
	margin-top: 3rem !important;
}

.mr-md-30,
.mx-md-30 {
	margin-right: 3rem !important;
}

.mb-md-30,
.my-md-30 {
	margin-bottom: 3rem !important;
}

.ml-md-30,
.mx-md-30 {
	margin-left: 3rem !important;
}

.p-md-0 {
	padding: 0 !important;
}

.pt-md-0,
.py-md-0 {
	padding-top: 0 !important;
}

.pr-md-0,
.px-md-0 {
	padding-right: 0 !important;
}

.pb-md-0,
.py-md-0 {
	padding-bottom: 0 !important;
}

.pl-md-0,
.px-md-0 {
	padding-left: 0 !important;
}

.p-md-5 {
	padding: 0.5rem !important;
}

.pt-md-5,
.py-md-5 {
	padding-top: 0.5rem !important;
}

.pr-md-5,
.px-md-5 {
	padding-right: 0.5rem !important;
}

.pb-md-5,
.py-md-5 {
	padding-bottom: 0.5rem !important;
}

.pl-md-5,
.px-md-5 {
	padding-left: 0.5rem !important;
}

.p-md-10 {
	padding: 1rem !important;
}

.pt-md-10,
.py-md-10 {
	padding-top: 1rem !important;
}

.pr-md-10,
.px-md-10 {
	padding-right: 1rem !important;
}

.pb-md-10,
.py-md-10 {
	padding-bottom: 1rem !important;
}

.pl-md-10,
.px-md-10 {
	padding-left: 1rem !important;
}

.p-md-20 {
	padding: 2rem !important;
}

.pt-md-20,
.py-md-20 {
	padding-top: 2rem !important;
}

.pr-md-20,
.px-md-20 {
	padding-right: 2rem !important;
}

.pb-md-20,
.py-md-20 {
	padding-bottom: 2rem !important;
}

.pl-md-20,
.px-md-20 {
	padding-left: 2rem !important;
}

.p-md-30 {
	padding: 3rem !important;
}

.pt-md-30,
.py-md-30 {
	padding-top: 3rem !important;
}

.pr-md-30,
.px-md-30 {
	padding-right: 3rem !important;
}

.pb-md-30,
.py-md-30 {
	padding-bottom: 3rem !important;
}

.pl-md-30,
.px-md-30 {
	padding-left: 3rem !important;
}

.m-md-n5 {
	margin: -0.5rem !important;
}

.mt-md-n5,
.my-md-n5 {
	margin-top: -0.5rem !important;
}

.mr-md-n5,
.mx-md-n5 {
	margin-right: -0.5rem !important;
}

.mb-md-n5,
.my-md-n5 {
	margin-bottom: -0.5rem !important;
}

.ml-md-n5,
.mx-md-n5 {
	margin-left: -0.5rem !important;
}

.m-md-n10 {
	margin: -1rem !important;
}

.mt-md-n10,
.my-md-n10 {
	margin-top: -1rem !important;
}

.mr-md-n10,
.mx-md-n10 {
	margin-right: -1rem !important;
}

.mb-md-n10,
.my-md-n10 {
	margin-bottom: -1rem !important;
}

.ml-md-n10,
.mx-md-n10 {
	margin-left: -1rem !important;
}

.m-md-n20 {
	margin: -2rem !important;
}

.mt-md-n20,
.my-md-n20 {
	margin-top: -2rem !important;
}

.mr-md-n20,
.mx-md-n20 {
	margin-right: -2rem !important;
}

.mb-md-n20,
.my-md-n20 {
	margin-bottom: -2rem !important;
}

.ml-md-n20,
.mx-md-n20 {
	margin-left: -2rem !important;
}

.m-md-n30 {
	margin: -3rem !important;
}

.mt-md-n30,
.my-md-n30 {
	margin-top: -3rem !important;
}

.mr-md-n30,
.mx-md-n30 {
	margin-right: -3rem !important;
}

.mb-md-n30,
.my-md-n30 {
	margin-bottom: -3rem !important;
}

.ml-md-n30,
.mx-md-n30 {
	margin-left: -3rem !important;
}

.m-md-auto {
	margin: auto !important;
}

.mt-md-auto,
.my-md-auto {
	margin-top: auto !important;
}

.mr-md-auto,
.mx-md-auto {
	margin-right: auto !important;
}

.mb-md-auto,
.my-md-auto {
	margin-bottom: auto !important;
}

.ml-md-auto,
.mx-md-auto {
	margin-left: auto !important;
}

.text-md-left {
	text-align: left !important;
}

.text-md-right {
	text-align: right !important;
}

.text-md-center {
	text-align: center !important;
}

.p-header__wrap {
	align-items: flex-end;
	-moz-column-gap: 2rem;
	column-gap: 2rem;
}

.p-header-menu {
	gap: 4rem;
	display: flex;
}

.p-header-model .hamburger-inner:after,
.p-header-model .hamburger-inner:before,
.p-header-model .hamburger-inner {
	width: 2.6rem;
}

.p-header-model .header-menu__top {
	margin-bottom: 7.5rem;
}

.p-header-model .header-menu__sub {
	font-size: 1.4rem;
}

.hamburger-box {
	height: 6rem;
	width: 6rem;
	display: none;
}

.hamburger-inner:before {
	top: -0.7rem;
}

.hamburger-inner:after {
	bottom: -0.7rem;
}

.c-bnr-float {
	right: 5rem;
	bottom: 9rem;
}

.back-top {
	bottom: 2rem;
	right: 9.9rem;
}

.p-float {
	flex-direction: column;
	top: 12.5rem;
	right: 0;
}

.p-float__item {
	min-height: 15rem;
	min-width: 5rem;
	font-weight: 500;
	font-size: 1.8rem;
	writing-mode: vertical-lr;
	transition: all 0.25s ease-in-out;
}

.p-float__item:hover {
	opacity: 0.8;
}

.p-footer-bnr {
	width: 70rem;
}

.p-footer-list__item {
	flex: 1 1;
}

.p-footer-list__image {
	height: 25rem;
}

.p-footer-list__body::after {
	bottom: 2rem;
	right: 2rem;
}

.p-footer-list__ttl {
	line-height: 1.2;
	font-size: 2.6rem;
}

.p-footer-list__sub {
	font-size: 1.8rem;
}

.p-footer-contact__sub {
	margin-bottom: 1rem;
}

.p-footer-contact__phone {
	margin-bottom: 0.5rem;
	pointer-events: none;
}

.hline01 {
	margin-bottom: 3.5rem;
}

.hline01__ttl {
	font-size: 3rem;
}

.hline01__sub {
	font-size: 1.6rem;
}

.hline02 {
	margin-bottom: 2rem;
}

.hline02__ttl {
	line-height: 1;
	font-size: 4rem;
}

.hline02__sub {
	font-size: 1.4rem;
}

.sp {
	display: none;
}

.p-subMv__ttl {
	font-size: 1.6rem;
}

.p-subMv__ttl-en {
	font-size: 3.6rem;
}

.c-note {
	font-size: 1.4rem;
}

}

@media (min-width: 1000px) {

.d-lg-none {
	display: none !important;
}

.d-lg-block {
	display: block !important;
}

.d-lg-flex {
	display: flex !important;
}

.m-lg-0 {
	margin: 0 !important;
}

.mt-lg-0,
.my-lg-0 {
	margin-top: 0 !important;
}

.mr-lg-0,
.mx-lg-0 {
	margin-right: 0 !important;
}

.mb-lg-0,
.my-lg-0 {
	margin-bottom: 0 !important;
}

.ml-lg-0,
.mx-lg-0 {
	margin-left: 0 !important;
}

.m-lg-5 {
	margin: 0.5rem !important;
}

.mt-lg-5,
.my-lg-5 {
	margin-top: 0.5rem !important;
}

.mr-lg-5,
.mx-lg-5 {
	margin-right: 0.5rem !important;
}

.mb-lg-5,
.my-lg-5 {
	margin-bottom: 0.5rem !important;
}

.ml-lg-5,
.mx-lg-5 {
	margin-left: 0.5rem !important;
}

.m-lg-10 {
	margin: 1rem !important;
}

.mt-lg-10,
.my-lg-10 {
	margin-top: 1rem !important;
}

.mr-lg-10,
.mx-lg-10 {
	margin-right: 1rem !important;
}

.mb-lg-10,
.my-lg-10 {
	margin-bottom: 1rem !important;
}

.ml-lg-10,
.mx-lg-10 {
	margin-left: 1rem !important;
}

.m-lg-20 {
	margin: 2rem !important;
}

.mt-lg-20,
.my-lg-20 {
	margin-top: 2rem !important;
}

.mr-lg-20,
.mx-lg-20 {
	margin-right: 2rem !important;
}

.mb-lg-20,
.my-lg-20 {
	margin-bottom: 2rem !important;
}

.ml-lg-20,
.mx-lg-20 {
	margin-left: 2rem !important;
}

.m-lg-30 {
	margin: 3rem !important;
}

.mt-lg-30,
.my-lg-30 {
	margin-top: 3rem !important;
}

.mr-lg-30,
.mx-lg-30 {
	margin-right: 3rem !important;
}

.mb-lg-30,
.my-lg-30 {
	margin-bottom: 3rem !important;
}

.ml-lg-30,
.mx-lg-30 {
	margin-left: 3rem !important;
}

.p-lg-0 {
	padding: 0 !important;
}

.pt-lg-0,
.py-lg-0 {
	padding-top: 0 !important;
}

.pr-lg-0,
.px-lg-0 {
	padding-right: 0 !important;
}

.pb-lg-0,
.py-lg-0 {
	padding-bottom: 0 !important;
}

.pl-lg-0,
.px-lg-0 {
	padding-left: 0 !important;
}

.p-lg-5 {
	padding: 0.5rem !important;
}

.pt-lg-5,
.py-lg-5 {
	padding-top: 0.5rem !important;
}

.pr-lg-5,
.px-lg-5 {
	padding-right: 0.5rem !important;
}

.pb-lg-5,
.py-lg-5 {
	padding-bottom: 0.5rem !important;
}

.pl-lg-5,
.px-lg-5 {
	padding-left: 0.5rem !important;
}

.p-lg-10 {
	padding: 1rem !important;
}

.pt-lg-10,
.py-lg-10 {
	padding-top: 1rem !important;
}

.pr-lg-10,
.px-lg-10 {
	padding-right: 1rem !important;
}

.pb-lg-10,
.py-lg-10 {
	padding-bottom: 1rem !important;
}

.pl-lg-10,
.px-lg-10 {
	padding-left: 1rem !important;
}

.p-lg-20 {
	padding: 2rem !important;
}

.pt-lg-20,
.py-lg-20 {
	padding-top: 2rem !important;
}

.pr-lg-20,
.px-lg-20 {
	padding-right: 2rem !important;
}

.pb-lg-20,
.py-lg-20 {
	padding-bottom: 2rem !important;
}

.pl-lg-20,
.px-lg-20 {
	padding-left: 2rem !important;
}

.p-lg-30 {
	padding: 3rem !important;
}

.pt-lg-30,
.py-lg-30 {
	padding-top: 3rem !important;
}

.pr-lg-30,
.px-lg-30 {
	padding-right: 3rem !important;
}

.pb-lg-30,
.py-lg-30 {
	padding-bottom: 3rem !important;
}

.pl-lg-30,
.px-lg-30 {
	padding-left: 3rem !important;
}

.m-lg-n5 {
	margin: -0.5rem !important;
}

.mt-lg-n5,
.my-lg-n5 {
	margin-top: -0.5rem !important;
}

.mr-lg-n5,
.mx-lg-n5 {
	margin-right: -0.5rem !important;
}

.mb-lg-n5,
.my-lg-n5 {
	margin-bottom: -0.5rem !important;
}

.ml-lg-n5,
.mx-lg-n5 {
	margin-left: -0.5rem !important;
}

.m-lg-n10 {
	margin: -1rem !important;
}

.mt-lg-n10,
.my-lg-n10 {
	margin-top: -1rem !important;
}

.mr-lg-n10,
.mx-lg-n10 {
	margin-right: -1rem !important;
}

.mb-lg-n10,
.my-lg-n10 {
	margin-bottom: -1rem !important;
}

.ml-lg-n10,
.mx-lg-n10 {
	margin-left: -1rem !important;
}

.m-lg-n20 {
	margin: -2rem !important;
}

.mt-lg-n20,
.my-lg-n20 {
	margin-top: -2rem !important;
}

.mr-lg-n20,
.mx-lg-n20 {
	margin-right: -2rem !important;
}

.mb-lg-n20,
.my-lg-n20 {
	margin-bottom: -2rem !important;
}

.ml-lg-n20,
.mx-lg-n20 {
	margin-left: -2rem !important;
}

.m-lg-n30 {
	margin: -3rem !important;
}

.mt-lg-n30,
.my-lg-n30 {
	margin-top: -3rem !important;
}

.mr-lg-n30,
.mx-lg-n30 {
	margin-right: -3rem !important;
}

.mb-lg-n30,
.my-lg-n30 {
	margin-bottom: -3rem !important;
}

.ml-lg-n30,
.mx-lg-n30 {
	margin-left: -3rem !important;
}

.m-lg-auto {
	margin: auto !important;
}

.mt-lg-auto,
.my-lg-auto {
	margin-top: auto !important;
}

.mr-lg-auto,
.mx-lg-auto {
	margin-right: auto !important;
}

.mb-lg-auto,
.my-lg-auto {
	margin-bottom: auto !important;
}

.ml-lg-auto,
.mx-lg-auto {
	margin-left: auto !important;
}

.text-lg-left {
	text-align: left !important;
}

.text-lg-right {
	text-align: right !important;
}

.text-lg-center {
	text-align: center !important;
}

}

@media (min-width: 1310px) {

.d-xl-none {
	display: none !important;
}

.d-xl-block {
	display: block !important;
}

.d-xl-flex {
	display: flex !important;
}

.m-xl-0 {
	margin: 0 !important;
}

.mt-xl-0,
.my-xl-0 {
	margin-top: 0 !important;
}

.mr-xl-0,
.mx-xl-0 {
	margin-right: 0 !important;
}

.mb-xl-0,
.my-xl-0 {
	margin-bottom: 0 !important;
}

.ml-xl-0,
.mx-xl-0 {
	margin-left: 0 !important;
}

.m-xl-5 {
	margin: 0.5rem !important;
}

.mt-xl-5,
.my-xl-5 {
	margin-top: 0.5rem !important;
}

.mr-xl-5,
.mx-xl-5 {
	margin-right: 0.5rem !important;
}

.mb-xl-5,
.my-xl-5 {
	margin-bottom: 0.5rem !important;
}

.ml-xl-5,
.mx-xl-5 {
	margin-left: 0.5rem !important;
}

.m-xl-10 {
	margin: 1rem !important;
}

.mt-xl-10,
.my-xl-10 {
	margin-top: 1rem !important;
}

.mr-xl-10,
.mx-xl-10 {
	margin-right: 1rem !important;
}

.mb-xl-10,
.my-xl-10 {
	margin-bottom: 1rem !important;
}

.ml-xl-10,
.mx-xl-10 {
	margin-left: 1rem !important;
}

.m-xl-20 {
	margin: 2rem !important;
}

.mt-xl-20,
.my-xl-20 {
	margin-top: 2rem !important;
}

.mr-xl-20,
.mx-xl-20 {
	margin-right: 2rem !important;
}

.mb-xl-20,
.my-xl-20 {
	margin-bottom: 2rem !important;
}

.ml-xl-20,
.mx-xl-20 {
	margin-left: 2rem !important;
}

.m-xl-30 {
	margin: 3rem !important;
}

.mt-xl-30,
.my-xl-30 {
	margin-top: 3rem !important;
}

.mr-xl-30,
.mx-xl-30 {
	margin-right: 3rem !important;
}

.mb-xl-30,
.my-xl-30 {
	margin-bottom: 3rem !important;
}

.ml-xl-30,
.mx-xl-30 {
	margin-left: 3rem !important;
}

.p-xl-0 {
	padding: 0 !important;
}

.pt-xl-0,
.py-xl-0 {
	padding-top: 0 !important;
}

.pr-xl-0,
.px-xl-0 {
	padding-right: 0 !important;
}

.pb-xl-0,
.py-xl-0 {
	padding-bottom: 0 !important;
}

.pl-xl-0,
.px-xl-0 {
	padding-left: 0 !important;
}

.p-xl-5 {
	padding: 0.5rem !important;
}

.pt-xl-5,
.py-xl-5 {
	padding-top: 0.5rem !important;
}

.pr-xl-5,
.px-xl-5 {
	padding-right: 0.5rem !important;
}

.pb-xl-5,
.py-xl-5 {
	padding-bottom: 0.5rem !important;
}

.pl-xl-5,
.px-xl-5 {
	padding-left: 0.5rem !important;
}

.p-xl-10 {
	padding: 1rem !important;
}

.pt-xl-10,
.py-xl-10 {
	padding-top: 1rem !important;
}

.pr-xl-10,
.px-xl-10 {
	padding-right: 1rem !important;
}

.pb-xl-10,
.py-xl-10 {
	padding-bottom: 1rem !important;
}

.pl-xl-10,
.px-xl-10 {
	padding-left: 1rem !important;
}

.p-xl-20 {
	padding: 2rem !important;
}

.pt-xl-20,
.py-xl-20 {
	padding-top: 2rem !important;
}

.pr-xl-20,
.px-xl-20 {
	padding-right: 2rem !important;
}

.pb-xl-20,
.py-xl-20 {
	padding-bottom: 2rem !important;
}

.pl-xl-20,
.px-xl-20 {
	padding-left: 2rem !important;
}

.p-xl-30 {
	padding: 3rem !important;
}

.pt-xl-30,
.py-xl-30 {
	padding-top: 3rem !important;
}

.pr-xl-30,
.px-xl-30 {
	padding-right: 3rem !important;
}

.pb-xl-30,
.py-xl-30 {
	padding-bottom: 3rem !important;
}

.pl-xl-30,
.px-xl-30 {
	padding-left: 3rem !important;
}

.m-xl-n5 {
	margin: -0.5rem !important;
}

.mt-xl-n5,
.my-xl-n5 {
	margin-top: -0.5rem !important;
}

.mr-xl-n5,
.mx-xl-n5 {
	margin-right: -0.5rem !important;
}

.mb-xl-n5,
.my-xl-n5 {
	margin-bottom: -0.5rem !important;
}

.ml-xl-n5,
.mx-xl-n5 {
	margin-left: -0.5rem !important;
}

.m-xl-n10 {
	margin: -1rem !important;
}

.mt-xl-n10,
.my-xl-n10 {
	margin-top: -1rem !important;
}

.mr-xl-n10,
.mx-xl-n10 {
	margin-right: -1rem !important;
}

.mb-xl-n10,
.my-xl-n10 {
	margin-bottom: -1rem !important;
}

.ml-xl-n10,
.mx-xl-n10 {
	margin-left: -1rem !important;
}

.m-xl-n20 {
	margin: -2rem !important;
}

.mt-xl-n20,
.my-xl-n20 {
	margin-top: -2rem !important;
}

.mr-xl-n20,
.mx-xl-n20 {
	margin-right: -2rem !important;
}

.mb-xl-n20,
.my-xl-n20 {
	margin-bottom: -2rem !important;
}

.ml-xl-n20,
.mx-xl-n20 {
	margin-left: -2rem !important;
}

.m-xl-n30 {
	margin: -3rem !important;
}

.mt-xl-n30,
.my-xl-n30 {
	margin-top: -3rem !important;
}

.mr-xl-n30,
.mx-xl-n30 {
	margin-right: -3rem !important;
}

.mb-xl-n30,
.my-xl-n30 {
	margin-bottom: -3rem !important;
}

.ml-xl-n30,
.mx-xl-n30 {
	margin-left: -3rem !important;
}

.m-xl-auto {
	margin: auto !important;
}

.mt-xl-auto,
.my-xl-auto {
	margin-top: auto !important;
}

.mr-xl-auto,
.mx-xl-auto {
	margin-right: auto !important;
}

.mb-xl-auto,
.my-xl-auto {
	margin-bottom: auto !important;
}

.ml-xl-auto,
.mx-xl-auto {
	margin-left: auto !important;
}

.text-xl-left {
	text-align: left !important;
}

.text-xl-right {
	text-align: right !important;
}

.text-xl-center {
	text-align: center !important;
}

}

@media (max-width: 767px) {

.btn.--txt-en {
	font-size: 2.3rem;
	height: 7.8rem;
	width: 29.9rem;
}

.p-header .container {
	padding-inline: 0;
}

.p-header__logo {
	margin-left: 6.5rem;
}

.p-header-menu__link {
	padding-block: 3.5rem;
	font-size: 2.6rem;
}

.p-header__box {
	position: absolute;
	top: 100%;
	width: 100%;
	background-color: #fff;
	text-align: center;
	display: none;
	max-height: calc(100vh - 10rem - 6rem);
	overflow-y: auto;
	padding: 2rem 2rem 4rem;
}

.p-float {
	bottom: 0;
	left: 0;
	width: 100%;
}

.p-float__item {
	flex: 1 1;
}

.p-footer {
	padding-bottom: 6rem;
}

.p-footer-list__item {
	width: 50%;
}

.p-footer-list__image {
	aspect-ratio: 384/300;
}

.pc {
	display: none;
}

}

