@charset "UTF-8";

/* CSS Document */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	word-break: normal;
	word-wrap: break-word;
	text-wrap: wrap;
	overflow-wrap: anywhere;
}

html {
	overflow-x: hidden;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	background-color: #F5F5F5;
	color: #231815;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font-size: 16px;
}

img {
	max-width: 100%;
}

ul li {
	list-style: none;
}

h1,
h2,
h3 {
	font-weight: 700;
}

a:visited,
a:link,
a:hover,
a:active,
a:focus {
	text-decoration: none;
	outline: none;
}

a:hover {
	opacity: 0.8;
	transition: opacity 0.5s ease;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
caption,
figcaption,
p {
	text-wrap: wrap !important;
	overflow-wrap: anywhere;
}

.u-line-break {
	display: inline-block;
}

.layout-container {
	max-width: 1280px;
	width: 90%;
	margin-inline: auto;
	padding: 0px;
}

.u-text-en {
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	font-weight: 400;
	font-style: normal;
}

/* ------------- ボタン ------------ */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 5px 84px 5px 40px;
	font-size: 17px;
	letter-spacing: 0.02em;
	transition: opacity 0.25s ease;
	position: relative;
	font-weight: 500;
	white-space: nowrap;
	font-family: "Yu Gothic", "Noto Sans JP", sans-serif;
}

.btn:hover {
	opacity: 0.9;
}

.btn--white {
	border: 1px solid #fff;
	color: #fff;
}

.btn--black {
	border: 1px solid #231815;
}

.btn::after {
	content: "";
	position: absolute;
	right: 40px;
	top: 50%;
	width: 8px;
	height: 8px;
	transform: translateY(-50%) rotate(45deg);
}

.btn--white::after {
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
}

.btn--black::after {
	border-top: 1px solid #231815;
	border-right: 1px solid #231815;
}

/* ---------------------------------
menu 
--------------------------------- */

body.menu-open {
	overflow: hidden;
}

body.menu-open .header__menu-toggle {
	opacity: 1;
	visibility: visible;
}

/* ---------------------------------
header
--------------------------------- */
#header {
	position: fixed;
	z-index: 101;
	top: 0;
	left: 0;
	width: 100%;
	background: transparent;
}

#header .header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 40px 0;
	min-height: 64px;
	background-color: rgba(217, 217, 217, 0.6);
}

/* トップページのみ背景色無し */
.home #header .header__inner {
	background-color: transparent;
}

#header .header__left {
	display: flex;
	align-items: center;
	line-height: 1;
	gap: 48px;
	flex: 1;
}

#header .header__entry-button {
	width: 196px;
	height: 36px;
	border-radius: 18px;
	border: 1px solid white;
	letter-spacing: 0.03em;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	letter-spacing: 30%;
}

#header.lower-page .header__entry-button {
	border-color: #231815;
	color: #231815;
}

#header.lower-page .header__entry-button:first-of-type {
	margin-right: 24px;
}

/* ハンバーガーメニュー */
#header .header__menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 24px;
	height: 24px;
	padding: 0;
	border: none;
	background: transparent;
	cursor: pointer;
	z-index: 1002;
	margin-left: 36px;
}

#header .nav-toggle__bar {
	position: absolute;
	left: 0%;
	margin-left: 0;
	width: 24px;
	height: 2px;
	background: #fff;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

#header .nav-toggle__bar:nth-of-type(1) {
	top: 3px;
}

#header .nav-toggle__bar:nth-of-type(2) {
	top: 11px;
}

#header .nav-toggle__bar:nth-of-type(3) {
	top: 19px;
}

/* トップページと新卒ページ以外ハンバーガーメニューカラー */
#header.lower-page .nav-toggle__bar {
	background: #231815;
}

/* ×ボタン */
#header .header__menu-toggle.active .nav-toggle__bar {
	background: #fff;
}

#header .header__menu-toggle.active .nav-toggle__bar:nth-of-type(1) {
	background: white;
	top: 10px;
	transform: translateY(-50%) rotate(-45deg);
}

#header .header__menu-toggle.active .nav-toggle__bar:nth-of-type(2) {
	opacity: 0;
}

#header .header__menu-toggle.active .nav-toggle__bar:nth-of-type(3) {
	top: 10px;
	background: white;
	transform: translateY(-50%) rotate(45deg);
}

/* ナビ */
#header .header__drawer {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 480px;
	height: 100vh;
	background: #000;
	z-index: 100;
	transform: translateX(100%);
	transition: transform 0.4s ease;
	pointer-events: none;
	overflow-y: auto;
}

#header .header__drawer.active {
	transform: translateX(0);
	pointer-events: auto;
}

#header .header__drawer .header__drawer-nav {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	padding: 120px 48px 60px;
}

#header .header__drawer-list {
	list-style: none;
	letter-spacing: 0.02em;
	width: 100%;
}

#header .header__drawer-item {
	margin-bottom: 24px;
	padding: 10px;
	padding-right: 16px;
}

#header .header__drawer-item:last-child {
	border: 1px solid white;
}

#header .header__drawer-link {
	display: block;
	color: #fff;
	position: relative;
	font-size: 16px;
	text-decoration: none;
	padding: 0 0;
	transition: opacity 0.25s ease;
}

#header .header__drawer-link:hover {
	opacity: 0.85;
}

#header .header__drawer-link::after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}




