@charset "UTF-8";
/*-----------------------------------------------------------
		font
-----------------------------------------------------------*/
/*-----------------------------------------------------------
		リセット
-----------------------------------------------------------*/
html {
	overflow-y: scroll;
}

fieldset, img {
	border: none;
	vertical-align: top;
}

ul, ol {
	list-style-type: none;
}

address, caption, cite, code, dfn, em, var {
	font-style: normal;
}

caption, th {
	text-align: left;
}

a {
	outline: none;
}

h1, h2, h3, h4, h5, h6,
html, body, div,
p, ul, ol, li, dl, dt, dd,
pre, blockquote,
form, fieldset, input, textarea,
table, th, td, figure {
	margin: 0;
	padding: 0;
}

/*-----------------------------------------------------------
		初期設定
-----------------------------------------------------------*/
:root {
	color: #32416b;
	font-size: 0.52vw;
	/*@include for-over() {
		font-size: 10px;
	}
	*/
}
@media (max-width: 1219px) {
	:root {
		font-size: 0.62vw;
	}
}
@media (max-width: 995px) {
	:root {
		font-size: 0.7vw;
	}
}
@media (max-width: 767px) {
	:root {
		font-size: 1vw;
	}
}
@media (max-width: 995px) {
	:root {
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}

body {
	color: #32416b;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	line-height: 1.5;
	font-size: 1.8rem;
	word-wrap: break-word;
	font-weight: 500;
	overflow: hidden;
}
@media (max-width: 995px) {
	body {
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		text-size-adjust: 100%;
	}
}
@media (max-width: 767px) {
	body {
		font-size: 3.5vw;
	}
}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
}

img {
	max-width: 100%;
}

button, fieldset, form, input, label, legend, select, textarea {
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
}

a {
	text-decoration: none;
	color: #32416b;
}
@media (min-width: 1220px) {
	a:hover {
		color: #32416b;
		text-decoration: underline;
	}
	a:visited {
		color: #32416b;
	}
	a:active {
		text-decoration: none;
	}
}

q:before, q:after {
	content: '';
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*-----------------------------------------------------------
		フォームタグ設定
-----------------------------------------------------------*/
[type=text], [type=email], [type=tel], [type=password], [type=number], [type=search], [type=date], textarea, select {
	padding: 0.75em 1em;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 1px solid #c3c3c3;
	border-radius: 1rem;
	background: #fff;
}

select {
	max-width: 100%;
	padding: 0.75em 3em 0.75em 1em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #c3c3c3;
	border-radius: 1rem;
	background: #fff url("../img/common/arrow.svg") right center/auto 100% no-repeat;
}

option {
	color: #000;
}

select::-ms-expand {
	display: none;
}

[type=text], [type=email], [type=tel], [type=password], [type=submit], [type=number], [type=search], [type=date], textarea, button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

[type=text]:focus, [type=email]:focus, [type=password]:focus, [type=number]:focus, [type=search]:focus, [type=date]:focus, textarea:focus {
	background: none;
	border: 1px solid #fff;
}

button {
	cursor: pointer;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=checkbox] + label,
input[type=radio] + label,
[type=radio] + .mwform-radio-field-text,
[type=checkbox] + .mwform-checkbox-field-text {
	display: inline-block;
	position: relative;
	padding-left: 2em;
}
input[type=checkbox] + label:before, input[type=checkbox] + label:after,
input[type=radio] + label:before,
input[type=radio] + label:after,
[type=radio] + .mwform-radio-field-text:before,
[type=radio] + .mwform-radio-field-text:after,
[type=checkbox] + .mwform-checkbox-field-text:before,
[type=checkbox] + .mwform-checkbox-field-text:after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 0.5rem;
}
input[type=checkbox] + label:before,
input[type=radio] + label:before,
[type=radio] + .mwform-radio-field-text:before,
[type=checkbox] + .mwform-checkbox-field-text:before {
	left: 0px;
	width: 1.25em;
	height: 1.25em;
	border: 1px solid #c3c3c3;
	background-color: #fff;
}
input[type=checkbox] + label.single,
input[type=radio] + label.single,
[type=radio] + .mwform-radio-field-text.single,
[type=checkbox] + .mwform-checkbox-field-text.single {
	height: 1.25em;
	padding-left: 1.25em;
}

input[type=radio] + label:before, input[type=radio] + label:after,
[type=radio] + .mwform-radio-field-text:before,
[type=radio] + .mwform-radio-field-text:after {
	border-radius: 50%;
}

