@charset "UTF-8";

/* ==================================================

	CONFIG

*/
:root {
	--color-primary: #F40000;
}

/* ==================================================

RESET

*/
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
html, body {
	width: 100%;
}
body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
ul, ol {
	list-style-type: none;
}
table {
	border-collapse: collapse;
}
a, button {
	cursor: pointer;
}
img {
	vertical-align: top;
	width: 100%;
	height: auto;
}
input, select, textarea, button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: 0;
	border-radius: 0;
	resize: none;
}

::placeholder {
	color: #ccc;
}
::-ms-input-placeholder {
	color: #ccc;
}
:-ms-input-placeholder {
	color: #ccc;
}

/* ==================================================

ICON FONT

*/
@font-face {
	font-family: 'icon';
	src: url('../fonts/icon.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}
[class^="icon-"], [class*=" icon-"] {
	font-family: 'icon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
.icon-arrow-entry:before {
  content: "\e900";
}
.icon-arrow-next:before {
  content: "\e901";
}
.icon-arrow-pagetop:before {
  content: "\e902";
}
.icon-arrow-prev:before {
  content: "\e903";
}
.icon-arrow-submit:before {
  content: "\e904";
}
.icon-arrow:before {
  content: "\e905";
}
.icon-mail:before {
  content: "\e906";
}

/* ==================================================

HTML

*/
html {
	background-color: #fff;
	/* 1rem = 10px */
	font-size: 62.5%;
}
@media screen and (max-width: 1240px) {
	html {
		/* 幅1240px 1rem = 10px */
		font-size: 0.806vw;
	}
}
@media screen and (max-width: 768px) {
	html {
		/* 幅750px 1rem = 10px */
		font-size: 1.333vw;
	}
}

body {
	position: relative;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-size: 1.4rem;
	line-height: 2;
	color: #1E1E1E;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 2.7rem;
		line-height: 1.7;
	}
}

/*@media screen and (min-width: 769px) {
	a,
	button {
		transition: opacity 0.3s ease;
		-webkit-tap-highlight-color: transparent;
	}
	a:hover,
	button:hover {
		opacity: 0.65;
	}
}*/

/* ==================================================

MAIN

*/
main {
	overflow: hidden;
}

/* ==================================================

	[ UTILITY ] EN

*/
.u-en {
	font-family: "Lexend", sans-serif;
}

/* ==================================================

	[ UTILITY ] VISIBLE

*/
@media screen and (min-width: 769px) {
	.u-visible-sp {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.u-visible-pc {
		display: none;
	}
}

/* ==================================================

	[ COMPONENT ] HEADING

*/
.c-heading {
	text-align: center;
	line-height: 1.2;
}
.c-heading::after {
	content: '';
	display: block;
	margin: 0 auto;
	width: 8.8rem;
	height: 0.4rem;
	background-color: #1E1E1E;
}
.c-heading span {
	display: block;
	font-weight: 500;
	font-size: 3rem;
}
.c-heading em {
	display: block;
	margin: 1rem 0 2rem 0;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
}
@media screen and (max-width: 768px) {
	.c-heading::after {
		width: 10rem;
	}
	.c-heading span {
		font-size: 4.6rem;
	}
	.c-heading em {
		font-size: 2.4rem;
	}
}

/* ==================================================

	[ COMPONENT ] HEADLINE

*/
.c-headline {
	line-height: 1.1;
}
.c-headline > span {
	display: block;
	overflow: hidden;
}
.c-headline > span > span {
	display: flex;
	align-items: center;
	font-size: 1.6rem;
	transform: translateY(100%);
}
.loaded .c-headline > span > span {
	transition: transform 0.5s ease 0.2s;
}
.loaded .c-headline.u-inview > span > span {
	transform: translateY(0);
}
.c-headline > span > span i {
	margin-right: 1.2rem;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	font-size: 1.8rem;
}
.c-headline > em {
	display: block;
	overflow: hidden;
}
.c-headline > em > span {
	display: block;
	padding-bottom: 0.1em;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	font-size: 12rem;
	transform: translateY(90%);
}
.loaded .c-headline > em > span {
	transition: transform 0.6s ease 0.2s;
}
.loaded .c-headline.u-inview > em > span {
	transform: translateY(0);
}
@media screen and (max-width: 768px) {
	.c-headline > span > span {
		font-size: 2.8rem;
	}
	.c-headline > span > span i {
		position: relative;
		top: 0.04em;
		margin-right: 0.6em;
		font-size: 3rem;
	}
	.c-headline > em > span {
		font-size: 10rem;
	}
}

/* ==================================================

	[ COMPONENT ] BUTTON

*/
.c-button {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 24rem;
	height: 6rem;
	border: 1px solid #1E1E1E;
	font-family: "Lexend", sans-serif;
	font-size: 1.6rem;
}
.c-button::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 0;
	background-color: #f40000;
}
.c-button span {
	display: block;
	position: relative;
}
.c-button i {
	position: absolute;
	top: 50%;
	right: -1.5rem;
	margin-top: -1.5rem;
	font-size: 3rem;
	line-height: 1;
}
.c-button-white {
	border-color: #fff;
	color: #fff;
}
.c-button-submit,
.c-button-back {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 34rem;
	height: 6.8rem;
	background-color: #000;
	border-radius: 999rem;
	text-align: center;
	font-size: 1.6rem;
	color: #fff;
}
.c-button-back {
	background-color: #999;
}
.c-button-submit i,
.c-button-back i {
	position: absolute;
	top: 50%;
	margin-top: -0.6rem;
	font-size: 1.2rem;
}
.c-button-submit i {
	right: 2.5rem;
}
.c-button-submit:disabled {
	pointer-events: none;
	background-color: #ccc;
}
.c-button-back i {
	left: 2.5rem;
	transform: rotate(180deg);
}
.c-button-lg {
	width: 40rem;
	height: 11.6rem;
	border-width: 0.3rem;
	font-size: 3.6rem;
}
.c-button-lg i {
	right: -3rem;
	margin-top: -3rem;
	font-size: 6rem;
}
@media (any-hover: hover) {
	.c-button {
		transition: border-color 0.4s ease;
	}
	.c-button:hover {
		border-color: #f40000;
	}
	.c-button span {
		transition: color 0.4s ease;
	}
	.c-button:hover span {
		color: #fff;
	}
	.c-button::before {
		transition: width 0.4s ease;
	}
	.c-button:hover::before {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.c-button {
		width: 48.2rem;
		height: 12rem;
		border-width: 1px;
		font-size: 3.2rem;
	}
	.c-button i {
		right: -3rem;
		margin-top: -3rem;
		font-size: 6rem;
	}
	.c-button-submit,
	.c-button-back {
		width: 48.2rem;
		height: 12rem;
		font-size: 3.2rem;
	}
	.c-button-submit i,
	.c-button-back i {
		margin-top: -1.3rem;
		font-size: 2.6rem;
	}
	.c-button-lg {
		width: 80%;
		height: 18rem;
		border-width: 0.5rem;
		font-size: 4.4rem;
	}
	.c-button-lg i {
		right: -4rem;
		margin-top: -4rem;
		font-size: 8rem;
	}
}

/* ==================================================

	[ LAYOUT ] HEADER

*/
.l-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
}
.l-header .content {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 4rem 0 4.5rem;
	height: 9.6rem;
}
.l-header .content::before {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: #fff;
	opacity: 0;
	transition: opacity 0.3s ease;
}
.show-megamenu .l-header .content::before,
.l-header.show-base .content::before {
	opacity: 1;
}
.l-header .content .logo {
	position: relative;
	width: 20rem;
}
.l-header .content .nav {
	position: relative;
	display: flex;
	align-items: center;
}
.l-header .content .nav ul {
	display: flex;
	gap: 4rem;
	font-family: "Lexend", sans-serif;
}
.l-header .content .nav ul li:last-child {
	display: none;
}
.l-header .content .nav ul li .jp,
.l-header .content .nav ul li i {
	display: none;
}
.l-header .content .contact {
	margin-left: 3rem;
}
.l-header .content .contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 6.8rem;
	height: 6rem;
	font-size: 4rem;
}
.l-header .content .toggle {
	display: none;
}

@media (any-hover: hover) {
	.l-header .content .nav a {
		transition: color 0.3s ease;
	}
	.l-header .content .nav a:hover {
		color: var(--color-primary);
	}
	.l-header .content .contact a {
		transition: background-color 0.3s ease, color 0.3s ease;
	}
	.l-header .content .contact a:hover {
		background-color: var(--color-primary);
		color: #fff;
	}
}

@media screen and (max-width: 768px) {
	.l-header .content {
		padding: 0 4rem 0 4rem;
		height: 12.6rem;
	}
	.l-header .content .logo {
		width: 33rem;
	}
	.l-header .content .nav {
		display: none;
	}
	.l-header .content .toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		position: absolute;
		top: 0;
		right: 0;
		width: 14rem;
		height: 100%;
	}
	.l-header .content .toggle i {
		display: block;
		position: relative;
		width: 9.6rem;
		height: 9.6rem;
	}
	.l-header .content .toggle i:before,
	.l-header .content .toggle i:after {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 50%;
		height: 1px;
		background-color: #000;
		transition: all 0.4s ease;
	}
	.l-header .content .toggle i:before {
		margin-top: -0.7rem;
		width: 92%;
	}
	.l-header .content .toggle i:after {
		margin-top: 0.7rem;
		width: 68%;
	}
	.l-header .content .toggle[aria-expanded="true"] i:before,
	.l-header .content .toggle[aria-expanded="true"] i:after {
		left: 13%;
		margin-top: 0;
		width: 74%;
	}
	.l-header .content .toggle[aria-expanded="true"] i:before {
		transform: rotate(45deg);
	}
	.l-header .content .toggle[aria-expanded="true"] i:after {
		transform: rotate(-45deg);
	}
}

