/**
 * RECRUIT ページ 統合スタイルシート
 *
 * 以下のセクション CSS を統合:
 *   1. Gallery（オートスクロール写真帯）
 *   2. Benefits Tabs（福利厚生タブ）
 *   3. Staff Voices（社員インタビューカード）
 *   4. Job Information（募集要項 Spectra FAQ）
 *   5. Hiring Process（選考プロセス）
 *   6. FAQ（よくある質問 ACF アコーディオン）
 */

/* ==========================================================================
   1. Gallery — 100vw 高さ固定 4:3 オートスクロール
   ========================================================================== */

#page_contents:has(.ideage-recruit-gallery) {
	overflow-x: clip;
}

.ideage-recruit-gallery {
	--ideage-recruit-gallery-height: 400px;
	--ideage-recruit-gallery-slide-width: calc(var(--ideage-recruit-gallery-height) * 4 / 3);

	margin-top: 48px;
	margin-bottom: 100px;
	padding: 0;
	overflow: hidden;
	box-sizing: border-box;
}

.ideage-recruit-gallery__viewport {
	overflow: hidden;
	width: 100%;
}

.ideage-recruit-gallery__wrap {
	display: flex;
	flex-wrap: nowrap;
}

.ideage-recruit-gallery__carousel {
	display: flex;
	flex-wrap: nowrap;
	flex-shrink: 0;
	transform: translate3d(0, 0, 0);
}

.ideage-recruit-gallery__carousel:first-child {
	animation: ideage-recruit-gallery-loop var(--ideage-recruit-gallery-duration, 90s) linear infinite;
}

.ideage-recruit-gallery__carousel:nth-child(2) {
	animation: ideage-recruit-gallery-loop2 var(--ideage-recruit-gallery-duration, 90s) var(--ideage-recruit-gallery-delay-2, -60s) linear infinite;
}

.ideage-recruit-gallery__carousel:last-child {
	animation: ideage-recruit-gallery-loop3 var(--ideage-recruit-gallery-duration, 90s) var(--ideage-recruit-gallery-delay-3, -30s) linear infinite;
}

.ideage-recruit-gallery__item {
	flex: 0 0 auto;
	width: var(--ideage-recruit-gallery-slide-width);
	height: var(--ideage-recruit-gallery-height);
	margin-right: 24px;
	box-sizing: border-box;
}

.ideage-recruit-gallery__figure {
	margin: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background: #eee;
}

.ideage-recruit-gallery__figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@keyframes ideage-recruit-gallery-loop {
	0% { transform: translate3d(200%, 0, 0); }
	100% { transform: translate3d(-100%, 0, 0); }
}

@keyframes ideage-recruit-gallery-loop2 {
	0% { transform: translate3d(100%, 0, 0); }
	100% { transform: translate3d(-200%, 0, 0); }
}

@keyframes ideage-recruit-gallery-loop3 {
	0% { transform: translate3d(0%, 0, 0); }
	100% { transform: translate3d(-300%, 0, 0); }
}

/* ==========================================================================
   2. Benefits Tabs — 福利厚生タブ
   ========================================================================== */

.ideage-recruit-benefits {
	max-width: 1400px;
	margin: 0 auto 100px;
	padding: 0;
	box-sizing: border-box;
}

.ideage-recruit-benefits__tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 0 0 32px;
	padding: 0;
}