input[type=checkbox]:checked + label:after,
[type=checkbox]:checked + .mwform-checkbox-field-text:after {
	border-radius: 0.4rem;
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after,
[type=checkbox]:checked + .mwform-checkbox-field-text:after,
[type=radio]:checked + .mwform-radio-field-text:after {
	left: 3px;
	width: -webkit-calc(1.25em - 6px);
	width: calc(1.25em - 6px);
	height: -webkit-calc(1.25em - 6px);
	height: calc(1.25em - 6px);
	background-color: #32416b;
}

/*-----------------------------------------------------------
		スクロールバー設定
-----------------------------------------------------------*/
:placeholder-shown {
	color: #BABABA;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
::-webkit-input-placeholder {
	color: #BABABA;
}

/* Firefox 18- */
:-moz-placeholder {
	color: #BABABA;
	opacity: 1;
}

/* Firefox 19+ */
::-moz-placeholder {
	color: #BABABA;
	opacity: 1;
}

/* IE 10+ */
:-ms-input-placeholder {
	color: #BABABA;
}

/*-----------------------------------------------------------
		基本レイアウト
-----------------------------------------------------------*/
.wrap {
	position: relative;
	max-width: 96rem;
	margin: 0 auto;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	.wrap {
		margin: 0 5vw;
	}
}

.linkbox {
	cursor: pointer;
}

.sp {
	display: none;
}
@media (max-width: 767px) {
	.sp {
		display: inherit;
	}
}

@media (max-width: 767px) {
	.spnone {
		display: none !important;
	}
}

.tb {
	display: none;
}
@media (max-width: 995px) {
	.tb {
		display: inherit;
	}
}

@media (max-width: 995px) {
	.tbnone {
		display: none !important;
	}
}

@media (max-width: 995px) {
	.pc {
		display: none !important;
	}
}

/*----------------------- header --------------------------*/
header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 3000;
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 2rem 4rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: 0.8s;
	-o-transition: 0.8s;
	transition: 0.8s;
}
@media (max-width: 767px) {
	header {
		padding: 3.25vw;
	}
}
header::before {
	content: "";
	display: block;
	position: absolute;
	top: 7.5rem;
	left: 4rem;
	right: 4rem;
	height: 1px;
	background-color: #fff;
}
@media (max-width: 767px) {
	header::before {
		display: none;
	}
}
header.is-scroll {
	background: rgba(0, 0, 0, 0.6);
}
header.is-scroll #gnav .nav .btn a {
	background-color: rgba(255, 255, 255, 0.8);
	border: rgba(255, 255, 255, 0.8);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #32416B;
}
@media (max-width: 767px) {
	header.is-scroll #gnav .nav .btn a {
		background-color: rgba(255, 255, 255, 0.8);
		border: rgba(255, 255, 255, 0.8);
		color: #32416B;
	}
}
header.is-scroll #gnav .nav .btn a:hover {
	background-color: rgba(50, 65, 107, 0.8);
	color: #fff;
}
header .logobox {
	width: 21.5rem;
}
@media (max-width: 767px) {
	header .logobox {
		width: auto;
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-webkit-align-items: flex-end;
		-ms-flex-align: end;
		align-items: flex-end;
		gap: 4vw;
	}
}
@media (max-width: 767px) {
	header .logobox .logo {
		width: 38vw;
	}
}
header .logobox .sub {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 0 0.75em;
	margin-top: 1em;
	color: #fff;
	font-weight: 700;
}
@media (max-width: 767px) {
	header .logobox .sub {
		margin: 0;
		padding-bottom: 1vw;
	}
}
header .logobox .sub img {
	width: 9rem;
}
@media (max-width: 767px) {
	header .logobox .sub img {
		width: 16vw;
	}
}
@media (max-width: 767px) {
	header #gnav {
		position: fixed;
		left: 100vw;
		top: 0;
		background-color: #32416b;
		-webkit-transition: 0.6s;
		-o-transition: 0.6s;
		transition: 0.6s;
	}
	header #gnav.is-open {
		left: 0;
	}
}
header #gnav .nav {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
@media (max-width: 767px) {
	header #gnav .nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-webkit-justify-content: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
		height: 100dvh;
		width: 100vw;
	}
}
header #gnav .nav a {
	display: block;
	padding: 0.75em 1.5em 0.75em;
	color: #fff;
	text-decoration: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
@media (max-width: 995px) {
	header #gnav .nav a {
		padding: 0.75em;
	}
}
@media (max-width: 767px) {
	header #gnav .nav a {
		font-size: 4.5vw;
		padding: 1em 0;
	}
}
header #gnav .nav a:hover {
	background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
	header #gnav .nav .btn {
		margin-top: 10vw;
	}
}
header #gnav .nav .btn + .btn {
	margin-left: 0.25em;
}
@media (max-width: 767px) {
	header #gnav .nav .btn + .btn {
		margin-left: 0;
	}
}
header #gnav .nav .btn a {
	background-color: rgba(50, 65, 107, 0.8);
	border: 1px solid rgba(50, 65, 107, 0.8);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	header #gnav .nav .btn a {
		width: 70vw;
		text-align: center;
		border: 1px solid rgba(255, 255, 255, 0.8);
		background-color: rgba(255, 255, 255, 0.8);
		color: #32416B;
	}
}
header #gnav .nav .btn a:hover {
	background-color: rgba(255, 255, 255, 0.8);
	color: #32416B;
}
header .menu {
	display: none;
	position: absolute;
	right: 0px;
	top: 0px;
	z-index: 2000;
	cursor: pointer;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: #32416b;
}
@media (max-width: 767px) {
	header .menu {
		display: block;
		width: 15vw;
		height: 15vw;
	}
}
header .menu span {
	display: inline-block;
	position: absolute;
	left: 50%;
	width: 42%;
	height: 3px;
	background-color: #fff;
	-webkit-transition: .3s;
	-o-transition: .3s;
	transition: .3s;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 1219px) {
	header .menu span {
		height: 2px;
	}
}
header .menu span:nth-of-type(1) {
	top: -webkit-calc(50% - 1px);
	top: calc(50% - 1px);
	-webkit-transform: translate(-50%, -1.5vw);
	-ms-transform: translate(-50%, -1.5vw);
	transform: translate(-50%, -1.5vw);
}
@media (max-width: 767px) {
	header .menu span:nth-of-type(1) {
		-webkit-transform: translate(-50%, -2vw);
		-ms-transform: translate(-50%, -2vw);
		transform: translate(-50%, -2vw);
	}
}
header .menu span:nth-of-type(2) {
	top: -webkit-calc(50% - 1px);
	top: calc(50% - 1px);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	opacity: 1;
}
header .menu span:nth-of-type(3) {
	bottom: -webkit-calc(50% - 1px);
	bottom: calc(50% - 1px);
	-webkit-transform: translate(-50%, 1.5vw);
	-ms-transform: translate(-50%, 1.5vw);
	transform: translate(-50%, 1.5vw);
}
@media (max-width: 767px) {
	header .menu span:nth-of-type(3) {
		-webkit-transform: translate(-50%, 2vw);
		-ms-transform: translate(-50%, 2vw);
		transform: translate(-50%, 2vw);
	}
}
header .menu.is-active span:nth-of-type(1) {
	-webkit-transform: translate(-50%, 0) rotate(45deg);
	-ms-transform: translate(-50%, 0) rotate(45deg);
	transform: translate(-50%, 0) rotate(45deg);
}
header .menu.is-active span:nth-of-type(2) {
	opacity: 0;
}
header .menu.is-active span:nth-of-type(3) {
	-webkit-transform: translate(-50%, 0) rotate(-45deg);
	-ms-transform: translate(-50%, 0) rotate(-45deg);
	transform: translate(-50%, 0) rotate(-45deg);
}

