@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 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);
	}
}
:root {
	--color-text: #333;
	--color-white: #fff;
	--color-link-gray: #808080;
	--color-link-blue: #001AFF;
	--color-dark-gray: #83817B;
	--color-soft-gray: #EDECEB;
	--color-red: #D20808;
	--color-border-gray: #C4C4C4;
	--color-border-light-gray: #D6D6D6;
	--color-gray: #B4B4B4;
	--color-sunset-gold: #feaf4c;
	--grad-gold: linear-gradient(90deg, #FFAD38 0%, #FFCC00 100%);
	--font-gothic: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', YuGothic, 'メイリオ', Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	--font-gothic-sc: "Noto Sans SC", '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-oswald: "Oswald", sans-serif;
	--font-montserrat: "Montserrat", sans-serif;
	--ratio-logo: 17.23%;
}
body {
	background: var(--color-white);
	color: var(--color-text);
	font-family: var(--font-gothic);
	font-size: 16px;
	line-height: 1.8;
	overflow-wrap: break-word;
}
a {
	color: inherit;
}
a:focus-visible {
	outline-color: #025ecc;
	outline-offset: 1px;
	outline-style: auto;
}
a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
	color: inherit;
	pointer-events: none;
}
button:focus-visible {
	outline-width: 1px;
	outline-style: auto;
	outline-color: #025ecc;
	outline-offset: 1px;
}
textarea,
[type="search"],
[type="date"],
[type="tel"],
[type="email"],
[type="number"],
[type="password"],
[type="text"] {
	-webkit-appearance: none;
	appearance: none;
	font-size: inherit;
	padding: 16px 16px;
	border: none;
	border-radius: 0;
	box-sizing: border-box;
	width: 100%;
	line-height: inherit;
	resize: vertical;
	display: block;
	line-height: 24px;
	background-color: #F6F6F6;
}
[data-animation] {
	transition-duration: 1s;
	transition-delay: .2s;
	transition-property: opacity;
	opacity: 0;
}
[data-animation="after"] {
	opacity: 1;
}
[data-animation][data-animation-type="fadeInRight"] {
	transition-property: opacity, transform;
	transform: translateX(-20px);
}
[data-animation="after"][data-animation-type="fadeInRight"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInLeft"] {
	transition-property: opacity, transform;
	transform: translateX(20px);
}
[data-animation="after"][data-animation-type="fadeInLeft"] {
	transform: translateX(0);
}
[data-animation][data-animation-type="fadeInUp"] {
	transition-property: opacity, transform;
	transform: translateY(20px);
}
[data-animation="after"][data-animation-type="fadeInUp"] {
	transform: translateY(0);
}
[data-animation][data-animation-type="fadeZoomOut"] {
	transition-property: opacity, transform;
	transform: scale(1.05);
}
[data-animation="after"][data-animation-type="fadeZoomOut"] {
	transform: scale(1);
}
::-webkit-input-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}
::placeholder {
	color: #ccc
}
.icon {
	vertical-align: middle;
	display: inline-block;
	position: relative;
	min-width: 1em;
}
.icon::before {
	display: block;
}
.u-inner {
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 20px;
	padding-right: 20px;
}
.u-ttl {
	margin-bottom: 74px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 28px;
	line-height: 1.5357;
	font-weight: normal;
	letter-spacing: 0.2em;
	padding-right: 19px;
}
[lang="en"] .u-ttl {
	letter-spacing: 0;
	font-family: var(--font-oswald);
	font-weight: 300;
	line-height: 38px;
	align-items: flex-start;
}
.u-ttl_icon {
	display: block;
	width: 20px;
	height: 20px;
	fill: currentColor;
	margin-right: 15px;
	transform: translateY(1%);
}
[lang="en"] .u-ttl_icon {
	position: relative;
	top: 19px;
	transform: translateY(-50%);
}
.u-tbl {
	width: 100%;
	line-height: 26px;
}
.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 {
	border-bottom: 1px solid var(--color-border-light-gray);
	border-top: 1px solid var(--color-border-light-gray);
}
.u-tbl > tbody > tr > th {
	padding: 22px 10px;
	white-space: nowrap;
	font-weight: normal;
	text-align: left;
	width: 122px;
	vertical-align: top;
	font-size: 18px;
	padding-right: 41px;
	box-sizing: border-box;
}
.u-tbl > tbody > tr > td {
	padding: 22px 10px;
	vertical-align: top;
	padding-right: 0;
}
.u-tblWrap {
	overflow: auto;
}
.u-tblWrap_caution {
	display: none;
}
.u-list {
	list-style: none;
	line-height: 1.6;
}
.u-list > li {
	margin-top: 5px;
	position: relative;
	z-index: 1;
	padding-left: 11px;
}
.u-list > li:first-child {
	margin-top: 0;
}
.u-list > li::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	width: 6px;
	height: 6px;
	background-color: var(--color-text);
	border-radius: 50%;
	left: 0;
	top: calc(0.8em - 3px);
}
.u-sect {
	padding-top: 111px;
	margin-top: -111px;
}
.u-btn {
	display: flex;
	text-decoration: none;
	text-align: center;
	box-sizing: border-box;
	width: 100%;
	cursor: pointer;
	border-radius: 100px;
	padding: 10px 28px;
	line-height: 1.2;
	background-color: var(--color-white);
	border: 1px solid var(--color-text);
	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: 60px;
}
.u-btn:active {}
.u-btn::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	background-color: currentColor;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	right: 16PX;
	transform: translateY(-50%) scale(0.967);
}
.u-btn-cancel {
	background: #666;
	color: #fff;
}
.u-selWrap {
	position: relative;
}
.u-selWrap::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 3;
	top: 50%;
	right: 9px;
	border: 6px solid rgba(255, 255, 255, 0);
	width: 0;
	height: 0;
	border-top-width: 8px;
	border-bottom-width: 0;
	border-top-color: currentColor;
	transform: translateY(-50%);
	pointer-events: none;
}
.u-selWrap::after {}
.u-selWrap > select {
	margin: 0;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	background: 0 0;
	border: 0;
	line-height: 32px;
	height: 32px;
	width: 100%;
	border-right: 25px solid rgba(0, 0, 0, 0);
	border-radius: 0;
	cursor: pointer;
	position: relative;
	z-index: 2;
	padding-left: 15px;
	display: block;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding-right: 25px;
	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-tabletBlock {
	display: none;
}
.u-tabletInline {
	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 {
	list-style: none;
	margin: 28px 0;
}
.u-editor ul > li {
	position: relative;
	padding-left: 20px;
}
.u-editor ul > li::before {
	content: "";
	background-image: url(/assets/img/common/icn-corner.svg);
	width: 10px;
	height: 14px;
	display: block;
	position: absolute;
	top: 1em;
	left: 0;
	transform: translateY(-50%);
}
.u-editor ol {
	list-style: none;
	counter-reset: number;
	margin: 28px 0;
}
.u-editor ol > li {
	position: relative;
	padding-left: 21px;
}
.u-editor ol > li::before {
	content: counter(number);
	counter-increment: number;
	font-family: var(--font-oswald);
	font-weight: 300;
	position: absolute;
	top: 0;
	left: 0;
}
.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-text {
	line-height: 2.375;
}
.u-text32 {
	line-height: 2;
}
.u-ttlSub {
	font-size: 22px;
	line-height: 43px;
	font-weight: normal;
	letter-spacing: 0.2em;
	margin-bottom: 58px;
}
[lang="en"] .u-ttlSub {
	letter-spacing: 0.1em;
}
.u-grayBg {
	position: relative;
}
.u-grayBg::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--color-soft-gray);
	z-index: -2;
}
.u-sc {
	font-family: var(--font-gothic-sc);
}
.u-ttlSmall {
	font-size: 20px;
	line-height: 1.4;
	font-weight: normal;
	letter-spacing: 0.2em;
	display: block;
	text-indent: 0.1em;
}
[lang="en"] .u-ttlSmall {
	letter-spacing: 0.1em;
}
.u-ttlSub-center {
	text-align: center;
	padding-left: 0.2em;
}
[lang="en"] .u-ttlSub-center {
	padding-left: 0.1em;
}
.u-ttlEnMiddle {
	font-size: 70px;
	line-height: 80px;
	font-weight: 300;
	font-family: var(--font-oswald);
	letter-spacing: -0.04em;
	display: block;
	margin-bottom: 22px;
}
.u-ttlEnMiddle-center {
	text-indent: 0.04em;
	text-align: center;
}
.u-ttlSmall-center {
	text-indent: 0.2em;
	text-align: center;
}
.u-arrow {
	overflow: hidden;
	display: block;
	width: 15px;
}
.u-arrow_icon {
	display: block;
	display: block;
	fill: none;
	stroke: var(--color-text);
	stroke-width: 1px;
	stroke-miterlimit: 10;
	width: 15px;
	height: 15px;
	position: relative;
	z-index: 1;
}
.u-editor h2 {
	font-size: 25px;
	line-height: 1.8;
	font-weight: normal;
	margin-bottom: 32px;
	margin-top: 30px;
}
.u-editor h2:first-child {
	margin-top: 0;
}
.u-editor h2:last-child {
	margin-bottom: 0;
}
.u-editor h3 {
	font-size: 22px;
	font-weight: normal;
	line-height: 1.8182;
	margin-bottom: 34px;
	margin-top: 30px;
}
.u-editor h3:first-child {
	margin-top: 0;
}
.u-editor h3:last-child {
	margin-bottom: 0;
}
.u-editor h4 {
	font-size: 20px;
	line-height: 2;
	font-weight: normal;
	margin-bottom: 34px;
	margin-top: 30px;
}
.u-editor h4:first-child {
	margin-top: 0;
}
.u-editor h4:last-child {
	margin-bottom: 0;
}
.u-editor table {}
.u-editor table > thead {
	border: none;
}
.u-editor table > thead > tr {}
.u-editor table > thead > tr > th {
	background-color: var(--color-soft-gray);
	font-weight: normal;
	padding: 24px 20px;
	text-align: left;
	border: none;
	box-sizing: border-box;
}
.u-editor table > thead > tr > th:first-child {
	border-right: 1px solid #DFDFDF;
	width: 214px;
}
.u-editor table > tbody {}
.u-editor table > tbody > tr {
	border-bottom: 1px solid #DFDFDF;
	border-top: 1px solid #DFDFDF;
}
.u-editor table > thead + tbody > tr {
	border-top: none;
}
.u-editor table > tbody > tr > td:first-child {
	background-color: rgba(240, 240, 240, 0.31);
	border-right: 1px solid #DFDFDF;
	width: 214px;
}
.u-editor table > tbody > tr > td {
	padding: 20px 20px;
	border: none;
	box-sizing: border-box;
}
.u-editor .aligncenter > img {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.u-editor .wp-block-image {
	margin: 50px 0;
}
.u-editor .wp-block-image:first-child {
	margin-top: 0;
}
.u-editor .wp-block-image:last-child {
	margin-bottom: 0;
}
.u-editor p {
	margin: 28px 0;
}
.u-editor p:first-child {
	margin-top: 0;
}
.u-editor p:last-child {
	margin-bottom: 0;
}
.u-editor .wp-block-table {
	margin: 30px 0;
}
.u-editor .wp-block-table:first-child {
	margin-top: 0;
}
.u-editor .wp-block-table:last-child {
	margin-bottom: 0;
}
.u-editor .wp-block-embed-youtube {
	margin: 50px 0;
}
.u-editor .wp-block-embed-youtube:first-child {
	margin-top: 0;
}
.u-editor .wp-block-embed-youtube:last-child {
	margin-bottom: 0;
}
.u-editor .wp-block-embed-youtube > .wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 55.33553%;
}
.u-editor .wp-block-embed-youtube > .wp-block-embed__wrapper > iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.u-editor p a {
	color: var(--color-link-blue);
}
.u-ttlLarge {
	font-size: 28px;
	font-weight: normal;
	line-height: 1.536;
	letter-spacing: 0.2em;
}
[lang="en"] .u-ttlLarge {
	letter-spacing: 0.1em;
}
.u-ttlRecruit {
	font-size: 40px;
	line-height: 1.5;
	font-weight: normal;
	text-align: center;
}
.u-ttlRecruit_ja {
	display: block;
	letter-spacing: 0.1em;
	margin-bottom: 23px;
}
.u-ttlRecruit_en {
	font-size: 12px;
	font-family: var(--font-oswald);
	letter-spacing: 0.25em;
	display: block;
}
.u-btn-grad {
	overflow: hidden;
}
.u-btn-grad::before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: var(--grad-gold);
	opacity: 1;
	transition-duration: .3s;
	transition-property: opacity;
}
.u-btn_text {
	display: block;
	position: relative;
	z-index: 1;
}
.u-ttlBrandSub {
	font-size: 12px;
	font-family: var(--font-oswald);
	letter-spacing: 0.1em;
	font-weight: normal;
	margin-bottom: 30px;
}
.u-ttlBrand {
	font-size: 75px;
	line-height: 1.133;
	font-family: var(--font-oswald);
	font-weight: 300;
}
.u-ttlEnLarge {
	font-size: 80px;
	text-align: center;
	font-family: var(--font-oswald);
	font-weight: 300;
	line-height: 1.16125;
	letter-spacing: 0.04em;
	text-indent: 0.04em;
}
.u-ttlEnLargeEx {
	font-family: var(--font-oswald);
	font-weight: 200;
	font-size: 120px;
	line-height: 1;
	letter-spacing: 0.03em;
}
.u-hoverLine {
	background-image: linear-gradient(to top, currentColor 1px, rgba(255, 255, 255, 0) 1px);
	background-position: right bottom;
	background-size: 0% 100%;
	background-repeat: no-repeat;
	transition-duration: .3s;
	transition-property: background-size;
}
@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-hoverLine {
		background-position: left bottom;
		background-size: 100% 100%;
	}
	.u-btn-grad:hover::before {
		opacity: 0;
	}
	a:hover {
		text-decoration: none;
	}
	.u-btn:hover {
		background-color: var(--color-sunset-gold);
	}
	.u-btn-grad:hover {
		background-color: rgba(255, 255, 255, 0);
	}
	.u-btn-cancel:hover {
		background: #555;
		color: #fff;
	}
	button:hover .u-arrow_icon,
	a:hover .u-arrow_icon {
		display: block;
		animation-name: arrowRight;
		animation-duration: .6s;
		animation-fill-mode: backwards;
		animation-iteration-count: 1;
	}
	button:hover .u-arrow_icon-left,
	a:hover .u-arrow_icon-left {
		display: block;
		animation-name: arrowLeft;
		animation-duration: .6s;
		animation-fill-mode: backwards;
		animation-iteration-count: 1;
	}
}
@media screen and (max-width:999px) {
	body {
		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"] {}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 24px;
	}
	.u-ttl_icon {}
	.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 {
		font-size: 16px;
	}
	.u-tbl > tbody > tr > td {}
	.u-tblWrap {}
	.u-tblWrap_caution {}
	.u-list {}
	.u-list > li {}
	.u-list > li:first-child {}
	.u-list > li::before {}
	.u-sect {}
	.u-btn {}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-tabletBlock {
		display: block;
	}
	.u-tabletInline {
		display: inline;
	}
	.u-tabletNone {
		display: none;
	}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {}
	.u-editor ol {}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-text {
		line-height: 2;
	}
	.u-ttlSub {
		font-size: 20px;
		line-height: 42px;
	}
	.u-grayBg {}
	.u-grayBg::before {}
	.u-sc {}
	.u-ttlSmall {}
	.u-ttlSub-center {}
	.u-ttlEnMiddle {}
	.u-arrow {}
	.u-arrow_icon {}
	.u-editor h2 {}
	.u-editor h3 {}
	.u-editor h4 {}
	.u-editor table {}
	.u-editor table > thead {}
	.u-editor table > thead > tr {}
	.u-editor table > thead > tr > th {}
	.u-editor table > thead > tr > th:first-child {}
	.u-editor table > tbody {}
	.u-editor table > tbody > tr {}
	.u-editor table > thead + tbody > tr {}
	.u-editor table > tbody > tr > td:first-child {}
	.u-editor table > tbody > tr > td {}
	.u-editor .aligncenter > img {}
	.u-editor .wp-block-image {}
	.u-editor p {}
	.u-editor .wp-block-table {}
	.u-editor .wp-block-embed-youtube {}
	.u-editor .wp-block-embed-youtube > .wp-block-embed__wrapper {}
	.u-editor .wp-block-embed-youtube > .wp-block-embed__wrapper > iframe {}
	.u-editor p a {}
	.u-ttlLarge {
		font-size: 24px;
	}
	.u-ttlRecruit {}
	.u-ttlRecruit_ja {}
	.u-ttlRecruit_en {}
	.u-btn-grad {}
	.u-btn-grad::before {}
	.u-btn_text {}
	.u-ttlBrandSub {}
	.u-ttlBrand {
		font-size: 55px;
	}
	.u-ttlEnLarge {}
	.u-ttlEnLargeEx {
		font-size: 90px;
	}
}
@media screen and (max-width:767px) {
	body {
		min-width: 320px;
		font-size: 14px;
	}
	a {}
	a[href^="tel:"] {}
	textarea,
	[type="search"],
	[type="date"],
	[type="tel"],
	[type="email"],
	[type="number"],
	[type="password"],
	[type="text"] {
		font-size: 16px;
	}
	label [type="checkbox"],
	label [type="radio"] {}
	label {}
	label:last-child {}
	.u-mincho {}
	.u-inner {}
	.u-ttl {
		font-size: 20px;
		margin-bottom: 37px;
		padding-right: 0;
		margin-bottom: 21px;
	}
	[lang="en"] .u-ttl {
		line-height: 30px;
	}
	.u-ttl_icon {
		width: 16px;
		height: 16px;
		margin-right: 10px;
	}
	[lang="en"] .u-ttl_icon {
		top: 15px;
	}
	.u-tbl {
		line-height: 23px;
	}
	.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;
		font-size: 15px;
		padding: 13px 0;
		padding-right: 15px;
	}
	.u-tbl > tbody > tr > td {
		padding: 13px 0;
	}
	.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 {
		padding-top: 88px;
		margin-top: -88px;
	}
	.u-btn {
		min-height: 57px;
	}
	.u-btn:active {}
	.u-btn::after {}
	.u-btn-cancel {}
	.u-selWrap {}
	.u-selWrap::before {}
	.u-selWrap::after {}
	.u-selWrap > select {}
	.u-chkLbl {}
	.u-chkLbl > [type="checkbox"] {}
	.u-chkLbl_icon {}
	.u-chkLbl_icon::after {}
	.u-chkLbl_text {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon {}
	.u-chkLbl > [type="checkbox"]:checked + .u-chkLbl_icon::after {}
	.u-rdoLbl {}
	.u-rdoLbl > [type="radio"] {}
	.u-rdoLbl_icon {}
	.u-rdoLbl_icon::after {}
	.u-rdoLbl_text {}
	.u-rdoLbl > [type="radio"]:checked + .u-rdoLbl_icon {}
	.u-spBlock {
		display: block;
	}
	.u-spInline {
		display: inline;
	}
	.u-spNone {
		display: none;
	}
	.u-switchImg {}
	.u-switchImg > img:first-child {
		display: none;
	}
	.u-switchImg > img:last-child {
		display: block;
	}
	.u-fitImg {}
	.u-fitImg > img {}
	.u-editor {}
	.u-editor::after {}
	.u-editor div {}
	.u-editor img {}
	.u-editor ul {
		margin: 15px 0;
	}
	.u-editor ol {
		margin: 15px 0;
	}
	.u-editor blockquote {}
	.u-editor blockquote::before {}
	.u-editor blockquote::after {}
	.u-text {}
	.u-ttlSub {
		font-size: 18px;
		letter-spacing: 0.1em;
		margin-bottom: 25px;
		line-height: 32px;
	}
	[lang="en"] .u-ttlSub {
		letter-spacing: 0.05em;
	}
	.u-grayBg {}
	.u-grayBg::before {}
	.u-sc {}
	.u-ttlSmall {
		font-size: 15px;
		letter-spacing: 0.1em;
	}
	.u-ttlSmall-center {
		text-indent: 0.1em;
	}
	[lang="en"] .u-ttlSmall {
		letter-spacing: 0.05em;
	}
	.u-ttlSub-center {}
	.u-ttlEnMiddle {
		font-size: 40px;
		margin-bottom: 5px;
		line-height: 50px;
	}
	.u-arrow {}
	.u-arrow_icon {}
	.u-editor h2 {
		font-size: 20px;
		margin-bottom: 20px;
		margin-top: 20px;
	}
	.u-editor h3 {
		font-size: 18px;
		margin-bottom: 20px;
		margin-top: 20px;
	}
	.u-editor h4 {
		font-size: 16px;
		margin-bottom: 15px;
		margin-top: 15px;
	}
	.u-editor table {}
	.u-editor table > thead {}
	.u-editor table > thead > tr {}
	.u-editor table > thead > tr > th {
		padding: 15px 15px;
	}
	.u-editor table > thead > tr > th:first-child {
		width: auto;
	}
	.u-editor table > tbody {}
	.u-editor table > tbody > tr {}
	.u-editor table > thead + tbody > tr {}
	.u-editor table > tbody > tr > td:first-child {
		width: auto;
	}
	.u-editor table > tbody > tr > td {
		padding: 15px 15px;
	}
	.u-editor .aligncenter > img {}
	.u-editor .wp-block-image {
		margin: 25px 0;
	}
	.u-editor p {
		margin: 15px 0;
	}
	.u-editor .wp-block-table {
		margin: 20px 0;
	}
	.u-editor .wp-block-embed-youtube {
		margin: 25px 0;
	}
	.u-editor .wp-block-embed-youtube > .wp-block-embed__wrapper {}
	.u-editor .wp-block-embed-youtube > .wp-block-embed__wrapper > iframe {}
	.u-editor p a {}
	.u-ttlLarge {
		font-size: 20px;
		letter-spacing: 0.1em;
	}
	.u-ttlRecruit {
		font-size: 30px;
	}
	.u-ttlRecruit_ja {
		margin-bottom: 6px;
	}
	.u-ttlRecruit_en {
		font-size: 10px;
	}
	.u-btn-grad {}
	.u-btn-grad::before {}
	.u-btn_text {}
	.u-ttlBrandSub {}
	.u-ttlBrand {
		font-size: 38px;
	}
	.u-ttlEnLarge {
		font-size: 50px;
	}
	.u-ttlEnLargeEx {
		font-size: 60px;
	}
}
@media screen and (max-width:374px) {
	.u-inner {}
	.u-spsInline {
		display: inline;
	}
	.u-ttlSub {
		font-size: 16px;
	}
}