/* ==================================================

	[ LAYOUT ] MEGAMENU

*/
.l-megamenu {
	display: none;
	position: fixed;
	top: 12.6rem;
	bottom: 0;
	right: 0;
	width: 0;
	background-color: #fff;
	transition: opacity 0.4s ease;
	opacity: 0;
}
.l-megamenu[aria-hidden="false"] {
	width: 100%;
}
.l-megamenu.show {
	opacity: 1;
}
.l-megamenu .scroll {
	overflow-y: auto;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	overscroll-behavior: none;
}
.l-megamenu ul li {
	padding-bottom: 0.4rem;
}
.l-megamenu ul li a {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 12.4rem 0 4rem;
	height: 19.6rem;
	background-color: #eee;
}
.l-megamenu ul li .en {
	display: block;
	font-weight: 500;
  font-family: "Lexend", sans-serif;
	font-size: 4rem;
}
.l-megamenu ul li .jp {
	display: block;
	font-size: 2.4rem;
}
.l-megamenu ul li i {
	display: block;
	position: absolute;
	top: 50%;
	right: 4rem;
	margin-top: -2.5rem;
	font-size: 5rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.l-megamenu {
		display: block;
	}
}

/* ==================================================

	[ LAYOUT ] FOOTER

*/
.l-footer {
	position: relative;
	padding: 6rem 0;
	width: 100%;
	background-color: #323232;
	color: #fff;
}
.l-footer .wrap {
	display: flex;
	justify-content: space-between;
}
.l-footer .company {
	font-size: 1.3rem;
	letter-spacing: 0.16em;
}
.l-footer .company .logo {
	width: 28.8rem;
}
.l-footer .company h2 {
	margin: 5rem 0 1rem 0;
	font-size: 1.6rem;
	letter-spacing: 0.08em;
}
.l-footer nav {
	margin-top: 1.2rem;
	line-height: 1.5;
}
.l-footer nav ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6rem;
	padding-left: 3rem;
}
.l-footer nav ul:first-child {
	margin-bottom: 6rem;
	font-family: "Lexend", sans-serif;
	font-size: 1.7rem;
}
.l-footer small {
	display: block;
	text-align: right;
	color: #888;
	transform: translateY(-100%);
}
.l-footer .pagetop {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -4rem;
	right: 4rem;
	width: 8rem;
	height: 8rem;
	overflow: hidden;
	border: 1px solid #b6964d;
	border-radius: 50%;
	background-color: #b6964d;
	font-size: 4rem;
	color: #fff;
}
@media (any-hover: hover) {
	.l-footer nav a {
		transition: opacity 0.4s ease;
	}
	.l-footer nav a:hover {
		opacity: 0.6;
	}
	.l-footer .pagetop {
		transition: background-color 0.4s ease, color 0.4s ease;
	}
	.l-footer .pagetop:hover {
		background-color: #fff;
		color: #b6964d;
	}
}
@media screen and (max-width: 1300px) {
	.l-footer nav ul {
		gap: 4rem;
	}
}
@media screen and (max-width: 768px) {
	.l-footer {
		padding: 8rem 0;
	}
	.l-footer .l-container {
		padding: 0;
	}
	.l-footer .wrap {
		display: block;
	}
	.l-footer .company {
		text-align: center;
		font-size: 2.7rem;
		letter-spacing: 0.08em;
	}
	.l-footer .company .logo {
		margin: 0 auto;
		width: 48rem;
	}
	.l-footer .company h2 {
		margin: 5rem 0 3rem 0;
		font-size: 3.2rem;
		letter-spacing: 0.08em;
	}
	.l-footer nav {
		margin-top: 6rem;
		text-align: center;
		font-size: 3rem;
	}
	.l-footer nav ul {
		display: block;
		padding-left: 0;
	}
	.l-footer nav ul:first-child {
		display: none;
	}
	.l-footer small {
		margin-top: 6rem;
		text-align: center;
		font-size: 2.4rem;
		transform: translateY(0);
	}
	.l-footer .pagetop {
		top: -5rem;
		right: 2rem;
		width: 10rem;
		height: 10rem;
		font-size: 5rem;
	}
}

/* ==================================================

	[ LAYOUT ] CONTAINER

*/
.l-container {
	position: relative;
	margin: 0 auto;
	padding: 0 6rem;
	width: 100%;
	max-width: 132rem;
}

@media screen and (max-width: 980px) {
	.l-container {
		padding: 0 4.5rem;
	}
}

/* ==================================================

	[ LAYOUT ] RECRUIT

*/
.l-recruit {
	padding: 10rem 0;
	background-image: url(../img/recruit-bg.jpg);
	background-size: cover;
}
.l-recruit .frame {
	position: relative;
	margin: 0 auto;
	max-width: 110rem;
	padding: 5rem;
	background-color: rgba(232,232,232,0.9);
	border-radius: 2.4rem;
	box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.25);
}
.l-recruit .c-headline > em > span {
	font-size: 8rem;
}
.l-recruit h3 {
	margin: 3rem 0 2rem 0;
	font-weight: 500;
	font-size: 2.4rem;
}
.l-recruit .lead {
	padding-right: 28rem;
	font-size: 1.6rem;
}
.l-recruit .foot {
	position: absolute;
	bottom: 5rem;
	right: 5rem;
}
@media screen and (max-width: 768px) {
	.l-recruit {
		padding: 4.5rem 0 6.5rem 0;
	}
	.l-recruit .frame {
		max-width: initial;
		padding: 6rem 0 8rem 0;
	}
	.l-recruit .head {
		display: flex;
		justify-content: center;
	}
	.l-recruit .c-headline > em > span {
		font-size: 8rem;
	}
	.l-recruit h3 {
		margin: 3rem 0 3rem 0;
		text-align: center;
		font-size: 3.4rem;
		line-height: 1.8;
	}
	.l-recruit .lead {
		padding-right: 0;
		text-align: center;
		font-size: 2.6rem;
		line-height: 2;
	}
	.l-recruit .foot {
		position: static;
		display: flex;
		justify-content: center;
		margin-top: 5rem;
	}
}