/*----------------------- content --------------------------*/
/*----------------------- footer --------------------------*/
.fiexd {
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 1000;
	width: 100%;
	background: rgba(255, 255, 255, 0.5);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.6s;
	-o-transition: 0.6s;
	transition: 0.6s;
}
.fiexd.is-scroll {
	opacity: 1;
	visibility: visible;
}
.fiexd ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 0 0.5rem;
	max-width: 100rem;
	margin: 0 auto;
	background-color: #fff;
}
.fiexd ul li {
	width: 50%;
}
.fiexd ul li a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	aspect-ratio: 1030 / 140;
	font-weight: 600;
	font-size: 2rem;
	background: url(../img/btnbg.svg) center/100% no-repeat;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none;
}
@media (max-width: 767px) {
	.fiexd ul li a {
		aspect-ratio: unset;
		padding: 0.75em 0;
		background: #32416b;
		font-size: 3.25vw;
		color: #fff;
	}
}

footer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 5rem 5vw;
	background: url(../img/footbg.svg) center top/100% no-repeat;
}
@media (max-width: 995px) {
	footer {
		padding-bottom: 10rem;
	}
}
@media (max-width: 767px) {
	footer {
		display: block;
		padding: 0 0 10vw;
		background: none;
	}
}
footer .addr {
	width: 38%;
	color: #fff;
}
@media (max-width: 767px) {
	footer .addr {
		width: auto;
		padding: 5vw;
		background-color: #32416b;
	}
}
footer .addr .logo {
	width: 20rem;
	padding-bottom: 1em;
	border-bottom: 2px solid #fff;
}
@media (max-width: 767px) {
	footer .addr .logo {
		width: 28vw;
	}
}
footer .addr address {
	margin-top: 1em;
	font-size: 1.6rem;
}
@media (max-width: 767px) {
	footer .addr address {
		font-size: 3vw;
	}
}
footer .addr .tel {
	margin-top: 1em;
	font-size: 1.6rem;
}
@media (max-width: 767px) {
	footer .addr .tel {
		font-size: 3vw;
	}
}
footer .addr .tel a {
	color: #fff;
}
@media (min-width: 1220px) {
	footer .addr .tel a {
		pointer-events: none;
	}
}
footer .addr .place {
	margin-top: 1.5em;
	font-size: 1.4rem;
}
@media (max-width: 767px) {
	footer .addr .place {
		font-size: 2.75vw;
	}
}
footer .subbox {
	width: 62%;
}
@media (max-width: 767px) {
	footer .subbox {
		width: auto;
		padding: 5vw;
	}
}
footer .subbox .icon {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	gap: 0 4rem;
	margin-left: 12%;
}
@media (max-width: 767px) {
	footer .subbox .icon {
		margin: 0;
	}
}
footer .subbox .icon li img {
	height: 11rem;
}
@media (max-width: 995px) {
	footer .subbox .icon li img {
		height: 7rem;
	}
}
@media (max-width: 767px) {
	footer .subbox .icon li img {
		height: 12vw;
	}
}
footer .subbox .relaybox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 1em 2em;
	margin-top: 5rem;
	font-size: 1.4rem;
}
@media (max-width: 995px) {
	footer .subbox .relaybox {
		width: 28em;
	}
}
@media (max-width: 767px) {
	footer .subbox .relaybox {
		display: block;
		width: auto;
		font-size: 2.5vw;
	}
	footer .subbox .relaybox ul {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		gap: 0 1em;
	}
	footer .subbox .relaybox ul + ul {
		margin-top: 0.5em;
	}
}

