@charset "UTF-8";
@keyframes arrowRight {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(100%, 0, 0);
	}
	50% {
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowRightTop {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(100%, -100%, 0);
	}
	50% {
		transform: translate3d(100%, -100%, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(-100%, 100%, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(-100%, 100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowLeft {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(-100%, 0, 0);
	}
	50% {
		transform: translate3d(-100%, 0, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(100%, 0, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowUp {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(0, -100%, 0);
	}
	50% {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
@keyframes arrowDown {
	0% {
		transform: translate3d(0, 0, 0);
	}
	49% {
		transform: translate3d(0, 100%, 0);
	}
	50% {
		transform: translate3d(0, 100%, 0);
		visibility: hidden;
	}
	51% {
		transform: translate3d(0, -100%, 0);
		visibility: hidden;
	}
	52% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	100% {
		transform: translate3d(0, 0, 0);
	}
}
:root {
	--color-black: #000;
	--color-white: #fff;
	--color-dark-brown: #53340F;
	--color-brown: #74522A;
	--color-primary-gold: #B18D45;
	--color-primary-silver: #7D7E87;
	--color-primary-platinum: #849591;
	--color-extra-gold: #FBF7F0;
	--color-extra-silver: #EEEEEE;
	--color-extra-light-gray: #E6E6E6;
	--color-item-gray: #EAE7E5;
	--color-light-gold: #C8BA9D;
	--color-light-gray: #bbb;
	--color-lite-brown: #D5BDA0;
	--color-beige: #EAE0D3;
	--color-body-gray: #888888;
	--color-body-primary: #333;
	--color-body-secondary: #666;
	--color-text-disabled: #aaa;
	--color-smoke-gray: #F2F2F2;
	--color-error: #DE4B2F;
	--color-error-back: #FCEFED;
	--color-text-sub: #777;
	--color-text-gray: #bbb;
	--font-gothic: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-mincho: "游明朝", YuMincho, "ヒラギノ明朝 Pr6 W6", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	--font-kaku-gothic: "Zen Kaku Gothic New", 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-inter: "Inter", 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-roboto: "Roboto", 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
body {
	background: var(--color-extra-gold);
	color: var(--color-black);
	font-family: var(--font-gothic);
	font-size: 16px;
	line-height: 1.8;
	overflow-wrap: break-word;
	min-width: 1000px;
}
a {
	color: inherit;
}
a:focus-visible {
	outline-color: #025ecc;
	outline-offset: 1px;
	outline-style: auto;
}
a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	color: inherit;
	pointer-events: none;
}
button:focus-visible {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
textarea,
[type="search"],
[type="date"],
[type="tel"],
[type="email"],
[type="number"],
[type="password"],
[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
	padding: 15px 16px;
	border: 1px solid var(--color-body-primary);
	border-radius: 8px;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 24px;
	font-weight: 500;
}
[data-animation] {
	transition-duration: 1s;
	transition-delay: .2s;
	transition-property: opacity;
	opacity: 0;
}
[data-animation="after"] {
	opacity: 1;
}
[data-animation][data-animation-type="fadeInRight"] {
	transition-property: opacity, transform;
	transform: translateX(-20px);
}
[data-animation="after"][data-animation-type="fadeInRight"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInLeft"] {
	transition-property: opacity, transform;
	transform: translateX(20px);
}
[data-animation="after"][data-animation-type="fadeInLeft"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInUp"] {
	transition-property: opacity, transform;
	transform: translateY(20px);
}
[data-animation="after"][data-animation-type="fadeInUp"] {
	transform: translateY(0);
}
[data-animation][data-animation-type="fadeZoomOut"] {
	transition-property: opacity, transform;
	transform: scale(1.05);
}
[data-animation="after"][data-animation-type="fadeZoomOut"] {
	transform: scale(1);
}
::-webkit-input-placeholder {
	color: var(--color-light-gray);
}
:-ms-input-placeholder {
	color: var(--color-light-gray);
}
::placeholder {
	color: var(--color-light-gray)
}
.icon {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	min-width: 1em;
}
.icon::before {
	display: block;
}
.u-inner {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.u-ttl {
	font-size: inherit;
	line-height: 1.4;
	margin-bottom: 20px;
}
.u-ttl::before {
	content: "";
}
.u-ttl::after {
	content: "";
}
.u-tbl {
	width: 100%;
}
.u-tbl > thead {}
.u-tbl > thead > tr {}
.u-tbl > thead > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	vertical-align: middle;
}
.u-tbl > tbody {}
.u-tbl > tbody > tr {}
.u-tbl > tbody > tr > th {
	padding: 7px 10px;
	border: 1px solid #ddd;
	white-space: nowrap;
	background: #efefef;
	font-weight: normal;
	text-align: left;
	width: 140px;
	vertical-align: top;
}
.u-tbl > tbody > tr > td {
	padding: 7px 10px;
	border: 1px solid #ddd;
	vertical-align: top;
}
.u-tblWrap {
	overflow: auto;
}
.u-tblWrap_caution {
	display: none;
}
.u-list {
	list-style: none;
	line-height: 1.6;
}
.u-list > li {
	margin-top: 5px;
	position: relative;
	z-index: 1;
	padding-left: 11px;
}
.u-list > li:first-child {
	margin-top: 0;
}
.u-list > li::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	width: 6px;
	height: 6px;
	background-color: var(--color-black);
	border-radius: 50%;
	left: 0;
	top: calc(0.8em - 3px);
}
.u-sect {
	padding-top: 70px;
	margin-top: -70px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 50px;
	padding: 10px 23px;
	line-height: 1.2;
	background-color: var(--color-body-primary);
	border: 1px solid var(--color-body-primary);
	justify-content: center;
	align-items: center;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	position: relative;
	z-index: 1;
	color: inherit;
	min-height: 50px;
	color: var(--color-white);
	font-weight: 500;
	justify-content: flex-start;
	padding-right: 53px;
}
.u-btn[disabled] {
	background-color: var(--color-light-gray);
	border-color: var(--color-light-gold);
	pointer-events: none;
}
.u-btn-white {
	background-color: var(--color-white);
	color: var(--color-body-primary);
}
.u-btn:active {}
.u-btn::after {
	content: "";
}
.u-btn-cancel {
	background: #666;
	color: #fff;
}
.u-selWrap {
	position: relative;
}
.u-selWrap::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	top: 28px;
	right: 15px;
	width: 16px;
	height: 9px;
	transform: translateY(-50%);
	pointer-events: none;
	background-image: url(/assets/img/common/icn-select.svg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}
.u-selWrap::after {}
.u-selWrap select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 54px;
	height: 56px;
	width: 100%;
	border-right: 25px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 16px;
	display: block;
	border: 1px solid var(--color-body-secondary);
	border-radius: 8px;
	padding-right: 41px;
	font-family: inherit;
	background-color: var(--color-white);
	color: inherit;
}
.u-selWrap > select::-ms-expand {
	display: none;
}
.u-chkLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-chkLbl > [type="checkbox"] {
	position: absolute;
	z-index: 2;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-chkLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	background: #fff;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	box-sizing: border-box;
	border: 1px solid #666;
	position: absolute;
	z-index: 0;
	top: calc(5px + 0.8em);
	transform: translateY(-50%);
	left: 0;
}
.u-chkLbl > [type="checkbox"]:focus-visible + .u-chkLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-chkLbl_icon::after {
	content: "";
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 8px;
	box-sizing: border-box;
	border: 3px solid #666;
	border-top: none;
	border-right: none;
	transform: translate(-50%, -50%) rotate(-39deg);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
	margin-top: -2px;
}
.u-chkLbl_text {
	display: block;
	font-weight: normal;
}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl {
	position: relative;
	display: block;
	padding: 5px 0;
	padding-left: 30px;
	line-height: 1.6;
}
.u-rdoLbl > [type="radio"] {
	position: absolute;
	z-index: 1;
	opacity: 0;
	top: 0;
	left: 0;
}
.u-rdoLbl_icon {
	display: block;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	margin-right: 4px;
	transition-duration: .3s;
	transition-property: background-color, color;
	border: 1px solid #666;
	box-sizing: border-box;
	position: absolute;
	z-index: 0;
	top: calc(0.8em + 5px);
	left: 0;
	transform: translateY(-50%);
}
.u-rdoLbl_icon::after {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 50%;
	left: 50%;
	width: 10px;
	height: 10px;
	background: #666;
	border-radius: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	opacity: 0;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-rdoLbl > [type="radio"]:focus-visible + .u-rdoLbl_icon {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon::after {
	opacity: 1;
}
.u-rdoLbl_text {
	display: block;
	font-weight: normal;
}
.u-hiddenSVG {
	height: 0;
	width: 0;
	overflow: hidden;
	position: absolute;
}
.u-spBlock {
	display: none;
}
.u-spInline {
	display: none;
}
.u-spsInline {
	display: none;
}
.u-lowResInline {
	display: none;
}
.u-clamp {
	max-height: 3.6em;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	display: -webkit-box;
}
.u-switchImg > img:first-child {}
.u-switchImg > img:last-child {
	display: none;
}
.u-fitImg {
	position: relative;
	z-index: 1;
	padding-bottom: 100%;
	overflow: hidden;
}
.u-fitImg > img {
	display: block;
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.u-editor {
	word-break: break-all;
}
.u-editor::after {
	content: "";
	display: block;
	clear: both;
}
.u-editor div {
	max-width: 100%;
}
.u-editor img {
	max-width: 100%;
	height: auto;
}
.u-editor iframe {
	max-width: 100%;
}
.u-editor video {
	max-width: 100%;
	height: auto;
}
.u-editor ul {
	padding-left: 1.5em;
}
.u-editor ol {
	padding-left: 1.5em;
}
.u-editor blockquote {
	background-color: #f6f6f6;
	padding: 30px;
	position: relative;
	z-index: 1;
}
.u-editor blockquote::before {
	content: "“";
	font-size: 50px;
	color: #999;
	position: absolute;
	left: 5px;
	top: 5px;
	line-height: 1;
}
.u-editor blockquote::after {
	content: "”";
	font-size: 50px;
	color: #999;
	position: absolute;
	right: 5px;
	bottom: -15px;
	line-height: 1;
}
.u-arrow {
	overflow: hidden;
	display: block;
	width: 1em;
}
.u-arrow_item {
	display: block;
}
.u-headlineS {
	font-size: 28px;
	line-height: 1.7;
	text-align: center;
	font-family: var(--font-kaku-gothic);
	font-weight: 500;
}
.u-textBodyM {
	font-size: 18px;
	line-height: 1.6;
}
.u-btn_arrow {
	font-size: 20px;
	position: absolute;
	top: 50%;
	right: 23px;
	transform: translateY(-50%);
}
.u-btn_arrow-rightTop {
	font-size: 12px;
}
.u-update {
	color: var(--color-body-secondary);
	font-family: var(--font-inter);
	font-weight: 500;
	line-height: 1.4;
	font-size: 15px;
}
.u-cat {
	color: var(--color-primary-gold);
	font-weight: 500;
	font-size: 15px;
	position: relative;
	line-height: 1.4;
	padding-left: 13px;
}
.u-cat::before {
	content: "";
	display: block;
	width: 7px;
	height: 7px;
	position: absolute;
	top: .7em;
	left: 0;
	transform: translateY(-50%);
	border-radius: 50%;
	background-color: currentColor;
}
.u-editor p {
	margin-top: 1.9em;
	margin-bottom: 1.9em;
}
.u-editor p:first-child {
	margin-top: 0;
}
.u-editor p:last-child {
	margin-bottom: 0;
}
.u-tagList {
	display: flex;
	flex-wrap: wrap;
	column-gap: 6px;
	row-gap: 6px;
	list-style: none;
}
.u-tagList > li {}
.u-tagList_item {
	display: flex;
	min-height: 24px;
	border-radius: 6px;
	background-color: var(--color-white);
	color: var(--color-body-secondary);
	font-size: 11px;
	font-weight: 500;
	padding: 0 11px;
	border: 1px solid var(--color-extra-light-gray);
	align-items: center;
	line-height: 1.2;
	text-decoration: none;
	transition-duration: .3s;
	transition-property: background-color, color, border-color;
	box-sizing: border-box;
}
.u-type {
	background-color: var(--color-primary-silver);
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
	min-height: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	border-radius: 50px;
	color: var(--color-white);
	box-sizing: border-box;
	text-decoration: none;
	transition-duration: .3s;
	transition-property: background-color, color;
}
.u-bgNoise {
	background-position: center center;
	background-repeat: repeat;
	background-color: #74522A;
	border-radius: 16px;
	overflow: hidden;
	position: relative;
}
.u-ttlEn {
	font-size: 24px;
	line-height: 1.7;
	font-family: var(--font-kaku-gothic);
	font-weight: 500;
	margin-bottom: 30px;
}
.u-ttlEn_en {
	display: block;
	font-size: 18px;
	font-family: var(--font-inter);
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1;
	letter-spacing: 0.05em;
	margin-bottom: 11px;
}
.u-ttlEn_ja {
	display: block;
	letter-spacing: 0.04em;
}
.u-ttlEn-white {
	color: var(--color-white);
}
.u-ttlEn_en-light {
	color: var(--color-light-gold);
}
.u-headlineXS {
	font-size: 24px;
	line-height: 1.7;
	font-family: var(--font-kaku-gothic);
	font-weight: 500;
}
.u-headlineXXSMobile {
	font-weight: 500;
	font-family: var(--font-kaku-gothic);
	font-size: 16px;
	line-height: 1.5;
	text-indent: 0.05em;
	margin-bottom: 20px;
}
.u-editor h2 {
	font-size: 28px;
	font-weight: 500;
	font-family: var(--font-kaku-gothic);
	line-height: 1.6;
	border-bottom: 1px solid var(--color-light-gold);
	padding-bottom: 16px;
	margin-top: 80px;
	margin-bottom: 24px;
}
.u-editor h2:first-child {
	margin-top: 0;
}
.u-editor h2:last-child {
	margin-bottom: 0;
}
.u-editor strong {
	font-weight: bold;
	color: var(--color-primary-gold);
}
.u-editor h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.6;
	margin-top: 40px;
	margin-bottom: 16px;
	color: var(--color-brown);
}
.u-editor h3:first-child {
	margin-top: 0;
}
.u-editor h3:last-child {
	margin-bottom: 0;
}
.u-editor h3 + p {
	margin-top: 0;
}
.u-bgNoise-beige {
	background-color: #EAE0D3;
}
.u-headlineXXS {
	font-size: 20px;
	line-height: 1.5;
	font-weight: 500;
	font-family: var(--font-kaku-gothic);
}
.u-backLink {
	display: flex;
	justify-content: center;
	margin-top: 60px;
	font-size: 15px;
	font-weight: 500;
}
.u-backLink > a {
	color: var(--color-text-sub);
	display: block;
	display: block;
}
.u-ttlGold {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.6;
	color: var(--color-brown);
	font-family: var(--font-kaku-gothic);
}
.u-textBodyS {
	font-size: 15px;
	line-height: 1.7;
	color: var(--color-body-secondary);
	font-weight: 500;
}
.u-ttlEn-large {
	font-size: 32px;
}
.u-ttlEn-medium {
	font-size: 28px;
}
.u-ttlBrand {
	font-size: 32px;
	font-weight: 500;
	font-family: var(--font-kaku-gothic);
	line-height: 1.8;
}
.u-ttlBrandSub {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1;
	color: var(--color-brown);
	margin-bottom: 36px;
}
.u-txtBrand {
	font-size: 17px;
	font-weight: 500;
	line-height: 2.2;
}
.u-underLine {
	background-image: linear-gradient(to top, currentColor 1px, rgba(255, 255, 255, 0) 1px);
	background-size: 100% 100%;
	background-repeat: no-repeat;
	transition-duration: .3s;
	transition-property: background-size;
	background-size: 0 100%;
	background-position: right bottom;
}
.u-bgNoise::before {
	content: "";
	background-image: url(/assets/img/common/bg-noise-brown.png);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: .3;
}
.u-bgNoise-beige::before {
	background-image: url(/assets/img/common/bg-noise-beige.png);
	opacity: .4;
}
.u-editor h4 {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 30px;
	margin-top: 40px;
}
@media screen and (max-width:1199px) {
	.u-lowResInline {
		display: inline;
	}
	.u-lowResNone {
		display: none;
	}
	img {
		max-width: 100%;
		height: auto;
	}
}
@media screen and (min-width: 1000px) and (hover: hover) {
	a:hover .u-underLine {
		background-size: 100% 100%;
		background-position: left bottom;
	}
	a:hover {
		text-decoration: none;
	}
	.u-btn:hover {
		background-color: var(--color-brown);
		border-color: var(--color-brown);
	}
	.u-btn-white:hover {
		border-color: var(--color-body-primary);
		background-color: var(--color-body-primary);
		color: var(--color-white);
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
	button:hover .u-arrow_item,
	a:hover .u-arrow_item {
		display: block;
		animation-name: arrowRight;
		animation-duration: .6s;
		animation-fill-mode: backwards;
		animation-iteration-count: 1;
	}
	button:hover .u-arrow_item-down,
	a:hover .u-arrow_item-down {
		animation-name: arrowDown;
	}
	button:hover .u-arrow_item-up,
	a:hover .u-arrow_item-up {
		animation-name: arrowUp;
	}
	button:hover .u-arrow_item-left,
	a:hover .u-arrow_item-left {
		animation-name: arrowLeft;
	}
	button:hover .u-arrow_item-rightTop,
	a:hover .u-arrow_item-rightTop {
		animation-name: arrowRightTop;
	}
	a.u-tagList_item:hover {
		border-color: var(--color-primary-gold);
		color: var(--color-primary-gold);
	}
	a.u-type:hover {
		background-color: var(--color-primary-gold);
	}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
		font-size: 15px;
	}
	a {}
	a[href^="tel:"] {
		pointer-events: auto;
	}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {
		font-size: 16px;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {}
	.u-ttl::before {}
	.u-ttl::after {}
	.u-tbl {}
	.u-tbl > thead {}
	.u-tbl > thead > tr {}
	.u-tbl > thead > tr > th {}
	.u-tbl > tbody {}
	.u-tbl > tbody > tr {}
	.u-tbl > tbody > tr > th {
		width: auto;
		padding: 3px 5px;
	}
	.u-tbl > tbody > tr > td {
		padding: 3px 5px;
	}
	.u-tblWrap {}
	.u-tblWrap_caution {
		margin: 0 5px 0 0;
		font-size: 13px;
	}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {}
	.u-btn {
		min-height: 42px;
		font-size: 13px;
		padding: 5px 20px;
		padding-right: 40px;
	}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-spBlock {
		display: block;
	}
	.u-spInline {
		display: inline;
	}
	.u-spNone {
		display: none;
	}
	.u-switchImg {}
	.u-switchImg > img:first-child {
		display: none;
	}
	.u-switchImg > img:last-child {
		display: block;
	}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-arrow {}
	.u-arrow_item {}
	.u-headlineS {
		font-size: 20px;
	}
	.u-textBodyM {
		font-size: 14px;
	}
	.u-btn_arrow {
		right: 18px;
		font-size: 15px;
	}
	.u-btn_arrow-rightTop {}
	.u-update {
		font-size: 14px;
	}
	.u-cat {
		font-size: 14px;
	}
	.u-cat::before {
		width: 6px;
		height: 6px;
	}
	.u-tagList {}
	.u-tagList > li {}
	.u-tagList_item {}
	.u-type {}
	.u-bgNoise {}
	.u-ttlEn {
		font-size: 20px;
		margin-bottom: 27px;
	}
	.u-ttlEn_en {
		font-size: 14px;
		margin-bottom: 17px;
	}
	.u-ttlEn_ja {
		letter-spacing: 0.02em;
	}
	.u-ttlEn-white {}
	.u-ttlEn_en-light {}
	.u-headlineXS {
		font-size: 20px;
	}
	.u-headlineXXSMobile {}
	.u-editor h2 {
		font-size: 22px;
		margin-top: 64px;
	}
	.u-editor strong {}
	.u-editor h3 {
		font-size: 18px;
	}
	.u-editor h3 + p {}
	.u-bgNoise-beige {}
	.u-headlineXXS {
		font-size: 16px;
	}
	.u-backLink {
		font-size: 14px;
		margin-top: 60px;
	}
	.u-ttlGold {
		font-size: 20px;
	}
	.u-textBodyS {
		font-size: inherit;
		line-height: inherit;
	}
	.u-ttlEn-large {
		font-size: 28px;
	}
	.u-ttlEn-medium {}
	.u-ttlBrand {
		font-size: 24px;
	}
	.u-ttlBrandSub {
		font-size: 14px;
	}
	.u-txtBrand {
		font-size: 15px;
	}
}
@media screen and (max-width:374px) {
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
	.u-ttlEn {
		font-size: 18px;
	}
}