/* ==================================================

	[ LAYOUT ] FOOT MENU

*/
.l-foot-menu {
	display: flex;
}
.l-foot-menu section {
	flex-basis: 50%;
}

/* ==================================================

	[ LAYOUT ] ARCHIVE

*/
.l-archive {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2.2rem;
}
.l-archive__item {
	flex-basis: 33.333%;
	padding: 0 2.2rem;
}
.l-archive__card {
	height: 100%;
	background-color: #fff;
}
.l-archive__thumb {

}
.l-archive__detail {
	padding: 3.5rem;
}
.l-archive__title {
	font-size: 2rem;
}
.l-archive__foot {
	display: flex;
	justify-content: flex-end;
	font-size: 1.6rem;
}

/* ==================================================

	[ LAYOUT ] FORM INPUT

*/
.l-form-input {
	margin: 0 auto 12rem auto;
	max-width: 90rem;
}
.l-form-input textarea,
.l-form-input input[type="text"] {
	display: block;
	padding: 0.5em 1em;
	width: 100%;
	border: 1px solid #999A9E;
	border-radius: 0.4rem;
	font-size: 1.6rem;
}
.l-form-input textarea {
	height: 40rem;
}
.l-form-input .short textarea {
	height: 22rem;
}
.l-form-input input[type="radio"] {
	display: block;
	margin-right: 0.5em;
	width: 2.4rem;
	height: 2.4rem;
	background-image: url(../img/input-radio.svg);
	background-size: contain;
	flex-shrink: 0;
	opacity: 0.2;
	filter: grayscale(100%);
}
.l-form-input input[type="radio"]:checked {
	opacity: 1;
	filter: grayscale(0%);
}
.l-form-input input[type="checkbox"] {
	display: block;
	margin-right: 0.3em;
	width: 2.4rem;
	height: 2.4rem;
	border: 1px solid #000;
	flex-shrink: 0;
}
.l-form-input input[type="checkbox"]:checked {
	border-color: #F40000;
	background-color: #F40000;
	background-image: url(../img/input-checkbox.svg);
	background-size: contain;
}
.l-form-input h2 {
	margin: 4rem 0 1.5rem 0;
	font-weight: 500;
	font-size: 2rem;
	line-height: 1.3;
}
.l-form-input h2:first-child {
	margin-top: 0;
}
.l-form-input h2 em {
	font-weight: 400;
	font-size: 1.4rem;
	color: #FF2C5D;
}
.l-form-input .list-inline {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem 6rem;
	margin-top: 3rem;
	font-size: 1.6rem;
	line-height: 1.3;
}
.l-form-input .list-inline label {
	display: flex;
	align-items: center;
}
.l-form-input .list-inline .alert {
	flex-basis: 100%;
}
.l-form-input .privacy {
	margin-top: 1rem;
	text-align: center;
	font-size: 1.4rem;
}
.l-form-input .privacy a {
	text-decoration: underline;
}
.l-form-input .agree {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}
.l-form-input .agree label {
	display: flex;
	justify-content: center;
	align-items: center;
}
.l-form-input .agree input[type="checkbox"] {
	margin-right: 0.8rem;
	width: 2rem;
	height: 2rem;
}
.l-form-input .foot {
	display: flex;
	justify-content: center;
	margin-top: 5rem;
}
.l-form-input .alert {
	font-weight: 500;
	font-size: 1.6rem;
	color: #FF2C5D;
}
@media screen and (max-width: 768px) {
	.l-form-input {
		margin: 0 0 8rem 0;
		max-width: initial;
	}
	.l-form-input textarea,
	.l-form-input input[type="text"] {
		padding: 0.5em;
		border-radius: 0.8rem;
		font-size: 2.7rem;
	}
	.l-form-input input[type="radio"] {
		margin-right: 0.5em;
		width: 3.4rem;
		height: 3.4rem;
	}
	.l-form-input input[type="checkbox"] {
		margin-right: 0.3em;
		width: 3.4rem;
		height: 3.4rem;
	}
	.l-form-input h2 {
		margin: 4rem 0 1.5rem 0;
		font-size: 3rem;
	}
	.l-form-input h2 em {
		font-size: 2.4rem;
	}
	.l-form-input .list-inline {
		display: block;
		margin-top: 3rem;
		font-size: 3rem;
	}
	.l-form-input .list-inline li {
		margin-bottom: 2rem;
	}
	.l-form-input .agree input[type="checkbox"] {
		margin-right: 1rem;
		width: 3.2rem;
		height: 3.2rem;
	}
	.l-form-input .privacy {
		margin-top: 1rem;
		text-align: center;
		font-size: 2.7rem;
	}
	.l-form-input .privacy a {
		text-decoration: underline;
	}
	.l-form-input .alert {
		font-size: 2.7rem;
	}
}

/* ==================================================

	[ LAYOUT ] FORM CONFIRM

*/
.l-form-confirm {
	margin: 0 auto 12rem auto;
	max-width: 90rem;
}
.l-form-confirm dl {
	display: flex;
	padding: 3rem 0;
	line-height: 1.7;
}
.l-form-confirm dt {
	flex-shrink: 0;
	width: 35%;
	font-weight: 500;
	font-size: 2rem;
}
.l-form-confirm dd {
	font-size: 2rem;
}
.l-form-confirm .foot {
	display: flex;
	justify-content: center;
	gap: 4rem;
	margin-top: 5rem;
}
@media screen and (max-width: 768px) {
	.l-form-confirm {
		margin: 0 0 8rem 0;
		max-width: initial;
	}
	.l-form-confirm dl {
		display: block;
		padding: 2rem 0;
	}
	.l-form-confirm dt {
		width: auto;
		font-size: 3rem;
	}
	.l-form-confirm dd {
		font-size: 2.8rem;
	}
	.l-form-confirm .foot {
		flex-direction: column;
		align-items: center;
	}
}

/* ==================================================

	[ LAYOUT ] FORM COMPLETE

*/
.l-form-complete {
	margin: 12rem 0 20rem 0;
	text-align: center;
}
.l-form-complete h2 {
	margin-bottom: 10rem;
	font-size: 2.4rem;
}
.l-form-complete .foot {
	font-size: 1.8rem;
	color: #646464;
}
@media screen and (max-width: 768px) {
	.l-form-complete {
		margin: 12rem 0 12rem 0;
	}
	.l-form-complete h2 {
		font-size: 3.6rem;
	}
	.l-form-complete .foot {
		font-size: 3.4rem;
	}
}

/* ==================================================

	[ HOME ]

*/
.p-home-main {
	position: relative;
	padding: 26rem 0 0 45%;
	height: 92rem;
}
.p-home-main .video {
	position: absolute;
	inset: 0;
}
.p-home-main .video::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 20rem;
	background-image: linear-gradient(180deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}