/*-----------------------------------------------------------
	index
-----------------------------------------------------------*/
@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes fadeIn {
	from {
		opacity: 0;
		-webkit-transform: scale(1.2);
		transform: scale(1.2);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.text-wrapper span {
	display: inline-block;
	min-width: 0.25em;
	opacity: 0;
	-webkit-animation: fadeIn 0.6s ease-in-out forwards;
	animation: fadeIn 0.6s ease-in-out forwards;
}

.top {
	position: relative;
	height: 100dvh;
}
.top::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #353E4F;
	opacity: 0.3;
}
.top video {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: -1;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}
.top .title {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 100;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 4rem;
	color: #fff;
	letter-spacing: 0.08em;
	white-space: nowrap;
}
@media (max-width: 767px) {
	.top .title {
		font-size: 6.5vw;
		line-height: 2;
	}
}

#about {
	margin-top: 15rem;
}
@media (max-width: 767px) {
	#about {
		margin-top: 20vw;
	}
}
#about .aboutbox .read1 .logo, #about .aboutbox .read2 .logo {
	position: relative;
	margin-bottom: 3rem;
}
#about .aboutbox .read1 .logo::before, #about .aboutbox .read2 .logo::before {
	content: "";
	display: block;
	position: absolute;
	left: -3em;
	top: -12rem;
	z-index: -1;
	width: 46rem;
	aspect-ratio: 9 / 6.25;
	background: url(../img/recruit02.svg) center/100% no-repeat;
}
@media (max-width: 767px) {
	#about .aboutbox .read1 .logo::before, #about .aboutbox .read2 .logo::before {
		top: -16vw;
		width: 64vw;
	}
}
#about .aboutbox .read1 .text, #about .aboutbox .read2 .text {
	font-size: 2rem;
	line-height: 2.8;
}
@media (max-width: 767px) {
	#about .aboutbox .read1 .text, #about .aboutbox .read2 .text {
		font-size: 3.5vw;
	}
}
#about .aboutbox .read1 .text span, #about .aboutbox .read2 .text span {
	margin: 0 0.25em;
	font-size: 1.6em;
	font-weight: 600;
	line-height: 1;
}
#about .aboutbox .read1 .text span.lnone, #about .aboutbox .read2 .text span.lnone {
	margin-left: 0;
}
#about .aboutbox .read1 .text span.none, #about .aboutbox .read2 .text span.none {
	margin: 0;
}
#about .aboutbox .read1 .text span span, #about .aboutbox .read2 .text span span {
	font-size: 1em;
}
#about .aboutbox .read1 .text span .line, #about .aboutbox .read2 .text span .line {
	position: relative;
	font-size: 1;
}
#about .aboutbox .read1 .text span .line::before, #about .aboutbox .read2 .text span .line::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
	width: 100%;
	height: 0.5em;
	background-color: #e2e5f1;
}
#about .aboutbox .read1 .logo {
	width: 34rem;
}
@media (max-width: 767px) {
	#about .aboutbox .read1 .logo {
		width: 48vw;
	}
}
#about .aboutbox .read2 {
	margin-top: 5rem;
	margin-left: auto;
	text-align: right;
}
@media (max-width: 767px) {
	#about .aboutbox .read2 {
		width: auto;
		margin-top: 15vw;
	}
}
#about .aboutbox .read2 .logo {
	width: 33rem;
	margin-left: auto;
}
#about .aboutbox .read2 .logo::before {
	left: auto;
	right: -3em;
	-webkit-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	transform: scale(-1, 1);
}
@media (max-width: 767px) {
	#about .aboutbox .read2 .logo::before {
		right: -2em;
		top: -18vw;
	}
}
@media (max-width: 767px) {
	#about .aboutbox .read2 .logo {
		width: 50vw;
	}
}
#about .aboutbox h2 {
	padding: 15rem 0;
	background: url(../img/line01.svg) center 52%/370rem no-repeat;
	font-size: 5rem;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.1em;
	white-space: nowrap;
}
@media (max-width: 767px) {
	#about .aboutbox h2 {
		font-size: 6vw;
	}
}
#about .aboutbox h2 span {
	display: inline-block;
	padding: 0 1em;
	background-color: #fff;
}
#about .aboutbox .textbox {
	margin-top: -8rem;
	font-size: 2.2rem;
	line-height: 1.85;
}
@media (max-width: 767px) {
	#about .aboutbox .textbox {
		font-size: 3.25vw;
	}
}
#about .aboutbox .textbox .text {
	text-align: center;
}
#about .aboutbox .textbox .text + .text {
	margin-top: 1.25em;
}
#about .feature, #about .point {
	padding: 8rem 0 10rem;
}
#about .feature h3, #about .point h3 {
	position: relative;
	font-size: 4.2rem;
	letter-spacing: 0.08em;
	text-align: center;
}
@media (max-width: 767px) {
	#about .feature h3, #about .point h3 {
		font-size: 5vw;
	}
}
#about .feature h3::before, #about .feature h3::after, #about .point h3::before, #about .point h3::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	height: 0.5rem;
}
#about .feature h3 span, #about .point h3 span {
	font-size: 1.6em;
	line-height: 1;
}
#about .feature {
	margin-top: 15rem;
	background-color: #92a4c2;
}
#about .feature h3 {
	color: #fff;
}
#about .feature h3::before, #about .feature h3::after {
	background-color: #fff;
}
#about .feature h3::before {
	left: 0;
	right: -webkit-calc(50% + 3.5em);
	right: calc(50% + 3.5em);
}
#about .feature h3::after {
	right: 0;
	left: -webkit-calc(50% + 3.5em);
	left: calc(50% + 3.5em);
}
#about .feature .items {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 5rem;
	margin-top: 5rem;
	position: relative;
}
#about .feature .items::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	width: 20rem;
	height: 20rem;
	background-color: #92a4c2;
}
#about .feature .items .item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	width: -webkit-calc((100% - 5rem) / 2);
	width: calc((100% - 5rem) / 2);
	height: 9em;
	background-color: #fff;
	font-size: 2.6rem;
	font-weight: 600;
	text-align: center;
}
@media (max-width: 767px) {
	#about .feature .items .item {
		font-size: 3.5vw;
	}
}
#about .feature .items .item .num {
	position: absolute;
	line-height: 1;
	font-size: 10rem;
	font-family: "aptos", sans-serif;
	font-weight: 700;
}
@media (max-width: 767px) {
	#about .feature .items .item .num {
		font-size: 12vw;
	}
}
#about .feature .items .item:nth-child(1) .num, #about .feature .items .item:nth-child(2) .num {
	top: -0.22em;
}
#about .feature .items .item:nth-child(3) .num, #about .feature .items .item:nth-child(4) .num {
	bottom: -0.15em;
}
#about .feature .items .item:nth-child(1) .num, #about .feature .items .item:nth-child(3) .num {
	left: -0.05em;
}
#about .feature .items .item:nth-child(2) .num, #about .feature .items .item:nth-child(4) .num {
	right: -0.05em;
}
#about .feature .text {
	margin-top: 3em;
	padding-top: 0.75em;
	border-top: 2px solid #fff;
	color: #fff;
}
#about .feature .text span {
	text-decoration: underline;
}
#about .point {
	background-color: #e2e5f1;
}
#about .point h3::before, #about .point h3::after {
	background-color: #32416b;
}
#about .point h3::before {
	left: 0;
	right: -webkit-calc(50% + 6em);
	right: calc(50% + 6em);
}
#about .point h3::after {
	right: 0;
	left: -webkit-calc(50% + 6em);
	left: calc(50% + 6em);
}
#about .point .read {
	margin-top: 1.5em;
	font-size: 2.4rem;
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.1em;
}
@media (max-width: 767px) {
	#about .point .read {
		font-size: 4.5vw;
	}
}
#about .point .read .dotted {
	position: relative;
}
#about .point .read .dotted::before {
	content: "・";
	position: absolute;
	left: 50%;
	top: -1em;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