/* ---------------------------------
共通heroエリア
--------------------------------- */
.hero--common {
	background: url("./../images/common_bg.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	padding-bottom: 38px;
}

/* パンくず */

.breadcrumb {
	padding-top: 81px;
	font-size: 12px;
	text-align: right;
	line-height: 1.73;
}

.breadcrumb a {
	text-decoration: none;
}

.breadcrumb a:hover {
	opacity: 0.85;
}

/* タイトル */
.hero--common .hero__title {
	font-size: 36px;
	font-weight: 500;
	line-height: 1.73;
}

/* -----------------------------------------------------
トップページ
----------------------------------------------------- */
.layout-container--for-front {
	max-width: 1330px;
	width: 90%;
	margin-inline: auto;
}

/* ------------------FV------------------ */
.front-hero {
	position: relative;
}

.front-hero .front-hero__video-Wrapper {
	position: absolute;
	width: 100%;
	height: 100%;
}

.front-hero__video {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* -------------背景ホバーギミック------------- */
.bg-switch {
	position: relative;
}

.bg-switch__image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: opacity 0.5s ease;
	z-index: -10;
	background-repeat: no-repeat;
}

.bg-switch__image--hover {
	opacity: 0;
}

.bg-switch__image--normal {
	opacity: 1;
}

.bg-switch:hover .bg-switch__image--hover {
	opacity: 1;
}

/* --------フロントページ共通ボタン--------- */

.front-service__link .btn {
	padding: 4px 82px 4px 38px;
}

/* ------------------SERVICE------------------ */

.front-service {}

/* serviceタイトル */
.front-service__header {}

.front-service__title {
	font-size: 45px;
	color: white;
	font-weight: normal;
	text-align: center;
	margin-top: 60px;
	line-height: 1.43;
}

/* ----------ワケガイ・実家じまい共通----------*/
.front-service__grid {
	display: flex;
	position: absolute;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
	max-width: 1330px;
	width: 100%;
}

.front-service__logo {
	flex: 0 1 50%;
	text-align: center;
	padding: 55px;
}

.front-service__body {
	flex: 0 1 50%;
	padding: 55px;

}

.front-service__heading {
	font-size: 23px;
	line-height: 1.43;
	background-color: #fff;
	padding: 5px 23px;
	font-weight: 400;
	display: inline-block;
}

.front-service__summmary {
	font-size: 18px;
	line-height: 2.1;
	font-weight: 400;
	margin-top: 40px;
	color: #fff;
}

.front-service__link {
	margin-top: 30px;
	text-align: right;
}

@media (min-width: 767px) and (max-width: 890px) {

	.front-service__body,
	.front-service__logo {
		padding: 20px;
	}
}

/*---------- ワケガイ ----------*/
.front-service--wakegai .bg-switch__image--normal {
	background-image: url("./../images/top_service_bg.jpg");
}

.front-service--wakegai .bg-switch__image--hover {
	background-image: url("/wp/wp-content/uploads/2026/03/top_service_bg_hover.jpg");
}

.front-service--wakegai .front-service__logo img {
	width: 330px;
}

/* ----------実家じまい---------- */
.front-service--jikkajimai .bg-switch__image--normal {
	background-image: url("/wp/wp-content/uploads/2026/04/top_service02_bg-scaled.png");
}

.front-service--jikkajimai .bg-switch__image--hover {
	background-image: url("/wp/wp-content/uploads/2026/04/top_service02_bg_hover-scaled.jpeg");
}

.front-service--jikkajimai .front-service__logo img {
	width: 402px;
}



/* ----------URI・KAI／URI・KAI for INVESTOR---------- */
.front-service .front-service__2column {
	display: flex;
	width: 100%;
	height: 100dvh;
}

.front-service .front-service__item {
	flex: 0 1 50%;
	padding-inline: 55px;
	display: flex;
	flex-direction: column;
}

/* 背景画像 */
.front-service .bg-switch__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #1a1a1a;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* urikai背景 */
.front-service .front-service__item--urikai .bg-switch__image--normal {
	background: url("./../images/c2c_bg.jpg");
}

.front-service .front-service__item--urikai .bg-switch__image--hover {
	background: url("/wp/wp-content/uploads/2026/03/c2c_bg_hover.jpg");
}

/* investor背景 */
.front-service .front-service__item--investor .bg-switch__image--normal {
	background: url("./../images/investor_bg.jpg");
}

.front-service .front-service__item--investor .bg-switch__image--hover {
	background: url("/wp/wp-content/uploads/2026/03/investor_bg_hover.jpg");
}

/* ロゴ */
.front-service .front-service__2column-logo {
	height: 52%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.front-service .front-service__item--urikai .front-service__2column-logo-img {
	max-width: 521px;
	width: 100%;
}

.front-service .front-service__item--investor .front-service__2column-logo-img {
	max-width: 592px;
	width: 100%;
}

.front-service__info {
	max-width: 610px;
	margin-inline: auto;
}

@media (min-width: 767px) and (max-width: 1100px) {
	.front-service .front-service__item {
		padding-inline: 20px;
	}
}

/* ------------------PARTNERSHIP------------------ */

.front-partner {
	height: 100vh;
	position: relative;
}

@media screen and (min-width: 1024px) {
	.front-partner {
		height: 100vh;
		width: 100vw;
		overflow-x: hidden;
	}
}

.front-partner .front-partner__title {
	position: absolute;
	width: 100%;
	z-index: 2;
	top: 60px;
	text-align: center;
	font-size: 45px;
	color: #fff;
	font-weight: 100;
	letter-spacing: 0.02em;
}

.front-partner .front-partner__2column {
	display: flex;
	height: 100vh;
	width: 100vw;
	overflow: hidden;
	align-items: stretch;
}

.front-partner .front-partner__item {
	flex: 0 1 50%;
	align-items: center;
	padding: 60px 24px;
	min-height: 400px;
	color: #fff;
	text-decoration: none;
	transition: opacity 0.25s ease;
	text-align: center;
	display: flex;
	justify-content: center;
}

.front-partner .front-partner__item--jichitai .bg-switch__image--normal {
	background-image: url("./../images/partnership1_bg.jpg");
}

.front-partner .front-partner__item--jichitai .bg-switch__image--hover {
	background-image: url("/wp/wp-content/uploads/2026/03/partnership1_bg_hover.jpg");
}

.front-partner .front-partner__item--team .bg-switch__image--normal {
	background-image: url("./../images/partnership2_bg.jpg");
}

.front-partner .front-partner__item--team .bg-switch__image--hover {
	background-image: url("/wp/wp-content/uploads/2026/03/partnership2_bg_hover.png");
}

.front-partner .front-partner__item-title {
	font-size: 55px;
	font-weight: 500;
	line-height: 1.43;
	margin-bottom: 30px;
	font-family: "Yu Gothic", "Noto Sans JP", sans-serif;
}

.front-partner .front-partner__item .btn_more {}

@media (min-width: 766px) and (max-width: 900px) {

	.front-partner .front-partner__item-title {
		font-size: 40px;
	}
}

@media screen and (max-height: 600px) {
	.front-partner .front-partner__item {
		padding-block: 30px;
	}

	.front-partner .front-partner__item-title {
		margin-bottom: 10px;
	}
}

/* ------------------RECRUIT------------------ */

.front-recruit .bg-switch__image--normal {
	background-image: url("/wp/wp-content/uploads/2026/03/recruit_bg.jpg");
}

.front-recruit .bg-switch__image--hover {
	background-image: url("/wp/wp-content/uploads/2026/03/recruit_bg_hover.jpg");
}

.front-recruit .front-recruit__inner {
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
	height: 100dvh;
}

.front-recruit .front-recruit__info {
	width: fit-content;
	display: flex;
	flex-direction: column;
	margin-bottom: 119px;
}

.front-recruit .front-recruit__title {
	line-height: 1.43;
	letter-spacing: 0.02em;
	color: #fff;
	font-weight: light;
	font-size: 45px;
	margin-bottom: 40px;
}

.front-recruit .front-recruit__summary {
	font-size: 18px;
	color: #fff;
	margin-bottom: 64px;
	line-height: 2.1;
}

/* ボタン */
.front-recruit .front-recruit__link {
	text-align: right;
}

.front-recruit .front-recruit__link .btn {
	background: white;
	color: #231815;
}

.front-recruit .front-recruit__link .btn--white::after {
	border-color: #231815;
}

/* ------------------NEWS------------------ */
.front-news {
	background: #EDEDED linear-gradient(to right, rgba(37, 40, 47, 0.9), 50%, rgba(37, 40, 47, 0.9), 50%, #EDEDED);
}

.front-news .front-news__inner {
	display: flex;
	min-height: 100dvh;
}

/* 左カラム */

.front-news .front-news__header {
	flex-shrink: 0;
	width: 380px;
	padding: 60px 55px;
}

.front-news .front-news__title {
	font-size: 45px;
	line-height: 1.43;
	color: #fff;
	font-weight: 300;
	letter-spacing: 0.02em;
}

/* メニュー */
.front-news .front-news__menu {
	margin-top: 68px;
}

.front-news .front-news__menu-list {
	display: flex;
	flex-direction: column;
	gap: 25px;
	position: relative;
}

.front-news .front-news__menu-item {
	position: relative;
}

.front-news .front-news__menu-item::after {
	content: "";
	width: 8px;
	height: 8px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	border-top: 1px solid white;
	border-right: 1px solid white;
	transform: rotate(45deg);
}


.front-news .front-news__menu-link {
	display: block;
	color: #fff;
	font-size: 24px;
	line-height: 1.43;
	text-decoration: none;
}

.front-news .front-news__menu-link:hover {
	opacity: 0.8;
}

/* 右カラム */
.front-news .front-news__article {
	flex: 1;
	background: #EDEDED;
	padding: 68px 75px;
}

.front-news .front-news__article-list {}

.front-news .front-news__article-item:not(:last-child) {
	padding-bottom: 32px;
}

.front-news .front-news__article-link {
	display: flex;
	align-items: center;
	gap: 30px;
}

.front-news .front-news__article-thumb {
	flex-shrink: 0;
}

.front-news .front-news__article-thumb img {
	width: 195px;
	height: 116px;
	-o-object-fit: cover;
	object-fit: cover;
}

.front-news .front-news__article-info {
	flex: 1;
}

.front-news .front-news__article-header {
	display: flex;
	align-items: center;
	gap: 14px;
}

.front-news .front-news__article-category {
	font-size: 12px;
	line-height: 1.43;
	color: #fff;
	background: #231815;
	padding-inline: 12px;
	border-radius: 50px;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.front-news .front-news__article-date {
	font-size: 12px;
	line-height: 1.43;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
}

.front-news .front-news__article-title {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.67;
	margin-top: 17px;
}

.front-news .front-news__link {
	text-align: right;
	margin-top: 32px;
}

@media (min-width: 766px) and (max-width: 900px) {

	/* NEWS */
	.front-news .front-news__header {
		width: 220px;
		padding: 60px 30px 60px 0;
	}

	.front-news .front-news__article {
		padding-left: 35px;
		padding-right: 0;
	}
}

/* -----------------------------------------------------
事業内容ページ
----------------------------------------------------- */
.service {
	background: linear-gradient(to right, #EDEDED, 50%, #fff, 50%, white);
}

.service .service.service--wakegai {
	min-height: calc(100dvh - 202px);
}

.service .service__container {
	background: linear-gradient(to right, #EDEDED, 400px, #fff, 400px, white);
	padding-block: 70px;
	align-content: center;
}

.service--wakegai .container {
	align-content: flex-start;
}

.service__grid {
	display: flex;
	align-items: flex-start;
}

.service .section__header {
	width: 400px;
	padding-right: 58px;
}

.service .service__title {
	font-size: 22px;
	margin-bottom: 49px;
	font-weight: bold;
	line-height: 1.7;

}

.service .service__logo {
	margin-bottom: 20px;
}

.service.service--jikkajimai .service__logo {
	width: 220px;
}

.service .service__image {
	border-radius: 4px;
	max-width: 331px;
}

.service .service__body {
	flex: 1;
	padding-left: 142px;
}

.service .service__body p {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 1.2em;
	padding-right: 76px;
}

.service .service__body p:last-of-type {
	margin-bottom: 0;
}

.service .btn {
	margin-top: 30px;
	width: 336px;
	float: right;
}

@media (min-width: 767px) and (max-width: 890px) {
	.service .service__container {
		background: linear-gradient(to right, #EDEDED, 48%, #fff, 48%, white);
	}

	.service .service__body {
		padding-left: 70px;
	}

	.service .service__body p {
		padding-right: 0;
	}
}

/* ---------- 買取実績 ---------- */
.achievement {
	background: #EEF0F2;
	position: relative;
	padding-top: 50px;
	padding-bottom: 1px;
}

.achievement .achievement__title {
	font-size: 22px;
	font-weight: 100;
	margin-bottom: 16px;

}

.achievement .achievement__list-wrapper {
	margin-bottom: 100px;
}

.achievement .achievement-list {
	background: white;
	border-radius: 20px;
	padding: 40px 45px 40px;
	margin-bottom: 80px;
	display: flex;
	gap: 50px;
	align-items: flex-start;
}

.achievement .achievement-list__left {
	flex: 0 0 36%;
	max-width: 390px;
}

.achievement .achievement-list__photo {
	line-height: 0;
	border-radius: 4px;
	overflow: hidden;
	margin-bottom: 20px;
}

.achievement .achievement-list__photo img {
	width: 100%;
	max-width: 338px;
	height: 194px;
	aspect-ratio: 1;
	object-fit: cover;
	vertical-align: top;
}

.achievement .achievement-list__price {
	font-size: 28px;
	margin-bottom: 16px;
	line-height: 1.5;
}

.achievement .achievement-list__price-value {
	font-size: 28px;
	font-weight: 700;
}

.achievement .achievement-list__price-unit {
	font-size: 20px;
}

.achievement-row {
	font-size: 14px;
	display: flex;
	gap: 10px;
}

.achievement-row:not(:last-of-type) {
	margin-bottom: 10px;
}

.achievement-row__term {
	width: 126px;
}

.achievement-row__desc {
	line-height: 1.7;
	flex: 1;
}

.achievement-row__step {
	display: block;
	margin-bottom: 4px;
}

.achievement-row__step:last-child {
	margin-bottom: 0;
}

/* 右カラム */
.achievement .achievement-list__right {
	flex: 1;
	min-width: 0;
}

.achievement .achievement-item {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 25px;
}

.achievement .achievement-item:last-child {
	margin-bottom: 0;
}

.achievement .achievement-item__title {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 136px;
	height: 27px;
	background: #231815;
	color: #fff;
	font-size: 12px;
	font-weight: 100;
	padding: 5px 0;
	margin-bottom: 12px;
	border-radius: 5px;

}

.achievement .achievement-row__list {
	margin-bottom: 1.2em;
	padding-left: 5px;
}

.achievement .achievement-row:last-of-type .achievement-row__list {
	margin-bottom: 0;
}

.achievement .achievement-row__list-item {
	list-style: "- ";
}

.achievement .achievement-row__list-item:not(:last-of-type) {
	margin-bottom: 4px;
}

.achievement-item__text {
	font-weight: 100;
	font-size: 14px;
}

/* 買取実績エリア */
@media (min-width: 767px) and (max-width: 1000px) {
	.achievement .achievement-row {
		display: block;
		margin-bottom: 15px;
	}
}

@media (min-width: 767px) and (max-width: 900px) {
	.achievement .achievement-item {
		display: block;
	}
}

/* -----------------------------------------------------
会社概要ページ
----------------------------------------------------- */
/* --------- ミッション --------= */
.section--mission {
	background: #EDEDED;
	padding: 70px 0 60px;
	display: flex;
	align-items: center;
	min-height: calc(100dvh - 202px);
}

.section--mission .grid--2col {
	display: flex;
	align-items: flex-start;
}

.section--mission .section__header {
	flex-shrink: 0;
	flex: 1;
}

.section--mission .section__label {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 34px;
}

.section--mission .section__title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.5;
}

.section--mission .section__body {
	width: 55%;
	padding-left: 50px;
}

.section--mission .section__body p {
	font-size: 16px;
	line-height: 1.73;
	letter-spacing: 0;
	color: #333;
	margin-bottom: 1.6em;
	font-family: "Noto Sans JP", "Montserrat", sans-serif;
}

.section--mission .section__body p:last-child {
	margin-bottom: 0;
}

/* --------- ビジョン -------- */
.section--vision {
	background: #0F121A;
	padding: 60px 0;
	background-image: url("../images/about_vision_bg.jpg");
	background-position: left top;
	background-size: 45vw 100vh;
	background-repeat: no-repeat;
	position: relative;
	align-content: center;
}

.section--vision .grid--2col {
	display: flex;
	gap: 60px;
}

.section--vision .section__header {
	flex: 1;
}

.section--vision .section__label {
	font-size: 22px;
	color: #fff;
	margin-bottom: 40px;
	position: absolute;
	top: 80px;
	width: 100%;

}

.section--vision .section__title {
	font-size: 47px;
	line-height: 1.4;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-shadow: 2.3px 2.3px 5.74px #000;
	width: 100%;
	font-family: "Yu Gothic", "Noto Sans JP", sans-serif;
	width: max-content;
}

.section--vision .section__body {
	width: 55%;
	padding-left: 50px;
}

.section--vision .section__body p {
	font-size: 16px;
	line-height: 2.2;
	color: white;
}

/* --------- バリュー -------- */
.section--value {
	background: white;
	padding-top: 75px;
	position: relative;
	align-content: center;
	z-index: 0;
}

.section--value::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 45vw;
	height: 100%;
	background: #EDEDED;
	z-index: -10;
}

.section--value .grid--2col {
	display: flex;
	gap: 60px;
}

.section--value .section__header {
	flex: 1;
	max-width: 40%;
	margin-top: 50px;
}

.section--value .section__label {
	font-size: 22px;
}

.section--value .value-logo {
	width: 100%;
}

.section--value .value-logo img {
	width: 100%;
	height: auto;
	max-width: 360px;
}

.section--value .section__body {
	width: 55%;
	padding-left: 50px;
}

.section--value .card-list__item {
	margin-bottom: 29px;
}

.section--value .card-list__item:last-child {
	margin-bottom: 0;
}

.section--value .value-name {
	font-size: 19px;
	margin-bottom: 8px;
	display: flex;
	align-items: flex-end;
	line-height: 1;
	font-weight: bold;
}

.section--value .value-name__letter {
	flex-shrink: 0;
	width: auto;
	height: 24px;
	padding-bottom: 3px;
}

.section--value .value-detail {
	font-size: 16px;
	line-height: 1.73;
}

/* --------- 代表メッセージ -------- */
.section--message {
	background: #fff;
	padding: 99px 0 128px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.section--message .section__label {
	font-size: 22px;
	margin-bottom: 60px;

}

.section--message .grid--2col {
	display: flex;
	align-items: flex-start;
	gap: 60px;
	margin-inline: auto;
}

.section--message .message-left {
	flex: 1;
}

.section--message .message__title {
	font-size: 28px;
	font-weight: 500;
	line-height: 1.63;
	margin-bottom: 45px;

}

/* 会社概要動画 */
.section--message .message-video {
	position: relative;
	cursor: pointer;
}

.section--message .message-video__thumb {
	width: 100%;
	display: block;
}

.section--message .message-video__player {
	display: none;
	width: 100%;
}

/* 代表メッセージ */
.section--message .message-right {
	width: 55%;
	min-width: 0;
	padding-left: 50px;
}

.section--message .message-right p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 1.8em;

}

.section--message .message-right p:last-child {
	margin-bottom: 0;
}

/* --------- 会社沿革 -------- */
.section--history {
	position: relative;
	padding-top: 60px;
	overflow: hidden;
	background: url("../images/about_company_bg.jpg");
	background-size: cover;
	background-repeat: no-repeat;
	align-content: center;
}

.section--history .section--history__next {
	padding: 80px 0 40px;
}

.section--history .section__label {
	font-size: 22px;
	font-weight: normal;
	color: white;
	margin-bottom: 40px;

}

.section--history .company-history__item {
	position: relative;
	padding: 0 0 54px 30px;
	display: flex;
	align-items: flex-start;
	gap: 81px;
	line-height: 1;
	height: 80px;
}

.section--history .company-history__item:last-child {
	padding-bottom: 0;
}

.section--history .company-history__item:last-child::after {
	content: none;
}

.section--history .company-history__item::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.6);
}

.section--history .company-history__item::after {
	position: absolute;
	content: "";
	width: 2px;
	height: 50px;
	top: 21px;
	left: 7px;
	background: rgba(255, 255, 255, 0.6);
}

.section--history .company-history__date {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: white;
	margin-bottom: 6px;
	width: 120px;

}

.section--history .company-history__text {
	display: block;
	font-size: 16px;
	line-height: 1.5;
	color: white;

	flex: 1;
}

/* --------- 売上実績 -------- */
.section--products {
	background: #0F121A;
	padding: 83px 0;
	align-content: center;
}

.section--products .grid--2col {
	display: flex;
	align-items: center;
	gap: 60px;
}

.section--products .products-left {
	flex: 1;
	padding-right: 40px;
}

.section--products .section__label {
	font-size: 22px;
	font-weight: normal;
	color: #fff;
	margin-bottom: 87px;

}

.section--products .products-left p {
	font-size: 16px;
	line-height: 1.8;
	color: #fff;

}

.section--products .products-right {
	width: 55%;
	max-width: 651px;
}

/* --------- 会社情報 -------- */
.section--company {
	background: #EDEDED;
	padding: 80px 0 120px;
}

.section--company .section__label {
	font-size: 22px;
	font-weight: 400;
	position: absolute;
	top: 80px;
}

.section--company .grid--2col {
	display: flex;
	gap: 150px;
}

.section--company .company-image {
	flex: 0 0 38%;
	max-width: 300px;
	margin-top: 116px;
}

.section--company .definition-list {
	flex: 1;
	padding-bottom: 50px;
}

.section--company .definition-list__row {
	display: flex;
	gap: 24px;
	padding: 10px 0;
}

.section--company .definition-list__row:first-child {
	padding-top: 0;
}

.section--company .definition-list dt {
	flex: 0 0 150px;
	font-size: 16px;
	font-weight: normal;

}

.section--company .definition-list dd {
	flex: 1;
	font-size: 16px;
	line-height: 1.8;

}

.section--company .definition-list__address {
	margin-bottom: 16px;
	font-style: normal;
}

.section--company .definition-list__address:last-child {
	margin-bottom: 0;
}

/* ----------会社概要ページ　デバイス調整-------- */
@media (min-width: 767px) and (max-width: 1280px) {

	/* VISION */
	.section--vision .section__title {
		width: auto;
	}
}

@media (min-width: 767px) and (max-width: 1100px) {

	/* 売上実績エリア */
	.section--products .grid--2col {
		display: block;
	}

	.section--products .products-left {
		padding-right: 0px;
	}

	.section--products .products-left p {
		margin-top: 0;
		margin-bottom: 30px;
	}

	.section--products .products-right {
		margin-inline: auto;
	}

	/* 会社情報エリア */

	.section--company .grid--2col {
		gap: 50px;
	}

	.section--company .definition-list__row dt {
		flex-basis: 80px;
	}
}

@media (min-width: 766px) and (max-width: 1024px) {
	.section--company {
		padding-bottom: 200px;
	}
}


/* -------------------------------------------------
IR情報ページ
------------------------------------------------- */
.page-ir .section__inner {
	max-width: 1200px;
	margin-inline: auto;
	padding: 0 40px;
}

.page-ir .section__title {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 24px;

}

/* 投資家の皆様へ */
.page-ir .ir-investors {
	padding: 56px 0 64px;
}

.page-ir .ir-investors__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.page-ir .ir-investors__link {
	display: flex;
	align-links: center;
	justify-content: center;
	min-height: 140px;
	padding: 32px 24px;
	font-size: 16px;
	background: #D9D9D9;
	border-radius: 4px;
	text-decoration: none;

	transition: background 0.2s;
}

.page-ir .ir-investors__item:hover {
	background: #ddd;
}

/* IRニュースリリース */
.page-ir .ir-news {}

.page-ir .ir-news__grid {
	display: flex;
	gap: 76px;
	align-items: flex-start;
}

.page-ir .ir-news__btn .btn {
	font-size: 20px;
	width: 236px;
	height: 50px;
}

.page-ir .ir-news__list {
	flex: 1;
	min-width: 0;
	list-style: none;
}

.page-ir .ir-news__item {
	padding: 12px 0;
}

.page-ir .ir-news__item:first-child {
	padding-top: 0;
}

.page-ir .ir-news__date {
	display: block;
	font-size: 12px;
	color: #666;
	margin-bottom: 0;
	font-family: "Montserrat", sans-serif;
}

.page-ir .ir-news__title {
	font-size: 16px;
	line-height: 1.5;
}

/* IRライブラリー・IRカレンダー */
.page-ir .ir-library,
.page-ir .ir-calendar {
	padding-top: 82px;
}

.page-ir .ir-calendar {
	padding-bottom: 100px;
}

.page-ir .ir-library__placeholder,
.page-ir .ir-calendar__placeholder {
	min-height: 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e8e8e8;
	border-radius: 4px;
}

.page-ir .ir-library__placeholder p,
.page-ir .ir-calendar__placeholder p {
	font-size: 15px;
	color: #666;
}

/* -----------------------------------------------------
NEWS一覧
----------------------------------------------------- */
.page-news .news {
	padding: 0 0 80px;
}

.page-news .news__inner {
	max-width: 1200px;
}

.page-news .news__header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 50px 0 70px;
}

.page-news .news__grid {
	display: flex;
	align-items: center;
	gap: 16px;
}

.page-news .news__title {
	font-size: 22px;
	font-weight: 400;
}


.page-news .news__year {
	padding: 10px 16px;
	font-size: 14px;
	border: 1px solid #DDE2E4;
	border-radius: 8px;
	background: #fff;

	cursor: pointer;
}

.page-news .news__search {
	display: flex;
	align-items: center;
	border: 1px solid #DDE2E4;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
}

.page-news .news__search-input {
	width: 220px;
	padding: 10px 14px;
	font-size: 14px;
	border: none;

	border-color: #DDE2E4;
}

.page-news .news__search-input::-moz-placeholder {
	color: #999;
}

.page-news .news__search-input::placeholder {
	color: #999;
}

.page-news .news__search-button {
	padding: 10px 14px;
	border: none;
	background: transparent;
	cursor: pointer;
}

.page-news .news__search-icon {
	display: block;
	width: 18px;
	height: 18px;
	border: 2px solid #666;
	border-radius: 50%;
	position: relative;
}

.page-news .news__search-icon::after {
	content: "";
	position: absolute;
	right: -4px;
	bottom: -4px;
	width: 8px;
	height: 2px;
	background: #666;
	transform: rotate(45deg);
}

/* カテゴリー */
.page-news .news__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.page-news .news__category-btn {
	padding: 2px 20px;
	font-size: 12px;
	font-weight: 600;
	color: #fff;
	background: #BABABA;
	border: none;
	border-radius: 15px;
	cursor: pointer;

	transition: background 0.2s;
}

.page-news .news__category-btn:hover {
	background: #666;
}

.page-news .news__category-btn.is-active {
	background: #231815;
}

.page-news .news__category-btn.is-active:hover {
	background: #231815;
}

/* 記事一覧リスト */
.page-news .news-article {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px 64px;
	margin-bottom: 48px;
}

.page-news .news-article__link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}