.ideage-recruit-benefits__tab {
	position: relative;
	flex: 1 1 0;
	min-width: 160px;
	margin: 0;
	padding: 14px 20px 18px;
	border: 2px solid #1e73be;
	border-radius: 999px;
	background: #fff;
	color: #1e73be;
	font-size: 16px;
	line-height: 1.5;
	font-family: inherit;
	font-weight: 600;
	text-align: center;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.ideage-recruit-benefits__tab:hover {
	opacity: 0.9;
}

.ideage-recruit-benefits__tab:focus {
	outline: none;
}

.ideage-recruit-benefits__tab:focus-visible {
	outline: 2px solid #1e73be;
	outline-offset: 3px;
}

.ideage-recruit-benefits__tab.is-active {
	background: #1e73be;
	color: #fff;
}

.ideage-recruit-benefits__tab-indicator {
	position: absolute;
	left: 50%;
	bottom: -20px;
	display: none;
	width: 26px;
	height: 22px;
	transform: translateX(-50%);
	pointer-events: none;
}

.ideage-recruit-benefits__tab.is-active .ideage-recruit-benefits__tab-indicator {
	display: block;
}

.ideage-recruit-benefits__panels {
	position: relative;
}

.ideage-recruit-benefits__panel {
	margin: 0;
	padding: 40px 48px;
	border-radius: 24px;
	background: #eaf4fb;
	box-sizing: border-box;
}

.ideage-recruit-benefits__panel[hidden] {
	display: none;
}

.ideage-recruit-benefits__columns {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 48px;
}

.post_content .ideage-recruit-benefits .ideage-recruit-benefits__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.ideage-recruit-benefits__item {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.post_content .ideage-recruit-benefits .ideage-recruit-benefits__item {
	margin: 0 0 16px;
	padding: 0;
	list-style: none;
}

.ideage-recruit-benefits__item:last-child {
	margin-bottom: 0;
}

.ideage-recruit-benefits__item-marker {
	flex: 0 0 auto;
	color: #1e73be;
	font-size: 16px;
	line-height: 2;
}

.ideage-recruit-benefits__item-body {
	flex: 1 1 auto;
	margin: 0;
	font-size: 16px;
	line-height: 2;
	color: #111;
}

.post_content .ideage-recruit-benefits .ideage-recruit-benefits__item-body {
	margin: 0;
	font-size: 16px;
	line-height: 2;
}

/* ==========================================================================
   3. Staff Voices — ブログ3カラムカード
   ========================================================================== */

#page_contents .post_content .ideage-recruit-staff-voices.ideage-blog-archive-wrap {
	max-width: none;
	width: 100%;
	margin: 0 auto 100px;
	padding: 0;
	box-sizing: border-box;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-recruit-staff-voices__heading {
	margin: 0 0 32px;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-recruit-staff-voices__archive {
	max-width: none;
	width: 100%;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr);
	gap: 45px 20px;
	margin: 0;
	padding: 0;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .item {
	position: relative;
	width: auto !important;
	max-width: none !important;
	margin: 0 !important;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .image_link {
	display: block;
	position: relative;
	width: 100%;
	margin: 0 0 20px !important;
	padding: 0;
	border-radius: 24px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	z-index: 1;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .image_wrap {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .image_wrap .image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__body {
	padding: 0 20px;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__title {
	font-family: 'Noto Sans JP', noto sans jp, sans-serif;
	font-size: 16px;
	color: #111;
	font-weight: 600;
	line-height: 1.6;
	margin: 0 0 10px;
	padding: 0;
	text-align: left;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__title a {
	color: #111111;
	text-decoration: none;
	max-height: none;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__title a:hover {
	color: #135a94;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__title span {
	display: block;
	overflow: visible;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
	max-height: none;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__meta {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', noto sans jp, sans-serif;
	font-size: 12px;
	line-height: 1.5;
	color: #111;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__meta-left {
	min-width: 0;
	flex: 1 1 auto;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__cat {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	min-width: 0;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__cat::before {
	content: '';
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #1e73be;
	flex-shrink: 0;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__cat a {
	color: #111111;
	text-decoration: none;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__cat a:hover {
	color: #135a94;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__date {
	position: relative;
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
	color: #888;
	font-size: 12px;
}

#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list .ideage-blog-card__date::before {
	display: none !important;
	content: none !important;
}

.ideage-recruit-staff-voices__empty {
	margin: 0;
	padding: 24px;
	text-align: center;
	color: #666;
}

/* ==========================================================================
   4. Job Information — 募集要項 Spectra FAQ アコーディオン
   ========================================================================== */

.ideage-recruit-job-info.wp-block-uagb-faq {
	max-width: 1400px;
	margin: 0 auto 100px;
	padding: 0;
	box-sizing: border-box;
}

.ideage-recruit-job-info.uagb-faq__outer-wrap {
	border: 2px solid #d8d8d8;
	border-radius: 34px;
	background: #fff;
	padding: 60px 80px;
	overflow: hidden;
	box-sizing: border-box;
}

.ideage-recruit-job-info .uagb-faq__wrap {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

.ideage-recruit-job-info .uagb-faq-child__outer-wrap,
.ideage-recruit-job-info.uagb-block-a74b4100 .uagb-faq-child__outer-wrap.uagb-faq-item,
.post_content .ideage-recruit-job-info .uagb-faq-child__outer-wrap.uagb-faq-item {
	margin: 0;
	padding: 0;
	border-left: 0 !important;
	border-right: 0 !important;
	border-bottom: 0 !important;
	border-top: 0 !important;
	border-radius: 0 !important;
	background: #fff;
	overflow: visible;
	box-sizing: border-box;
}

.uagb-block-a74b4100 .uagb-faq-child__outer-wrap {
	margin-bottom: 0 !important;
}

.uagb-block-a74b4100 .uagb-faq-questions-button,
.uagb-block-a74b4100 .uagb-faq-questions {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* FAQ（.ideage-recruit-faq__item + __item）と同じ区切り線 */
.post_content .ideage-recruit-job-info.uagb-block-a74b4100 .uagb-faq-child__outer-wrap.uagb-faq-item + .uagb-faq-child__outer-wrap.uagb-faq-item,
.ideage-recruit-job-info .uagb-faq-child__outer-wrap + .uagb-faq-child__outer-wrap {
	border-top: 1px solid #dfeef3 !important;
}

.ideage-recruit-job-info .uagb-faq-questions-button,
.ideage-recruit-job-info .uagb-faq-questions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
	margin: 0;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 0 !important;
	padding-right: 0 !important;
	border: 0;
	background: #fff;
	color: #111;
	font: inherit;
	text-align: left;
	cursor: pointer;
	box-sizing: border-box;
}

.ideage-recruit-job-info .uagb-faq-questions-button:hover {
	background: #fafcff;
}

.ideage-recruit-job-info .uagb-faq-questions-button:focus {
	outline: none;
}

.ideage-recruit-job-info .uagb-faq-questions-button:focus-visible {
	outline: 2px solid #1e73be;
	outline-offset: -2px;
}

.ideage-recruit-job-info .uagb-question {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
	min-width: 0;
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
	font: inherit;
}

.ideage-recruit-job-info__position-type {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	padding: 6px 24px 7px;
	border-radius: 9999px;
	font-family: 'Noto Sans JP', noto sans jp, sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.1;
	color: #fff;
}

.ideage-recruit-job-info__position-type--experienced {
	background: #1e73be;
}

.ideage-recruit-job-info__position-type--inexperienced {
	background: #50d2ff;
}

.ideage-recruit-job-info__position-title {
	flex: 1 1 auto;
	min-width: 0;
	font-family: 'Noto Sans JP', noto sans jp, sans-serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.5;
	color: #111;
}

.ideage-recruit-job-info .uagb-faq-questions-button .uagb-icon,
.ideage-recruit-job-info .uagb-faq-questions-button .uagb-icon-active {
	display: none !important;
}

.ideage-recruit-job-info .ideage-recruit-job-info__icon-wrap {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin-left: auto;
}

.ideage-recruit-job-info .ideage-recruit-job-info__icon {
	display: block;
	width: 38px;
	height: 38px;
}

.ideage-recruit-job-info .ideage-recruit-job-info__icon-bar--vertical {
	transform-origin: center;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.ideage-recruit-job-info .uagb-faq-child__outer-wrap.uagb-faq-item-active .ideage-recruit-job-info__icon-bar--vertical {
	transform: scaleY(0);
	opacity: 0;
}

.uagb-block-a74b4100 .uagb-faq-content,
.ideage-recruit-job-info .uagb-faq-content {
	margin: 0;
	padding: 25px 50px !important;
	background: #ECFAFF;
	box-sizing: border-box;
}

.ideage-recruit-job-info .uagb-faq-content > p:only-child {
	margin: 0;
	padding: 0;
}

.ideage-recruit-job-info__rows {
	display: flex;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 0;
}

.ideage-recruit-job-info__row {
	display: grid;
	grid-template-columns: minmax(140px, 220px) minmax(0, 1fr);
	gap: 16px 32px;
	margin: 0;
	padding: 20px 0;
	border-bottom: 1px solid #D8D8D8;
	box-sizing: border-box;
}

.ideage-recruit-job-info__row:last-child {
	border-bottom: 0;
	padding-bottom: 0;
}

.ideage-recruit-job-info__row-label {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', noto sans jp, sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.8;
	color: #111;
}

.ideage-recruit-job-info__row-content {
	margin: 0;
	padding: 0;
	font-family: 'Noto Sans JP', noto sans jp, sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	color: #333;
}

/* ==========================================================================
   5. Hiring Process — 選考プロセス
   ========================================================================== */

.post_content .ideage-recruit-section-anchor,
.editor-styles-wrapper .ideage-recruit-section-anchor {
	display: block;
	height: 0;
	overflow: hidden;
	scroll-margin-top: 100px;
}

.post_content .ideage-recruit-hiring-process > .uagb-container-inner-blocks-wrap,
.editor-styles-wrapper .ideage-recruit-hiring-process > .uagb-container-inner-blocks-wrap {
	flex-direction: row !important;
	align-items: flex-start;
	justify-content: center;
}

.post_content .ideage-recruit-hiring-process__step,
.editor-styles-wrapper .ideage-recruit-hiring-process__step {
	position: relative;
	flex: 1 1 0 !important;
	min-width: 0 !important;
	max-width: none !important;
	display: flex;
	flex-direction: column !important;
	align-items: stretch;
	justify-content: flex-start;
}

.post_content .ideage-recruit-hiring-process__box,
.editor-styles-wrapper .ideage-recruit-hiring-process__box {
	display: flex;
	flex-direction: column !important;
	align-items: center;
	justify-content: center;
}

.post_content .ideage-recruit-hiring-process__items,
.editor-styles-wrapper .ideage-recruit-hiring-process__items {
	width: 100%;
	box-sizing: border-box;
	padding: 0 2px !important;
}

.post_content .ideage-recruit-hiring-process__box.gradient-border-box,
.editor-styles-wrapper .ideage-recruit-hiring-process__box.gradient-border-box {
	position: relative;
	width: 100% !important;
	max-width: none !important;
	border-radius: 16px;
}

.post_content .ideage-recruit-hiring-process__box.gradient-border-box::before,
.editor-styles-wrapper .ideage-recruit-hiring-process__box.gradient-border-box::before {
	border-radius: 16px;
	padding: 6px;
}

.post_content .ideage-recruit-hiring-process__title .uagb-heading-text,
.editor-styles-wrapper .ideage-recruit-hiring-process__title .uagb-heading-text {
	font-family: 'Noto Sans JP', 'noto sans jp', sans-serif;
	color: #1e73be;
	letter-spacing: 0.04em;
}

.post_content .ideage-recruit-hiring-process__lead .uagb-heading-text,
.editor-styles-wrapper .ideage-recruit-hiring-process__lead .uagb-heading-text {
	font-family: 'Noto Sans JP', 'noto sans jp', sans-serif;
	color: #1e73be;
}

.post_content .ideage-recruit-hiring-process__items,
.editor-styles-wrapper .ideage-recruit-hiring-process__items {
	list-style: none;
	margin: 0;
	padding: 0;
}

.post_content .ideage-recruit-hiring-process__items li,
.editor-styles-wrapper .ideage-recruit-hiring-process__items li {
	position: relative;
	margin: 0 0 10px;
	padding-left: 1.2em;
	font-family: 'Noto Sans JP', 'noto sans jp', sans-serif;
	font-size: 16px;
	line-height: 1.85;
	color: #1a1a1a;
}

.post_content .ideage-recruit-hiring-process__items li:last-child,
.editor-styles-wrapper .ideage-recruit-hiring-process__items li:last-child {
	margin-bottom: 0;
}

.post_content .ideage-recruit-hiring-process__items li::before,
.editor-styles-wrapper .ideage-recruit-hiring-process__items li::before {
	content: '';
	position: absolute;
	top: 0.62em;
	left: 0.1em;
	width: 0.62em;
	height: 0.62em;
	border-radius: 50%;
	background: #1E73BE;
}

.post_content .ideage-recruit-hiring-process__step:not(:last-child) .ideage-recruit-hiring-process__box::after,
.editor-styles-wrapper .ideage-recruit-hiring-process__step:not(:last-child) .ideage-recruit-hiring-process__box::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -40px;
	width: 18px;
	height: 25px;
	transform: translateY(-50%);
	background-image: url('../images/recruit-hiring-process-arrow.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	pointer-events: none;
	z-index: 2;
}

/* ==========================================================================
   6. FAQ — よくある質問 ACF アコーディオン
   ========================================================================== */

.ideage-recruit-faq {
	max-width: 1400px;
	margin: 0 auto 100px;
	padding: 0;
	box-sizing: border-box;
}

.ideage-recruit-faq .ideage-recruit-faq__list {
	border: 2px solid #d8d8d8;
	border-radius: 34px;
	background: #fff;
	padding: 60px 80px;
	overflow: hidden;
	box-sizing: border-box;
}

.ideage-recruit-faq__item + .ideage-recruit-faq__item {
	border-top: 1px solid #dfeef3;
}

.ideage-recruit-faq__question {
	display: flex;
	align-items: center;
	gap: 16px;
	width: 100%;
	margin: 0;
	padding: 18px 0;
	border: 0;
	background: #fff;
	color: #111;
	font: inherit;
	text-align: left;
	cursor: pointer;
	box-sizing: border-box;
}

.ideage-recruit-faq__question:hover {
	background: #fafcff;
}

.ideage-recruit-faq__question:focus {
	outline: none;
}

.ideage-recruit-faq__question:focus-visible {
	outline: 2px solid #1e73be;
	outline-offset: -2px;
}

.ideage-recruit-faq__q-label {
	flex: 0 0 auto;
	font-family: 'Noto Sans JP', 'noto sans jp', sans-serif;
	font-size: 22px;
	font-weight: 600;
	line-height: 1.3;
	color: #1e73be;
}

.ideage-recruit-faq__q-text {
	flex: 1 1 auto;
	min-width: 0;
	font-family: 'Noto Sans JP', 'noto sans jp', sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	color: #111;
}

.ideage-recruit-faq__icon {
	display: block;
	flex: 0 0 auto;
	width: 38px;
	height: 38px;
	margin-left: auto;
}

.ideage-recruit-faq__icon-bar--v {
	transform-origin: center;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.ideage-recruit-faq__item.is-open .ideage-recruit-faq__icon-bar--v {
	transform: scaleY(0);
	opacity: 0;
}

.ideage-recruit-faq__answer {
	overflow: hidden;
}

.ideage-recruit-faq__answer[hidden] {
	display: none;
}

.ideage-recruit-faq__answer-inner {
	margin: 0;
	padding: 20px 50px;
	background: #ECFAFF;
	box-sizing: border-box;
	font-family: 'Noto Sans JP', 'noto sans jp', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	color: #333;
}

.ideage-recruit-faq__answer-inner p {
	margin: 0 0 0.5em;
}

.ideage-recruit-faq__answer-inner p:last-child {
	margin-bottom: 0;
}

.ideage-recruit-faq__answer-inner a {
	color: #1e73be;
	text-decoration: underline;
}

/* ==========================================================================
   Responsive — Gallery
   ========================================================================== */

@media (max-width: 781px) {
	.ideage-recruit-gallery {
		margin-top: 32px;
		margin-bottom: 64px;
	}

	.ideage-recruit-gallery.is-mobile-touch .ideage-recruit-gallery__viewport {
		touch-action: pan-y;
	}

	.ideage-recruit-gallery.is-mobile-touch .ideage-recruit-gallery__carousel {
		animation: none !important;
	}

	.ideage-recruit-gallery.is-mobile-touch .ideage-recruit-gallery__wrap {
		will-change: transform;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ideage-recruit-gallery__carousel {
		animation: none !important;
	}
}

/* ==========================================================================
   Responsive — Benefits Tabs
   ========================================================================== */

@media (max-width: 781px) {
	.ideage-recruit-benefits {
		margin-bottom: 64px;
		padding: 0;
	}

	.ideage-recruit-benefits__tabs {
		flex-wrap: nowrap;
		gap: 8px;
		margin-bottom: 28px;
	}

	.ideage-recruit-benefits__tab {
		flex: 1 1 0;
		min-width: 0;
		padding: 12px 8px 16px;
		font-size: 14px;
	}

	.ideage-recruit-benefits__tab-indicator {
		width: 20px;
		height: 17px;
		bottom: -16px;
	}

	.ideage-recruit-benefits__panel {
		padding: 28px 20px;
		border-radius: 16px;
	}

	.ideage-recruit-benefits__columns {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* ==========================================================================
   Responsive — Section Headings (heading-general)
   ========================================================================== */

@media (max-width: 781px) {
	.post_content .heading-general h2,
	.editor-styles-wrapper .heading-general h2 {
		flex-wrap: wrap;
		align-items: center;
		row-gap: 0;
	}

	.post_content .heading-general h2 span,
	.editor-styles-wrapper .heading-general h2 span {
		flex: 0 0 100%;
		margin-left: 26px;
		align-self: flex-start;
		line-height: 1.5;
	}
}

/* ==========================================================================
   Responsive — Staff Voices
   ========================================================================== */

@media screen and (max-width: 1100px) {
	#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width: 600px) {
	#page_contents .post_content .ideage-recruit-staff-voices .ideage-blog-list {
		grid-template-columns: 1fr;
	}

	#page_contents .post_content .ideage-recruit-staff-voices.ideage-blog-archive-wrap {
		margin-bottom: 64px;
	}
}

/* ==========================================================================
   Responsive — Job Information
   ========================================================================== */

@media (max-width: 781px) {
	.ideage-recruit-job-info.wp-block-uagb-faq {
		margin-bottom: 64px;
	}

	.ideage-recruit-job-info.uagb-faq__outer-wrap {
		border-radius: 16px;
		padding: 20px;
	}

	.ideage-recruit-job-info .uagb-faq-questions-button,
	.ideage-recruit-job-info .uagb-faq-questions {
		padding-top: 15px;
		padding-bottom: 15px;
		padding-left: 0 !important;
		padding-right: 0 !important;
		gap: 16px;
	}

	.ideage-recruit-job-info__position-title {
		font-size: 18px;
	}

	.ideage-recruit-job-info .uagb-faq-content,
	.uagb-block-a74b4100 .uagb-faq-content {
		padding: 20px 24px !important;
	}

	.ideage-recruit-job-info__row {
		grid-template-columns: 1fr;
		gap: 8px;
		padding: 16px 0;
	}
}

/* ==========================================================================
   Responsive — Hiring Process
   ========================================================================== */

@media (max-width: 781px) {
	.post_content .ideage-recruit-hiring-process > .uagb-container-inner-blocks-wrap,
	.editor-styles-wrapper .ideage-recruit-hiring-process > .uagb-container-inner-blocks-wrap {
		flex-direction: column !important;
	}

	.post_content .ideage-recruit-hiring-process__step,
	.editor-styles-wrapper .ideage-recruit-hiring-process__step {
		flex: 1 1 auto !important;
		width: 100% !important;
	}

	.post_content .ideage-recruit-hiring-process__step:not(:last-child) .ideage-recruit-hiring-process__box::after,
	.editor-styles-wrapper .ideage-recruit-hiring-process__step:not(:last-child) .ideage-recruit-hiring-process__box::after {
		display: none;
	}

	.post_content .ideage-recruit-hiring-process__step:not(:last-child)::after,
	.editor-styles-wrapper .ideage-recruit-hiring-process__step:not(:last-child)::after {
		content: '';
		position: absolute;
		left: 50%;
		bottom: -38px;
		width: 18px;
		height: 25px;
		transform: translateX(-50%) rotate(90deg);
		background-image: url('../images/recruit-hiring-process-arrow.svg');
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
		pointer-events: none;
		z-index: 2;
	}
}

/* ==========================================================================
   Responsive — FAQ
   ========================================================================== */

@media (max-width: 781px) {
	.ideage-recruit-faq {
		margin-bottom: 64px;
	}

	.ideage-recruit-faq .ideage-recruit-faq__list {
		border-radius: 16px;
		padding: 20px;
	}

	.ideage-recruit-faq__q-label {
		font-size: 18px;
	}

	.ideage-recruit-faq__q-text {
		font-size: 16px;
	}

	.ideage-recruit-faq__answer-inner {
		padding: 16px 20px;
	}
}

/* ==========================================================================
   Editor — ブロックエディター用スタイル
   ========================================================================== */

.editor-styles-wrapper .block-editor-writing-flow .is-root-container,
.editor-styles-wrapper .is-root-container.wp-block-post-content {
	width: 100%;
	max-width: 1400px;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 40px;
	padding-right: 40px;
	box-sizing: border-box;
}

/* Editor: Job Information 枠 */
.editor-styles-wrapper .block-editor-block-list__block.wp-block-uagb-faq.ideage-recruit-job-info,
.editor-styles-wrapper .wp-block-uagb-faq.ideage-recruit-job-info {
	width: calc(100% - 80px);
	max-width: 1400px;
	margin-left: auto !important;
	margin-right: auto !important;
	box-sizing: border-box;
	border: 2px solid #d8d8d8;
	border-radius: 34px;
	background: #fff;
	padding: 60px 80px;
	overflow: hidden;
}

.editor-styles-wrapper .wp-block-uagb-faq.ideage-recruit-job-info .block-editor-inner-blocks,
.editor-styles-wrapper .wp-block-uagb-faq.ideage-recruit-job-info .block-editor-block-list__layout,
.editor-styles-wrapper .wp-block-uagb-faq.ideage-recruit-job-info .uagb-faq__outer-wrap {
	width: 100%;
	max-width: 100%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

.editor-styles-wrapper .wp-block-uagb-faq.ideage-recruit-job-info :is(.wp-block-uagb-faq-child, .block-editor-block-list__block.wp-block-uagb-faq-child) {
	max-width: none !important;
	width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.editor-styles-wrapper .block-editor-block-list__block.uagb-block-a74b4001,
.editor-styles-wrapper .uagb-block-a74b4001.heading-general {
	width: 100%;
	max-width: 1400px;
	margin-left: auto !important;
	margin-right: auto !important;
	box-sizing: border-box;
}

.editor-styles-wrapper .ideage-recruit-job-info.uagb-faq__outer-wrap {
	border: 2px solid #d8d8d8;
	border-radius: 34px;
	padding: 60px 80px;
	overflow: hidden;
}

.editor-styles-wrapper .ideage-recruit-job-info .uagb-faq-child__outer-wrap {
	border: 0;
	border-radius: 0;
}

.editor-styles-wrapper .ideage-recruit-job-info .uagb-faq-child__outer-wrap + .uagb-faq-child__outer-wrap {
	border-top: 1px solid #dfeef3;
}

.editor-styles-wrapper .uagb-block-a74b4100 .uagb-faq-child__outer-wrap {
	margin-bottom: 0 !important;
}

.editor-styles-wrapper .uagb-block-a74b4100 .uagb-faq-questions-button,
.editor-styles-wrapper .uagb-block-a74b4100 .uagb-faq-questions {
	padding-top: 15px !important;
	padding-bottom: 15px !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.editor-styles-wrapper .uagb-block-a74b4100 .uagb-faq-content,
.editor-styles-wrapper .ideage-recruit-job-info .uagb-faq-content {
	padding: 25px 50px !important;
}

/* Editor: FAQ */
.editor-styles-wrapper .ideage-recruit-faq {
	max-width: 1400px;
	margin-left: auto !important;
	margin-right: auto !important;
}

/* ==========================================================================
   7. Entry Button — 右端フロating /contact/
   ========================================================================== */

:root {
	--ideage-recruit-entry-sticky-top: 90px;
}

.ideage-recruit-entry-btn {
	position: absolute;
	right: 30px;
	z-index: 50;
	display: block;
	width: 154px;
	line-height: 0;
	text-decoration: none;
	transition: opacity 0.2s ease;
}
.ideage-recruit-entry-btn img {
	filter: drop-shadow(0 4px 10px rgba(20, 61, 95, 0.2)); 
}

.ideage-recruit-entry-btn.is-sticky {
	position: fixed;
	top: var(--ideage-recruit-entry-sticky-top);
}

.ideage-recruit-entry-btn__img {
	display: block;
	width: 154px;
	height: auto;
}

@media (hover: hover) {
	.ideage-recruit-entry-btn:hover {
		opacity: 0.88;
	}
}

.ideage-recruit-entry-btn:focus {
	outline: none;
}

.ideage-recruit-entry-btn:focus-visible {
	outline: 2px solid #1e73be;
	outline-offset: 3px;
}

body.admin-bar .ideage-recruit-entry-btn.is-sticky {
	top: calc(var(--ideage-recruit-entry-sticky-top) + 32px);
}

@media screen and (max-width: 782px) {
	body.admin-bar .ideage-recruit-entry-btn.is-sticky {
		top: calc(var(--ideage-recruit-entry-sticky-top) + 46px);
	}
}

/* ==========================================================================
   Editor — Responsive
   ========================================================================== */

@media (max-width: 781px) {
	:root {
		--ideage-recruit-entry-anchor-top: 168px;
		--ideage-recruit-entry-sticky-top: 40px;
	}

	.editor-styles-wrapper .is-root-container.wp-block-post-content {
		padding-left: 16px;
		padding-right: 16px;
	}

	.editor-styles-wrapper .block-editor-block-list__block.wp-block-uagb-faq.ideage-recruit-job-info,
	.editor-styles-wrapper .wp-block-uagb-faq.ideage-recruit-job-info,
	.editor-styles-wrapper .ideage-recruit-job-info.uagb-faq__outer-wrap {
		width: calc(100% - 32px);
		padding: 20px;
		border-radius: 16px;
	}
	.ideage-recruit-entry-btn {
		right: 30px;
		z-index: 50;
		display: block;
		width: 120px;
		line-height: 0;
		text-decoration: none;
		transition: opacity 0.2s ease;
	}
	.ideage-recruit-entry-btn__img {
		display: block;
		width: 120px;
		height: auto;
	}
	
}