.p-home-main .video div {
	position: relative;
	width: 100%;
	height: 100%;
}
.p-home-main .video div::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: rgba(255,255,255,0.4);
}
.p-home-main .video video {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-home-main .bg {
	position: absolute;
}
.p-home-main .bg div {
	transform: translate3d(0,0,0);
	position: absolute;
	inset: 0;
	opacity: 0;
}
.p-home-main .bg.anim-end div {
	opacity: 1;
}
.p-home-main .bg::after {
	content: '';
	display: block;
	position: absolute;
	z-index: 5;
	inset: 0;
	background-color: #f40000;
	clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 100% 100%);
}
.p-home-main .bg.anim-start::after {
	transition: clip-path 0.5s ease;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-home-main .bg.anim-end::after {
	transition: clip-path 1s ease;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.p-home-main .bg span {
	overflow: hidden;
	display: block;
	position: absolute;
	inset: 0;
	clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.p-home-main .bg span.anime-view {
	z-index: 2;
}
.p-home-main .bg span.anime-out {
	z-index: 3;
	transition: clip-path 1s ease;
	clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
}
.p-home-main .bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-home-main .bg span.anime-view img {
	transition: all 10s linear;
	transform: scale(1.2);
}
.p-home-main .bg01 {
	top: 21.2rem;
	left: 0;
	width: 50%;
	height: 47rem;
}
.p-home-main .bg02 {
	bottom: 5rem;
	left: 45%;
	width: 36rem;
	height: 21.8rem;
}
.p-home-main .bg03 {
	top: 45rem;
	left: 80%;
	width: 23rem;
	height: 31rem;
}
.p-home-main .head {
	position: relative;
	z-index: 10;
	opacity: 0;
	transition: opacity 1s ease;
}
.p-home-main.active .head {
	opacity: 1;
}
.p-home-main h1 {
	line-height: 1.2;
}
.p-home-main h1 span {
	display: block;
	margin-bottom: 3rem;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	font-size: 9.6rem;
}
.p-home-main h1 em {
	display: block;
	font-weight: 700;
	font-size: 3.6rem;
}
.p-home-main .lead {
	margin-top: 3rem;
	font-size: 1.4rem;
}
.p-home-main .scroll {
	position: absolute;
	left: 1.5rem;
	bottom: 0;
	display: flex;
	align-items: center;
	font-weight: 300;
	font-family: "Lexend", sans-serif;
	font-size: 1.2rem;
	letter-spacing: 0.06em;
	transform: rotate(-90deg);
}
.p-home-main .scroll span {
	display: block;
	overflow: hidden;
	position: relative;
	margin-right: 1rem;
	width: 8.2rem;
	height: 1px;
}
.p-home-main .scroll span i {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #f40000;
	animation: ScrollLine 2s ease-in-out infinite;
}
@keyframes ScrollLine {
	0% {
		left: 0%;
		top: 0;
	}
	30% {
		left: -100%;
		top: 0;
	}
	31% {
		left: -100%;
		top: 100%;
	}
	32% {
		left: 100%;
		top: 100%;
	}
	33% {
		left: 100%;
		top: 0;
	}
	60% {
		left: 0%;
		top: 0;
	}
}
@media screen and (max-width: 768px) {
	.p-home-main {
		padding: 57.4rem 0 0 4.5rem;
		height: 133.4rem;
	}
	.p-home-main .video::after {
		height: 30rem;
	}
	.p-home-main .bg01 {
		top: 18rem;
		left: 0;
		width: 54.4rem;
		height: 35.2rem;
	}
	.p-home-main .bg02 {
		left: 4.5rem;
		width: 37.2rem;
		height: 22.4rem;
	}
	.p-home-main .bg03 {
		top: auto;
		left: auto;
		bottom: 14.4rem;
		right: 0;
		width: 21.5rem;
		height: 29rem;
	}
	.p-home-main h1 span {
		margin-bottom: 3rem;
		font-size: 8.4rem;
	}
	.p-home-main h1 em {
		font-size: 3.8rem;
	}
	.p-home-main .lead {
		margin-top: 3rem;
		font-size: 2.7rem;
	}
	.p-home-main .scroll {
		left: auto;
		right: 6rem;
		bottom: 4rem;
	}
	.p-home-main .scroll em {
		display: none;
	}
	.p-home-main .scroll span {
		margin-right: 0;
		width: 10.4rem;
	}
}

.p-home-about {
	position: relative;
	padding: 10rem 0 12rem 0;
}
.p-home-about .kv {
	position: absolute;
	bottom: 0;
	right: 0;
	max-width: 100rem;
	width: 100%;
}
.p-home-about .c-headline > em > span {
	font-size: 8rem;
}
.p-home-about .lead {
	margin: 4rem 0 5rem 0;
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.p-home-about {
		padding: 8.2rem 0 42.2rem 0;
	}
	.p-home-about .kv {
		max-width: initial;
		width: 96%;
	}
	.p-home-about .c-headline > em > span {
		font-size: 8.4rem;
	}
	.p-home-about .lead {
		margin: 4rem 0 5rem 0;
		font-size: 2.7rem;
	}
	.p-home-about .foot {
		display: flex;
		justify-content: center;
	}
}

.p-home-service {
	position: relative;
	padding: 8rem 0;
	color: #fff;
}
.p-home-service .kv {
	position: absolute;
	inset: 0;
	background-image: url(../img/home-service-kv.jpg);
	background-size: cover;
}
.p-home-service .kv::after {
	content: '';
	display: block;
	position: absolute;
	inset: 0;
	background-color: rgba(0,0,0,0.5);
}
.p-home-service .head {
	display: flex;
	justify-content: center;
}
.p-home-service .c-headline > em > span {
	font-size: 8rem;
}
.p-home-service .lead {
	margin: 4rem 0 5rem 0;
	text-align: center;
	font-size: 1.8rem;
}
.p-home-service .foot {
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	.p-home-service {
		padding: 16rem 0;
	}
	.p-home-service .kv {
		position: absolute;
		inset: 0;
		background-image: url(../img/home-service-kv.jpg);
		background-size: cover;
	}
	.p-home-service .c-headline > em > span {
		font-size: 8.4rem;
	}
	.p-home-service .lead {
		margin: 6rem 0 12rem 0;
		font-size: 2.7rem;
		line-height: 2.4;
	}
}

.p-home-news {
	padding: 10rem 0 12rem 0;
}
.p-home-news .c-headline > em > span {
	font-size: 8rem;
}
.p-home-news .lead {
	margin: 4rem 0 5rem 0;
	font-size: 1.8rem;
}
.p-home-news .archive ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -4rem;
}
.p-home-news .archive li {
	position: relative;
	padding: 1.5rem 4rem;
	flex-basis: 50%;
}
.p-home-news .archive li::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 4rem;
	right: 4rem;
	height: 1px;
	background-color: #E3E3E3;
}
.p-home-news .archive a {
	position: relative;
	display: flex;
}
.p-home-news .archive a span {
	display: block;
}
.p-home-news .archive .thumb span {
	flex-shrink: 0;
	width: 14.5rem;
	border: 1px solid #dcdcdc;
	overflow: hidden;
}
.p-home-news .archive .thumb img {
	display: block;
}
.p-home-news .archive .detail {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 0 4rem 0 2rem;
}
.p-home-news .archive .row {
	display: flex;
	align-items: center;
	margin: 0 0 0.5rem 0;
	line-height: 1.2;
}
.p-home-news .archive .date {
	margin-right: 1rem;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
}
.p-home-news .archive .category {
	font-size: 1.2rem;
}
.p-home-news .archive .category i {
	display: block;
	padding: 0.2em 1em;
	min-width: 9rem;
	background-color: #D9D9D9;
	text-align: center;
}
.p-home-news .archive .title {
	display: flex;
	align-items: center;
	flex: 1;
	font-size: 1.6rem;
	line-height: 1.5;
	color: #5a5a5a;
}
.p-home-news .archive .icon-arrow {
	position: absolute;
	top: 50%;
	right: 0;
	font-size: 2rem;
	margin-top: -1rem;
}
.p-home-news .foot {
	position: absolute;
	top: 3.5rem;
	right: 10rem;
}
@media (any-hover: hover) {
	.p-home-news .archive a .thumb img {
		transition: transform 0.4s ease;
	}
	.p-home-news .archive a:hover .thumb img {
		transform: scale(1.1);
	}
	.p-home-news .archive a .icon-arrow {
		transition: right 0.4s ease;
	}
	.p-home-news .archive a:hover .icon-arrow {
		right: -0.6rem;
	}
}
@media screen and (max-width: 768px) {
	.p-home-news {
		padding: 8rem 0 12rem 0;
	}
	.p-home-news .c-headline > em > span {
		font-size: 8.4rem;
	}
	.p-home-news .lead {
		margin: 4rem 0 4rem 0;
		font-size: 2.7rem;
	}
	.p-home-news .archive ul {
		display: flex;
		flex-wrap: wrap;
		margin: 0 -1.4rem;
	}
	.p-home-news .archive li {
		padding: 1.5rem 1.4rem;
	}
	.p-home-news .archive li::after {
		content: none;
	}
	.p-home-news .archive a {
		display: block;
	}
	.p-home-news .archive .thumb {
		width: 100%;
	}
	.p-home-news .archive .detail {
		display: block;
		padding: 0;
	}
	.p-home-news .archive .row {
		margin: 1.8rem 0 1rem 0;
		font-size: 2.4rem;
	}
	.p-home-news .archive .date {
		margin-right: 1rem;
	}
	.p-home-news .archive .category {
		font-size: 2.2rem;
	}
	.p-home-news .archive .category i {
		padding: 0.1em 0.4em 0.2em 0.4em;
		min-width: 11.2rem;
	}
	.p-home-news .archive .title {
		display: block;
		font-size: 2.8rem;
		line-height: 1.7;
	}
	.p-home-news .archive .icon-arrow {
		display: none;
	}
	.p-home-news .foot {
		position: static;
		display: flex;
		justify-content: center;
		margin-top: 6rem;
	}
}

/* ==================================================

	[ ABOUT ]

*/
.p-about {
	padding-top: 15rem;
}
@media screen and (max-width: 768px) {
	.p-about {
		padding-top: 18rem;
	}
}

.p-about-philosophy {
	padding: 0 0 8rem 0;
	background-repeat: no-repeat;
	background-position: 50% 100%;
	background-image: url(../img/about-philosophy-bg.png);
	background-size: 145rem auto;
}
.p-about-philosophy .wrap {
	display: flex;
	flex-direction: row-reverse;
}
.p-about-philosophy .head {
	flex-shrink: 0;
	margin: 0 10rem;
	width: 24.4rem;
	text-align: center;
}
.p-about-philosophy .head h2 {
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	line-height: 1.2;
}
.p-about-philosophy .head h2::after {
	content: '';
	display: block;
	margin-top: 1.5rem;
	height: 0.6rem;
	background-color: #1E1E1E;
}
.p-about-philosophy .head h2 span {
	display: block;
	margin-bottom: 0.5rem;
}
.p-about-philosophy .head h2 em {
	font-size: 2.8rem;
}
.p-about-philosophy .head h3 {
	margin-top: 5rem;
}
.p-about-philosophy .lead {
	flex: 1;
	margin-top: 6rem;
	padding-right: 6rem;
	font-size: 2.2rem;
	line-height: 2.5;
}
@media screen and (max-width: 768px) {
	.p-about-philosophy {
		padding: 0 0 8rem 0;
		background-position: 77% 100%;
		background-size: 250% auto;
	}
	.p-about-philosophy .wrap {
		display: block;
	}
	.p-about-philosophy .head {
		float: right;
		margin: 0 0 8rem 6rem;
		width: 18rem;
	}
	.p-about-philosophy .head h2 {
		font-size: 2.2rem;
	}
	.p-about-philosophy .head h2 em {
		font-size: 3.4rem;
	}
	.p-about-philosophy .head h3 {
		margin-top: 4rem;
	}
	.p-about-philosophy .lead {
		margin-top: 0;
		padding: 7rem 0 0 0;
		font-size: 2.7rem;
		line-height: 2.2;
	}
}

.p-about-values {
	position: relative;
	padding: 6rem 0 0 0;
	height: 64rem;
	background-color: #eae1cb;
}
.p-about-values::before {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 82rem;
	height: 100%;
	background-repeat: no-repeat;
	background-position: 100% 100%;
	background-image: url(../img/about-values-bg.png);
	background-size: contain;
}
.p-about-values .head h2 {
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	line-height: 1.2;
}
.p-about-values .head h2 span {
	display: block;
	margin-bottom: 0.5rem;
}
.p-about-values .head h2 em {
	font-size: 2.8rem;
}
.p-about-values .head h3 {
	display: flex;
	margin-top: 3rem;
}
.p-about-values .head h3::before {
	content: '';
	display: block;
	margin-right: 4rem;
	width: 0.6rem;
	height: 10.4rem;
	background-color: #1E1E1E;
}
.p-about-values .head h3 img {
	width: 69rem;
}
.p-about-values .lead {
	flex: 1;
	margin-top: 5rem;
	width: 60rem;
	font-size: 1.8rem;
	line-height: 2.2;
}
@media screen and (max-width: 768px) {
	.p-about-values {
		padding: 6rem 0 30rem 0;
		height: auto;
	}
	.p-about-values::before {
		width: 95%;
	}
	.p-about-values .head h2 {
		font-size: 2.2rem;
	}
	.p-about-values .head h2 span {
		display: block;
		margin-bottom: 0.5rem;
	}
	.p-about-values .head h2 em {
		font-size: 3.4rem;
	}
	.p-about-values .head h3 {
		display: flex;
		margin-top: 3rem;
	}
	.p-about-values .head h3::before {
		margin-right: 3rem;
		height: 9rem;
	}
	.p-about-values .head h3 img {
		width: 80vw;
	}
	.p-about-values .lead {
		width: 100%;
		font-size: 2.7rem;
	}
}

.p-about-message {
	padding: 10rem 0 12rem 0;
}
.p-about-message .wrap {
	display: flex;
	margin-top: 7rem;
}
.p-about-message .portrait {
	flex-shrink: 0;
	width: 47.8rem;
}
.p-about-message .detail {
	flex: 1;
	padding-left: 10rem;
}
.p-about-message .detail .lead {
	margin-top: -1.5rem;
	font-size: 2.2rem;
	line-height: 2.3;
}
.p-about-message .detail dl {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	margin-top: 3rem;
	line-height: 1.5;
}
.p-about-message .detail dt {
	margin: 0 1.5rem 0.2rem 0;
}
.p-about-message .detail dd {
	font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
	.p-about-message {
		padding: 10rem 0 12rem 0;
	}
	.p-about-message .wrap {
		display: block;
		margin-top: 7rem;
	}
	.p-about-message .portrait {
		margin: 0 auto;
		width: 60%;
	}
	.p-about-message .detail {
		margin-top: 6rem;
		padding-left: 0;
	}
	.p-about-message .detail .lead {
		margin-top: 0;
		font-size: 2.7rem;
		line-height: 2;
	}
	.p-about-message .detail dl {
		margin-top: 4rem;
		font-size: 2.2rem;
	}
	.p-about-message .detail dt {
		margin: 0 1.5rem 0.5rem 0;
	}
	.p-about-message .detail dd {
		font-size: 3.8rem;
	}
}

/* ==================================================

	[ SERVICE ]

*/
.p-service {
	padding-top: 15rem;
}
@media screen and (max-width: 768px) {
	.p-service {
		padding-top: 18rem;
	}
}

.p-service-main {
	margin: 10rem 0 8rem 0;
	text-align: center;
}
.p-service-main h2 {
	margin-bottom: 3rem;
	font-weight: 500;
	font-size: 3.6rem;
	line-height: 1.5;
}
.p-service-main .lead {
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.p-service-main {
		margin: 6rem 0 7rem 0;
	}
	.p-service-main h2 {
		margin-bottom: 4rem;
		font-size: 4rem;
		line-height: 1.7;
	}
	.p-service-main .lead {
		font-size: 2.7rem;
	}
}

.p-service-detail {
	margin-bottom: 12rem;
	background-color: #F8F8F8;
}
.p-service-detail .block {
	display: flex;
	min-height: 46.4rem;
}
.p-service-detail .block:nth-child(even) {
	flex-direction: row-reverse;
}
.p-service-detail .image {
	position: relative;
	flex-basis: 50%;
}
.p-service-detail .image span {
	display: block;
	position: absolute;
	inset: 0;
}
.p-service-detail .image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-service-detail .detail {
	display: flex;
	align-items: center;
	flex-basis: 50%;
	padding: 4rem 7% 4rem 7%;
}
.p-service-detail .detail h3 {
	margin-bottom: 2rem;
	text-align: center;
	font-weight: 500;
	font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
	.p-service-detail {
		margin-bottom: 0;
	}
	.p-service-detail .block {
		display: block;
		min-height: initial;
	}
	.p-service-detail .image span {
		position: static;
	}
	.p-service-detail .image img {
		height: auto;
		object-fit: initial;
	}
	.p-service-detail .detail {
		display: block;
		padding: 5rem 4.5rem 8rem 4.5rem;
	}
	.p-service-detail .detail h3 {
		margin-bottom: 2rem;
		font-size: 3.6rem;
	}
}

/* ==================================================

	[ NEWS ]

*/
.p-news {
	padding-top: 15rem;
}
@media screen and (max-width: 768px) {
	.p-news {
		padding-top: 18rem;
	}
}

.p-news-tab {
	margin-top: 7rem;
}
.p-news-tab ul {
	display: flex;
	justify-content: center;
	gap: 2rem;
	text-align: center;
}
.p-news-tab a {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 22.4rem;
	height: 9rem;
	border: 1px solid #B4B4B4;
	line-height: 1.5;
}
.p-news-tab a em {
	display: block;
	font-weight: 500;
	font-size: 2rem;
}
.p-news-tab a span {
	font-family: "Lexend", sans-serif;
	font-size: 1.2rem;
}
.p-news-tab .current {
	background-color: #1E1E1E;
	border-color: #1E1E1E;
	color: #fff;
	pointer-events: none;
}
@media screen and (max-width: 768px) {
	.p-news-tab {
		margin-top: 6rem;
	}
	.p-news-tab ul {
		gap: 0;
		margin: 0 -2rem;
	}
	.p-news-tab ul li {
		flex-basis: 50%;
		padding: 0 2rem;
	}
	.p-news-tab a {
		width: 100%;
		height: 12rem;
	}
	.p-news-tab a em {
		font-size: 2.7rem;
	}
	.p-news-tab a span {
		font-size: 2rem;
	}
}

.p-news-archive {
	margin-top: 9rem;
	padding-bottom: 10rem;
}
.p-news-archive ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -2rem;
}
.p-news-archive li {
	flex-basis: 25%;
	margin-bottom: 4rem;
	padding: 0 2rem;
}
.p-news-archive a {
	display: block;
}
.p-news-archive .thumb {
	overflow: hidden;
	display: block;
	border: 1px solid #dcdcdc;
}
.p-news-archive .thumb img {
	display: block;
}
.p-news-archive .row {
	display: flex;
	align-items: center;
	margin: 1.6rem 0 0.5rem 0;
	line-height: 1.2;
}
.p-news-archive .date {
	margin-right: 1rem;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
}
.p-news-archive .category {
	font-size: 1.2rem;
}
.p-news-archive .category i {
	display: block;
	padding: 0.2em 1em;
	min-width: 9rem;
	background-color: #D9D9D9;
	text-align: center;
}
.p-news-archive .title {
	font-size: 1.5rem;
}
@media (any-hover: hover) {
	.p-news-archive a .thumb img {
		transition: transform 0.4s ease;
	}
	.p-news-archive a:hover .thumb img {
		transform: scale(1.06);
	}
}
@media screen and (max-width: 768px) {
	.p-news-archive {
		margin-top: 6rem;
		padding-bottom: 8rem;
	}
	.p-news-archive li {
		flex-basis: 50%;
	}
	.p-news-archive .row {
		margin: 1.6rem 0 0.5rem 0;
	}
	.p-news-archive .date {
		margin-right: 1rem;
	}
	.p-news-archive .category {
		font-size: 1.2rem;
	}
	.p-news-archive .category i {
		padding: 0.2em 1em;
		min-width: 9rem;
	}
	.p-news-archive .title {
		font-size: 2.7rem;
	}
}