.page-news .news-article__link:hover {
	opacity: 0.85;
}

.page-news .news-article__info {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
}

.page-news .news-article__thumb {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #e8e8e8;
	margin-bottom: 12px;
}

.page-news .news-article__thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: top;
}

.page-news .news-article__category {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	background: #231815;
	padding: 4px 10px;
	line-height: 1;
	border-radius: 10px;
	margin-bottom: 8px;
	font-family: "Montserrat", sans-serif;
}

.page-news .news-article__date {
	display: block;
	font-size: 12px;
	margin-bottom: 8px;
	font-family: "Montserrat", sans-serif;
}

.page-news .news-article__title {
	font-size: 16px;
	line-height: 1.6;
}

.page-news .news__pagination {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 80px;
}

.page-news .page-numbers {
	text-decoration: underline;
}

.page-news .page-numbers.current {
	font-weight: bold;
	text-decoration: none;
}

@media (min-width: 767px) and (max-width: 900px) {
	.page-news .news__pagination {
		gap: 60px;
	}
}

/* -----------------------------------------------------
ニュース詳細ページ
----------------------------------------------------- */
.article {
	background: #fff;
	padding: 48px 0 56px;
}

.article .article__grid {
	display: flex;
	gap: 60px;
}

.article .article__inner {
	flex: 1;
}