#about .point .read .line {
	-webkit-text-decoration-line: underline;
	text-decoration-line: underline;
	-webkit-text-decoration-style: double;
	text-decoration-style: double;
}
#about .point .sub {
	margin-top: 1em;
	text-align: center;
}
#about .point .items {
	position: relative;
	margin-top: 10rem;
}
#about .point .items::before {
	content: "";
	display: block;
	position: absolute;
	right: -20rem;
	bottom: 20rem;
	width: 22rem;
	aspect-ratio: 23 / 71;
	background: url(../img/arrow01.svg) center bottom/100% no-repeat;
	opacity: 0;
	-webkit-transition: 1.2s 2s;
	-o-transition: 1.2s 2s;
	transition: 1.2s 2s;
}
#about .point .items.animated::before {
	bottom: 0;
	opacity: 1;
}
#about .point .items .item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	z-index: 2;
	padding: 0.8rem;
	background-color: #92a4c2;
}
#about .point .items .item + .item {
	margin-top: 3rem;
}
#about .point .items .item .ptext {
	position: absolute;
	left: -7em;
	top: 0.8rem;
	padding: 0.5em 0.75em;
	background-color: #32416b;
	font-size: 2.4rem;
	font-weight: 600;
	color: #fff;
}
#about .point .items .item .ptext span {
	display: block;
	font-size: 0.95em;
}
@media (max-width: 767px) {
	#about .point .items .item .ptext {
		position: static;
		width: 100%;
		font-size: 3.75vw;
	}
}
#about .point .items .item .number {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 31rem;
	color: #fff;
}
@media (max-width: 767px) {
	#about .point .items .item .number {
		width: 27vw;
	}
}
#about .point .items .item .number .num {
	font-family: "aptos", sans-serif;
	font-weight: 700;
	font-size: 3.6rem;
	text-align: center;
	letter-spacing: 0.08em;
	line-height: 1.1;
}
#about .point .items .item .number .num span {
	font-size: 2.25em;
	margin-left: 0.1em;
}
#about .point .items .item .number .text {
	padding-top: 0.5em;
	border-top: 0.4rem solid #fff;
	font-size: 2rem;
	text-align: center;
}
@media (max-width: 767px) {
	#about .point .items .item .number .text {
		font-size: 3vw;
	}
}
#about .point .items .item .textbox {
	width: -webkit-calc(100% - 31.8rem);
	width: calc(100% - 31.8rem);
	background-color: #fff;
}
@media (max-width: 767px) {
	#about .point .items .item .textbox {
		width: -webkit-calc(100% - 28vw);
		width: calc(100% - 28vw);
	}
}
#about .point .items .item .textbox .inbox {
	padding: 2.25em 2em;
}
@media (max-width: 767px) {
	#about .point .items .item .textbox .inbox {
		padding: 5vw;
	}
}
#about .point .items .item .textbox .inbox + .inbox {
	border-top: 0.8rem solid #92a4c2;
}
#about .point .items .item .textbox .inbox h4 {
	position: relative;
	margin-left: 0.5em;
	font-size: 3rem;
}
@media (max-width: 767px) {
	#about .point .items .item .textbox .inbox h4 {
		font-size: 4vw;
	}
}
#about .point .items .item .textbox .inbox h4.star::before {
	content: "★";
	position: absolute;
	left: -1.25em;
	top: 0;
}
#about .point .items .item .textbox .inbox ul {
	margin-top: 1em;
	font-size: 2.2rem;
}
@media (max-width: 767px) {
	#about .point .items .item .textbox .inbox ul {
		font-size: 3.25vw;
	}
}
#about .point .items .item .textbox .inbox ul li {
	text-indent: -1em;
	padding-left: 1em;
}
#about .point .staff {
	margin-top: 10rem;
}
#about .point .staff h4 {
	padding: 0.25em 0.75em;
	border-left: 1rem solid #32416b;
	font-size: 3.2rem;
}
@media (max-width: 767px) {
	#about .point .staff h4 {
		font-size: 4.5vw;
	}
}
#about .point .staff .voice {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-top: 5rem;
}
@media (max-width: 767px) {
	#about .point .staff .voice {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-webkit-flex-direction: column-reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		-webkit-box-align: center;
		-webkit-align-items: center;
		-ms-flex-align: center;
		align-items: center;
	}
}
#about .point .staff .voice figure {
	width: 30%;
}
@media (max-width: 767px) {
	#about .point .staff .voice figure {
		width: 50vw;
		margin-top: 5vw;
	}
}
#about .point .staff .voice figure figcaption {
	margin-top: 0.75em;
	text-align: center;
}
@media (max-width: 767px) {
	#about .point .staff .voice figure figcaption {
		font-size: 3.5vw;
	}
}
#about .point .staff .voice .textbox {
	width: 65%;
	font-size: 2rem;
	line-height: 1.85;
}
@media (max-width: 767px) {
	#about .point .staff .voice .textbox {
		width: 100%;
		font-size: 3.5vw;
	}
}
#about .point .end {
	margin-top: 10rem;
	padding-top: 10rem;
	border-top: 0.4rem solid #32416b;
	text-align: center;
	font-size: 2.4rem;
	font-weight: 600;
	line-height: 2.25;
}
@media (max-width: 767px) {
	#about .point .end {
		font-size: 4.25vw;
	}
}

#field, #place {
	margin-top: 15rem;
}
#field h2, #place h2 {
	position: relative;
	font-size: 3.2rem;
	text-align: center;
}
@media (max-width: 767px) {
	#field h2, #place h2 {
		font-size: 4.5vw;
	}
}
#field h2::before, #place h2::before {
	display: block;
	position: absolute;
	left: -5rem;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: -1;
	line-height: 1;
	font-family: "aptos", sans-serif;
	font-style: italic;
	font-size: 5.1em;
	color: #e2e5f1;
	opacity: 0;
	-webkit-transition: 1.2s;
	-o-transition: 1.2s;
	transition: 1.2s;
}
#field h2.animated::before, #place h2.animated::before {
	left: 0;
	opacity: 1;
}