.p-news-article {
	margin: 0 auto;
	padding: 8rem 0 12rem 0;
	max-width: 90rem;
}
.p-news-article .article-head {
	margin-bottom: 4rem;
}
.p-news-article .article-head h2 {
	font-weight: 700;
	font-size: 2.6rem;
	line-height: 1.5;
}
.p-news-article .article-head .row {
	display: flex;
	align-items: center;
	margin: 1.6rem 0 0.5rem 0;
	line-height: 1.2;
}
.p-news-article .article-head .date {
	margin-right: 1rem;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
}
.p-news-article .article-head .category {
	font-size: 1.2rem;
}
.p-news-article .article-head .category i {
	display: block;
	padding: 0.2em 1em;
	min-width: 9rem;
	background-color: #D9D9D9;
	text-align: center;
}
.p-news-article .article-eyecatch {
	display: flex;
	justify-content: center;
	margin: 4rem 0;
}
.p-news-article .article-eyecatch .logo {
	max-width: 54rem;
}
.p-news-article .article-body {
	font-size: 1.6rem;
	line-height: 3;
}
.p-news-article .article-foot {
	margin-top: 10rem;
	text-align: center;
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	font-size: 1.8rem;
}
@media (any-hover: hover) {
	.p-news-article .article-foot a {
		transition: color 0.4s ease;
	}
	.p-news-article .article-foot a:hover {
		color: #F40000;
	}
}
@media screen and (max-width: 768px) {
	.p-news-article {
		padding: 6rem 0 12rem 0;
		max-width: initial;
	}
	.p-news-article .article-head {
		margin-bottom: 4rem;
	}
	.p-news-article .article-head h2 {
		font-size: 3.4rem;
	}
	.p-news-article .article-head .row {
		margin: 1.6rem 0 0.5rem 0;
		line-height: 1.2;
	}
	.p-news-article .article-head .date {
		margin-right: 1rem;
	}
	.p-news-article .article-head .category {
		font-size: 2rem;
	}
	.p-news-article .article-head .category i {
		display: block;
		padding: 0.2em 1em;
		min-width: 9rem;
	}
	.p-news-article .article-eyecatch {
		margin: 4rem 0;
	}
	.p-news-article .article-eyecatch .logo {
		max-width: 100%;
	}
	.p-news-article .article-body {
		font-size: 2.7rem;
		line-height: 2.2;
	}
	.p-news-article .article-foot {
		margin-top: 8rem;
		font-size: 3.4rem;
	}
}