.article .article__header {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	column-gap: 22px;
}

.article .article__cat {
	display: inline-block;
	font-size: 18px;
	font-weight: 100;
	color: #fff;
	background: #231815;
	padding: 3px 20px;
	border-radius: 20px;
	font-family: "Montserrat", sans-serif;
}

.article .article__date {
	font-size: 18px;
	font-weight: 100;
	font-family: "Montserrat", sans-serif;
}

.article .article__ttl {
	width: 100%;
	font-size: 28px;
	font-weight: 500;
	line-height: 1.5;
	margin-bottom: 31px;
	margin-top: 35px;

}

/* 投稿の内容 */
.article .article__content {
	display: flex;
	gap: 48px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.article .article__content-inner {
	flex: 1;
	min-width: 0;
}

.article .article__content-inner p {
	font-size: 15px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 1em;

}

.article .article__content-inner p:last-child {
	margin-bottom: 0;
}

.article .article__content-inner a {
	text-decoration: underline;
}

.article .article__link {
	text-decoration: none;
}

.article .article__link:hover {
	opacity: 0.85;
}

.article .article__visual {
	flex: 0 0 320px;
	width: 320px;
	border-radius: 4px;
	overflow: hidden;
	background: #e8e8e8;
}

.article .article__visual img {
	width: 100%;
	height: auto;
	vertical-align: top;
}

/* 画像 */
.article .article__image {
	width: 272px;
}

.article .article__image img {
	height: auto;
	width: 100%;
}

.article .article__btn-container {
	margin-top: 50px;
}

.article .article__btn-container .btn {
	width: 336px;
	height: 50px;
}

.article .article__btn:hover {
	border-color: #666;
	background: #f5f5f5;
}

/* ------------ 関連する記事 ------------ */
.related-article {
	background: #F5F5F5;
	padding: 33px 0 80px;
}

.related-article__ttl {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 24px;

}

.related-article__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px 24px;
}

.related-article .news-article__date {
	color: #666;
}

.related-article .news-article__link {
	display: block;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.2s;
}

.related-article .news-article__link:hover {
	opacity: 0.85;
}

.related-article .news-article__info {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 14px;
}

.related-article .news-article__thumb {
	aspect-ratio: 16/10;
	overflow: hidden;
	background: #e8e8e8;
	margin-bottom: 12px;
}

.related-article .news-article__thumb img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: top;
}

.related-article .news-article__category {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	background: #231815;
	padding: 4px 10px;
	line-height: 1;
	border-radius: 10px;
	margin-bottom: 8px;
	font-family: "Montserrat", sans-serif;
}

.related-article .news-article__date {
	display: block;
	font-size: 12px;
	margin-bottom: 8px;
	font-family: "Montserrat", sans-serif;
}

.related-article .news-article__title {
	font-size: 16px;
	line-height: 1.6;
}

/* -----------------------------------------------------
採用情報ページ
----------------------------------------------------- */
/* ----------- ファーストビュー ---------- */
.recruit-hero {
	background: #EDEDED url("./../images/recruit_fv.jpg") no-repeat;
	background-size: cover;
	background-position: center;
	min-height: 700px;
	padding-bottom: 50px;
}

.recruit-hero__image {
	display: none;
}

.recruit-hero .recruit-hero__title {
	font-size: 53px;
	line-height: 1.5;
	font-weight: bold;
	margin-top: 31px;
}

.recruit-hero .recruit-hero__lead {
	font-size: 32px;
	line-height: 1.5;
}

.recruit-hero .recruit-hero__description {
	max-width: 620px;
	font-size: 20px;
	line-height: 2;
	margin-top: 60px;
}

.recruit-hero .recruit-hero__cta {
	margin-top: 44px;
}

.recruit-hero .btn {
	width: 386px;
	height: 64px;
}


/* ----------- 丸岡社長からのメッセージ ---------- */

.recruit-ceo {
	background: #EDEDED;
	padding: 80px 0 100px;
}

.recruit-ceo .recruit-ceo__inner {
	display: grid;
	grid-template-columns: 1fr 629px;
	grid-template-rows: max-content max-content 1fr;
	grid-template-areas:
		"label label"
		"title video"
		"desc video";
	column-gap: 74px;
}

.recruit-ceo .recruit-ceo__label {
	font-size: 14px;
	font-weight: 500;
	color: #555;
	margin-bottom: 54px;

	grid-area: label;
}

.recruit-ceo .recruit-ceo__title {
	font-size: 37px;
	font-weight: 700;
	line-height: 1.5;
	color: #333;
	margin-bottom: 68px;

	grid-area: title;
}

.recruit-ceo .recruit-ceo__desc {
	font-size: 15px;
	line-height: 2;
	color: #333;
	grid-area: desc;
}

/* 社長動画 */
.recruit-ceo .message-video {
	cursor: pointer;
	grid-area: video;
}

.recruit-ceo .message-video__thumb {
	width: 100%;
	display: block;
}

.recruit-ceo .message-video__player {
	display: none;
	width: 100%;
}

@media (min-width: 766px) and (max-width: 1100px) {
	.recruit-ceo .recruit-ceo__inner {
		display: block;
	}

	.recruit-ceo .recruit-ceo__title {
		margin-bottom: 30px;
	}

	.recruit-ceo .message-video {
		width: 60%;
		margin-inline: auto;
		margin-bottom: 30px;
	}
}

/* ----------- 得られるスキル ---------- */
.talent-skills {
	background: #fff;
	padding: 80px 0;
	align-content: center;
}

.talent-skills .talent-skills__title {
	font-size: 34px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 15px;
}

.talent-skills .talent-skills__lead {
	font-size: 24px;
	margin-bottom: 60px;
	text-align: center;
}

/* 丸横並び */
.talent-skills .talent-skills__grid {
	display: flex;
	justify-content: center;
	gap: 50px;
}

.talent-skills .talent-skills__item {
	flex: 0 0 calc(33.333% - 27px);
	max-width: 360px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: url("./../images/recruit_circle_bg.png") no-repeat;
	background-size: 100% 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}

.talent-skills .talent-skills__item-title {
	font-size: 46px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
	letter-spacing: 0.15em;

}

.talent-skills .talent-skills__item-text {
	font-size: 19px;
	line-height: 1.7;
	color: #fff;
	font-weight: 100;
	text-align: center;
}

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

	.talent-skills .talent-skills__grid {
		gap: 40px;
	}

	.talent-skills .talent-skills__item-title {
		font-size: 36px;
		line-height: 1;
		margin-bottom: 10px;
	}

	.talent-skills .talent-skills__item-text {
		font-size: 14px;
		line-height: 1.5;
	}
}


/* ----------- WORK STYLE ---------- */
.recruit-insights {
	background: #e8e8e8;
	padding-top: 40px;
}

.recruit-insights .recruit-insights__section {
	align-content: center;
	padding-bottom: 60px;
}

.recruit-insights .recruit-insights__container {
	text-align: center;
}

.recruit-insights .recruit-insights__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
}

.recruit-insights .recruit-insights__subtitle {
	font-size: 18px;
	margin-bottom: 18px;
	color: #2F403E;

}