#field h2::before {
	content: "FIELD";
}
#field .items .item .box {
	position: relative;
	margin-top: 10rem;
	background-color: #e2e5f1;
}
#field .items .item .box::after {
	content: "";
	display: block;
	position: absolute;
	left: 0.5rem;
	top: 0.5rem;
	right: 0.5rem;
	bottom: 0.5rem;
	border: 0.4rem solid #32416b;
}
#field .items .item .box .mainbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	position: relative;
	aspect-ratio: 100 / 43;
	background: center / cover no-repeat;
}
@media (max-width: 767px) {
	#field .items .item .box .mainbox {
		padding: 5vw;
	}
}
#field .items .item .box .mainbox::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	background-color: #32416b;
	opacity: 0.5;
}
@media (max-width: 767px) {
	#field .items .item .box .mainbox::before {
		opacity: 0.75;
	}
}
#field .items .item .box .mainbox.img01 {
	background-image: url(../img/img01.jpg);
}
#field .items .item .box .mainbox.img02 {
	background-image: url(../img/img02.jpg);
}
#field .items .item .box .mainbox.img03 {
	background-image: url(../img/img03.jpg);
}
#field .items .item .box .mainbox .textbox {
	position: relative;
	z-index: 10;
	width: 35rem;
	margin-right: 3rem;
	color: #fff;
}
@media (max-width: 767px) {
	#field .items .item .box .mainbox .textbox {
		width: 100%;
		margin: 0;
	}
}
#field .items .item .box .mainbox .textbox h3 {
	padding-bottom: 0.5em;
	font-size: 3.6rem;
	border-bottom: 0.3rem solid #fff;
}
@media (max-width: 767px) {
	#field .items .item .box .mainbox .textbox h3 {
		font-size: 5vw;
	}
}
#field .items .item .box .mainbox .textbox h3 span {
	display: block;
	font-size: 0.5em;
}
#field .items .item .box .mainbox .textbox .text {
	margin-top: 1.5em;
	line-height: 2;
}
@media (max-width: 767px) {
	#field .items .item .box .mainbox .textbox .text {
		font-size: 3vw;
	}
}
#field .items .item .box .result {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 2rem 4rem;
}
@media (max-width: 767px) {
	#field .items .item .box .result {
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		padding: 3.5vw;
	}
}
#field .items .item .box .result h4 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 9rem;
}
@media (max-width: 767px) {
	#field .items .item .box .result h4 {
		width: 16vw;
	}
	#field .items .item .box .result h4 img {
		width: 100%;
	}
}
#field .items .item .box .result .title {
	position: relative;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	width: -webkit-calc(50% - 15rem);
	width: calc(50% - 15rem);
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: url(../img/line02.svg) center right/auto 32rem no-repeat;
	font-weight: 600;
}
@media (max-width: 767px) {
	#field .items .item .box .result .title {
		width: -webkit-calc(100% - 20vw);
		width: calc(100% - 20vw);
		background: none;
	}
}
#field .items .item .box .result .title .num {
	position: relative;
	padding: 0 0.15em;
}
#field .items .item .box .result .title .num span {
	position: relative;
	z-index: 10;
}
#field .items .item .box .result .title .num::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.5em;
	background-color: #b9c6e1;
}
#field .items .item .box .result .title .sub .num {
	font-size: 1.2em;
}
#field .items .item .box .result .title .no .num {
	font-size: 2em;
}
#field .items .item .box .result dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: -webkit-calc(50%);
	width: calc(50%);
	font-size: 1.5rem;
}
@media (max-width: 767px) {
	#field .items .item .box .result dl {
		width: 100%;
		margin-top: 1.5em;
		font-size: 3vw;
	}
}
#field .items .item .box .result dl dt, #field .items .item .box .result dl dd {
	margin-top: 0.25em;
}
#field .items .item .box .result dl dt:nth-of-type(1), #field .items .item .box .result dl dd:nth-of-type(1) {
	margin-top: 0;
}
#field .items .item .box .result dl dt {
	width: 4.5em;
}
#field .items .item .box .result dl dd {
	width: -webkit-calc(100% - 4.5em);
	width: calc(100% - 4.5em);
}
#field .items .item .box .result dl dd .line {
	display: inline-block;
	position: relative;
	padding-top: 0.8em;
	line-height: 1;
}
#field .items .item .box .result dl dd .line span {
	position: relative;
	z-index: 10;
}
#field .items .item .box .result dl dd .line .num {
	font-size: 1.6em;
	font-weight: 600;
}
#field .items .item .box .result dl dd .line::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 0.5em;
	background-color: #b9c6e1;
}
#field .items .item .box .result dl dd .line::after {
	content: "";
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	border-style: solid;
	border-color: #92a4c2 transparent transparent transparent;
	border-width: 1em;
}
#field .items .item .note {
	margin-top: 0.75em;
	font-size: 1.4rem;
}
@media (max-width: 767px) {
	#field .items .item .note {
		font-size: 2.75vw;
	}
}

#place h2::before {
	content: "PLACE";
}
#place .map {
	position: relative;
	margin: 16rem auto 0;
	max-width: 90rem;
}
@media (max-width: 767px) {
	#place .map {
		margin-top: 10vw;
	}
}
#place .map figure {
	position: relative;
	z-index: 10;
}
@media (max-width: 767px) {
	#place .map figure {
		width: 100%;
		margin-bottom: 5vw;
	}
}
#place .map figure img {
	width: 80%;
}
#place .map .placebox {
	position: absolute;
	width: 32%;
	padding: 1em 1.25em 1.5em;
	background-color: #e2e5f1;
	-webkit-clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
	clip-path: polygon(20px 0, 100% 0, 100% 100%, 0 100%, 0 20px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	#place .map .placebox {
		position: static;
		width: 100%;
	}
	#place .map .placebox + .placebox {
		margin-top: 2.5vw;
	}
}
#place .map .placebox.place01 {
	left: 15%;
	top: -8%;
}
#place .map .placebox.place02 {
	left: 69%;
	top: -15%;
}
#place .map .placebox.place03 {
	left: 70%;
	top: 32%;
}
#place .map .placebox.place04 {
	left: 38%;
	top: 79%;
	width: 40%;
}
@media (max-width: 767px) {
	#place .map .placebox.place04 {
		width: auto;
	}
}
#place .map .placebox.place05 {
	left: -13%;
	top: 19%;
}
#place .map .placebox.place06 {
	left: -13%;
	top: 46%;
}
#place .map .placebox.place07 {
	left: -13%;
	top: 96%;
}
#place .map .placebox h3 {
	font-size: 3rem;
	text-align: right;
	border-bottom: 1px solid #32416b;
}
@media (max-width: 767px) {
	#place .map .placebox h3 {
		font-size: 4vw;
	}
}
#place .map .placebox ul {
	margin-top: 1em;
	font-size: 1.6rem;
}
@media (max-width: 767px) {
	#place .map .placebox ul {
		font-size: 3.25vw;
	}
}
#place .map .placebox ul li + li {
	margin-top: 0.25em;
}