/* ==================================================

	[ RECRUIT ]

*/
.p-recruit {
	padding-top: 15rem;
}
@media screen and (max-width: 768px) {
	.p-recruit {
		padding-top: 18rem;
	}
}

.p-recruit-beginning {
	margin: 7rem 0;
}
.p-recruit-beginning .kv {
	height: 47.6rem;
}
.p-recruit-beginning .kv img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-recruit-beginning .lead {
	margin-top: 8rem;
	padding-bottom: 5rem;
	text-align: center;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 2.7;
}
.p-recruit-beginning .lead::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 62rem;
	height: 62rem;
	transform: translate(-50%, -50%);
	background-image: url(../img/recruit-beginning-bg.png);
	background-size: contain;
}
.p-recruit-beginning .lead div {
	position: relative;
}
@media screen and (max-width: 768px) {
	.p-recruit-beginning {
		margin: 5rem 0;
	}
	.p-recruit-beginning .kv {
		height: 30rem;
	}
	.p-recruit-beginning .l-container {
		padding: 0;
	}
	.p-recruit-beginning .lead {
		margin-top: 6rem;
		padding-bottom: 7rem;
		text-align: center;
		font-size: 2.7rem;
		line-height: 2.5;
	}
	.p-recruit-beginning .lead::before {
		top: 45%;
		width: 90vw;
		height: 90vw;
	}
	.p-recruit-beginning .lead div {
		position: relative;
	}
}