.recruit-insights .recruit-insights__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 8px;
	max-width: 950px;
	margin-inline: auto;
}

.recruit-insights .recruit-insights__card {
	background: #fff;
	border-radius: 10px;
	padding: 32px 24px;
	text-align: center;
	min-height: 280px;
}

.recruit-insights .recruit-insights__card-label {
	font-size: 32px;
	font-weight: bold;
	color: #384255;
	margin-bottom: 30px;
	line-height: 1;
}

.recruit-insights .recruit-insights__card-label small {
	font-size: 26px;
}

.recruit-insights .recruit-insights__card-value {
	font-size: 55px;
	font-weight: normal;
	line-height: 1.5;
	margin-bottom: 8px;
}

.recruit-insights .recruit-insights__card-value--space {
	margin-top: 40px;
}

.recruit-insights .recruit-insights__card-value_size2 {
	font-size: 48px;
	font-weight: 500;
}

.recruit-insights .recruit-insights__card-value_size3 {
	font-size: 60px;
	font-weight: 500;
	letter-spacing: 20;
}

.recruit-insights .recruit-insights__card-note {
	font-size: 22px;
	line-height: 1.4;
}

.recruit-insights .recruit-insights__card-note--bigger {
	font-size: 26px;
}

.recruit-insights .number {
	font-size: 104px;
	font-weight: 500;
	line-height: 1;
}

.recruit-insights .number--size2 {
	font-size: 122px;
}

/* 男女比 */
.recruit-insights .recruit-insights__pair {
	display: flex;
	gap: 40px;
	justify-content: center;
	flex-wrap: wrap;
}

.recruit-insights__pair-item {
	line-height: 1;
	display: flex;
	justify-content: center;
	flex-direction: column;
	font-weight: 500;
}

.recruit-insights__pair-label {
	font-size: 24px;
}

.recruit-insights__pair-value {
	font-size: 37px;
}

.recruit-insights .recruit-insights__pair .number {
	font-size: 82px;
}

@media (min-width: 768px) and (max-width: 880px) {
	.recruit-insights .recruit-insights__grid {
		display: block;
	}

	.recruit-insights .recruit-insights__card {
		margin-bottom: 20px;
		max-width: 70%;
		margin-inline: auto;
	}
}

/* ----------- 社員インタビュー ---------- */

.recruit-interview {
	background-color: #F5F5F5;
}

/*---------------募集職種--------------- */
.recruit-jobs {
	background: #fff;
	padding: 80px 0 0;
	align-content: center;
}

.recruit-jobs .recruit-jobs__inner {
	display: flex;
	gap: 60px;
	align-items: flex-start;
	justify-content: space-between;
}

.recruit-jobs .recruit-jobs__header {
	flex: 0 1 400px;
	max-width: 400px;
}

.recruit-jobs .recruit-jobs__title {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 24px;

}

.recruit-jobs .recruit-jobs__subtitle {
	font-size: 22px;
	font-weight: 500;
	margin-top: 120px;
}

.recruit-jobs .recruit-jobs__description {
	font-size: 17px;
	line-height: 1.8;
}

.recruit-jobs .recruit-jobs__list {
	flex: 0 1 760px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.recruit-jobs .recruit-jobs__item {
	background: #F1F1F1;
	padding: 16px 22px;
	transition: background 0.2s;
	position: relative;
}

.recruit-jobs .recruit-jobs__item:hover {
	background: #e8e8e8;
}

.recruit-jobs .recruit-jobs__item::after {
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	border-top: 2px solid #888;
	border-right: 2px solid #888;
	transform: rotate(45deg);
	bottom: 20px;
	right: 30px;
}

.recruit-jobs .recruit_job_text {
	flex: 1;
	min-width: 0;
}

.recruit-jobs .recruit-jobs__name {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
	margin-bottom: 16px;
}

.recruit-jobs .recruit_job__detail {
	font-size: 16px;
	line-height: 1.4;
	color: #333;

	margin-right: 35px;
}

/* 新卒採用バナー */

.recruit-jobs .recruit-jobs__cta-wrapper {
	margin-top: 70px;
	padding-bottom: 90px;
}

.recruit-jobs .recruit-jobs__cta {
	padding: 36px 40px;
	text-decoration: none;
	transition: opacity 0.2s;
	background: url("./../images/recruit_banner.jpg") no-repeat center center;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
}

.recruit-jobs .recruit-jobs__cta-txt {
	font-size: 30px;
	font-weight: 500;
	color: #fff;
	position: relative;
	z-index: 1;

}

.recruit-jobs .recruit-jobs__cta-txt::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	z-index: 1;
	top: 50%;
	margin-left: 46px;
	transform: translateY(-50%) rotate(45deg);
}

/* -------------１日のスケジュール-------------*/
.recruit-schedule {
	background: #EDEDED;
	padding-block: 20px;
}

.recruit-schedule .recruit-schedule__inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
}

.recruit-schedule .recruit-schedule__profile {
	flex: 0 1 305px;
	margin-top: 35px;
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.recruit-schedule .recruit-schedule__title {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 17px;
	line-height: 1.73;
}

/* プロフィール */
.recruit-schedule .recruit-schedule__profile-info {
	padding: 20px 18px;
	background: #7B7B7C;
	flex-grow: 1;
}

.recruit-schedule .recruit-schedule__img {
	height: 194px;
	overflow: hidden;
	background: #e0e0e0;
	margin-bottom: 26px;
}

.recruit-schedule .recruit-schedule__img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	vertical-align: top;
}

.recruit-schedule .recruit-schedule__role {
	font-size: 16px;
	color: white;
	font-weight: 400;

	line-height: 1.9;
}

.recruit-schedule .recruit-schedule__name {
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	line-height: 1.5;

}

.recruit-schedule .recruit-schedule__intro-title {
	font-size: 16px;
	color: white;
	font-weight: 400;
	line-height: 1;
	border: 1px solid white;
	text-decoration: none;
	margin-bottom: 12px;

	margin-top: 52px;
	display: inline-block;
	padding: 4px 11px;
}

.recruit-schedule .recruit-schedule__introduction {
	font-size: 15px;
	line-height: 1.8;
	color: #fff;
	text-align: left;
	font-weight: 400;
}

/* タイムライン */
.recruit-schedule .recruit-schedule__flow {
	flex: 0 1 875px;
}

.recruit-schedule .recruit-schedule__list {
	list-style: none;
	position: relative;
	padding-top: 11px;
}

.recruit-schedule .recruit-schedule__list::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 8px;
	bottom: 8px;
	width: 1px;
	background: #6b6b6b;
	transform: translateX(-50%);
	height: calc(100% + 20px);
}

.recruit-schedule .recruit-schedule__flow-item {
	display: grid;
	grid-template-columns: 1fr 80px 1fr;
	margin-bottom: 24px;
	position: relative;
}

.recruit-schedule .recruit-schedule__flow-item.flow-item--order2 {
	margin-top: -90px;
}

.recruit-schedule .recruit-schedule__flow-item.flow-item--order3 {
	margin-top: -20px;
}

.recruit-schedule .recruit-schedule__flow-item.flow-item--order4 {
	margin-top: -20px;
}

.recruit-schedule .recruit-schedule__flow-item.flow-item--order5 {
	margin-top: -40px;
}

.recruit-schedule .recruit-schedule__flow-item.flow-item--order6 {
	margin-top: -50px;
}

.recruit-schedule .recruit-schedule__flow-item.flow-item--order7 {
	margin-top: -60px;
}

.recruit-schedule .recruit-schedule__flow-item::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 45px;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #6b6b6b;
	transform: translateX(-50%);
	border: 8px solid white;
	z-index: 1;
}

.recruit-schedule .recruit-schedule__flow-item--right::before {
	top: 40px;
}

/* タイムラインコンテンツ */
.recruit-schedule .recruit-schedule__flow-item--right .recruit-schedule__card {
	grid-column: 3;
}

.recruit-schedule .recruit-schedule__flow-item--left .recruit-schedule__card {
	grid-column: 1;
}

.recruit-schedule .recruit-schedule__card {
	background: white;
	position: relative;
	padding: 20px;
}

.recruit-schedule .recruit-schedule__card-header-grid {
	display: flex;
	justify-content: flex-start;
}

.recruit-schedule .recruit-schedule__flow-item--right .recruit-schedule__card {
	text-align: left;
}

.recruit-schedule .recruit-schedule__flow-item--left .recruit-schedule__card {
	text-align: right;
}

.recruit-schedule .recruit-schedule__flow-item--left .recruit-schedule__card::after {
	content: "";
	position: absolute;
	right: -7px;
	left: auto;
	top: 60px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 0 8px 8px;
	border-color: transparent transparent transparent #fff;
}

.recruit-schedule .recruit-schedule__time {
	display: block;
	font-size: 30px;
	font-weight: 400;
	margin-top: 4px;
	line-height: 1;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	overflow-wrap: normal;
}

.recruit-schedule .recruit-schedule__flow-item--right .recruit-schedule__card-header::after {
	content: "";
	position: absolute;
	left: -7px;
	top: 52px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 8px 8px 0;
	border-color: transparent #fff transparent transparent;
}

.recruit-schedule .recruit-schedule__flow-item--left .recruit-schedule__card-header {
	margin-left: auto;
}

.recruit-schedule .recruit-schedule__event {
	font-size: 22px;
	text-align: left;
	letter-spacing: 0;
	font-weight: 400;
	color: #5D89B9;
	margin-left: 5px;
	margin-bottom: 6px;
	display: block;

	line-height: 1.5;
}

.recruit-schedule .recruit-schedule__description {
	font-size: 17px;
	line-height: 1.6;
	text-align: left;
	margin-top: 13px;

}

@media (min-width: 850px) and (max-width: 1200px) {
	.recruit-schedule .recruit-schedule__inner {
		gap: 40px;
	}
}

@media (min-width: 766px) and (max-width: 850px) {
	.recruit-schedule .recruit-schedule__inner {
		display: block;
	}

	.recruit-schedule .recruit-schedule__img {
		width: 266px;
		margin-inline: auto;
	}
}

/* -----------キャリアパス----------- */

.recruit-path {
	background-color: white;
	padding-top: 40px;
}

.recruit-path .recruit-path__section {
	align-content: center;
}



.recruit-path .recruit-path__title {
	font-size: 22px;
	margin-bottom: 27px;
	font-weight: 400;
}