#work {
	margin-top: 25rem;
}
@media (max-width: 767px) {
	#work {
		margin-top: 15vw;
	}
}
#work .note {
	margin-bottom: 0.5em;
	text-align: right;
}
#work .bg {
	position: relative;
	padding: 10rem 0 0;
	background-color: #e2e5f1;
}
#work .bg::after {
	content: "";
	position: absolute;
	left: 50%;
	z-index: -1;
	bottom: -19.5rem;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	border-width: 20rem 50vw 0 50vw;
	border-style: solid;
	border-color: #e2e5f1 transparent transparent transparent;
}
#work .bg h2 {
	padding-bottom: 0.25em;
	border-bottom: 0.5rem solid #32416b;
	font-size: 4.2rem;
	letter-spacing: 0.5em;
	text-align: center;
}
@media (max-width: 767px) {
	#work .bg h2 {
		font-size: 5.5vw;
	}
}
#work .bg .read1 {
	margin-top: 2em;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 600;
	line-height: 1.85;
}
@media (max-width: 767px) {
	#work .bg .read1 {
		font-size: 3.5vw;
	}
}
#work .bg .read1 span {
	text-decoration: underline;
}
#work .bg .img {
	margin-top: 5rem;
}
#work .keitai, #work .naritachi {
	margin-top: 10rem;
}
#work .keitai h3, #work .naritachi h3 {
	padding: 0.15em 0.75em;
	border-left: 1rem solid #32416b;
	font-size: 2.6rem;
}
@media (max-width: 767px) {
	#work .keitai h3, #work .naritachi h3 {
		font-size: 4.75vw;
	}
}
#work .keitai .items {
	margin-top: 3rem;
}
#work .keitai .items .item {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	background-color: #fff;
}
@media (max-width: 767px) {
	#work .keitai .items .item {
		display: block;
	}
}
#work .keitai .items .item + .item {
	margin-top: 7rem;
}
#work .keitai .items .item .textbox {
	width: 66%;
	padding: 2rem 3rem;
	border-right: 2px dotted #e2e5f1;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	#work .keitai .items .item .textbox {
		width: 100%;
		padding: 5vw 3.5vw;
		border-right: none;
		border-bottom: 2px dotted #e2e5f1;
	}
}
#work .keitai .items .item .textbox h4 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 3rem;
}
@media (max-width: 767px) {
	#work .keitai .items .item .textbox h4 {
		font-size: 4.5vw;
	}
}
#work .keitai .items .item .textbox h4 .num {
	margin-right: 0.15em;
	font-family: "aptos", sans-serif;
	font-size: 1.6em;
	color: #7c8bad;
	line-height: 1;
}
#work .keitai .items .item .textbox .tab {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 0.5em 1em;
	margin-top: 0.5em;
	font-size: 1.5rem;
	color: #92a4c2;
}
@media (max-width: 767px) {
	#work .keitai .items .item .textbox .tab {
		font-size: 2.75vw;
	}
}
#work .keitai .items .item .textbox dl {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 1em;
	padding: 0.25em 0.75em;
	border: 0.2rem solid #32416b;
	background-color: #e2e5f1;
	font-weight: 600;
}
@media (max-width: 767px) {
	#work .keitai .items .item .textbox dl dt {
		width: 7em;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}
@media (max-width: 767px) {
	#work .keitai .items .item .textbox dl dd {
		width: -webkit-calc(100% - 7em);
		width: calc(100% - 7em);
	}
}
#work .keitai .items .item .textbox dl dd + dt {
	border-left: 1px solid #32416b;
	margin-left: 1em;
	padding-left: 1em;
}
@media (max-width: 767px) {
	#work .keitai .items .item .textbox dl dd + dt {
		margin: 0;
		padding: 0;
		border: none;
	}
}
#work .keitai .items .item .textbox .text {
	margin-top: 1.5em;
	font-size: 1.6rem;
}
@media (max-width: 767px) {
	#work .keitai .items .item .textbox .text {
		font-size: 3.5vw;
	}
}
#work .keitai .items .item .textbox .text li + li {
	margin-top: 0.5em;
}
#work .keitai .items .item figure {
	width: 33%;
	padding: 1rem;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	#work .keitai .items .item figure {
		width: auto;
		text-align: center;
		padding: 3.5vw 5vw 5vw 3.5vw;
	}
}
#work .naritachi .inbox {
	margin-top: 3rem;
	padding: 6rem 3rem 5rem;
	background-color: #fff;
}
#work .naritachi .inbox .all {
	padding-bottom: 5rem;
	border: 0.4rem solid #32416b;
}
#work .naritachi .inbox .all h4 {
	margin-bottom: 0.5em;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 2.5rem;
	letter-spacing: 0.1em;
	text-align: center;
}
@media (max-width: 767px) {
	#work .naritachi .inbox .all h4 {
		font-size: 4.25vw;
	}
}
#work .naritachi .inbox .all h4 span {
	display: inline-block;
	padding: 0 0.75em;
	background-color: #fff;
}
#work .naritachi .inbox .all figure {
	width: 80%;
	margin: 0 auto;
}
#work .naritachi .inbox .next {
	margin: 5rem 0;
	padding-top: 0.5em;
	min-height: 8.5em;
	background: url(../img/arrow02.svg) center/auto 100% no-repeat;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.85;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