.p-recruit-wanted {
	padding: 0 0 6rem 0;
}
.p-recruit-wanted .subhead {
	margin: 6rem 0 2rem 0;
	text-align: center;
	font-weight: 500;
	font-size: 2.8rem;
}
.p-recruit-wanted .list {
	margin: 0 auto;
	max-width: 110rem;
}
.p-recruit-wanted .list .block {
	display: flex;
	padding: 4rem 0;
	border-bottom: 2px solid #D9D9D9;
}
.p-recruit-wanted .list .block:last-child {
	border-bottom: 0;
}
.p-recruit-wanted .list .image {
	width: 47.4rem;
	flex-shrink: 0;
}
.p-recruit-wanted .list .image span {
	display: block;
	overflow: hidden;
	border-radius: 1.6rem;
}
.p-recruit-wanted .list .detail {
	flex: 1;
	padding-left: 7rem;
	font-size: 1.8rem;
}
.p-recruit-wanted .list .detail h3 {
	margin: -1rem 0 1.5rem 0;
	font-weight: 700;
	font-size: 3.2rem;
	line-height: 1.7;
}
@media screen and (max-width: 768px) {
	.p-recruit-wanted {
		padding: 0 0 6rem 0;
	}
	.p-recruit-wanted .subhead {
		margin: 5rem 0 2rem 0;
		font-size: 2.7rem;
	}
	.p-recruit-wanted .list {
		max-width: initial;
	}
	.p-recruit-wanted .list .block {
		display: block;
		padding: 4rem 0;
		border-bottom: 2px solid #D9D9D9;
	}
	.p-recruit-wanted .list .image {
		width: 100%;
	}
	.p-recruit-wanted .list .detail {
		padding-left: 0;
		font-size: 2.7rem;
	}
	.p-recruit-wanted .list .detail h3 {
		margin: 3rem 0 1.5rem 0;
		text-align: center;
		font-size: 3.6rem;
		line-height: 1.7;
	}
}

.p-recruit-interview {
	padding: 8rem 0 10rem 0;
	background-color: #f4f4f4;
	background-position: 50% -8rem;
	background-repeat: repeat-y;
	background-image: url(../img/interview-bg.png);
}
.p-recruit-interview .c-heading {
	margin-bottom: 10rem;
}
.p-recruit-interview .nav {
	margin-bottom: 8rem;
}
.p-recruit-interview .nav ul {
	display: flex;
	gap: 8rem;
}
.p-recruit-interview .nav button {
	display: block;
	position: relative;
}
.p-recruit-interview .nav button[aria-expanded="true"] {
	pointer-events: none;
}
.p-recruit-interview .nav i {
	position: absolute;
	bottom: -1.5rem;
	left: 50%;
	margin-left: -1.5rem;
	width: 3rem;
	font-size: 3rem;
	transform: rotate(90deg);
}
.p-recruit-interview .nav button[aria-expanded="true"] i {
	color: #f40000;
}
.p-recruit-interview .nav .wrap {
	overflow: hidden;
	display: flex;
	height: 15rem;
	border: 1px solid #d8d8d8;
	border-radius: 1.2rem;
	background-color: #fff;
}
.p-recruit-interview .nav button[aria-expanded="true"] .wrap {
	border-color: #f40000;
}
.p-recruit-interview .nav .thumb {
	width: 17rem;
	height: 100%;
}
.p-recruit-interview .nav .thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.p-recruit-interview .nav .detail {
	flex: 1;
	padding: 1.5rem 2.2rem 1rem 2.2rem;
}
.p-recruit-interview .nav .detail dl {
	display: flex;
	align-items: flex-end;
	margin-bottom: 1rem;
	line-height: 1.1;
}
.p-recruit-interview .nav .detail dt {
	margin-right: 0.7em;
	font-size: 1.4rem;
}
.p-recruit-interview .nav .detail dd {
	font-weight: 500;
	font-size: 1.9rem;
}
.p-recruit-interview .nav .detail h3 {
	text-align: left;
	font-family: "Noto Serif JP", serif;
	font-weight: 600;
	font-size: 1.8rem;
	line-height: 1.6;
}
.p-recruit-interview .interview {
	margin-bottom: 8rem;
}
.p-recruit-interview .interview .list {
	overflow: hidden;
	padding: 6rem 0 8rem 0;
	border: 1px solid #f40000;
	border-radius: 2rem;
	background-color: rgba(255,255,255,0.8);
}
.p-recruit-interview .interview .list[aria-hidden="true"] {
	display: none;
}
.p-recruit-interview .interview .block {
	display: flex;
	margin-bottom: 9rem;
	padding: 0 5rem;
}
.p-recruit-interview .interview .block:last-child {
	margin-bottom: 0;
}
.p-recruit-interview .interview .image {
	flex-basis: 48.7%;
}
.p-recruit-interview .interview .image span {
	display: block;
	overflow: hidden;
	border-radius: 1.6rem;
}
.p-recruit-interview .interview .detail {
	flex: 1;
}
.p-recruit-interview .interview .block:nth-child(odd) {
	flex-direction: row-reverse;
}
.p-recruit-interview .interview .block:nth-child(odd) .detail {
	padding-left: 6rem;
}
.p-recruit-interview .interview .block:nth-child(even) .detail {
	padding-right: 6rem;
}
.p-recruit-interview .interview .q {
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: 0.4rem solid #b89850;
}
.p-recruit-interview .interview .q div {
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	font-size: 2.5rem;
	line-height: 1.2;
	color: #b89850;
}
.p-recruit-interview .interview .q h3 {
	font-weight: 500;
	font-size: 2.3rem;
	line-height: 1.7;
}
.p-recruit-interview .interview .a div {
	font-weight: 500;
	font-family: "Lexend", sans-serif;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #f40000;
}
.p-recruit-interview .interview .a p {
	font-size: 2rem;
}
@media screen and (max-width: 1440px) {
	.p-recruit-interview {
		background-size: 100% auto;
	}
}
@media screen and (max-width: 1340px) {
	.p-recruit-interview .nav ul {
		gap: 4rem;
	}
}
@media screen and (max-width: 768px) {
	.p-recruit-interview {
		padding: 8rem 0 10rem 0;
	}
	.p-recruit-interview .c-heading {
		margin-bottom: 6rem;
	}
	.p-recruit-interview .nav {
		margin-bottom: 6rem;
	}
	.p-recruit-interview .nav ul {
		flex-direction: column;
		gap: 6rem;
	}
	.p-recruit-interview .nav i {
		bottom: -3rem;
		margin-left: -3rem;
		width: 6rem;
		font-size: 6rem;
	}
	.p-recruit-interview .nav .wrap {
		height: 24rem;
	}
	.p-recruit-interview .nav .thumb {
		width: 20rem;
	}
	.p-recruit-interview .nav .detail {
		padding: 2.4rem 2.4rem 1rem 2.4rem;
	}
	.p-recruit-interview .nav .detail dl {
		margin-bottom: 1.5rem;
	}
	.p-recruit-interview .nav .detail dt {
		margin-right: 0.7em;
		font-size: 2rem;
	}
	.p-recruit-interview .nav .detail dd {
		font-size: 2.7rem;
	}
	.p-recruit-interview .nav .detail h3 {
		font-size: 2.7rem;
		line-height: 1.6;
	}
	.p-recruit-interview .interview .list {
		padding: 5rem 0 6rem 0;
	}
	.p-recruit-interview .interview .block {
		display: block;
		margin-bottom: 9rem;
		padding: 0 4.5rem;
	}
	.p-recruit-interview .interview .detail {
		margin-bottom: 4rem;
	}
	.p-recruit-interview .interview .block:nth-child(odd) .detail {
		padding-left: 0;
	}
	.p-recruit-interview .interview .block:nth-child(even) .detail {
		padding-right: 0;
	}
	.p-recruit-interview .interview .q {
		margin-bottom: 3rem;
		padding-bottom: 2rem;
		border-bottom-width: 0.4rem;
	}
	.p-recruit-interview .interview .q div {
		font-size: 3.6rem;
	}
	.p-recruit-interview .interview .q h3 {
		font-size: 3rem;
		line-height: 1.7;
	}
	.p-recruit-interview .interview .a div {
		margin-bottom: 1rem;
		font-size: 3rem;
	}
	.p-recruit-interview .interview .a p {
		font-size: 2.7rem;
	}
}