.recruit-path .recruit-path__description {
	font-size: 16px;
	line-height: 1.8;
	max-width: 1040px;
	margin-bottom: 70px;
}

.recruit-path .recruit-path__content {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 90px;
	padding-bottom: 30px;
	margin-top: 60px;
}

.recruit-path .recruit-path__content-left {
	flex: 0 1 607px;
}

.recruit-path .recruit-path__block-title {
	font-size: 22px;
	font-weight: 400;
	margin-bottom: 25px;
}

.recruit-path .recruit-path__text {
	font-size: 16px;
	line-height: 1.8;
}

.recruit-path .recruit-path__text strong {
	font-size: 20px;
	font-weight: 700;
	display: block;
	margin-bottom: 30px;
}

.recruit-path .recruit-path__list-item strong {
	font-size: 20px;
	font-weight: bold;
}

.recruit-path .recruit-path__block-right {
	max-width: 571px;
	flex: 0 1 571px;
}

.recruit-path .recruit-path__block-right img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.recruit-path .recruit-path__block-right--size2 {
	flex: 0 1 507px;
}

/* リスト */
.recruit-path .recruit-path__list {}

.recruit-path .recruit-path__list-item {
	line-height: 1.73;
	font-size: 16px;
}

.recruit-path .recruit-path__list-item:not(:first-of-type) {
	margin-top: 20px;
}

/* CTA */
.recruit-path .recruit-path__cta {
	text-align: center;
	margin-top: 10px;
	margin-bottom: 20px;
}

.recruit-path .recruit-path__cta .btn {
	width: 386px;
	height: 64px;
	font-size: 16px;
}


/* -----------採用に関するFAQ----------- */
.recruit-qa {
	background: #fff;
	padding-block: 65px;
}

.recruit-qa .recruit-qa__title {
	font-size: 22px;
	font-weight: normal;
	margin-bottom: 55px;

}

.recruit-qa .recruit-qa__entry {
	
}

.recruit-qa .recruit-qa__entry:not(:first-of-type) {
	border-top: 1px solid #DADCDC;
}

.recruit-qa .recruit-qa__prompt {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 20px 12px 20px 0;
	cursor: pointer;
}

.recruit-qa .recruit-qa__prompt::marker,
.recruit-qa .recruit-qa__prompt::-webkit-details-marker {
	display: none;
}

.recruit-qa .recruit-qa__mark {
	flex-shrink: 0;
	font-size: 30px;
	font-family: "Bebas Neue", sans-serif;
	line-height: 1.5;
}

.recruit-qa .recruit-qa__prompt-text {
	font-size: 16px;
	flex: 1;
	line-height: 1.5;
	font-weight: 700;
}

.recruit-qa .recruit-qa__toggle {
	width: 12px;
	height: 12px;
	flex-shrink: 0;
	border-right: 2px solid #231815;
	border-bottom: 2px solid #231815;
	transform: rotate(45deg);
	margin-top: 6px;
	transition: transform 0.2s;
}

.recruit-qa .recruit-qa__entry[open] .recruit-qa__toggle {
	margin-top: 10px;
	transform: rotate(-135deg);
}

.recruit-qa .recruit-qa__response {
	display: flex;
	gap: 14px;
	padding-bottom: 24px;
}


.recruit-qa .recruit-qa__response-text {
	font-size: 15px;
	line-height: 1.9;
	color: #333;

}


/* -----------------------------------------------------
社員インタビュー一覧ページ
----------------------------------------------------- */

/* 社員インタビュー一覧＆シャインインタビュー詳細ページ専用ヘッダー */
.hero--interviews {}

.hero--interviews__title {
	font-size: 36px;
	line-height: 1.73;
	font-weight: 500;
	margin-top: 21px;
	margin-bottom: 24px;
}

/* インタビューリスト箇所 */
.interviews {
	padding-bottom: 165px;
}

.interviews__list {
	display: flex;
	gap: 34px 50px;
	flex-wrap: wrap;
}

.interviews__item {
	flex: 0 1 calc((100% - 100px) / 3);
	max-width: 378px;
}

.interviews__pic {
	width: 100%;
}

.interviews__profile {
	margin-inline: auto;
	margin-top: 12px;
	display: flex;
	justify-content: center;
	gap: 12px;
}

.interviews__dept {
	line-height: 1.73;
	font-size: 18px;
	font-weight: 400;
}

.interviews__name {
	line-height: 1.73;
	font-size: 18px;
	font-weight: 500;
}

@media (min-width: 767px) and (max-width: 885px) {
	.interviews__profile {
		display: block;
		text-align: center;
		line-height: 1.5;
	}
}

/* -----------------------------------------------------
インタビュー詳細ページ
----------------------------------------------------- */
.page-interview-detail {
	background-color: #F5F5F5;
}

/* header */
.interview-single {
	margin-top: 90px;
	margin-bottom: 150px;
}

.interview-single__inner {
	max-width: 1106px;
}

.interview-single__title {
	font-size: 22px;
	line-height: 1.73;
	margin-bottom: 4px;
}

.interview-single__head {
	font-size: 40px;
	line-height: 1.5;
	font-weight: 500;
}

/* 人物の概要 */
.interview-single__parson {
	margin-block: 80px;
	display: flex;
	gap: 40px;
}

.interview-single__parspn-img {
	max-width: 378px;
	flex: 0 1 34%;
}

.interview-single__parson-info {
	flex: 1;
}

.interview-single__parson-name {
	font-size: 28px;
	line-height: 1;
	font-weight: bold;
}

.interview-single__parson-dept {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
}

.interview-single__parson-lead {
	margin-top: 40px;
	font-size: 14px;
	line-height: 2;
}

/* （カスタム投稿で管理している箇所） */
.interview-single__section {
	margin-top: 64px;
	max-width: 1060px;
}

.interview_detail_section-title {
	font-size: 34px;
	line-height: 1.5;
	font-weight: 500;
	margin-bottom: 45px;
}

.interview-single__paragraph {
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.87;
}

.interview-single__movie {
	height: 383px;
	background-color: #D9D9D9;
	margin-block: 100px;
}

/* リスト */
.interview-single__list {
	margin-top: 20px;
}

.interview-single__list-item {
	text-indent: -1em;
	padding-left: 1em;
	position: relative;
	font-size: 16px;
	line-height: 1.87;
}

.interview-single__list-item::before {
	content: "・";
}

/* 動画 */
.interview-single__section .message-video-container {
	max-width: 600px;
	width: 100%;
	margin-inline: auto;
	margin-block: 100px;
}

.interview-single__section .message-video {
	position: relative;
	cursor: pointer;
}

.interview-single__section .message-video__thumb {
	width: 100%;
	display: block;
}

.interview-single__section .message-video__player {
	display: none;
	width: 100%;
}

/* -----------------------------------------------------
募集要項ページ（新卒・中途）
----------------------------------------------------- */
.job-ad {
	margin-block: 60px;
}

.job-ad__list {
	display: flex;
	gap: calc(10% / 2);
}

.job-ad__item {
	flex: 0 1 30%;
	position: relative;
}

.job-ad__item::after {
	content: "";
	position: absolute;
	right: 20px;
	top: 50%;
	width: 10px;
	height: 10px;
	transform: translateY(-50%) rotate(45deg);
	border-top: 1px solid #231815;
	border-right: 1px solid #231815;

}

.job-ad__link {
	padding: 30px 20px;
	background-color: #D9D9D9;
	display: block;
}

.job-ad__title {
	font-size: 20px;
}

.job-ad__back-btn {
	margin-top: 30px;
	text-align: center;
}

.job-ad__back-btn .btn {
	margin-top: 20px;
	width: 300px;
}

/* -----------------------------------------------------
募集要項詳細ページ（新卒・中途）
----------------------------------------------------- */
.job {
	padding: 100px 0 70px;
}

.job .job__inner {
	max-width: 1000px;
	margin-inline: auto;
}

.job .job__list {
	display: flex;
	border-bottom: 1px solid #7E7E7E;
	padding: 18px 0;
}


.job .job__list:first-of-type {
	padding-top: 0;
}

.job .job__list:last-of-type {
	border-bottom: none;
}

.job .job__list-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	width: 260px;
	text-align: right;
	padding-right: 40px;
}

@media (min-width: 766px) and (max-width: 900px) {
	.job .job__list-title {
		width: 130px;
		text-align: left;
	}
}

.job .job__list-detail {
	flex: 1;
}