@media (max-width: 767px) {
	#work .naritachi .inbox .next {
		font-size: 3.5vw;
	}
}
#work .naritachi .inbox .next .line {
	display: inline-block;
	position: relative;
	font-size: 1.2em;
}
#work .naritachi .inbox .next .line span {
	position: relative;
	z-index: 10;
}
#work .naritachi .inbox .next .line::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.15em;
	width: 100%;
	height: 0.5em;
	background-color: #b9c6e1;
}
#work .naritachi .end {
	margin-top: 5rem;
	padding-top: 0.75em;
	border-top: 0.5rem solid #32416b;
	font-weight: 600;
	text-align: center;
}
#work .endbox {
	margin-top: 10rem;
	text-align: center;
	font-weight: 600;
}
#work .endbox .sub {
	font-size: 3.2rem;
}
@media (max-width: 767px) {
	#work .endbox .sub {
		font-size: 4vw;
	}
}
#work .endbox .read {
	margin-top: 1.5em;
	font-size: 4.5rem;
}
@media (max-width: 767px) {
	#work .endbox .read {
		font-size: 5.5vw;
	}
}
#work .endbox .read span {
	font-size: 1.5em;
}
#work .endbox .text {
	margin-top: 2.5em;
}
#work .catch {
	margin: 35rem 0 0;
	text-align: center;
	font-size: 2.6rem;
	font-weight: 600;
	line-height: 2;
}
@media (max-width: 767px) {
	#work .catch {
		font-size: 3.5vw;
	}
}
#work .catch .line {
	display: inline-block;
	position: relative;
}
#work .catch .line::before {
	display: block;
	content: "";
	position: absolute;
	left: 0;
	bottom: 0.35em;
	z-index: -1;
	width: 100%;
	height: 0.5em;
	background-color: #e2e5f1;
}
#work .message {
	margin-top: 10rem;
	border: 0.4rem solid #32416b;
}
#work .message h3 {
	margin-bottom: 0.5em;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 2.2rem;
	letter-spacing: 0.1em;
	text-align: center;
}
@media (max-width: 767px) {
	#work .message h3 {
		font-size: 4vw;
	}
}
#work .message h3 span {
	display: inline-block;
	padding: 0 0.75em;
	background-color: #fff;
}
#work .message .inbox {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-webkit-flex-direction: row-reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 2rem 5rem 5rem;
}
@media (max-width: 767px) {
	#work .message .inbox {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-webkit-flex-direction: column;
		-ms-flex-direction: column;
		flex-direction: column;
		justify-self: center;
	}
}
#work .message .inbox figure {
	width: 35%;
}
@media (max-width: 767px) {
	#work .message .inbox figure {
		width: 60vw;
		margin-top: 7.5vw;
	}
}
#work .message .inbox figure figcaption {
	margin-top: 0.5em;
	text-align: center;
}
#work .message .inbox .text {
	width: 60%;
	font-size: 2.3rem;
	font-weight: 600;
	line-height: 2;
}
@media (max-width: 767px) {
	#work .message .inbox .text {
		width: 100%;
		font-size: 4vw;
	}
}
#work .link {
	margin-top: 0.5em;
	text-align: right;
}

#interview {
	margin-top: 15rem;
}
#interview .bg {
	padding: 10rem 0;
	background-color: #92a4c2;
}
#interview .bg h2 {
	font-size: 3.5rem;
}
@media (max-width: 767px) {
	#interview .bg h2 {
		font-size: 5vw;
	}
}
#interview .bg h2::before, #interview .bg h2::after {
	content: "▼";
	color: #fff;
	margin: 0 0.25em;
}
@media (max-width: 767px) {
	#interview .bg h2::before, #interview .bg h2::after {
		display: none;
	}
}
#interview .bg .video {
	margin-top: 0.5em;
	aspect-ratio: 16 / 9;
	background-color: #000;
}
#interview .bg .video video {
	width: 100%;
	aspect-ratio: 16 / 9;
}
#interview .bg .name {
	margin-top: 0.75em;
	font-size: 2.2rem;
	font-weight: 600;
	text-align: right;
}
@media (max-width: 767px) {
	#interview .bg .name {
		font-size: 3.5vw;
	}
}
#interview .note {
	margin-top: 0.5em;
	text-align: right;
}
@media (max-width: 767px) {
	#interview .note {
		font-size: 3vw;
	}
}

#recruit {
	padding: 20rem 0;
}
#recruit .textbox {
	position: relative;
}
#recruit .textbox figure {
	position: absolute;
	top: 50%;
	right: -36rem;
	z-index: -1;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 68rem;
}
@media (max-width: 767px) {
	#recruit .textbox figure {
		position: static;
		width: auto;
		margin-top: 7.5vw;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
}
#recruit .textbox figure figcaption {
	margin-top: 1em;
	text-align: center;
}
#recruit .textbox .text {
	font-size: 2.6rem;
	font-weight: 600;
}
@media (max-width: 767px) {
	#recruit .textbox .text {
		font-size: 3.5vw;
	}
}
#recruit .textbox .text .category {
	display: block;
	margin: 1.5em 0;
}
#recruit .textbox .text .name {
	font-size: 1.3em;
}
#recruit .textbox .text .jp {
	display: inline-block;
	padding: 0.1em 0.5em;
	background-color: #32416b;
	font-size: 1.3em;
	color: #fff;
}
#recruit .message {
	margin-top: 17rem;
	border: 0.4rem solid #32416b;
}
@media (max-width: 767px) {
	#recruit .message {
		margin-top: 10vw;
	}
}
#recruit .message h3 {
	margin-bottom: 0.5em;
	margin-left: 1.5em;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 2.2rem;
	letter-spacing: 0.1em;
}
@media (max-width: 767px) {
	#recruit .message h3 {
		font-size: 4vw;
	}
}
#recruit .message h3 span {
	display: inline-block;
	padding: 0 0.75em;
	background-color: #fff;
}
#recruit .message .inbox {
	padding: 0rem 5rem 4rem;
}
#recruit .message .inbox .text {
	font-weight: 600;
	line-height: 2;
}
@media (max-width: 767px) {
	#recruit .message .inbox .text {
		width: 100%;
	}
}
#recruit .entry {
	margin-top: 20rem;
}
#recruit .entry h2 a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	aspect-ratio: 1030 / 140;
	font-size: 3.4rem;
	font-weight: 600;
	background: url(../img/btnbg.svg) center/100% no-repeat;
	text-decoration: none;
	-webkit-transition: 0.3s;
	-o-transition: 0.3s;
	transition: 0.3s;
}
#recruit .entry h2 a:hover {
	opacity: 0.5;
}
#recruit .entry .comment {
	padding: 10rem 0;
	position: relative;
	font-weight: 600;
	font-size: 2.2rem;
}
@media (max-width: 767px) {
	#recruit .entry .comment {
		font-size: 3vw;
	}
}
#recruit .entry .comment::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	left: -26rem;
	z-index: -1;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 68rem;
	aspect-ratio: 9 / 6.25;
	background: url(../img/recruit02.svg) center/100% no-repeat;
}
@media (max-width: 767px) {
	#recruit .entry .comment::before {
		display: none;
	}
}
#recruit .entry .comment dl dt {
	font-size: 3.2rem;
}
@media (max-width: 767px) {
	#recruit .entry .comment dl dt {
		font-size: 4.25vw;
	}
}
#recruit .entry .comment dl dd {
	font-size: 2.6rem;
}
@media (max-width: 767px) {
	#recruit .entry .comment dl dd {
		font-size: 3.5vw;
	}
}
#recruit .entry .comment h3 {
	margin-top: 2em;
}
#recruit .entry .comment ul li {
	margin-top: 0.5em;
}



/*# sourceMappingURL=style.css.map */