.p-recruit-foot {
	display: flex;
	justify-content: center;
}


/* ==================================================

	[ COMPANY ]

*/
.p-company {
	padding-top: 15rem;
}
@media screen and (max-width: 768px) {
	.p-company {
		padding-top: 18rem;
	}
}

.p-company-profile {
	margin: 8rem auto;
	max-width: 90rem;
}
.p-company-profile table {
	margin-top: 8rem;
	width: 100%;
	border-bottom: 1px solid #D9D9D9;
	font-size: 1.6rem;
	line-height: 1.7;
}
.p-company-profile table th,
.p-company-profile table td {
	padding: 3rem 0;
	border-top: 1px solid #D9D9D9;
	text-align: left;
}
.p-company-profile table th {
	width: 27%;
	font-weight: 700;
}
@media screen and (max-width: 768px) {
	.p-company-profile {
		margin: 8rem 0;
		max-width: initial;
	}
	.p-company-profile table {
		margin-top: 5rem;
		font-size: 2.7rem;
	}
	.p-company-profile table th {
		padding-right: 1em;
		width: auto;
		white-space: nowrap;
	}
}

.p-company-access {
	margin: 10rem auto 12rem auto;
	max-width: 90rem;
}
.p-company-access .map {
	margin-top: 8rem;
	height: 28.8rem;
}
.p-company-access .map iframe {
	outline: none;
	width: 100%;
	height: 100%;
}
.p-company-access .info {
	display: flex;
	align-items: center;
	margin-top: 2rem;
	line-height: 1.2;
}
.p-company-access .info dt {
	margin-right: 1rem;
	text-align: center;
	font-size: 1.2rem;
}
.p-company-access .info dt span {
	display: block;
	padding: 0.2rem 0;
	min-width: 6.2rem;
	background-color: #EBEBEB;
}
.p-company-access .info dd {
	font-family: "Lexend", sans-serif;
}
.p-company-access .address {
	margin: 1rem 0 0.5rem 0;
}
@media screen and (max-width: 768px) {
	.p-company-access {
		margin: 10rem 0;
		max-width: initial;
	}
	.p-company-access .map {
		margin-top: 5rem;
		height: 50rem;
	}
	.p-company-access .info {
		margin-top: 4rem;
		font-size: 3rem;
	}
	.p-company-access .info dt {
		margin-right: 1.5rem;
		font-size: 2.2rem;
	}
	.p-company-access .info dt span {
		min-width: 10rem;
	}
	.p-company-access .address {
		margin: 2rem 0 1.5rem 0;
	}
}

/* ==================================================

	[ CONTACT ]

*/
.p-contact {
	padding-top: 15rem;
}
@media screen and (max-width: 768px) {
	.p-contact {
		padding-top: 18rem;
	}
}

.p-contact-head {
	margin: 6rem auto 8rem auto;
	max-width: 90rem;
	text-align: center;
}
.p-contact-head p {
	font-size: 1.8rem;
}
.p-contact-head .call {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 3.5rem;
	margin-top: 4rem;
	height: 11rem;
	background-color: #F5F5F5;
	border-radius: 2rem;
	font-size: 1.6rem;
	line-height: 1.5;
}
.p-contact-head .call .phone {
	position: relative;
	padding-left: 4rem;
	font-family: "Lexend", sans-serif;
	font-size: 4.4rem;
	line-height: 1;
	color: #B89850;
}
.p-contact-head .call .phone::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	margin-top: -1.6rem;
	width: 3.6rem;
	height: 3.6rem;
	background-repeat: no-repeat;
	background-image: url(../img/icon-phone.svg);
	background-size: contain;
}
@media screen and (max-width: 768px) {
	.p-contact-head {
		margin: 4rem 0 5rem 0;
		max-width: initial;
		text-align: center;
	}
	.p-contact-head p {
		font-size: 2.7rem;
	}
	.p-contact-head .call {
		display: block;
		margin-top: 4rem;
		padding: 2rem 0;
		height: auto;
		font-size: 2.6rem;
	}
	.p-contact-head .call br {
		display: none;
	}
	.p-contact-head .call .phone {
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 1rem 0;
		padding-left: 0;
		font-size: 6.6rem;
	}
	.p-contact-head .call .phone::before {
		position: static;
		margin: 0 1rem 0 0;
		width: 5rem;
		height: 5rem;
	}
}

.p-recruit-entry-head {
	margin: 6rem 0;
}
.p-recruit-entry-head .c-heading {
	margin-bottom: 6rem;
}
.p-recruit-entry-head p {
	text-align: center;
	font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
	.p-recruit-entry-head {
		margin: 5rem 0 5rem 0;
	}
	.p-recruit-entry-head .c-heading {
		margin-bottom: 5rem;
	}
	.p-recruit-entry-head p {
		font-size: 2.7rem;
	}
}

/* ==================================================

	[ PRIVACY ]

*/
.p-privacy {
	padding-top: 15rem;
}
@media screen and (max-width: 768px) {
	.p-privacy {
		padding-top: 18rem;
	}
}

.p-privacy-poricy {
	padding: 0 0 8rem 0;
	font-size: 1.6rem;
}
.p-privacy-poricy .c-heading {
	margin-bottom: 6rem;
}
.p-privacy-poricy h2,
.p-privacy-poricy h3,
.p-privacy-poricy h4 {
	margin-top: 3rem;
	font-weight: 700;
}
.p-privacy-poricy h2 {
	text-indent: -0.5em;
}
.p-privacy-poricy .margin {
	margin: 2rem 0;
}
.p-privacy-poricy ul li {
	position: relative;
	padding-left: 1.2em;
}
.p-privacy-poricy ul li i {
	position: absolute;
	top: 0;
	left: 0;
}
.p-privacy-poricy .list-num li {
	padding-left: 2.5em;
}
@media screen and (max-width: 768px) {
	.p-privacy-poricy {
		padding: 0 0 12rem 0;
		font-size: 2.7rem;
	}
}