body {
	background-color: #f7f7f7;
	color: #000;
	font-family: "Noto Serif JP", sans-serif;
}

.u-desktop {
	display: none;
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

/* Set core body defaults */

body {
	line-height: 1.5;
	min-height: 100vh;
	text-rendering: optimizeLegibility;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	display: block;
	max-width: 100%;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

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

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

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

/* ホバー */

a {
	-webkit-text-decoration: none;
	color: inherit;
	text-decoration: none;
	transition: opacity 0.3s;
}

.l-header {
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	z-index: 900;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 37.5rem;
	padding-left: 8px;
	padding-right: 8px;
	width: 100%;
}

.l-interview {
	margin-top: 1.8125rem;
}

.l-recruitment-type {
	margin-top: 2.5rem;
}

.c-bg-wrap {
	position: relative;
}

.c-bg-wrap::before {
	background-image: url(../images/common/bg2.png);
	background-size: cover;
	content: "";
	height: 100%;
	left: 0;
	mix-blend-mode: lighten;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.c-bg-wrap::after {
	background-image: url(../images/common/bg1.png);
	background-size: cover;
	content: "";
	height: 100%;
	left: 0;
	mix-blend-mode: darken;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -2;
}

.fadeIn1s,
.fadeIn1500ms,
.fadeIn500ms,
.fadeIn2s {
	opacity: 0; /* 初期状態で透明 */
	transform: translateY(50px); /* 初期位置を調整 */
}

/* ここから時間差フェードインアニメーション */

/* 1秒間かけてフェードイン */

.fadeIn1s.active {
	animation-delay: 1s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn1s;
}

.p-message__title-wrap.fadeIn1s.active {
	animation-delay: 500ms;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn1s;
}

.p-recruitment-type__item:nth-child(4).fadeIn1s.active {
	animation-delay: 2s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn500ms;
}

/* 1.5秒間かけてフェードイン */

.fadeIn1500ms.active {
	animation-delay: 1500ms;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn1500ms;
}

/* 0.5秒間かけてフェードイン */

.fadeIn500ms.active {
	animation-delay: 500ms;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn500ms;
}

.p-message__img-wrap.fadeIn500ms.active {
	animation-delay: 1s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn500ms;
}

.p-recruitment-type__item:nth-child(3).fadeIn500ms.active {
	animation-delay: 1500ms;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn500ms;
}

/* 2秒間かけてフェードイン */

.fadeIn2s.active {
	animation-delay: 2s;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: fadeIn2s;
}

.c-button {
	background-color: #fff;
	background-color: #fff;
	display: inline-block;
	font-size: 1rem;
	font-weight: 400;
	max-width: 17.8125rem;
	padding: 1.0625rem 1.5rem;
	position: relative;
	width: 100%;
}

.c-button.c-button--small {
	border: 1px solid #000;
	font-size: 0.875rem;
	line-height: 1;
	max-width: 15rem;
	text-align: center;
}

.c-button.c-button--big {
	background-color: transparent;
	border: 1px solid #000;
	font-size: 1rem;
	max-width: 20.375rem;
	padding: 0.1875rem 1.5rem;
	text-align: center;
}

.c-button::before {
	background: #efeeed;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.25s ease, transform-origin 0.25s ease;
	transition-property: transform;
	width: 100%;
}

.c-button:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.c-button__text {
	position: relative;
}

.c-button__line {
	align-items: center;
	display: flex;
	height: 0.5rem;
	overflow-x: hidden;
	position: absolute;
	right: -1.4375rem;
	top: 50%;
	transform: translateY(-50%);
	width: 2.8125rem;
}

.c-button.c-button--small .c-button__line {
	height: 0.6875rem;
	right: -1.5rem;
	width: 3rem;
}

.c-button.c-button--big .c-button__line {
	height: 0.625rem;
	right: -1.125rem;
	width: 2.1875rem;
}

.c-button__line::before,
.c-button__line::after {
	animation-duration: 0.6s;
	animation-fill-mode: forwards;
	content: "";
	position: absolute;
}

.c-button__line::before {
	background-color: #000;
	height: 0.0625rem;
	width: 100%;
}

.c-button__line::after {
	background-image: url(../images/common/button-arrow2.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	height: 0.5rem;
	transform: translateX(-100%);
	width: 2.8125rem;
}

.c-button.c-button--small .c-button__line::after {
	height: 0.6875rem;
	width: 3rem;
}

.c-button.c-button--big .c-button__line::after {
	height: 0.625rem;
	width: 2.1875rem;
}

.c-heading {
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 1.25rem;
	position: relative;
	text-align: center;
	width: -moz-fit-content;
	width: fit-content;
}

.c-heading::before {
	background-color: #D3E5E2;
	bottom: 0;
	content: "";
	height: 0.625rem;
	left: 0;
	position: absolute;
	width: 100%;
}

.c-heading span {
	font-size: 1rem;
	letter-spacing: 0.3em;
}

.p-footer {
	background-color: #D3E5E2;
	padding: 2.0625rem 0;
	text-align: center;
}

.p-footer__copy {
	font-size: 0.625rem;
	font-weight: 400;
	letter-spacing: 0.1em;
}

.p-gallery {
	padding: 2rem 0 2.5rem;
}

.p-gallery__heading {
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	text-align: center;
}

.p-gallery__heading span {
	display: inline-block;
	font-size: 0.875rem;
	letter-spacing: 0.3em;
	margin-top: 1rem;
}

.p-gallery__items {
	grid-row-gap: 1rem;
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 1.5rem;
	row-gap: 1rem;
}

.p-gallery__item-four {
	grid-gap: 0.75rem;
	display: grid;
	gap: 0.75rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-gallery__item-img img {
	aspect-ratio: 1;
	height: 100%;
	width: 100%;
}

.p-gallery__button {
	margin-top: 2.125rem;
	padding-right: 1.0625rem;
	text-align: center;
}

.p-header {
	background-color: transparent;
	background-color: #f7f7f7;
	transition: background-color 0.3s, padding 0.3s;
}

.p-header__inner {
	display: flex;
	height: inherit;
	justify-content: space-between;
	padding-left: 0.5rem;
}

.p-header__logo {
	display: flex;
	height: inherit;
	max-width: 6.25rem;
	width: 100%;
}

.p-header__logo a {
	align-items: center;
	display: flex;
	height: inherit;
}

.p-header__logo img {
	-o-object-fit: contain;
	aspect-ratio: 187/43;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-header__nav {
	display: none;
	height: inherit;
}

.p-header__nav-list {
	display: flex;
	height: inherit;
}

.p-header__nav-item {
	display: flex;
	height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
	align-items: center;
	display: flex;
	margin-left: 0.3125rem;
}

.p-header__nav-item a {
	align-items: center;
	display: flex;
	font-size: 0.875rem;
	font-weight: 500;
	height: inherit;
	line-height: 1;
	padding: 0 0.3125rem;
	text-transform: uppercase;
}

.p-header__nav-item a::before {
	background-image: url(../images/common/arrow-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 0.8125rem;
	margin-right: 0.25rem;
	width: 0.8125rem;
}

.p-header__nav-item a span {
	padding-bottom: 0.75rem;
	padding-top: 0.75rem;
	position: relative;
}

.p-header__nav-item a span::after {
	background: #D3E5E2;
	bottom: 0;
	content: "";
	height: 0.25rem;
	left: 0;
	margin: auto;
	position: absolute;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 0.3s;
	width: 100%;
}

.p-header__nav-item a:hover span::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.p-header__nav-item.p-header__nav-item--contact a {
	background-color: #D3E5E2;
	border: 2px solid transparent;
	height: inherit;
	overflow: hidden;
	padding: 0 0.9375rem;
	position: relative;
	z-index: 1;
}

.p-header__nav-item.p-header__nav-item--contact a::before {
	background-image: url(./../images/common/mail-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 1rem;
	margin-right: 0.25rem;
	width: 1rem;
}

.p-header__nav-item.p-header__nav-item--contact a::after {
	background-color: #fff;
	bottom: 0;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	right: 0;
	top: 0;
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 0.6s ease;
	z-index: -1;
}

.p-header__nav-item.p-header__nav-item--contact a:hover {
	border: 2px solid #D3E5E2;
}

.p-header__nav-item.p-header__nav-item--contact a:hover::after {
	transform: scaleX(1);
	transform-origin: left;
}

.p-header__button-wrap {
	display: flex;
	max-width: 5.125rem;
	width: 100%;
}

.p-header__hamburger {
	border: none;
	cursor: pointer;
	height: inherit;
	margin: 0;
	max-width: 2.625rem;
	outline: none;
	padding: 0;
	position: relative;
	transition: 0.3s;
	width: 100%;
	z-index: 999;
}

.p-header__hamburger.is-open {
	background-color: #D3E5E2;
	margin-right: 1px;
	max-width: 2.5625rem;
}

.p-header__hamburger span {
	background-color: #000;
	display: block;
	height: 2px;
	left: 50%;
	position: relative;
	transform: translateX(-50%);
	transition: 0.5s;
	width: 1rem;
}

.p-header__hamburger span:nth-of-type(1) {
	top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
	top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
	top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
	top: 0.125rem;
	transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
	opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
	top: -0.125rem;
	transform: translateX(-50%) rotate(-45deg);
}

.p-header__mail {
	background-color: #D3E5E2;
	height: inherit;
	max-width: 2.5rem;
	padding: 0.5rem;
	position: relative;
	width: 100%;
	z-index: 999;
}

.p-header__drawer {
	background-color: rgba(211, 229, 226, 0.95);
	bottom: 0;
	display: none;
	height: 100vh;
	left: 0;
	overflow-y: scroll;
	padding: 2.25rem 0;
	position: absolute;
	right: 0;
	scrollbar-width: none;
	top: 2.5rem;
	width: 100%;
	z-index: 900;
}

.p-header__drawer::-webkit-scrollbar {
	display: none;
}

.p-header__drawer-item a {
	display: block;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1;
	padding: 1.0625rem 0;
	text-align: center;
	text-transform: uppercase;
}

.p-header__drawer-item.p-header__drawer-item--contact a::after {
	background-image: url(./../images/common/contact-icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: inline-block;
	height: 0.9375rem;
	margin-bottom: 0.3125rem;
	margin-left: 1.25rem;
	width: 0.9375rem;
}

.p-header__copy {
	display: block;
	font-size: 0.625rem;
	font-weight: 400;
	margin-top: 0.75rem;
	text-align: center;
}

.p-interview__items {
	margin-top: 2.5rem;
}

.p-interview__item + .p-interview__item {
	margin-top: 2.5rem;
}

.p-interview__item {
	background-color: #fff;
	border-radius: 2rem;
	padding: 1rem 1rem 1.8125rem;
}

.p-interview__item:nth-child(even) {
	flex-direction: row-reverse;
}

.p-interview__item-img img {
	-o-object-fit: cover;
	aspect-ratio: 312/439;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-interview__text-wrap {
	margin-top: 2.25rem;
}

.p-interview__occupation {
	font-size: 1.75rem;
	font-weight: 400;
	letter-spacing: 0.2em;
}

.p-interview__initial {
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	margin-top: 1.0625rem;
}

.p-interview__initial span {
	font-size: 1rem;
	letter-spacing: 0.3em;
}

.p-interview__year {
	font-size: 0.875rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	margin-top: 0.375rem;
}

.p-interview__text-list {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	margin-top: 1.875rem;
	text-align: justify;
}

.p-interview__text + .p-interview__text {
	margin-top: 1.875rem;
}

.p-message__title-wrap {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.5em;
	line-height: 1;
}

.p-message__title-text {
	padding: 0.3125rem 0;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.p-message__title-text::before {
	background-color: #fff;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 97%;
	z-index: -1;
}

.p-message__title-text.p-message__title-text--bg-narrow::before {
	width: 90%;
}

.p-message__img {
	margin-top: 0.9375rem;
}

.p-message__img img {
	-o-object-fit: cover;
	aspect-ratio: 344/423;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-message__img-text {
	font-family: "Zen Old Mincho", sans-serif;
	margin-top: 0.875rem;
	text-align: center;
}

.p-message__position {
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.3em;
}

.p-message__name {
	font-size: 1.25rem;
	font-weight: 500;
	letter-spacing: 0.3em;
}

.p-message__text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	margin-top: 1.25rem;
	padding: 0 0.5rem;
	text-align: justify;
}

.p-message__contact-wrap {
	margin-top: 2.1875rem;
}

.p-mv {
	overflow: hidden;
}

.p-mv__img {
	position: relative;
}

.p-mv__img::before {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #F8F8F8 100%);
	bottom: -0.0625rem;
	content: "";
	height: 4.4375rem;
	left: 0;
	position: absolute;
	width: 100%;
	z-index: 2;
}

.p-mv__img::after {
	animation-delay: 2s;
	animation-duration: 4s;
	animation-iteration-count: infinite;
	animation-name: shine-anime;
	background-image: url(../images/common/shine-sp-img.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -3rem;
	content: "";
	height: 8.8125rem;
	left: 0;
	mix-blend-mode: luminosity;
	opacity: 0;
	position: absolute;
	width: 100%;
	z-index: 3;
}

.p-mv__text-wrap {
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	animation-name: text-anime;
	opacity: 0;
	padding: 6.375rem 1.25rem 11.25rem;
	position: relative;
}

.p-mv__text-wrap::before {
	background-image: url(../images/common/mv-text-bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 28.0625rem;
	left: 50%;
	position: absolute;
	top: -3.0625rem;
	transform: translateX(-50%);
	width: 27.875rem;
	z-index: -1;
}

.p-mv__text-wrap::after {
	animation-delay: 0.5s;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	animation-name: icon-anime;
	background-image: url(../images/common/mv-text-icon.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 1.5625rem;
	content: "";
	height: 9.1875rem;
	left: 50%;
	opacity: 0;
	position: absolute;
	transform: translateX(-50%);
	width: 21.4375rem;
	z-index: -1;
}

.p-mv__title {
	font-size: 1.875rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	line-height: 1.8;
	text-align: center;
}

.p-mv__title-border {
	background-color: #fff;
	border: 1px solid #F1B4C5;
	padding: 0 0.375rem;
}

.p-mv__title-pink {
	color: #F1B4C5;
}

.p-mv__title-blue {
	color: #51ABE3;
}

.p-mv__text {
	font-size: 1.25rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	line-height: 1.6;
	margin-top: 4.9375rem;
	padding-left: 0.625rem;
	text-align: center;
}

.p-recruitment-type {
	padding-bottom: 3.125rem;
}

.p-recruitment-type__items {
	grid-row-gap: 1rem;
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 2.5rem;
	row-gap: 1rem;
}

.p-recruitment-type__item {
	background-color: #fff;
	border-radius: 2rem;
	display: flex;
	flex-direction: column;
	padding: 1.5rem 1.25rem 2.3125rem;
	text-align: center;
}

.p-recruitment-type__img {
	margin-left: auto;
	margin-right: auto;
}

.p-recruitment-type__item:first-child .p-recruitment-type__img {
	width: 3.75rem;
}

.p-recruitment-type__item:nth-child(2) .p-recruitment-type__img {
	width: 3.375rem;
}

.p-recruitment-type__item:nth-child(3) .p-recruitment-type__img {
	width: 3.5rem;
}

.p-recruitment-type__item:nth-child(4) .p-recruitment-type__img {
	width: 3.4375rem;
}

.p-recruitment-type__occupation {
	font-size: 1.125rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	margin-top: 0.5rem;
}

.p-recruitment-type__title {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.3em;
	margin-top: 1.6875rem;
	padding-bottom: 0.5rem;
	position: relative;
}

.p-recruitment-type__title::before {
	background-color: #000;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 1.5rem;
}

.p-recruitment-type__text {
	flex-grow: 1;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	margin-top: 0.8125rem;
	min-height: 2.875rem;
}

.p-recruitment-type__button {
	margin-top: 1.75rem;
	text-align: center;
}

.p-recruitment-type__contact-wrap {
	margin-top: 2.5rem;
}

.p-support {
	padding: 1.25rem 0 3.5rem;
}

.p-support__content {
	background-color: #fff;
	border-radius: 2rem;
	margin-top: 2.0625rem;
	padding: 2rem 1rem 3.4375rem;
}

.p-support__item + .p-support__item {
	margin-top: 1.875rem;
}

.p-support__title {
	color: #2E9987;
	font-size: 1.5rem;
	font-weight: 400;
	letter-spacing: 0.3em;
}

.p-support__text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	margin-top: 1.5rem;
	text-align: justify;
}

.p-support__img {
	margin-top: 0.625rem;
}

.p-support__img img {
	-o-object-fit: contain;
	aspect-ratio: 385/289;
	height: 100%;
	object-fit: contain;
	width: 100%;
}

.p-support__item:nth-child(2) .p-support__img {
	margin-left: auto;
	margin-right: auto;
	max-width: 15.0625rem;
}

.p-support__item:nth-child(2) .p-support__img img {
	aspect-ratio: 241/241;
}

.p-support__item:nth-child(3) .p-support__img {
	margin-left: auto;
	margin-right: auto;
	max-width: 15.125rem;
	padding-right: 2.375rem;
}

.p-support__item:nth-child(3) .p-support__img img {
	aspect-ratio: 204/281;
}

.p-text-button-wrap {
	background-color: #D3E5E2;
	padding: 0.9375rem 1.125rem 1.4375rem;
}

.p-text-button-wrap__text {
	font-size: 1rem;
	font-weight: 400;
	letter-spacing: 0.2em;
	line-height: 1.5;
}

.p-text-button-wrap__button {
	margin-top: 0.6875rem;
	padding-right: 1.4375rem;
	text-align: center;
}

.p-text-button-wrap__button .c-button {
	text-align: left;
}

@media screen and (min-width: 768px) {

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

html {
	font-size: 1.5625vw;
}

.l-inner {
	max-width: 1074px;
	padding-left: 25px;
	padding-right: 25px;
}

.l-interview {
	margin-top: 4.5625rem;
}

.l-recruitment-type {
	margin-top: 8.75rem;
}

.p-message__title-wrap.fadeIn1s.active {
	animation-delay: 1s;
}

.p-recruitment-type__item:nth-child(4).fadeIn1s.active {
	animation-delay: 500ms;
}

.p-message__img-wrap.fadeIn500ms.active {
	animation-delay: 500ms;
}

.p-recruitment-type__item:nth-child(3).fadeIn500ms.active {
	animation-delay: 500ms;
}

.c-button {
	font-size: 0.875rem;
	max-width: 14.1875rem;
}

.c-button.c-button--big {
	max-width: 27.375rem;
	padding: 1.0625rem 1.5rem;
}

.c-button__line {
	height: 0.6875rem;
	width: 3rem;
}

.c-button.c-button--big .c-button__line {
	height: 0.6875rem;
	right: -1.5rem;
	width: 3rem;
}

.c-button__line::after {
	background-size: contain;
	height: 0.6875rem;
	width: 3.0625rem;
}

.c-button.c-button--big .c-button__line::after {
	background-size: contain;
	height: 0.6875rem;
	width: 3rem;
}

.c-button:hover .c-button__line::before {
	animation-delay: 0s;
	animation-name: transformRightLeft; /* 修正: hover時のアニメーションを指定 */
}

.c-button:hover .c-button__line::after {
	animation-delay: 0.2s;
	animation-name: transformLeftRight; /* 修正: hover時のアニメーションを指定 */
}

.p-footer__copy {
	letter-spacing: 0.3em;
}

.p-gallery {
	padding: 5.25rem 0 5rem;
}

.p-gallery__items {
	gap: 1.25rem;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 2.9375rem;
}

.p-gallery__item:nth-child(3) {
	order: 4;
}

.p-gallery__item:nth-child(4) {
	order: 3;
}

.p-gallery__item:nth-child(5) {
	order: 5;
}

.p-gallery__item:nth-child(6) {
	order: 6;
}

.p-gallery__item:nth-child(7) {
	order: 8;
}

.p-gallery__item:nth-child(8) {
	order: 7;
}

.p-gallery__item-four {
	gap: 1.125rem;
}

.p-gallery__button {
	margin-top: 5.875rem;
	padding-right: 0;
	text-align: center;
}

.p-header {
	background-color: transparent;
	padding: 1.25rem 0;
}

.p-header.transform {
	background-color: #fff;
	padding: 0.625rem 0;
}

.p-header__inner {
	padding: 0 1.25rem;
}

.p-header__logo {
	max-width: 11.6875rem;
}

.p-header__nav {
	display: flex;
}

.p-header__nav-item.p-header__nav-item--contact a {
	padding: 1.125rem 0.9375rem;
}

.p-header__button-wrap {
	display: none;
}

.p-interview__item + .p-interview__item {
	margin-top: 5rem;
}

.p-interview__item {
	-moz-column-gap: 3.8125rem;
	align-items: flex-start;
	column-gap: 3.8125rem;
	display: flex;
	justify-content: space-between;
	padding: 5.9375rem 3.25rem 3.5rem;
}

.p-interview__item-img {
	margin-left: calc(50% - 50vw + 3.8125rem);
	max-width: 42.4375vw;
	width: 100%;
}

.p-interview__item:nth-child(even) .p-interview__item-img {
	margin-right: calc(50% - 50vw + 3.8125rem);
}

.p-interview__text-wrap {
	margin-top: 0;
	max-width: 28.625rem;
	width: 100%;
}

.p-interview__occupation {
	font-size: 2rem;
	line-height: 1;
}

.p-interview__initial {
	margin-top: 1rem;
}

.p-interview__text-list {
	line-height: 2.5;
}

.p-message__flex {
	padding: 7.625rem 0 10.1875rem;
	position: relative;
}

.p-message__title-wrap {
	position: relative;
	z-index: 2;
}

.p-message__title-wrap {
	font-size: 2.5rem;
}

.p-message__img-wrap {
	max-width: 28.6875rem;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
}

.p-message__img {
	margin-top: 0;
}

.p-message__text {
	line-height: 2.5;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2.5rem;
	max-width: 43.125rem;
	padding: 0;
	width: 100%;
}

.p-message__contact-wrap {
	margin-top: 5rem;
}

.p-mv {
	overflow: visible;
}

.p-mv__inner {
	padding: 15.9375vw 0 25.6875vw;
	position: relative;
}

.p-mv__img {
	left: 0;
	position: absolute;
	top: 0;
}

.p-mv__img::after {
	background-image: url(../images/common/shine-img.svg);
	bottom: -16.8125rem;
	height: 33.125vw;
	left: 51.7%;
	transform: translateX(-50%);
	width: 90.875vw;
	z-index: 3;
}

.p-mv__text-wrap {
	padding: 0;
}

.p-mv__text-wrap::before {
	height: 49.375vw;
	left: 51%;
	top: -15vw;
	width: 49vw;
	z-index: 0;
}

.p-mv__text-wrap::after {
	bottom: -16.8125vw;
	height: 17.8125vw;
	left: 50.5%;
	width: 41.6875vw;
	z-index: 3;
}

.p-mv__title {
	font-size: 2.375vw;
	line-height: 1.6842105263;
	padding-left: 1.25rem;
	position: relative;
}

.p-mv__text {
	font-size: 1.25vw;
	margin-top: 1.25rem;
	position: relative;
}

.p-recruitment-type {
	padding-bottom: 8.875rem;
}

.p-recruitment-type__items {
	gap: 1.5rem;
	grid-template-columns: repeat(2, 1fr);
}

.p-recruitment-type__item {
	padding: 2.75rem 1.25rem 4.5rem;
}

.p-recruitment-type__occupation {
	margin-top: 0.75rem;
}

.p-recruitment-type__contact-wrap {
	margin-top: 5rem;
}

.p-support {
	padding: 2rem 0 5rem;
	position: relative;
	z-index: 4;
}

.p-support__content {
	margin-top: 2.5rem;
	padding: 3.75rem 3.125rem 5.25rem;
}

.p-support__item:first-child + .p-support__item:nth-child(2) {
	margin-top: 2.5rem;
}

.p-support__item:nth-child(2) + .p-support__item:nth-child(3) {
	margin-top: 0.75rem;
}

.p-support__item {
	align-items: center;
	display: flex;
}

.p-support__item:nth-child(even) {
	flex-direction: row-reverse;
}

.p-support__item:first-child {
	justify-content: space-between;
	padding-right: 2.125rem;
}

.p-support__item:nth-child(2) {
	justify-content: space-between;
	padding-left: 4.1875rem;
}

.p-support__item:nth-child(3) {
	justify-content: space-between;
	padding-right: 5.875rem;
}

.p-support__item:first-child .p-support__text-wrap {
	max-width: 25.4375rem;
	width: 100%;
}

.p-support__item:nth-child(2) .p-support__text-wrap {
	max-width: 28.75rem;
	width: 100%;
}

.p-support__item:nth-child(3) .p-support__text-wrap {
	max-width: 28.75rem;
	width: 100%;
}

.p-support__item:first-child .p-support__img {
	max-width: 24.25rem;
	width: 100%;
}

.p-support__item:nth-child(2) .p-support__img {
	margin-left: 0;
	margin-right: 0;
	max-width: 18.3125rem;
	width: 100%;
}

.p-support__item:nth-child(3) .p-support__img {
	margin-left: 0;
	margin-right: 0;
	max-width: 15.25rem;
	padding-right: 0;
	width: 100%;
}

.p-text-button-wrap {
	-moz-column-gap: 0.625rem;
	column-gap: 0.625rem;
	display: flex;
	justify-content: space-between;
	padding: 3.3125rem 1.3125rem 3.25rem 3.125rem;
}

.p-text-button-wrap__text {
	font-size: 1.125rem;
	line-height: 1.7777777778;
	width: calc(100% - 15.6875rem);
}

.p-text-button-wrap__button {
	margin-top: 0;
	text-align: left;
	width: 15.6875rem;
}

}

@media (min-width: 1024px) {

html {
	font-size: 16px;
}

}

@media screen and (min-width: 1220px) {

.p-header {
	padding: 2.5rem 0;
}

.p-header__inner {
	padding: 0 2.5rem;
}

.p-header__nav-item.p-header__nav-item--contact {
	margin-left: 0.125rem;
}

.p-header__nav-item a {
	font-size: 1rem;
	padding: 0 0.75rem;
}

.p-header__nav-item.p-header__nav-item--contact a {
	padding: 1.125rem 1.4375rem;
}

}

@media (max-width: 360px) {

html {
	font-size: 4.4444444444vw;
}

}

@keyframes fadeIn1s {

100% {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes fadeIn1500ms {

100% {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes fadeIn500ms {

100% {
	opacity: 1;
	transform: translateX(0);
}

}

@keyframes fadeIn2s {

100% {
	opacity: 1;
	transform: translateX(0);
}

}

@keyframes transformLeftRight {

0% {
	transform: translateX(-100%);
}

100% {
	transform: translateX(0);
}

}

@keyframes transformRightLeft {

0% {
	transform: translateX(0);
}

100% {
	transform: translateX(100%);
}

}

@keyframes text-anime {

0% {
	opacity: 0;
	transform: translateY(30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}

}

@keyframes icon-anime {

0% {
	opacity: 0;
	transform: translate(-50%, 30px);
}

100% {
	opacity: 1;
	transform: translate(-50%, 0);
}

}

@keyframes shine-anime {

0% {
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
}

}


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