.job .job__list-paragraph {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.job .job__list-paragraph:not(:last-of-type) {
	margin-bottom: 15px;
}

.job .job__list-address {
	font-style: normal;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.job .job__list-address:not(:last-of-type) {
	margin-bottom: 15px;
}

.job .job__list-treatment-list {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

.job .job__list-treatment-list:not(:last-of-type) {
	margin-bottom: 15px;
}

.job .job__btn-container {
	text-align: center;
	margin-top: 80px;
}

.job .btn {
	width: 386px;
	height: 64px;
}

/* -----------------------------------------------------
新卒採用ページ
----------------------------------------------------- */
/* -----------ファーストビュー----------- */
.grad-hero {
	min-height: 700px;
	position: relative;
	box-sizing: border-box;
	align-content: center;
}

.grad-hero__background {
	background-image: url("./../images/graduated_recruit_bg.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	z-index: -5;
}

.grad-hero__inner {
	margin-top: 50px;
}

.grad-hero__title {
	line-height: 1.53;
	font-size: 47px;
	font-weight: 700;

	color: #fff;
}

.grad-hero__lead {
	font-size: 20px;
	line-height: 2;

	margin-top: 40px;
	color: #fff;
}

.grad-hero__lead:first-of-type {
	margin-top: 46px;
}

/* -----------PROLOGUE----------- */

.grad-prologue {
	position: relative;
	min-height: 700px;
	align-content: center;
}

.grad_prologue__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("./../images/graduated_recruit2_bg.jpg") no-repeat center/cover;
	z-index: -5;
}

.grad_prologue__inner {
	padding-top: 60px;
	text-align: center;
}

.grad_prologue__label {
	font-size: 22px;
	line-height: 1.73;
	letter-spacing: 0.2em;
	color: #fff;
}

.grad_prologue__title {
	margin-top: 15px;
	margin-bottom: 51px;
	font-size: 48px;
	font-weight: bold;
	line-height: 1.55;

	color: #fff;
}

.grad_prologue__paragraph {
	color: #fff;
	line-height: 1.73;
	font-size: 16px;
}

.grad_prologue__paragraph:not(:first-of-type) {
	margin-top: 30px;
}

/* --------------concept-------------- */
.grad-concept {
	display: flex;
	min-height: 700px;
}

.grad-concept__header {
	flex: 0 1 30%;
	position: relative;
	display: flex;
	justify-content: flex-end;
	padding-left: 30px;
}

.grad-concept__bg-img {
	position: absolute;
	background: url("./../images/graduated_recruit_concept_bg_pc.png") no-repeat top center/cover;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

.grad-concept__header-inner {
	position: relative;
	color: #fff;
	max-width: 390px;
	width: 100%;
	padding-top: 68px;
}

.grad-concept__label {
	font-size: 22px;
	margin-bottom: 150px;
	letter-spacing: 0.2em;
	line-height: 1.73;
}

.grad-concept__title {
	font-size: 38px;
	font-weight: 700;
	line-height: 1.55;

}

.grad-concept__body {
	flex: 1;
	background: #e8e8e8;
	padding-inline: 30px;
	align-content: center;
}

.grad-concept__list {
	flex: 1;
}

.grad-concept__item {
	display: grid;
	grid-template-areas:
		"num title lead"
		"num title detail";
	grid-template-columns: 150px 220px 1fr;
	margin-top: 80px;
	grid-template-rows: max-content 1fr;
	row-gap: 10px;
}

.grad-concept__item:last-of-type {
	margin-bottom: 80px;
}

.grad-concept__meta {
	text-align: center;
	grid-area: num;
}

.grad-concept__number {
	display: block;
	font-size: 190px;
	line-height: 0.9;
	font-family: "Montserrat", sans-serif;
}

.grad-concept_item-label {
	font-size: 16px;
	line-height: 1.73;
	font-family: "Montserrat", sans-serif;
}

.grad-concept__item-title {
	font-size: 22px;
	line-height: 1.73;
	font-weight: 700;

	grid-area: title;
	margin-top: 35px;
}

.grad-concept__lead {
	grid-area: lead;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.73;
	margin-top: 35px;
}

.grad-concept__item-detail {
	font-size: 16px;
	line-height: 1.73;
	grid-area: detail;
}

@media (min-width: 767px) and (max-width: 1000px) {
	.grad-concept__item {
		grid-template-areas:
			"num title"
			"lead lead"
			"detail detail";
		grid-template-columns: 150px 1fr;
	}

	.grad-concept__body {
		padding-block: 50px;
	}

	.grad-concept__lead {
		margin-top: 10px;
	}
}

/* --------------culture と target-------------- */
.grad-section {
	position: relative;
	min-height: 700px;
	align-content: center;
}

.grad-section__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -5;
}

/* culture背景 */
.grad-section--culture .grad-section__bg-img {
	background-image: url("./../images/graded_recruit_culture.jpg");
}

/* target背景 */
.grad-section--target .grad-section__bg-img {
	background-image: url("./../images/graduated_recruit_target_bg.jpg");
}

.grad-section__inner {
	text-align: center;
	color: #fff;
}

.grad-section__label {
	font-size: 22px;
	line-height: 1.73;
	;
}

.grad-section__title {
	font-size: 48px;
	line-height: 1.55;
	font-weight: bold;
	margin-bottom: 70px;
}

.grad-section__text {
	font-size: 22px;
	line-height: 1.73;
	margin-top: 20px;
}

/* ------------------GROWTH---------------- */

.grad-growth {
	margin-block: 70px;
}

.grad-growth__label {
	font-size: 22px;
	line-height: 1.73;
	text-align: center;
	margin-bottom: 2px;
}

.grad-growth__title {
	font-size: 48px;
	text-align: center;
	line-height: 1.55;
	font-weight: bold;
}

.grad-growth__list {}

/* 丸3つ横並び */
.grad-growth .talent-skills__grid {
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 60px;
}

.grad-growth .talent-skills__item {
	flex: 0 0 calc(33.333% - 27px);
	max-width: 360px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: url("./../images/recruit_circle_bg.png") no-repeat;
	background-size: 100% 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 40px 24px;
}

.grad-growth .talent-skills__item-title {
	font-size: 46px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 16px;
	letter-spacing: 0.15em;

}

.grad-growth .talent-skills__item-text {
	font-size: 19px;
	line-height: 1.7;
	color: #fff;

	text-align: center;
}

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

	.grad-growth .talent-skills__grid {
		gap: 40px;
	}

	.grad-growth .talent-skills__item-title {
		font-size: 36px;
		line-height: 1;
		margin-bottom: 10px;
	}

	.grad-growth .talent-skills__item-text {
		font-size: 14px;
		line-height: 1.5;
	}
}

/* --------------------SUPPORT------------------------- */
.grad-support {
	height: 700px;
	position: relative;
}

.grad-support__bg-img {
	position: absolute;
	right: 0;
	height: 100%;
	width: 37%;
	top: 0;
	background: linear-gradient(rgba(35, 24, 21, 0.8), rgba(35, 24, 21, 0.8)), url("./../images/graduate_img1.jpg") calc(50% + 150px) center / cover no-repeat;
}

.grad-support__inner {}

.grad-support__block {
	margin-top: 76px;
	max-width: 683px;
	margin-right: 37%;

}

.grad-support__label {
	font-size: 22px;
	line-height: 1.73;
	margin-bottom: 8px;
}

.grad-support__title {
	font-size: 48px;
	line-height: 1.5;
	font-weight: bold;
	margin-bottom: 80px;
}

.grad-support__detail {
	font-size: 16px;
	line-height: 1.73;
	margin-top: 20px;
}

/* --------------------キャリアパス------------------ */
.grad-path {
	background: white;
	padding-top: 60px;
	padding-bottom: 60px;
}

.grad-path__inner {}

.grad-path__label {
	font-size: 22px;
	line-height: 1.73;
	font-family: "Montserrat", sans-serif;
	max-width: 1280px;
	width: 90%;
	margin-inline: auto;
}

.grad-path__title {
	font-size: 42px;
	font-weight: bold;
	line-height: 1.23;

	max-width: 1280px;
	width: 90%;
	margin-inline: auto;
}

.grad-path__list {
	position: relative;
	z-index: 1;
	max-width: 1440px;
	margin-inline: auto;
}

.grad-path__item-img--sp {
	display: none;
}

.grad-path__item {
	font-size: 18px;
	position: absolute;
	list-style-type: none;
}

.grad-path__item--phase1 {
	width: 27.5%;
	margin-top: 20%;
	left: 4%;
}

.grad-path__item--phase2 {
	width: 26.5%;
	margin-top: 17%;
	left: 35%;

}

.grad-path__item--phase3 {
	width: 25%;
	left: 65%;
	margin-top: 13%;
}

.grad-path__detail {
	font-size: 18px;
	line-height: 1.8;
}

.grad-path__item-img--pc {
	max-width: 1440px;
	margin-inline: auto;
}

/* キャリアパスエリア */

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

	.grad-path__item-img--sp {
		display: block;
	}

	.grad-path__item-img--pc {
		display: none;
	}

	.grad-path__item {
		position: static;
		width: 100%;
		max-width: 650px;
		margin-inline: auto;
		margin-bottom: 30px;
		margin-top: 0;
		padding: 0;
	}

	.grad-path__detail {
		padding: 30px;
		background-color: #EDEDED;
		margin-top: -20px;
	}
}

/* --------------------キャリアの例------------------ */
.grad-exam {
	padding-block: 60px;

	background-color: #fff;
}

.grad-exam__title {
	font-size: 25px;
	line-height: 1.23;
	font-weight: bold;
	max-width: 1280px;
	margin-inline: auto;
	width: 90%;
}

.grad-exam__title--bigger {
	font-size: 42px;
}

.grad-exam__list {
	margin-top: 40px;
	display: flex;
	gap: 18px;
	justify-content: center;
	max-width: 1380px;
	margin-inline: auto;
	width: 90%;
}

.grad-exam__item {
	flex: 0 1 449px;
	background-color: #EDEDED;
	padding: 50px 20px;
}

.grad-exam__item-header {
	display: flex;
	gap: 12px;
	align-items: center;
}

.grad-exam__item-num {
	font-size: 70px;
	line-height: 1;
	font-weight: lighter;
	font-family: "Montserrat", "Noto Sans JP", sans-serif;
	letter-spacing: -3px;
	flex-shrink: 0;
}

.grad-exam__item_title {
	font-size: 32px;
	line-height: 1.4;
	letter-spacing: -3%;
}

.grad-exam__item-text {
	font-size: 22px;
	line-height: 1.86;
	margin-top: 30px;
}

.grad-exam__exp {
	font-size: 18px;
	line-height: 1.86;
	max-width: 1280px;
	margin-inline: auto;
	width: 90%;
	margin-top: 30px;
}

@media (min-width: 767px) and (max-width: 1550px) {
	.grad-exam__item-num {
		font-size: 55px;
	}
	.grad-exam__item_title {
		font-size: 28px;
	}
}
@media (min-width: 767px) and (max-width: 1000px) {
	.grad-exam__list {
		flex-wrap: wrap;
	}
}

/* ------------------社員インタビュー----------------- */
.grad-interview {
	background-color: #F5F5F5;

}

/* ---------採用ページ・社員インタビュー詳細ページ共通使用部分------ */
.interview {
	padding-block: 30px;

}

.interview__title {
	font-size: 22px;
	line-height: 1.73;
	margin-bottom: 27px;
}

.interview__list {
	display: flex;
	justify-content: center;
	gap: 10px 50px;
	flex-wrap: wrap;
}

.interview__item {
	flex: 0 1 30%;
}

.interview__link:hover {
	opacity: 1;
}

.interview__pic {
	width: 100%;
}

.interview__profile {
	margin-inline: auto;
	margin-top: 12px;
	display: flex;
	justify-content: center;
	gap: 12px;

}

.interview__dept {
	line-height: 1.73;
	font-size: 18px;
}

.interview__name {
	line-height: 1.73;
	font-size: 18px;
	font-weight: 500;
}

.interview__btn-wrapper {
	text-align: center;
	margin-top: 20px;
}

@media (min-width: 767px) and (max-width: 855px) {
	.interview__profile {
		display: block;
		text-align: center;
		line-height: 1.5;
	}
}

/* ----------------------評価制度--------------------- */
.grad-system {
	padding-block: 60px;

	background-color: #fff;
}

.grad-system__grid {
	display: flex;
	align-items: center;
	gap: 88px;
}

.grad-system__title {
	font-size: 22px;
	line-height: 1.73;
	margin-bottom: 27px;
}

.grad-system__lead {
	font-size: 20px;
	line-height: 1.73;
	font-weight: bold;
	margin-bottom: 27px;
}

.grad-system__paragraph {
	font-size: 16px;
	line-height: 1.73;
	margin-top: 27px;
}

.grad-system__img {
	max-width: 507px;
}

/* ---------------------積極採用中--------------------- */
.grad-recruit {
	min-height: 700px;
	align-content: center;
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	background: url("./../images/graduated_recruit_bg2.jpg") no-repeat center/cover;
	color: #fff;
}

.grad-recruit__title {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 50px;
}

.grad-recruit__text {
	font-size: 18px;
	line-height: 1.72;
	margin-bottom: 58px;
}

.grad-recruit__cv-btn {
	width: 386px;
	height: 64px;
}

.grad-recruit__cv-btn:nth-of-type(2) {
	margin-top: 30px;
}

/* ------------------------------------------------- 
お問い合わせ・エントリーページ 
--------------------------------------------------- */
.contact {
	padding-top: 75px;
	position: relative;
	z-index: 2;
}

.contact .contact__inner {
	width: 680px;
	margin: auto;
	margin-bottom: 60px;
}

.contact .form {
	width: 640px;
	padding-bottom: 0;
}

.contact .form__field {
	margin-bottom: 18px;
	flex: 1;
}

.contact .form__label {
	text-align: left;
	display: block;
	font-size: 16px;
	padding-bottom: 8px;
	font-weight: bold;
}

.contact .form__required {
	color: #DC3755;
}

.contact .form__input,
.contact .form__textarea {
	width: 100%;
	height: 48px;
	font-size: 14px;
	border: 1px solid #C8C8C8;
	padding-left: 18px;
	border-radius: 5px;
	background: white;
}


.contact .form__textarea {
	height: 120px;
	border: 1px solid #C8C8C8;
	width: 100%;
	padding: 10px 18px;
	border-radius: 5px;
	resize: none;
}

.contact .form__field--agree p {
	font-size: 16px;
	display: flex;
	gap: 8px;
	font-weight: 300;
}

.contact .form__field--agree .form__label {
	font-weight: 300;
}

.contact .form__field--agree .wpcf7-list-item {
	margin-left: 0;
}

.contact .form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact .form__submit input[type=submit] {
	width: 265px;
	letter-spacing: 0.02em;
	font-size: 18px;
	height: 51px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #231815;
	color: white;
	border: none;
	border-radius: 8px;
}

.contact .form__policy-link {
	text-decoration: underline;
}

/* -----------------------------------------------------
エントリーページのみ
----------------------------------------------------- */
.contact .contact__lead {
	margin-bottom: 50px;
	font-size: 15px;
	line-height: 1.7;
}

.contact .form__grid p {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.contact .form__option {
	min-width: 90px;
	width: 100%;
	height: 48px;
	font-size: 14px;
	border: 1px solid #C8C8C8;
	padding-left: 18px;
	padding-right: 25px;
	border-radius: 5px;
	background: white;
}

.contact .form__field--graduate .wpcf7-form-control-wrap {
	display: block;
	text-align: left;
}

.contact .form__upload-btn {
	display: flex;
	width: 203px;
	align-items: center;
	justify-content: center;
	padding: 8px 32px;
	border: 1px solid #213862;
	color: #213862;
	border-radius: 8px;
	background-color: #fff;
	font-size: 14px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.contact .form__upload-btn .wpcf7-form-control-wrap {
	display: none;
}

/* ファイル添付 */
.contact .form__file p {
	display: flex;
	align-items: center;
}

.contact .file-name {
	font-size: 14px;
	margin-left: 15px;
}

/* -----------------------------------------------------
お問い合わせ完了ページ
----------------------------------------------------- */
.contact-finish-paragraph {
	margin-top: 50px;
	margin-bottom: 50px;
}

/* -----------------------------------------------------
プライバシーポリシーページ
----------------------------------------------------- */
.page--policy {
	max-width: 1280px;
	margin-inline: auto;
	width: 90%;
}

.policy {
	margin-block: 50px;
}

.policy__title {
	font-size: 40px;
	line-height: 1.7;
	font-weight: bold;
	margin-bottom: 30px;
}

.policy__text {
	line-height: 1.7;
	font-size: 14px;
}

.policy__list {
	margin-top: 30px;
}

.policy__item {
	margin-bottom: 30px;
}

.policy__item-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4;
}

.policy__item-text {
	font-size: 14px;
	line-height: 1.6;
	margin-top: 8px;
}

.policy__sign {
	margin-top: 30px;
	border-top: 1px solid #ddd;
	text-align: right;
	padding-top: 10px;
}

.policy__contact {}

.policy__contact-title {
	font-weight: bold;
	font-size: 16px;
}

.policy__contact .policy__text {
	font-size: 14px;
}

.policy__subitem-title {
	font-weight: bold;
	margin-top: 10px;
	font-size: 14px;
}

.policy__sublist {
	margin-top: 10px;
	font-size: 14px;
}

.policy__subitem {
	margin-bottom: 5px;
}

.policy__total-contact {
	background-color: #efefef;
	padding: 20px 40px 30px 40px;
	margin-top: 50px;
}

.policy__total-contact-title {
	font-size: 18px;
}

.policy__contact-list {
	display: flex;
	margin-top: 10px;
}

.policy__contact-list dt {
	font-size: 14px;
	flex-basis: 150px;
	line-height: 1.6;
}

.policy__contact-list dd {
	flex: 1;
	font-size: 14px;
	line-height: 1.6;
}

/* -----------------------------------------------------
採用選考に関する個人情報取扱いについて
----------------------------------------------------- */
.rule {
	margin-block: 50px;
}

.rule__paragraph {
	line-height: 1.7;
	font-size: 14px;
}

.rule__list {}

.rule__item {
	margin-top: 20px;
}

.rule__item-title {
	font-size: 18px;
	line-height: 1.7;
	font-weight: bold;
	margin-bottom: 5px;
}

.rule__contact-box {
	background-color: #efefef;
	padding: 20px 40px 30px 40px;
	margin-top: 50px;
}

.rule__contact {
	display: flex;
	margin-top: 10px;
}

.rule__contact-term {
	font-size: 14px;
	flex-basis: 150px;
	line-height: 1.6;
	font-weight: bold;
}

.rule__contact-desc {
	flex: 1;
	font-size: 14px;
	line-height: 1.6;
}

/* -------------------------------------------------
404エラーページ
------------------------------------------------- */

.error {
	margin-top: 60px;
	margin-bottom: 60px;
	text-align: center;
}

.error__text {
	font-size: 18px;
}

.error__btn {
	margin-top: 30px;
}

/* -------------------------------------------------
footer
------------------------------------------------- */
.sec_footer {
	background: #000;
	padding: 19px 0 32px;
	margin-top: auto;
}

.sec_footer .footer_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 0;
	margin-inline: auto;
	padding-inline: 45px;
	max-width: 100%;
	width: 100%;
}

.sec_footer .footer_logo {
	font-size: 28px;
	font-weight: 600;
	color: #fff;
	line-height: 1;
	margin-bottom: 8px;
}

.sec_footer .footer_logo img {
	max-width: 105px;
}

.sec_footer .footer_copyright {
	font-size: 12px;
	font-weight: bold;
	color: white;
	line-height: 1.73;
	font-family: "Yu Gothic", "Noto Sans JP", sans-serif;
}

.sec_footer .footer_center {
	display: flex;
	align-items: center;
	gap: 15px 30px;
	flex-wrap: wrap;
	flex: 1;
	padding-left: 50px;
}

.sec_footer .footer_service {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 14px;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.sec_footer .footer_service:hover {
	opacity: 0.85;
}

.footer_service_img1 {
	width: 81.97px;
	height: 29px;
}

.footer_service_img2 {
	width: 181px;
}

.footer_service_img3 {
	width: 203.26px;
	height: 26px;
}

.footer_service_img4 {
	width: 144.31px;
	height: 23px;
	margin-top: 6px;
}

.footer_service_img5 {
	width: 90.53px;
	height: 28px;
}

.sec_footer .footer_right {
	display: flex;
	align-items: flex-end;
	gap: 16px;
}

.sec_footer .sns_icon {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sec_footer .sns_icon img {
	width: auto;
	height: 16px;
	-o-object-fit: contain;
	object-fit: contain;
}

.sec_footer .sns_icon {
	font-size: 14px;
	text-decoration: none;
	transition: opacity 0.25s ease;
}

.sec_footer .sns_icon:hover {
	opacity: 0.85;
}

/* footerふわっと出るアニメーション */
/* --- スマホ以外デバイスのみ適用 (767px以上) --- */
@media screen and (min-width: 767px) {
	.footer-wrapper {
		position: fixed;
		height: 200px;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 100;
		transform: translateY(100%);
		transition: transform 0.5s ease;
	}

	.sec_footer {
		height: 200px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
	}

	.footer-wrapper.is-show {
		transform: translateY(0);
	}

	.footer-control {
		padding-bottom: 200px;
	}

}

@media screen and (min-width: 1024px) {
	.footer-wrapper {
		height: 109px;
	}

	.sec_footer {
		height: 109px;
	}

	.footer-control {
		padding-bottom: 109px;
	}
}

/* =========================================
   Scroll Snap + VH Fix 
========================================= */
:root {
	--vh: 100vh;
}

body {
	overflow: hidden;
}

.scroll-container {
	height: var(--vh);
	overflow-y: scroll;
	scroll-snap-type: y mandatory;
	scrollbar-width: none;
	-ms-overflow-style: none;
	-webkit-overflow-scrolling: auto;
	scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
	display: none;
}

.snap-section {
	min-height: var(--vh);
	scroll-snap-align: start;
	position: relative;
	overflow: hidden;
	scroll-snap-stop: always;
}

/* グループセクション */
.snap-section-group {
	min-height: var(--vh);
	scroll-snap-align: start;
	position: relative;
	scroll-snap-stop: always;
}

.snap-section-group .snap-section {
	scrollbar-width: none;
}