/*!**********************************************************************************************************************************************************************************************!*\
  !*** css ../../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[2].use[1]!../../../node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./src/styles/theme/theme.css ***!
  \**********************************************************************************************************************************************************************************************/
/**
 * Theme Styles
 * best-anniversary テーマのメインスタイルシート
 */

/* Foundation */

/**
 * CSS Reset
 * モダンブラウザ向けの最小限のリセット
 */

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

* {
	margin: 0;
	padding: 0;
}

html {
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	min-height: 100vh;
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
	height: auto;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

ul,
ol {
	list-style: none;
}

a {
	color: inherit;
	text-decoration: none;
}

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

button {
	background: none;
	border: none;
	cursor: pointer;
}

/* フォーカス時のアウトライン */

:focus-visible {
	outline: 2px solid var(--wp--preset--color--primary);
	outline-offset: 2px;
}

/* スクリーンリーダー専用 */

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.screen-reader-text:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
	white-space: normal;
}

/**
 * Base Styles
 * 基本要素のスタイル定義
 */

/* ==========================================================================
   Lenis
   ========================================================================== */

html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

.lenis.lenis-smooth iframe {
	pointer-events: none;
}

html {
  scroll-padding-top: 150px;
  scroll-behavior: smooth;

  @media screen and (max-width: 781px) {
    scroll-padding-top: 100px;
  }
}

/* ==========================================================================
   Body
   ========================================================================== */

/* stylelint-disable-next-line no-descending-specificity */

body {
	font-family: var(--wp--preset--font-family--noto-sans-jp);
	font-size: var(--wp--preset--font-size--medium);
	color: var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--white);
	overflow-x: hidden;
	max-width: 100vw;
	letter-spacing: 0.02em;
	-ms-font-feature-settings: "palt";
	font-feature-settings: "palt";
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--wp--preset--font-family--akshar);
	font-weight: 700;
	line-height: 1.2;
}

p {
	margin-bottom: 1em;
}

p:last-child {
	margin-bottom: 0;
}

strong,
b {
	font-weight: 700;
}

em,
i {
	font-style: italic;
}

small {
	font-size: var(--wp--preset--font-size--small);
}

/* ==========================================================================
   Links
   ========================================================================== */

/* a {
	color: var(--wp--preset--color--primary);
	transition:
		color 0.2s ease,
		opacity 0.2s ease;
}

a:hover {
	text-decoration: underline;
} */

/* ==========================================================================
   Lists
   ========================================================================== */

ul,
ol {
	padding-left: 1.5em;
}

ul {
	list-style-type: disc;
}

ol {
	list-style-type: decimal;
}

li {
	margin-top: 0.5em;
}

li::marker {
	color: var(--wp--preset--color--primary);
}

/* ==========================================================================
   Images
   ========================================================================== */

img {
	vertical-align: middle;
}

figure {
	margin: 0;
}

figcaption {
	margin-top: 0.5em;
	font-size: var(--wp--preset--font-size--small);
	text-align: center;
	color: var(--wp--preset--color--black);
	opacity: 0.8;
}

/* ==========================================================================
   Tables
   ========================================================================== */

table {
	width: 100%;
	font-size: var(--wp--preset--font-size--small);
	border: 2px solid var(--wp--preset--color--primary);
}

th,
td {
	padding: 0.75em 1em;
	text-align: left;
	border: 1px solid var(--wp--preset--color--primary);
}

th {
	font-weight: 700;
	background-color: rgba(216, 192, 142, 0.2);
}

/* ==========================================================================
   Forms
   ========================================================================== */

input,
textarea,
select {
	width: 100%;
	padding: 0.75em 1em;
	font-size: var(--wp--preset--font-size--medium);
	color: var(--wp--preset--color--black);
	background-color: transparent;
	border: 1px solid var(--wp--preset--color--primary);
	border-radius: 4px;
	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--wp--preset--color--primary);
	box-shadow: 0 0 0 2px rgba(216, 192, 142, 0.3);
	outline: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
	color: var(--wp--preset--color--black);
	opacity: 0.5;
}

input::placeholder,
textarea::placeholder {
	color: var(--wp--preset--color--black);
	opacity: 0.5;
}

/* stylelint-disable-next-line no-descending-specificity */

textarea {
	min-height: 150px;
	resize: vertical;
}

label {
	display: block;
	margin-bottom: 0.5em;
	font-weight: 500;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

button,
.button,
input[type="submit"],
input[type="button"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 24px;
	font-size: var(--wp--preset--font-size--medium);
	font-weight: 500;
	line-height: 1.5;
	color: var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--white);
	border: 1px solid var(--wp--preset--color--white);
	border-radius: 9999px;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease,
		transform 0.2s ease;
}

/* button:hover,
.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
	opacity: 0.85;
	transform: translateY(-1px);
} */

button:active,
.button:active,
input[type="submit"]:active,
input[type="button"]:active {
	transform: translateY(0);
}

/* ==========================================================================
   Blockquote
   ========================================================================== */

blockquote {
	padding: 1.5em 2em;
	margin: 1.5em 0;
	font-style: italic;
	border-left: 4px solid var(--wp--preset--color--primary);
	background-color: rgba(216, 192, 142, 0.1);
}

blockquote p:last-child {
	margin-bottom: 0;
}

blockquote cite {
	display: block;
	margin-top: 1em;
	font-size: var(--wp--preset--font-size--small);
	font-style: normal;
	opacity: 0.8;
}

/* ==========================================================================
   Code
   ========================================================================== */

code,
kbd,
pre,
samp {
	font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
	font-size: 0.9em;
}

code {
	padding: 0.2em 0.4em;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 3px;
}

pre {
	padding: 1.5em;
	overflow-x: auto;
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 4px;
}

pre code {
	padding: 0;
	background-color: transparent;
}

/* ==========================================================================
   Horizontal Rule
   ========================================================================== */

hr {
	height: 2px;
	margin: 2em 0;
	background-color: var(--wp--preset--color--primary);
	border: none;
	opacity: 0.5;
}

/* ==========================================================================
   Selection
   ========================================================================== */

::-moz-selection {
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--primary);
}

::selection {
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--primary);
}

/**
 * Layout
 * レイアウト用の基本スタイル
 */

/* ==========================================================================
   Container
   ========================================================================== */

.l-container {
	width: 100%;
	max-width: var(--wp--style--global--content-size, 1312px);
	padding-right: var(--wp--style--root--padding-right, 20px);
	padding-left: var(--wp--style--root--padding-left, 20px);
	margin-right: auto;
	margin-left: auto;
}

.l-container--wide {
	max-width: var(--wp--style--global--wide-size, 1440px);
}

.l-container--full {
	max-width: none;
}

/* ==========================================================================
   Section
   ========================================================================== */

.l-section {
	padding-top: var(--wp--preset--spacing--60);
	padding-bottom: var(--wp--preset--spacing--60);
}

.l-section--small {
	padding-top: var(--wp--preset--spacing--50);
	padding-bottom: var(--wp--preset--spacing--50);
}

.l-section--large {
	padding-top: var(--wp--preset--spacing--70);
	padding-bottom: var(--wp--preset--spacing--70);
}

/* ==========================================================================
   Grid
   ========================================================================== */

.l-grid {
	display: grid;
	gap: var(--wp--preset--spacing--40);
}

.l-grid--2col {
	grid-template-columns: repeat(2, 1fr);

	@media (max-width: 781px) {
		grid-template-columns: 1fr;
	}
}

.l-grid--3col {
	grid-template-columns: repeat(3, 1fr);

	@media (max-width: 781px) {
		grid-template-columns: 1fr;
	}
}

.l-grid--4col {
	grid-template-columns: repeat(4, 1fr);

	@media (max-width: 781px) {
		grid-template-columns: 1fr;
	}

	@media (max-width: 1024px) {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ==========================================================================
   Flex
   ========================================================================== */

.l-flex {
	display: flex;
	gap: var(--wp--preset--spacing--40);
}

.l-flex--wrap {
	flex-wrap: wrap;
}

.l-flex--center {
	align-items: center;
	justify-content: center;
}

.l-flex--between {
	justify-content: space-between;
}

.l-flex--column {
	flex-direction: column;
}

/* ==========================================================================
   Stack (縦方向のスペーシング)
   ========================================================================== */

.l-stack > * + * {
	margin-top: var(--wp--preset--spacing--40);
}

.l-stack--small > * + * {
	margin-top: var(--wp--preset--spacing--30);
}

.l-stack--large > * + * {
	margin-top: var(--wp--preset--spacing--50);
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */

.l-main {
	flex: 1;
}

.l-sidebar {
	flex-shrink: 0;
	width: 300px;

	@media (max-width: 1024px) {
		width: 100%;
	}
}

/**
 * Utilities
 * ユーティリティクラス
 */

/* ==========================================================================
   Display
   ========================================================================== */

.u-hidden {
	display: none !important;
}

.u-visible {
	display: block !important;
}

.u-inline {
	display: inline !important;
}

.u-inline-block {
	display: inline-block !important;
}

@media (max-width: 781px) {

	.u-hidden--mobile {
		display: none !important;
	}

	.u-visible--mobile {
		display: block !important;
	}
}

@media (min-width: 782px) {

	.u-hidden--desktop {
		display: none !important;
	}

	.u-visible--desktop {
		display: block !important;
	}
}

/* ==========================================================================
   Text Alignment
   ========================================================================== */

.u-text-left {
	text-align: left !important;
}

.u-text-center {
	text-align: center !important;
}

.u-text-right {
	text-align: right !important;
}

/* ==========================================================================
   Text Colors
   ========================================================================== */

.u-color-base {
	color: var(--wp--preset--color--white) !important;
}

.u-color-contrast {
	color: var(--wp--preset--color--black) !important;
}

.u-color-primary {
	color: var(--wp--preset--color--primary) !important;
}

/* ==========================================================================
   Background Colors
   ========================================================================== */

.u-bg-base {
	background-color: var(--wp--preset--color--white) !important;
}

.u-bg-contrast {
	background-color: var(--wp--preset--color--black) !important;
}

.u-bg-primary {
	background-color: var(--wp--preset--color--primary) !important;
}

/* ==========================================================================
   Font Sizes
   ========================================================================== */

.u-font-small {
	font-size: var(--wp--preset--font-size--small) !important;
}

.u-font-medium {
	font-size: var(--wp--preset--font-size--medium) !important;
}

.u-font-large {
	font-size: var(--wp--preset--font-size--large) !important;
}

.u-font-x-large {
	font-size: var(--wp--preset--font-size--x-large) !important;
}

.u-font-xx-large {
	font-size: var(--wp--preset--font-size--xx-large) !important;
}

.u-font-xxx-large {
	font-size: var(--wp--preset--font-size--xxx-large) !important;
}

/* ==========================================================================
   Font Weight
   ========================================================================== */

.u-font-normal {
	font-weight: 400 !important;
}

/* stylelint-disable-next-line no-duplicate-selectors */

.u-font-medium {
	font-weight: 500 !important;
}

.u-font-bold {
	font-weight: 700 !important;
}

/* ==========================================================================
   Spacing
   ========================================================================== */

.u-mt-0 {
	margin-top: 0 !important;
}

.u-mb-0 {
	margin-bottom: 0 !important;
}

.u-mt-30 {
	margin-top: var(--wp--preset--spacing--30) !important;
}

.u-mt-40 {
	margin-top: var(--wp--preset--spacing--40) !important;
}

.u-mt-50 {
	margin-top: var(--wp--preset--spacing--50) !important;
}

.u-mt-60 {
	margin-top: var(--wp--preset--spacing--60) !important;
}

.u-mb-30 {
	margin-bottom: var(--wp--preset--spacing--30) !important;
}

.u-mb-40 {
	margin-bottom: var(--wp--preset--spacing--40) !important;
}

.u-mb-50 {
	margin-bottom: var(--wp--preset--spacing--50) !important;
}

.u-mb-60 {
	margin-bottom: var(--wp--preset--spacing--60) !important;
}

.u-pt-30 {
	padding-top: var(--wp--preset--spacing--30) !important;
}

.u-pt-40 {
	padding-top: var(--wp--preset--spacing--40) !important;
}

.u-pt-50 {
	padding-top: var(--wp--preset--spacing--50) !important;
}

.u-pt-60 {
	padding-top: var(--wp--preset--spacing--60) !important;
}

.u-pb-30 {
	padding-bottom: var(--wp--preset--spacing--30) !important;
}

.u-pb-40 {
	padding-bottom: var(--wp--preset--spacing--40) !important;
}

.u-pb-50 {
	padding-bottom: var(--wp--preset--spacing--50) !important;
}

.u-pb-60 {
	padding-bottom: var(--wp--preset--spacing--60) !important;
}

/* ==========================================================================
   Width
   ========================================================================== */

.u-w-full {
	width: 100% !important;
}

.u-w-auto {
	width: auto !important;
}

/* ==========================================================================
   Position
   ========================================================================== */

.u-relative {
	position: relative !important;
}

.u-absolute {
	position: absolute !important;
}

.u-fixed {
	position: fixed !important;
}

.u-sticky {
	position: sticky !important;
}

/* ==========================================================================
   Overflow
   ========================================================================== */

.u-overflow-hidden {
	overflow: hidden !important;
}

.u-overflow-auto {
	overflow: auto !important;
}

/* ==========================================================================
   Aspect Ratio
   ========================================================================== */

.u-aspect-square {
	aspect-ratio: 1 / 1 !important;
}

.u-aspect-video {
	aspect-ratio: 16 / 9 !important;
}

.u-aspect-4-3 {
	aspect-ratio: 4 / 3 !important;
}

/* ==========================================================================
   Object Fit
   ========================================================================== */

.u-object-cover {
	-o-object-fit: cover !important;
	   object-fit: cover !important;
}

.u-object-contain {
	-o-object-fit: contain !important;
	   object-fit: contain !important;
}

/* ==========================================================================
   Animation
   ========================================================================== */

.u-transition {
	transition: all 0.3s ease !important;
}

.u-no-transition {
	transition: none !important;
}

.u-z-10 {
	z-index: 10 !important;
}

/* ==========================================================================
   Sections
   ========================================================================== */

.top-philosophy {
	padding-top: 360px;
	padding-bottom: 230px;
	position: relative;
	z-index: 10;
	overflow-x: hidden;

	@media (max-width: 781px) {
		padding-top: 300px;
		padding-bottom: 135px;
	}
}

.top-philosophy-main {
	position: relative;
}

.top-philosophy-heading {
	font-size: 3rem;
	line-height: 1.7;
	text-align: center;
	position: relative;
	z-index: 1;
	font-family: var(--wp--preset--font-family--zen-antique);
	font-weight: 500;

	@media (max-width: 781px) {
		font-size: 24px;
	}
}

.top-philosophy-copy {
	margin-top: 45px !important;
	gap: 2em;
	position: relative;
	z-index: 1;
	letter-spacing: 0.05em;

	@media (max-width: 781px) {
		margin-top: 50px !important;
		gap: 16px;
	}
}

.top-philosophy-copy p {
	line-height: 2;
}

.top-philosophy-copy02 {
	position: relative;
	gap: 0;
	margin-top: 100px !important;
	letter-spacing: 0.1em;

	@media (max-width: 781px) {
		margin-top: 54px !important;
	}
}

.top-philosophy-copy02-heading {
	font-size: 32px;
	font-family: var(--wp--preset--font-family--zen-antique);
	position: relative;
	z-index: 1;

	@media (max-width: 781px) {
		font-size: 24px;
	}
}

.top-philosophy-copy02-text {
	position: relative;
	z-index: 1;
}

.top-philosophy-copy02-bg {
	position: absolute !important;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 924px;
	aspect-ratio: 924 / 222;

	@media (max-width: 781px) {
		width: 580px;
	}
}

.wp-block-buttons:has(.top-philosophy-button) {
	margin-top: 100px !important;

	@media (max-width: 781px) {
		margin-top: 54px !important;
	}
}

.top-philosophy-image {
	position: absolute !important;
	margin-top: 0;
}

.top-philosophy-image.top-philosophy-image--01 {
	top: -80px;
	left: 0;

	@media (max-width: 781px) {
		top: -50px;
		left: -24px;
		width: 188px;
	}
}

.top-philosophy-image.top-philosophy-image--02 {
	top: 130px;
	right: -26px;

	@media (max-width: 781px) {
		top: 300px;
		right: -64px;
		width: 161px;
	}
}

.top-philosophy-image.top-philosophy-image--03 {
	bottom: -50px;
	left: 65px;

	@media (max-width: 781px) {
		bottom: 0;
		left: -97px;
		width: 184px;
	}
}

.top-job {
	position: relative;
	z-index: 10;
}

.top-job-head {
	transform-origin: bottom;
	border-radius: 60px 60px 0 0;
	padding-left: 0;
	padding-right: 0;
	position: relative;
	overflow: hidden;

	@media screen and (max-width: 781px) {
		border-radius: 24px 24px 0 0;
	}
}

.top-job-head .loop-text {
	font-size: 152px;
	color: #fff;
	position: absolute;
	left: 0;
	top: 32px;
	z-index: -1;

	@media screen and (max-width: 781px) {
		font-size: 100px;
		top: 8px;
	}
}

.top-job-head-cover {
	height: 296px;
	min-height: auto !important;

	@media screen and (max-width: 781px) {
		height: auto;
		padding-top: 60px;
		padding-bottom: 45px;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

.top-job-head-column {
	@media screen and (max-width: 781px) {
		flex-direction: column !important;
		align-items: flex-start !important;
		gap: 38px !important;
	}
}

.top-job-head-content {
	padding-left: 0;
	padding-right: 0;
}

.top-job-head-heading {
	@media screen and (max-width: 781px) {
		padding: 0 15px;
	}
}

.top-job-head-heading-label {
	font-size: 18px;
	color: #ffffff80;
	opacity: 0.5;
	font-family: var(--wp--preset--font-family--noto-sans-jp);

	@media screen and (max-width: 781px) {
		font-size: 14px;
	}
}

.top-job-head-heading-label02 {
	line-height: 1.35;
	font-size: 40px;
	letter-spacing: 0.1em;
	font-family: var(--wp--preset--font-family--zen-antique);
	font-weight: 900;

	@media screen and (max-width: 781px) {
		font-size: 34px;
	}
}

.top-job-head-buttons {
	margin-left: auto !important;

	@media screen and (max-width: 781px) {
		display: grid !important;
		grid-template-columns: repeat(3, 1fr) !important;
		gap: 6px;
		width: 100%;
		padding-inline: 12px;
	}
}

.top-job-head-buttons .wp-block-button {
	width: 238px;

	@media screen and (max-width: 781px) {
		width: 100%;
	}
}

.top-job-head-buttons .wp-block-button .wp-block-button__link {
	padding: 20px 45px !important;
	font-size: 0.925rem;
	line-height: 1.4;
	border: none;
	outline: none;
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
	box-shadow: none;
	font-weight: 600;
	transition: 0.2s ease;
	text-align: center;
	width: 100%;

	@media screen and (max-width: 781px) {
		font-size: 13px;
		padding: 20px 10px !important;
	}
}

.top-job-head-buttons .wp-block-button .wp-block-button__link::before,
.top-job-head-buttons .wp-block-button .wp-block-button__link::after {
	display: none;
}

.top-job-head-buttons .wp-block-button .wp-block-button__link:hover {
	background-color: var(--term-color, #3ff7d6,);
}

.top-job-head-buttons .wp-block-button .wp-block-button__link.is-active-tab {
	background-color: var(--term-color, #3ff7d6,);
}

.top-job-contents {
	position: relative;
	z-index: 1;
	margin-top: -60px !important;
	padding-top: 90px !important;
	padding-bottom: 90px !important;
	border-radius: 60px 60px 0 0;

	@media screen and (max-width: 781px) {
		border-radius: 24px 24px 0 0;
		margin-top: -24px !important;
		padding-top: 55px !important;
		padding-bottom: 55px !important;
	}
}

.top-job-main-head {
	position: relative;
}

.top-job-main-en {
	font-size: 212px;
	font-weight: 600;
	line-height: 0.9;
	letter-spacing: 0.05em;
	text-transform: uppercase;

	@media screen and (max-width: 781px) {
		font-size: 70px;
		letter-spacing: 0;
	}
}

.top-job-main-heading {
	font-size: 24px;
	font-weight: 600;
	background-color: var(--wp--preset--color--white);
	z-index: 5;
	line-height: 1;
	padding: 6px 8px;
	letter-spacing: 0.05em;
	border-radius: 5px;
	width: -moz-fit-content;
	width: fit-content;
	margin: auto;

	@media screen and (max-width: 781px) {
		font-size: 14px;
		margin-top: 5px !important;
		width: -moz-fit-content;
		width: fit-content;
		padding: 3px 5px;
	}
}

.top-job-main-cards {
	margin-top: 40px !important;
}

.top-job-main-more {
	margin-top: 50px !important;

	@media screen and (max-width: 781px) {
		margin-top: 40px !important;
	}
}

/* stylelint-disable-next-line no-descending-specificity */

.top-job-main-more .wp-block-button .wp-block-button__link {
	@media screen and (max-width: 781px) {
		width: 320px;
		text-align: left;
	}
}

.top-interviewBg {
	position: relative;
	padding: 0 !important;
}

.top-interviewBg .wp-block-cover__image-background {
	top: auto !important;
	bottom: 0;
	height: auto !important;

	@media screen and (max-width: 781px) {
		bottom: auto !important;
		top: 50% !important;
		transform: translateY(-50%) !important;
	}
}

.top-interviewBg::after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	background-color: rgba(255, 255, 255, 0.35);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
}

.top-interview {
	padding-top: 120px !important;
	position: relative;
	z-index: 10;

	@media screen and (max-width: 781px) {
		padding-top: 70px !important;
	}
}

.top-interview-loop-text {
	position: absolute;
	top: 40px;
	left: 0;
	font-size: 152px;

	@media screen and (max-width: 781px) {
		font-size: 90px !important;
	}
}

.top-interview-heading {
	gap: 10px;

	@media screen and (max-width: 781px) {
		flex-direction: column !important;
		padding-inline: 24px !important;
	}
}

.top-interview-heading-label {
	writing-mode: vertical-rl;
	font-size: 18px;
	color: rgba(var(--wp--preset--color--black), 0.5);
	line-height: 1;
	letter-spacing: 0.15em;

	@media screen and (max-width: 781px) {
		font-size: 14px;
		writing-mode: horizontal-tb;
	}
}

.top-interview-heading-label02 {
	writing-mode: vertical-rl;
	font-family: var(--wp--preset--font-family--zen-antique);
	font-size: 48px;
	font-weight: 600;
	letter-spacing: 0.05em;
	line-height: 1;

	@media screen and (max-width: 781px) {
		font-size: 42px;
		writing-mode: horizontal-tb;
		letter-spacing: 0.1em;
	}
}

.top-interview-carousel {
	margin-top: -120px !important;

	@media screen and (max-width: 781px) {
		margin-top: 20px !important;
	}
}

.top-interview-copy {
	margin-top: 110px !important;
	font-size: 40px;
	line-height: 1.34;

	@media screen and (max-width: 781px) {
		margin-top: 54px !important;
		font-size: 24px;
	}
}

.top-links {
	padding-top: 200px !important;
	padding-bottom: 140px !important;
	position: relative;
	z-index: 10;
	padding-inline: 24px !important;

	@media screen and (max-width: 781px) {
		padding-top: 100px !important;
		padding-bottom: 80px !important;
	}
}

.top-links-col {
	gap: 90px;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr !important;
	}
}

.top-links-cards {
	position: relative;
	background-color: var(--wp--preset--color--black);
	border-radius: 20px;
	overflow: hidden;

	@media screen and (max-width: 781px) {
		display: none !important;
	}
}

.top-links-card {
	margin-top: 0;
	border-radius: 20px;
	padding: 83px 20px 62px;
	gap: 0;
	width: 100%;
	min-width: 0;
}

.top-links-card > * {
	max-width: 467px;
	width: 100%;
	margin-inline: auto !important;
}

@media screen and (min-width: 782px) {
	.top-links-cards {
		display: grid;
		grid-template-columns: 1fr;
	}

	.top-links-cards > .top-links-card {
		grid-area: 1 / 1;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		z-index: 0;
		transition:
			opacity 0.25s ease,
			visibility 0.25s ease;
	}

	/* スクリプト未実行時は先頭カードのみ表示 */
	.top-links-col:not([data-top-links-js])
		.top-links-cards
		> .top-links-card:first-child {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		z-index: 1;
	}

	.top-links-col[data-top-links-js]
		.top-links-cards
		> .top-links-card.top-links-card--active {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		z-index: 1;
	}
}

.top-links-card-heading {
	font-size: 18px;
	margin-top: 58px !important;
}

.top-links-card-en {
	font-family: var(--wp--preset--font-family--akshar);
	font-size: 60px;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
	letter-spacing: 0.025em;
	margin-top: 12px !important;
}

.top-links-card-description {
	margin-top: 12px !important;
	font-size: 16px;
	line-height: 1.9;
}

.top-links-links {
	gap: 0;
	position: relative;
	height: -moz-fit-content;
	height: fit-content;
}

.top-links-links::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background-image: repeating-linear-gradient(
		to right,
		var(--wp--preset--color--black),
		var(--wp--preset--color--black) 4px,
		transparent 4px,
		transparent 8px
	);
	background-repeat: repeat-x;
}

.top-links-links::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
	transform: translateY(50%);
	width: 42px;
	height: 3px;
	background-color: var(--wp--preset--color--black);

	@media screen and (max-width: 781px) {
		width: 29px;
	}
}

.top-links-link {
	gap: 0;
	position: relative;
	width: 100%;
	padding: 29px 0 32px;

	@media screen and (max-width: 781px) {
		padding: 24px 0;
	}
}

.top-links-link::before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 1px;
	background-image: repeating-linear-gradient(
		to right,
		var(--wp--preset--color--black),
		var(--wp--preset--color--black) 4px,
		transparent 4px,
		transparent 8px
	);
	background-repeat: repeat-x;
}

.top-links-link::after {
	content: "";
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	transform: translateY(-50%);
	width: 42px;
	height: 3px;
	background-color: var(--wp--preset--color--black);

	@media screen and (max-width: 781px) {
		width: 29px;
	}
}

.top-links-link-en {
	font-family: var(--wp--preset--font-family--akshar);
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.025em;

	@media screen and (max-width: 781px) {
		font-size: 12px;
	}
}

.top-links-link-heading {
	font-size: 28px;
	font-weight: 600;
	line-height: 1.2;

	@media screen and (max-width: 781px) {
		font-size: 20px;
	}
}

.top-links-link-heading a {
	color: var(--wp--preset--color--black);
}

.top-links-link-heading a:hover {
	text-decoration: none;
	opacity: 0.5;
}

.top-links-link:has(.top-links-link-heading a:hover) .top-links-link-en {
	opacity: 0.5;
}

.top-links-link-heading a::before {
	content: "";
	position: absolute;
	inset: 0;
}

.top-links-link-heading::after {
	content: "";
	display: block;
	position: absolute !important;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 37px;
	height: 37px;
	-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4KICA8cGF0aCBpZD0i5Lit44Oe44OJXzEiIGRhdGEtbmFtZT0i5Lit44Oe44OJIDEiIGQ9Ik0xMywyNkExMywxMywwLDAsMSwzLjgwOCwzLjgwOCwxMywxMywwLDEsMSwyMi4xOTIsMjIuMTkyLDEyLjkxNSwxMi45MTUsMCwwLDEsMTMsMjZaTTExLjcyLDcuOTY4aDBsLS43LjcxNkwxNC45MzUsMTIuNWwtMy45LDMuNTMxLjY3Ljc0MSw0LjY4OC00LjI0NUwxMS43Miw3Ljk2OFoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
	        mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4KICA8cGF0aCBpZD0i5Lit44Oe44OJXzEiIGRhdGEtbmFtZT0i5Lit44Oe44OJIDEiIGQ9Ik0xMywyNkExMywxMywwLDAsMSwzLjgwOCwzLjgwOCwxMywxMywwLDEsMSwyMi4xOTIsMjIuMTkyLDEyLjkxNSwxMi45MTUsMCwwLDEsMTMsMjZaTTExLjcyLDcuOTY4aDBsLS43LjcxNkwxNC45MzUsMTIuNWwtMy45LDMuNTMxLjY3Ljc0MSw0LjY4OC00LjI0NUwxMS43Miw3Ljk2OFoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	border-radius: 50%;
	background-color: var(--wp--preset--color--black);
	transition: 0.2s ease;

	@media screen and (max-width: 781px) {
		width: 29px;
		height: 29px;
	}
}

.top-links-link:has(.top-links-link-heading a:hover)
	.top-links-link-heading::after {
	opacity: 0.5;
}

.top-news {
  padding-top: 95px!important;
  padding-bottom: 85px!important;
  @media (max-width: 781px) {
    padding-top: 50px!important;
    padding-bottom: 45px!important;
  }
}

.top-news-col {
  gap: 40px;
  justify-content: space-between;
  @media screen and (max-width: 781px) {
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
  }
}

.top-news-heading {
	flex: 0 0 auto;
	flex-shrink: 0;
	width: -moz-max-content;
	width: max-content;
	gap: 12px;
	@media (max-width: 781px) {
		gap: 8px;
	}
}

.top-news-heading-label {
	font-weight: 600;
	letter-spacing: 0;
	font-size: 1rem;
  font-family: var(--wp--preset--font-family--noto-sans-jp);
}

.top-news-heading-label02 {
	font-size: 66px;
	font-family: var(--wp--preset--font-family--akshar);
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1;
	@media (max-width: 781px) {
		font-size: 40px;
	}
}

.top-news-posts {
	flex: 1 1 auto;
	min-width: 0;
  max-width: 955px;
	flex-wrap: nowrap !important;
}

/* Aspiration (私たちの目指す世界) */

/* ==========================================================================
   Aspiration - Common
   Mission / Vision 共通スタイル
   ========================================================================== */

.aspiration-common-copy {
	font-size: 32px;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 1.4375;

	@media screen and (max-width: 781px) {
		font-size: 24px;
	}
}

.aspiration-common-copy br {

	@media screen and (max-width: 781px) {
		display: none;
	}
}

.aspiration-common-title {
	font-size: 22px;
	letter-spacing: 0.05em;
	font-weight: 600;
	line-height: 1.2727;

	@media screen and (max-width: 781px) {
		font-size: 20px;
	}
}

.aspiration-common-desc {
	font-size: 15px;
	letter-spacing: 0.02em;
	font-weight: 400;
	line-height: 1.8686;
}

.aspiration-wrap {
	overflow: clip;
	z-index: 1;
}

.aspiration-wrap-copy {
	position: fixed;
	top: 30px;
	left: 34px;
	z-index: -1;
	width: 187px;

	@media screen and (max-width: 781px) {
		width: 65px;
		left: 0;
		top: 70px;
	}
}

.aspiration-wrap-copy img {
	width: 100%;
}

.aspiration-wrap-logo {
	position: fixed;
	top: 114px;
	right: 24px;
	margin-top: 0 !important;
	z-index: -1;
	width: 342px;

	@media screen and (max-width: 781px) {
		width: 213px;
		top: 100px;
		right: -30px;
	}
}

/* ==========================================================================
   Aspiration - Hero Section
   ========================================================================== */

.aspiration-hero {
	position: relative;
	padding-block: 312px 100px;
	overflow: hidden;

	@media screen and (max-width: 781px) {
		padding-block: 166px 75px;
	}
}

.aspiration-hero-heading {
	position: relative;
	z-index: 1;
	margin-top: 0 !important;
}

.aspiration-hero-copy {
	font-family: var(--wp--preset--font-family--zen-antique);
	font-size: 64px;

	@media screen and (max-width: 781px) {
		font-size: 42px;
	}
}

.aspiration-hero-label {
	position: absolute;
	left: -30px;
	bottom: 62px;
	z-index: -1;
	margin-top: 0 !important;

	@media screen and (max-width: 781px) {
		width: 237px;
		left: -10px;
		bottom: auto;
		top: -30px;
	}
}

/* ==========================================================================
   Aspiration - Message Section
   ========================================================================== */

.aspiration-message {
	position: relative;
	padding-block: 160px;
	overflow: hidden;
	--indent: 30px;
	margin-top: 0 !important;
	z-index: 1;

	@media screen and (max-width: 781px) {
		--indent: 10px;
		padding-block: 54px 68px;
	}
}

.aspiration-message-heading-en {
	position: absolute !important;
	right: -20px;
	line-height: 1;
	top: 0;
	font-size: 188px;
	font-weight: 700;
	font-family: var(--wp--preset--font-family--akshar);
	writing-mode: vertical-rl;

	@media screen and (max-width: 781px) {
		display: none !important;
	}
}

.aspiration-message-body {
	padding-right: 112px;

	@media screen and (max-width: 781px) {
		padding-right: 0;
	}
}

.aspiration-message-heading {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	padding-left: 10px;
	display: grid;
	grid-template-columns: 8px auto;
	gap: 8px;
	align-items: center;
}

.aspiration-message-heading::before {
	content: "";
	display: block;
	aspect-ratio: 1;
	background-color: var(--wp--preset--color--primary);
	border-radius: 50%;
}

.aspiration-message-copy-wrap {
	position: relative;
}

.aspiration-message-copy {
	font-size: 64px;
	font-weight: 700;
	letter-spacing: 0;
	line-height: 1.54;
	text-indent: calc(var(--indent) * -1);
	font-family: var(--wp--preset--font-family--zen-antique);
	padding-left: var(--indent);
	margin-top: 8px !important;

	@media screen and (max-width: 781px) {
		font-size: 42px;
		line-height: 1.38;
	}
}

.aspiration-message-label {
	position: absolute !important;
	bottom: -66px;
	left: 16px;
	z-index: 1;
	margin-top: 0 !important;

	@media screen and (max-width: 781px) {
		max-width: 244px !important;
		bottom: -40px;
		left: -10px;
	}
}

.aspiration-message-container {
	display: grid;
	font-size: 15px;

	@media screen and (max-width: 781px) {
		display: flex;
		flex-direction: column;
	}
}

.aspiration-message-container--01 {
	grid-template-columns: 516fr 640fr;
	gap: 24px 44px;
	margin-top: 118px !important;

	@media screen and (max-width: 781px) {
		margin-top: 24px !important;
	}
}

.aspiration-message-container--02 {
	grid-template-columns: 726fr 416fr;
	gap: 24px 58px;
	margin-top: 62px !important;

	@media screen and (max-width: 781px) {
		flex-direction: column-reverse;
		margin-top: 24px !important;
	}
}

.aspiration-message-title {
	font-size: 24px;
	line-height: 1.3;
	font-weight: 700;
	margin-bottom: 20px;

	@media screen and (max-width: 781px) {
		font-size: 18px;
	}
}

.aspiration-message-title span {
	display: inline;

	@media screen and (max-width: 781px) {
		display: inline-block;
	}
}

.aspiration-message-content > * + * {
	margin-top: 16px !important;
}

.aspiration-message-container figure.wp-block-image {
	margin-top: 0 !important;
}

.aspiration-message-container figure.wp-block-image img {
	border-radius: 12px;

	@media screen and (max-width: 781px) {
		border-radius: 10px;
	}
}

.aspiration-message-meta {
	text-indent: 10px;

	@media screen and (max-width: 781px) {
		text-indent: 0;
	}
}

/* ==========================================================================
   Aspiration - SDGs Section
   ========================================================================== */

.aspiration-sdgs {
	position: relative;
	z-index: 1;
	padding-block: 120px 152px;
	background-color: var(--wp--preset--color--white);
	margin-top: 0 !important;
	overflow: hidden;

	@media screen and (max-width: 781px) {
		padding-block: 94px 140px;
	}
}

.aspiration-sdgs-inner {

	@media screen and (max-width: 781px) {
		display: contents;
	}
}

.aspiration-sdgs-content {
	display: grid;
	grid-template-columns: 604fr 413fr;
	gap: 0 90px;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
	}
}

.aspiration-sdgs .aspiration-sdgs-logo {

	@media screen and (max-width: 781px) {
		order: 1;
		margin-left: 0 !important;
		width: 64px;
	}
}

.aspiration-sdgs-copy {
	font-size: 42px;
	font-weight: 700;
	line-height: 1.3;

	@media screen and (max-width: 781px) {
		font-size: 24px;
		order: 2;
	}
}

.aspiration-sdgs-desc {
	margin-top: 20px !important;

	@media screen and (max-width: 781px) {
		order: 3;
	}
}

.aspiration-sdgs-button {
	margin-top: 20px !important;

	@media screen and (max-width: 781px) {
		order: 5;
		width: 100%;
		justify-content: center;
	}
}

.aspiration-sdgs-card {

	@media screen and (max-width: 781px) {
		order: 4;
	}
}

.aspiration-sdgs-label {
	position: absolute !important;

	font-size: 242px;
	letter-spacing: 0;
	font-weight: 500;
	font-family: var(--wp--preset--font-family--akshar);
	color: #f5f6f7;
	white-space: nowrap !important;
	z-index: -1;
	line-height: 1;
	text-transform: uppercase;

	@media screen and (max-width: 781px) {
		font-size: 120px;
	}
}

.aspiration-sdgs-label--01 {
	top: -55px;
	right: 356px;

	@media screen and (max-width: 781px) {
		text-align: right;
		top: -35px;
		line-height: 0.8;
		right: 0;
	}
}

.aspiration-sdgs-label--01 br {
	display: none;

	@media screen and (max-width: 781px) {
		display: block;
	}
}

.aspiration-sdgs-label--02 {
	top: 225px;
	left: -20px;

	@media screen and (max-width: 781px) {
		bottom: 140px;
		left: 0;
		top: auto;
	}
}

.aspiration-sdgs-label--03 {
	right: 500px;
	bottom: -55px;

	@media screen and (max-width: 781px) {
		right: 0;
		bottom: 65px;
	}
}

.aspiration-sdgs-label--04 {
	right: 50px;
	bottom: -55px;

	@media screen and (max-width: 781px) {
		right: -10px;
		bottom: -25px;
	}
}

/* ==========================================================================
   Aspiration - Mission Section
   ========================================================================== */

.aspiration-mission {
	padding-top: 120px;
	margin-top: 0 !important;

	@media screen and (max-width: 781px) {
		padding-top: 76px;
	}
}

.aspiration-mission-gallery {
	margin-top: 0 !important;
	display: grid;
	grid-template-columns: 464fr 827fr;
	grid-template-rows: repeat(3, auto);
	gap: 24px 20px;
	padding-top: 110px;
	align-items: end;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
		padding-top: 32px;
	}
}

.aspiration-mission-card--01 {
	grid-column: 2 / 3;
	grid-row: 1 / 2;
	display: grid;
	grid-template-columns: repeat(2, auto);
	gap: 32px;

	@media screen and (max-width: 781px) {
		grid-column: 1 / -1;
		grid-row: inherit;
		grid-template-columns: 1fr;
	}
}

.aspiration-mission-card--02 {
	grid-column: 1 / 2;
	grid-row: 1 / 3;

	@media screen and (max-width: 781px) {
		grid-column: 1 / -1;
		grid-row: inherit;
	}
}

.aspiration-mission-card--03 {
	grid-column: 2 / 3;
	grid-row: 2 / 4;
	display: grid;
	grid-template-rows: subgrid;
	gap: 20px;

	@media screen and (max-width: 781px) {
		grid-column: 1 / -1;
		grid-row: inherit;
		grid-template-rows: auto;
	}
}

.aspiration-mission .aspiration-common-desc {
	margin-top: 16px;
}

.aspiration-mission-textarea {
	margin-top: 0 !important;
}

.aspiration-mission-card--02 .aspiration-mission-textarea {
	margin-top: 20px !important;
}

.aspiration-mission-textarea > * {

	@media screen and (max-width: 781px) {
		max-width: 100% !important;
	}
}

/* ==========================================================================
   Aspiration - Vision Section
   ========================================================================== */

.aspiration-vision {
	padding-block: 0 115px;

	@media screen and (max-width: 781px) {
		padding-block: 64px 130px;
	}
}

.aspiration-vision-content {
	position: relative;
	display: grid;
	grid-template-columns: calc((467 / 1312) * 100%) auto;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
	}
}

.aspiration-vision-textarea {
	padding-block: 205px 225px;

	@media screen and (max-width: 781px) {
		display: contents;
		padding-block: 0;
	}
}

.aspiration-vision-heading {
	@media screen and (max-width: 781px) {
		order: 1;
		width: 100%;
	}
}

.aspiration-vision-text {
	margin-top: 128px !important;

	@media screen and (max-width: 781px) {
		order: 3;
		margin-top: 40px !important;
	}
}

.aspiration-vision-num {
	font-size: 20px;
	letter-spacing: 0;
	font-family: var(--wp--preset--font-family--akshar);
}

.aspiration-vision-copy {
	margin-top: 6px !important;
}

.aspiration-vision-desc {
	margin-top: 10px !important;
}

.aspiration-vision-img {
	margin-top: 0 !important;
	translate: 32px 0;
	width: calc(100% + 30px);

	@media screen and (max-width: 781px) {
		order: 2;
		margin-block: -20px -50px !important;
		width: calc(100% + 120px);
		translate: -70px 0;
	}
}

.aspiration-vision-sticky {
	position: sticky;
	top: 0;

	@media screen and (max-width: 781px) {
		position: static;
	}
}

.aspiration-vision-circle {
	position: absolute;
	display: grid;
	place-items: center;
	width: 23%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	font-family: var(--wp--preset--font-family--akshar);
	margin-top: 0 !important;
	z-index: -1;
	backdrop-filter: blur(30px) brightness(1.15);
	-webkit-backdrop-filter: blur(30px) brightness(1.15);
}

.aspiration-vision-circle > p {
	font-size: 40px;
	display: grid;
	place-items: center;
	color: color-mix(in srgb, var(--wp--preset--color--black) 50%, transparent);
	line-height: 1;

	@media screen and (max-width: 781px) {
		font-size: 16px;
	}
}

.aspiration-vision-circle > p::before {
	color: var(--wp--preset--color--white);
	font-size: 20px;
	letter-spacing: 0;

	@media screen and (max-width: 781px) {
		font-size: 12px;
	}
}

.aspiration-vision-circle--01 {
	background-color: rgb(216 192 142 / 50%);
	top: calc((160 / 1027) * 100%);
	left: calc((140 / 1027) * 100%);
}

.aspiration-vision-circle--01 > p::before {
	content: "01";
}

.aspiration-vision-circle--02 {
	background-color: rgb(255 255 255 / 30%);
	bottom: calc((140 / 1027) * 100%);
	right: calc((90 / 1027) * 100%);
}

.aspiration-vision-circle--02 > p {
	color: color-mix(in srgb, var(--wp--preset--color--black) 20%, transparent);
}

.aspiration-vision-circle--02 > p::before {
	content: "02";
}

/* News （お知らせ） */

.news-col {
	display: flex;
	position: relative;

	@media screen and (max-width: 781px) {
		flex-direction: column;
	}
}

.news-col::before {
	content: "";
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 96px);
	height: 1px;
	background-color: var(--wp--preset--color--gray);

	@media screen and (max-width: 781px) {
		display: none;
	}
}

.news-sidebar {
	width: 375px;
	padding-top: 120px;
	padding-left: 48px;
	padding-right: 48px;
	padding-bottom: 120px;
	gap: 0;

	@media screen and (max-width: 781px) {
		width: calc(100% - 48px);
		margin-inline: auto;
		padding: 24px 4px;
		border-top: 1px solid var(--wp--preset--color--gray);
		border-bottom: 1px solid var(--wp--preset--color--gray);
	}
}

.news-main {
	padding-top: 40px;
	padding-left: 48px;
	padding-right: 48px;
	padding-bottom: 120px;
	flex: 1;
	border-left: 1px solid var(--wp--preset--color--gray);

	@media screen and (max-width: 781px) {
		border: 0;
		padding: 24px 24px 80px;
		margin-top: 0 !important;
	}
}

.news-sidebar-en {
	font-family: var(--wp--preset--font-family--akshar);
	text-transform: uppercase;
	font-size: 78px;
	font-weight: 700;
	opacity: 0.08;
	writing-mode: vertical-rl;
	line-height: 1;
	margin-right: auto !important;

	@media screen and (max-width: 781px) {
		display: none;
	}
}

.news-sidebar-category {
	list-style: none;
	padding-left: 0;
	margin-top: 10px !important;
	display: flex;
	flex-direction: column;
	gap: 10px 16px;

	@media screen and (max-width: 781px) {
		flex-wrap: wrap;
		flex-direction: row;
	}
}

.news-sidebar-category li {
	margin-top: 0 !important;
}

.news-sidebar-category li p a {
	color: var(--wp--preset--color--black);
	position: relative;
	font-size: 14px;
	font-weight: 600;
	display: block;
	padding-left: 28px;
	line-height: 1.5;
}

.news-sidebar-category li p a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 20px;
	height: 20px;
	background-color: var(--wp--preset--color--black);
	-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4KICA8cGF0aCBpZD0i5Lit44Oe44OJXzEiIGRhdGEtbmFtZT0i5Lit44Oe44OJIDEiIGQ9Ik0xMywyNkExMywxMywwLDAsMSwzLjgwOCwzLjgwOCwxMywxMywwLDEsMSwyMi4xOTIsMjIuMTkyLDEyLjkxNSwxMi45MTUsMCwwLDEsMTMsMjZaTTExLjcyLDcuOTY4aDBsLS43LjcxNkwxNC45MzUsMTIuNWwtMy45LDMuNTMxLjY3Ljc0MSw0LjY4OC00LjI0NUwxMS43Miw3Ljk2OFoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
	        mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4KICA8cGF0aCBpZD0i5Lit44Oe44OJXzEiIGRhdGEtbmFtZT0i5Lit44Oe44OJIDEiIGQ9Ik0xMywyNkExMywxMywwLDAsMSwzLjgwOCwzLjgwOCwxMywxMywwLDEsMSwyMi4xOTIsMjIuMTkyLDEyLjkxNSwxMi45MTUsMCwwLDEsMTMsMjZaTTExLjcyLDcuOTY4aDBsLS43LjcxNkwxNC45MzUsMTIuNWwtMy45LDMuNTMxLjY3Ljc0MSw0LjY4OC00LjI0NUwxMS43Miw3Ljk2OFoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
}

.news-posts {
	-moz-column-gap: 15px;
	     column-gap: 15px;
	max-width: 1060px;
	margin-inline: auto;
}

.news-posts .wp-block-post {
	display: flex;
	background-color: rgba(234, 234, 234, 0.5);
	border-radius: 12px;
	overflow: hidden;

	@media screen and (max-width: 781px) {
		flex-direction: column;
	}
}

.news-posts .wp-block-post:not(:first-child) {
	margin-top: 15px;

	@media screen and (max-width: 781px) {
		margin-top: 40px !important;
	}
}

.news-posts-image {
	width: 23.6%;

	@media screen and (max-width: 781px) {
		width: 100%;
		aspect-ratio: 328 / 166;
	}
}

.news-posts-image img {
	-o-object-fit: cover;
	   object-fit: cover;
	width: 100%;
	height: 100%;
}

.news-posts-body {
	flex: 1;
	padding: 35px 40px 40px;
	gap: 0;

	@media screen and (max-width: 781px) {
		padding: 18px 24px 40px;
	}
}

.news-posts-meta {
	gap: 8px;
}

.news-posts-date {
	font-family: var(--wp--preset--font-family--akshar);
	padding-top: 3px;
}

/* stylelint-disable-next-line no-descending-specificity */

.news-posts-cat a {
	font-size: 12px;
	color: var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--blue-accent);
	padding: 2px 14px;
	border-radius: 3px;
}

.news-posts-title {
	font-size: 16px;
	line-height: 1.75;

	@media screen and (max-width: 781px) {
		font-size: 14px;
	}
}

.news-posts-pagination {
	justify-content: center !important;
	gap: 50px;

	@media screen and (max-width: 781px) {
		margin-top: 40px !important;
	}
}

.news-posts-pagination-number {
	gap: 40px;
	display: flex;
	flex-wrap: wrap;
  @media screen and (max-width: 781px) {
    gap: 25px;
  }
}

/* stylelint-disable-next-line no-descending-specificity */

.news-posts-pagination-number a,
.news-posts-pagination-number span {
	font-size: 20px;
	font-family: var(--wp--preset--font-family--akshar);
	color: var(--wp--preset--color--black);

	@media screen and (max-width: 781px) {
		font-size: 16px;
	}
}

.news-posts-pagination-number .current {
	color: var(--wp--preset--color--gray);
}

.news-posts-pagination-arrow {
	font-size: 0;
	color: transparent;
	text-indent: -9999px;
	overflow: hidden;
	width: 50px;
	height: 50px;
	position: relative;

	@media screen and (max-width: 781px) {
		width: 38px;
		height: 38px;
	}
}

.news-posts-pagination-arrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1MCIgaGVpZ2h0PSI1MCIgdmlld0JveD0iMCAwIDUwIDUwIj4KICA8ZyBpZD0i44Kw44Or44O844OXXzEwNjIxNTgiIGRhdGEtbmFtZT0i44Kw44Or44O844OXIDEwNjIxNTgiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC04MTUgLTIxMTYpIj4KICAgIDxnIGlkPSLplbfmlrnlvaJfMTI1IiBkYXRhLW5hbWU9IumVt+aWueW9oiAxMjUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDgxNSAyMTE2KSIgZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjY2NjIiBzdHJva2Utd2lkdGg9IjEiPgogICAgICA8cmVjdCB3aWR0aD0iNTAiIGhlaWdodD0iNTAiIHJ4PSIyNSIgc3Ryb2tlPSJub25lIi8+CiAgICAgIDxyZWN0IHg9IjAuNSIgeT0iMC41IiB3aWR0aD0iNDkiIGhlaWdodD0iNDkiIHJ4PSIyNC41IiBmaWxsPSJub25lIi8+CiAgICA8L2c+CiAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzIyNTIxIiBkYXRhLW5hbWU9IumVt+aWueW9oiAyMjUyMSIgd2lkdGg9IjIuNTAxIiBoZWlnaHQ9IjEwLjAwMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODQyLjk5NiAyMTM0KSByb3RhdGUoNDUpIiBmaWxsPSIjMTU3MWRhIi8+CiAgICA8cmVjdCBpZD0i6ZW35pa55b2iXzIyNTIyIiBkYXRhLW5hbWU9IumVt+aWueW9oiAyMjUyMiIgd2lkdGg9IjEwLjAwMyIgaGVpZ2h0PSIyLjUwMSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoODM3LjY5MSAyMTM5LjMwNSkgcm90YXRlKDQ1KSIgZmlsbD0iIzE1NzFkYSIvPgogIDwvZz4KPC9zdmc+Cg==);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	border-radius: 50%;
}

.news-posts-pagination-arrow-next::before {
	transform: scaleX(-1);
}

.news-post-head {
	overflow-x: clip;
	max-width: 100%;
	padding-top: 55px;
}

.news-post-loop-text {
	overflow: visible !important;
	width: 100vw !important;
	margin-inline: 0 !important;
}

.news-post-meta {
	margin-top: -115px !important;
	gap: 8px;
	position: relative;
}

.news-post-date {
	font-family: var(--wp--preset--font-family--akshar);
	padding-top: 3px;
}

/* stylelint-disable-next-line no-descending-specificity */

.news-post-cat a {
	font-size: 12px;
	color: var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--blue-accent);
	padding: 2px 14px;
	border-radius: 3px;
}

.news-post-title {
	position: relative;
	font-size: 42px;
	line-height: 1.43;
	font-weight: 700;
	margin-top: 5px !important;
}

.news-post-content {
	margin-top: 65px;

	@media screen and (max-width: 781px) {
		margin-top: 30px;
	}
}

.news-post-back {
	margin-top: 30px !important;
}

.news-post-back .wp-block-button {
	max-width: 238px;
}

.news-post-back .wp-block-button__link {
	padding: 14px 45px !important;
	font-size: 0.925rem;
	line-height: 1.4;
	border: none;
	text-align: center;
	outline: none;
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
	box-shadow: 0 0 0 1px var(--wp--preset--color--gray);
}

.news-post-back .wp-block-button__link::before,
.news-post-back .wp-block-button__link::after {
	display: none;
}

.news-post-foot {
	border-top: 1px solid var(--wp--preset--color--gray);
	margin-top: 85px !important;
}

/* Career */

.career-intro {
	position: relative;
	text-align: center;
}

.career-intro-body {
	padding: 142px 24px 16px !important;

	@media screen and (max-width: 781px) {
		padding: 68px 24px 16px !important;
	}
}

.career-intro-heading-en {
	font-size: 60px;
	letter-spacing: -0.05em;
	font-family: var(--wp--preset--font-family--akshar);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;

	@media screen and (max-width: 781px) {
		font-size: 32px;
	}
}

.career-intro-heading {
	font-size: 42px;
	line-height: 1;
	font-weight: 700;
	margin-top: 0 !important;

	@media screen and (max-width: 781px) {
		font-size: 20px;
	}
}

.career-intro-copy {
	font-size: 24px;
	line-height: 1;
	font-weight: 700;
	margin-top: 46px !important;

	@media screen and (max-width: 781px) {
		font-size: 18px;
		margin-top: 32px !important;
	}
}

.career-intro-desc {
	margin-top: 12px !important;
}

.career-intro-note {
	margin-top: 16px !important;
	font-size: 10px;
}

.career-intro-label {
	font-size: 20px;
	font-weight: 700;
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--black);
	width: -moz-fit-content;
	width: fit-content;
	margin: 42px auto 0;
	border-radius: 6px;
	padding: 5px 13px;

	@media screen and (max-width: 781px) {
		font-size: 16px;
	}
}

.career-intro-flow {
	font-size: 20px;
	font-weight: 700;
	margin-top: 12px !important;

	@media screen and (max-width: 781px) {
		font-size: 16px;
	}
}

.career-intro-flow > p {
	margin-top: 0 !important;
}

.career-intro-flow p:nth-child(n + 2)::before {
	content: "";
	display: block;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 17px;
	aspect-ratio: 18 /17;
	margin: 12px auto;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNy43OSIgaGVpZ2h0PSIxNi42ODEiIHZpZXdCb3g9IjAgMCAxNy43OSAxNi42ODEiPjxnIGZpbGw9IiNmZmYiIGRhdGEtbmFtZT0i5aSa6KeS5b2iIDI0Ij48cGF0aCBkPSJNMy4zMzMuNWgxMS4xMjRjLjUzMiAwIDEuMDEzLjI3MiAxLjI4Ni43MjhzLjI4OCAxLjAwOS4wMzggMS40NzhsLTUuNTYyIDEwLjQzYy0uMjY2LjQ5OC0uNzYuNzk0LTEuMzI0Ljc5NGExLjQ4IDEuNDggMCAwIDEtMS4zMjQtLjc5NEwyLjAxIDIuNzA2YTEuNDkgMS40OSAwIDAgMSAuMDM4LTEuNDc4QTEuNDkgMS40OSAwIDAgMSAzLjMzMy41Ii8+PHBhdGggZmlsbD0iIzcwNzA3MCIgZD0iTTguODk1IDEzLjQzYy4xOCAwIC42MjgtLjA1MS44ODItLjUyOWw1LjU2Mi0xMC40M2EuOTguOTggMCAwIDAtLjAyNS0uOTg2Ljk4Ljk4IDAgMCAwLS44NTctLjQ4NUgzLjMzM2MtLjUxIDAtLjc3LjM0LS44NTcuNDg1YS45OC45OCAwIDAgMC0uMDI1Ljk4Nkw4LjAxMyAxMi45Yy4yNTQuNDc4LjcwMi41My44ODIuNTNtMCAxYTEuOTggMS45OCAwIDAgMS0xLjc2NS0xLjA2TDEuNTY4IDIuOTQxQy44NTggMS42MDkgMS44MjMgMCAzLjMzMyAwaDExLjEyNGMxLjUxIDAgMi40NzUgMS42MDkgMS43NjUgMi45NDFsLTUuNTYyIDEwLjQzYTEuOTggMS45OCAwIDAgMS0xLjc2NSAxLjA2Ii8+PC9nPjwvc3ZnPg==);
}

.career-intro-cols {
	display: grid;
	gap: 6px;
	grid-template-columns: repeat(2, 1fr);
	max-width: 1600px;
	margin: 20px auto 0 !important;
}

/* ==========================================================================
   Career - Work Section
   ========================================================================== */

.career-work {
	position: relative;
	padding-block: 160px;
	background-color: #f5f6f7;

	@media screen and (max-width: 781px) {
		padding-block: 60px;
	}
}

.career-work-heading-en {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	padding-left: var(--indent);
	display: grid;
	grid-template-columns: 8px auto;
	gap: 8px;
	align-items: center;
	font-family: var(--wp--preset--font-family--akshar);
	width: -moz-fit-content;
	width: fit-content;
}

.career-work-heading-en::before {
	content: "";
	display: block;
	aspect-ratio: 1;
	background-color: var(--wp--preset--color--primary);
	border-radius: 50%;
}

.career-work-heading {
	font-size: 54px;
	font-weight: 700;
	margin-top: 0 !important;

	@media screen and (max-width: 781px) {
		font-size: 32px;
	}
}

.career-work-label {
	font-family: var(--wp--preset--font-family--akshar);
	font-size: 73px;
	font-weight: 400;
	line-height: 1.054;

	@media screen and (max-width: 781px) {
		line-height: 1.3;
		font-size: 40px;
	}
}

.career-work-content {
	display: grid;
	grid-template-columns: 608fr 640fr;
	gap: 64px;
	align-items: center;
	margin-top: 56px !important;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
		margin-top: 40px !important;
		gap: 40px;
	}
}

.career-work-content + .career-work-content {
	margin-top: 80px !important;

	@media screen and (max-width: 781px) {
		margin-top: 60px !important;
	}
}

.career-work-desc {
	margin-top: 32px !important;
}

.career-work-copy {
	margin-top: 40px !important;
	font-size: 28px;
	font-weight: 700;

	@media screen and (max-width: 781px) {
		font-size: 18px;
	}
}

.career-work-list {
	margin-top: 20px !important;
}

.career-work-list li::marker {
	color: var(--wp--preset--color--green-accent);
}

.career-work-list li:nth-child(2)::marker {
	color: var(--wp--preset--color--blue-accent);
}

/* FAQ */

.faq-block {
	border-radius: 60px 60px 0 0;
	padding: 130px 24px 160px;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
		padding: 60px 24px 100px;
		border-radius: 24px 24px 0 0;
	}
}

.faq-block:has(.faq-block-buttons) {
	padding: 60px 24px 110px;

	@media screen and (max-width: 781px) {
		padding: 40px 24px 80px;
	}
}

.faq-block + .faq-block {
	margin-top: -60px !important;

	@media screen and (max-width: 781px) {
		margin-top: -40px !important;
	}
}

.faq-block-buttons {
	gap: 8px 4px;
	justify-content: center;

	@media screen and (max-width: 781px) {
		gap: 8px;
	}
}

.faq-block-buttons .wp-block-button {
	width: 238px;

	@media screen and (max-width: 781px) {
		flex: 0 1 auto;
		width: calc((100% - 8px) / 2);
		min-width: 155px;
	}
}

.faq-block-buttons .wp-block-button .wp-block-button__link {
	padding: 15px 45px !important;
	font-size: 16px;
	line-height: 1.4;
	border: 1px solid #707070;
	outline: none;
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
	box-shadow: none;
	font-weight: 600;
	transition: 0.2s ease;
	width: 100%;
	text-align: center;

	@media screen and (max-width: 781px) {
		font-size: 14px;
		padding: 10px !important;
	}
}

.faq-block-buttons .wp-block-button .wp-block-button__link[href="#work"]:hover,
.faq-block-buttons .wp-block-button .wp-block-button__link[href="#work"]:focus {
	background-color: #59d0fc;
}

.faq-block-buttons .wp-block-button .wp-block-button__link[href="#career"]:hover,
.faq-block-buttons .wp-block-button .wp-block-button__link[href="#career"]:focus {
	background-color: var(--wp--preset--color--yellow-accent);
}

.faq-block-buttons .wp-block-button .wp-block-button__link[href="#environment"]:hover,
.faq-block-buttons .wp-block-button .wp-block-button__link[href="#environment"]:focus {
	background-color: var(--wp--preset--color--purple-accent);
}

.faq-block-buttons .wp-block-button .wp-block-button__link[href="#recruit"]:hover,
.faq-block-buttons .wp-block-button .wp-block-button__link[href="#recruit"]:focus {
	background-color: var(--wp--preset--color--yellow-green-accent);
}

.faq-block-buttons .wp-block-button .wp-block-button__link[href="#other"]:hover,
.faq-block-buttons .wp-block-button .wp-block-button__link[href="#other"]:focus {
	background-color: var(--wp--preset--color--primary);
}

.faq-block-buttons .wp-block-button .wp-block-button__link::before,
.faq-block-buttons .wp-block-button .wp-block-button__link::after {
	display: none;
}

.faq-block-heading {
	font-size: 40px;
	letter-spacing: 0;
	line-height: 1.6;
	font-weight: 700;

	@media screen and (max-width: 781px) {
		font-size: 22px;
	}
}

.faq-block-heading br {
	@media screen and (max-width: 781px) {
		display: none;
	}
}

.faq-block-inner {
	display: grid;
	grid-template-columns: 415fr 864fr;
	gap: 32px 30px;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
	}
}

.faq-block-inner > * {
	width: 100%;
}

.faq-block-item + .faq-block-item {
	padding-top: 40px;
	border-top: 1px solid rgb(32 32 32 / 0.2);
	margin-top: 40px !important;

	@media screen and (max-width: 781px) {
		padding-top: 24px;
		margin-top: 24px !important;
	}
}

.faq-block-question {
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0;
	line-height: 1.8;
	align-items: center;

	@media screen and (max-width: 781px) {
		font-size: 16px;
		align-items: start;
		padding-top: 8px;
	}
}

.faq-block-answer {
	margin-top: 20px !important;

	@media screen and (max-width: 781px) {
		margin-top: 16px !important;
		font-size: 14px;
	}
}

.faq-block-question,
.faq-block-answer {
	display: grid;
	grid-template-columns: 50px 1fr;
	gap: 0 20px;

	@media screen and (max-width: 781px) {
		grid-template-columns: 40px 1fr;
		gap: 0 16px;
	}
}

.faq-block-question > *,
.faq-block-answer > * {
	grid-column: 2 / -1;
	width: 100%;
}

.faq-block-question::before,
.faq-block-answer::before {
	grid-column: 1 / 2;
	aspect-ratio: 1 / 1;
	font-size: 24px;
	display: grid;
	place-items: center;
	font-family: var(--wp--preset--font-family--akshar);
	letter-spacing: 0;
	border-radius: 50%;

	@media screen and (max-width: 781px) {
		font-size: 20px;
	}
}

.faq-block-question::before {
	content: "Q";
	color: var(--wp--preset--color--black);
	background-color: var(--wp--preset--color--white);

	@media screen and (max-width: 781px) {
		margin-top: -5px;
	}
}

.faq-block-answer::before {
	content: "A";
	margin-top: 2px;
	color: var(--wp--preset--color--white);
	background-color: var(--wp--preset--color--black);

	@media screen and (max-width: 781px) {
		margin-top: 0;
	}
}

/* Recruit */

.recruit-sort {
	background-color: var(--wp--preset--color--black);
	border-radius: 60px 60px 0 0;
	padding-top: 60px;
	padding-bottom: 110px;
	width: 100%;

	@media screen and (max-width: 781px) {
		padding: 40px 12px 65px;
		border-radius: 24px 24px 0 0;
	}
}

.recruit-sort-types {
	display: flex;
	justify-content: center;
	gap: 4px;

	@media screen and (max-width: 781px) {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
	}
}

.recruit-sort-types .wp-block-button {
	margin-top: 0 !important;
}

.recruit-sort-types .wp-block-button__link {
	display: block;
	padding: 12px 20px;
	min-width: 238px;
	text-align: center;
	border-radius: 9999px;
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
	border: 1px solid #707070;
	font-size: 16px;
	font-weight: 700;

	@media screen and (max-width: 781px) {
		min-width: inherit;
		font-size: 13px;
		padding: 12px 4px;
	}
}

.recruit-sort-types .is-current .wp-block-button__link {
	background-color: var(--wp--preset--color--yellow-green-accent);
}

.recruit-sort-types .wp-block-button__link:hover {
	background-color: var(--wp--preset--color--yellow-green-accent);
}

.recruit-sort-types .wp-block-button__link::before, 
.recruit-sort-types .wp-block-button__link::after {
  display: none;
}

.recruit-sort-search {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 48px 40px!important;
	margin-top: 40px !important;

	@media screen and (max-width: 781px) {
		padding: 32px 12px!important;
	}
}

.recruit-sort-search-heading {
	color: var(--wp--preset--color--white);
	font-size: 24px;
	font-weight: 700;

	@media screen and (max-width: 781px) {
		font-size: 18px;
	}
}

.recruit-sort-search-form {
	margin-top: 30px !important;

	@media screen and (max-width: 781px) {
		margin-top: 24px !important;
	}
}

.recruit-posts-column {
	gap: 0 !important;
	@media screen and (max-width: 781px) {
		flex-direction: column-reverse!important;
	}
}

.recruit-posts {
	border-radius: 60px 60px 0 0;
	margin-top: -60px !important;
	width: 100%;
	background-color: var(--wp--preset--color--white);

	@media screen and (max-width: 781px) {
		margin-top: 0 !important;
		border-radius: 0;
		padding-inline: 12px !important;
	}
}

.recruit-posts-main {
	padding-top: 130px !important;
	padding-bottom: 155px !important;

	@media screen and (max-width: 781px) {
		padding-top: 35px !important;
		padding-bottom: 58px !important;
	}
}

.recruit-posts-template .wp-block-post:not(:first-child) {
	margin-top: 25px !important;
}

.recruit-post-head-col {
	gap: 2px 20px;

	@media screen and (max-width: 781px) {
		flex-direction: column;
		align-items: flex-start;
	}
}

.recruit-post-heading {
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
	font-size: 24px;
	padding: 3px 8px;
	border-radius: 4px;
	letter-spacing: 0.05em;

	@media screen and (max-width: 781px) {
		font-size: 20px;
	}
}

.recruit-post-heading__inner {
	display: contents;
}

.recruit-post-heading:has(.recruit-post-heading__inner) {
	@media screen and (max-width: 781px) {
		background-color: transparent;
		color: inherit;
		padding: 0;
		border-radius: 0;
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		gap: 4px;

    .recruit-post-heading__inner {
      display: block;
      width: -moz-fit-content;
      width: fit-content;
      background-color: var(--wp--preset--color--black);
      color: var(--wp--preset--color--white);
      padding: 3px 4px 0;
      border-radius: 4px;
    }
	}

  @media screen and (min-width: 782px) {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--wp--preset--color--black);
    color: var(--wp--preset--color--white);
    padding: 3px 8px;
    border-radius: 4px;
  }
}

.recruit-post-class {
	font-size: 20px;
	font-weight: 600;
}

.recruit-post-description {
	line-height: 2;
	margin-top: 18px;

	@media screen and (max-width: 781px) {
		margin-top: 16px;
	}
}

.recruit-post-table {
	margin-bottom: 40px;

	@media screen and (max-width: 781px) {
		margin-bottom: 32px;
	}
}

.recruit-post-table-tr {
	gap: 15px;
	padding-bottom: 35px;
	border-bottom: 1px solid #dcdcdc;
}

.recruit-post-table-tr:not(:last-child) {
	margin-bottom: 35px;
}

.recruit-post-table-th {
	flex-basis: 170px !important;
	font-size: 18px;
	font-weight: 600;
}

.recruit-post-table-td {
	flex-basis: auto !important;
	flex-grow: 1 !important;
	line-height: 2;
}

.recruit-post-apply .wp-block-button {
	width: 360px;
}

/* Job */

/* ==========================================================================
   Job - Common
   Job 共通スタイル
   ========================================================================== */

.job-common-label {
	font-size: 16px;
	font-weight: 400;
	letter-spacing: 0;
	padding-left: var(--indent);
	display: grid;
	grid-template-columns: 8px auto;
	gap: 8px;
	align-items: center;
	font-family: var(--wp--preset--font-family--akshar);
}

.job-common-label::before {
	content: "";
	display: block;
	aspect-ratio: 1;
	background-color: var(--wp--preset--color--primary);
	border-radius: 50%;
}

.job-common-title {
	font-size: 64px;
	font-weight: 700;
	margin-top: 0 !important;
	font-family: var(--wp--preset--font-family--zen-antique);

	@media screen and (max-width: 781px) {
		font-size: 32px;
	}
}

.job-recommend {
	position: relative;
	padding-top: 142px;
	padding-bottom: 142px;
	overflow: hidden;
	background-color: var(--job-category-color);

	@media screen and (max-width: 781px) {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.job-recommend::before,
.job-recommend::after {
	content: "WHO IT’S FOR WHO IT’S FOR WHO IT’S FOR";
	font-size: 148px;
	font-family: var(--wp--preset--font-family--akshar);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.1);
	white-space: nowrap;
	overflow: hidden;
	width: 100%;
	position: absolute;
	letter-spacing: -0.05em;

	@media screen and (max-width: 781px) {
		font-size: 57px;
	}
}

.job-recommend::before {
	top: 0;
	left: 0;
}

.job-recommend::after {
	bottom: 0;
	right: 0;
	text-align: right;
	display: flex;
	justify-content: flex-end;
}

.job-recommend-inner {
	overflow: hidden;
}

.job-recommend-inner::before,
.job-recommend-inner::after {
	content: "WHO IT’S FOR WHO IT’S FOR WHO IT’S FOR";
	font-size: 148px;
	font-family: var(--wp--preset--font-family--akshar);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.1);
	white-space: nowrap;
	overflow: hidden;
	position: absolute;
	writing-mode: vertical-lr;
	letter-spacing: -0.05em;
}

.job-recommend-inner::before {
	top: 0;
	left: 0;
}

.job-recommend-inner::after {
	top: 0;
	right: 0;
}

.job-recommend-contents {
	background-color: var(--wp--preset--color--white);
	border-radius: 12px;
	padding: 65px 40px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	@media screen and (max-width: 781px) {
		padding: 60px 20px;
	}
}

.job-recommend-contents .wp-block-columns {
	max-width: 688px;
	width: 100%;
	margin-top: 24px !important;
	gap: 0 80px;

	@media screen and (max-width: 781px) {
		margin-top: 32px !important;
		display: grid;
		justify-content: center;
	}
}

.job-recommend-contents .wp-block-list {
	list-style: none;
	padding: 0;
}

.job-recommend-contents .wp-block-list li {
	position: relative;
	padding-left: 28px;
	font-size: 22px;
	font-weight: 700;
	margin: 16px 0 0;

	@media screen and (max-width: 781px) {
		font-size: 16px;
		margin: 8px 0 0;
	}
}

.job-recommend-contents .wp-block-list li::before {
	content: "";
	display: block;
	position: absolute;
	background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZGF0YS1uYW1lPSLjgrDjg6vjg7zjg5cgNzA0NzIyIiB2aWV3Qm94PSIwIDAgMjAgMjAiPjxjaXJjbGUgY3g9IjEwIiBjeT0iMTAiIHI9IjEwIiBmaWxsPSIjMjAyMDIwIiBkYXRhLW5hbWU9IualleWGhuW9oiA2OTEiIHRyYW5zZm9ybT0icm90YXRlKDkwIDEwIDEwKSIvPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iI2ZmZiIgc3Ryb2tlLXdpZHRoPSIyIiBkPSJtMTUuMTY0IDYuNS02LjkzNyA3LjA1OUw0LjUgOS40NDMiIGRhdGEtbmFtZT0i44OR44K5IDE2MzA2MzgiLz48L3N2Zz4=);
	width: 20px;
	height: 20px;
	background-size: contain;
	top: calc((1lh - 1em) / 2);
	left: 0;

	@media screen and (max-width: 781px) {
		width: 16px;
		height: 16px;
	}
}

.job-recommend-heading {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	line-height: 1.57;
	position: relative;
	z-index: 1;

	@media screen and (max-width: 781px) {
		font-size: 24px;
	}
}

.job-recommend-heading::before {
	content: "";
	position: absolute;
	width: calc(100% + 24px);
	height: 30px;
	font-display: block;
	top: 0;
	left: -12px;
	bottom: 0;
	margin: auto;
	background-color: color-mix(
		in oklch,
		var(--job-category-color) 35%,
		var(--wp--preset--color--white)
	);
	z-index: -1;
	border-radius: 4px;

	@media screen and (max-width: 781px) {
		width: calc(100% + 8px);
		left: -4px;
		height: 16px;
	}
}

.job-block {
	border-radius: 60px 60px 0 0;
	padding: 130px 24px 160px;
	position: relative;
	overflow: hidden;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
		padding: 40px 24px 100px;
		border-radius: 24px 24px 0 0;
	}
}

.job-block:has(.wp-block-best-anniversary-blocks-same-category-jobs) {
	padding: 60px 24px 110px;

	@media screen and (max-width: 781px) {
		padding: 40px 24px 80px;
	}
}

.job-block:has(.wp-block-best-anniversary-blocks-tab-buttons) {
	padding: 60px 24px 110px;

	@media screen and (max-width: 781px) {
		padding: 40px 24px 80px;
	}
}

.job-block .wp-block-best-anniversary-blocks-tab-buttons {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
	justify-content: center;
	gap: 8px 4px;
	max-width: 968px !important ;

	@media screen and (max-width: 781px) {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 8px;
	}
}

.job-block .wp-block-best-anniversary-blocks-tab-buttons .wp-block-button {
	margin: 0;
}

.job-block
	.wp-block-best-anniversary-blocks-tab-buttons
	.wp-block-button__link {
	padding: 15px 45px !important;
	font-size: 16px;
	line-height: 1.4;
	outline: none;
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
	font-weight: 700;
	transition: 0.2s ease;
	width: 100%;
	display: block;
	text-align: center;
	text-decoration: none;
	border-radius: 9999px;

	@media screen and (max-width: 781px) {
		font-size: 14px;
		padding: 10px !important;
	}
}

.job-block
	.wp-block-best-anniversary-blocks-tab-buttons
	.wp-block-button__link::before,
.job-block
	.wp-block-best-anniversary-blocks-tab-buttons
	.wp-block-button__link::after {
	display: none;
}

.job-block
	.wp-block-best-anniversary-blocks-tab-buttons
	.wp-block-button__link:hover {
	background-color: var(--job-category-color);
}

.job-block
	.wp-block-best-anniversary-blocks-tab-buttons
	.wp-block-button__link.is-active-tab {
	background-color: var(--job-category-color);
}

.job-block + .job-block {
	margin-top: -60px !important;

	@media screen and (max-width: 781px) {
		margin-top: -40px !important;
	}
}

.job-block:not(
		:has(.wp-block-best-anniversary-blocks-tab-buttons)
	):first-child {
	margin-top: -60px !important;

	@media screen and (max-width: 781px) {
		margin-top: -40px !important;
	}
}

.job-block-heading {
	font-size: 40px;
	letter-spacing: 0;
	line-height: 1.6;
	font-weight: 700;

	@media screen and (max-width: 781px) {
		font-size: 22px;
	}
}

.job-block-inner {
	padding-right: 112px;

	@media screen and (max-width: 781px) {
		padding-right: 0;
	}
}

.job-block-label {
	position: absolute !important;
	right: -20px;
	line-height: 1;
	top: 130px;
	font-size: 188px;
	font-weight: 700;
	font-family: var(--wp--preset--font-family--akshar);
	writing-mode: vertical-rl;

	@media screen and (max-width: 781px) {
		display: none !important;
	}
}

.job-block-content {
	display: grid !important;
	grid-template-columns: 640fr 516fr;
	gap: 16px 44px;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
	}
}

.job-block-content + .job-block-content {
	margin-top: 64px !important;

	@media screen and (max-width: 781px) {
		margin-top: 40px !important;
	}
}

.job-block-content:nth-of-type(2n) {
	display: grid;
	grid-template-columns: 516fr 640fr;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
	}
}

.job-block-content:nth-of-type(2n + 1) .wp-block-column:first-child {
	@media screen and (max-width: 781px) {
		order: 2;
	}
}

.job-block-content:nth-of-type(2n + 1) .wp-block-column:last-child {
	@media screen and (max-width: 781px) {
		order: 1;
	}
}

.job-block-content img {
	width: 100%;
}

.job-block-desc {
	margin-top: 20px !important;
}

.job-block-desc * + * {
	margin-top: 1em !important;
}

.job-schedule {
	padding-block: 160px;

	@media screen and (max-width: 781px) {
		padding-block: 60px;
	}
}

.job-step {
	padding-block: 160px;
  padding-inline: 24px!important;
	@media screen and (max-width: 781px) {
		padding-block: 60px 0;
	}
}

.job-step-desc {
	margin-top: 20px !important;
	margin-bottom: 120px !important;

	@media screen and (max-width: 781px) {
		margin-top: 16px !important;
		margin-bottom: 40px !important;
	}
}

.job-step-image {
	@media screen and (max-width: 781px) {
		margin-right: calc(
			var(--wp--style--root--padding-right) * -1
		) !important;
		margin-left: calc(var(--wp--style--root--padding-left) * -1) !important;
	}
}

.job-step-image img {
	width: 100%;
}

.job-mid-career {
	padding-block: 130px;

	@media screen and (max-width: 781px) {
		padding-block: 60px;
	}
}

.job-mid-career-body {
	display: grid;
	grid-template-columns: 604fr 413fr;
	gap: 0 88px;
	align-items: center;

	@media screen and (max-width: 781px) {
		grid-template-columns: 1fr;
	}
}

.job-mid-career-content {
	@media screen and (max-width: 781px) {
		display: contents;
	}
}

.job-mid-career-title {
	font-size: 42px;
	font-weight: 700;

	@media screen and (max-width: 781px) {
		font-size: 24px;
		order: 1;
		width: 100%;
	}
}

.job-mid-career-desc {
	margin-top: 22px !important;

	@media screen and (max-width: 781px) {
		margin-top: 16px !important;
		order: 2;
	}
}

.job-mid-career-button {
	margin-top: 22px !important;

	@media screen and (max-width: 781px) {
		width: 100%;
		order: 4;
	}
}

.job-mid-career-button .wp-block-button {
	width: 100%;
	max-width: 350px;
	margin: auto;
}

.job-mid-career-img {
	@media screen and (max-width: 781px) {
		order: 3;
	}
}

.job-posts-head {
	border-radius: 60px 60px 0 0;
	position: relative;
	overflow: hidden;
	background-color: var(--wp--preset--color--black);
	z-index: 1;

	@media screen and (max-width: 781px) {
		border-radius: 24px 24px 0 0;
	}
}

.job-posts-head .loop-text {
	font-size: 152px;
	color: #fff;
	position: absolute;
	left: 0;
	top: 16px;
	z-index: -1;

	@media screen and (max-width: 781px) {
		font-size: 100px;
		top: 8px;
	}
}

.job-posts-cat {
	gap: 48px 10px;
	flex-wrap: wrap !important;

	@media screen and (max-width: 781px) {
		flex-direction: column;
		align-items: flex-start !important;
	}
}

.job-posts-copy {
	font-size: 40px;
	letter-spacing: 0.05em;
	font-weight: 900;
	font-family: var(--wp--preset--font-family--zen-antique);
	margin-left: 0 !important;

	@media screen and (max-width: 781px) {
		font-size: 34px;
	}
}

.job-posts-tags {
	margin-top: 80px !important;
	background-color: rgb(112 112 112 / 0.1);
	padding: 40px;
	gap: 24px 150px;
	border-radius: 12px;

	@media screen and (max-width: 781px) {
		flex-direction: column;
		padding: 20px 12px;
		margin-top: 40px !important;
	}
}

.job-posts-label {
	font-size: 24px;
	letter-spacing: 0;
	font-weight: 700;
	flex: 0 0 auto;

	@media screen and (max-width: 781px) {
		font-size: 18px;
	}
}

.job-posts-box {
	@media screen and (max-width: 781px) {
		padding: 0 !important;
	}
}

.job-posts-term {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 16px 8px;

	@media screen and (max-width: 781px) {
		gap: 12px 4px;
	}
}

.job-posts-term a {
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black) !important;
	padding: 5px 18px;
	border-radius: 100px;
	font-weight: 500;
	font-size: 16px;
	border: 1px solid var(--wp--preset--color--black);

	@media screen and (max-width: 781px) {
		font-size: 12px;
	}
}

.job-posts-term a::before {
	content: "#";
}

.job-posts-body {
	border-radius: 60px 60px 0 0;
	position: relative;
	overflow: hidden;
	background-color: var(--term-bg-color, #3ff7d6);
	margin-top: -80px !important;
	padding: 130px 24px 160px;
	z-index: 2;

	@media screen and (max-width: 781px) {
		border-radius: 24px 24px 0 0;
		margin-top: -50px !important;
		padding: 40px 24px 80px;
	}
}

.job-posts-head .wp-block-cover {
	padding: 85px 24px 160px;

	@media screen and (max-width: 781px) {
		padding: 48px 24px 100px;
	}
}

.job-posts-content + .job-posts-content {
	margin-top: 120px !important;

	@media screen and (max-width: 781px) {
		margin-top: 80px !important;
	}
}

.job-posts-heading-en {
	font-size: 212px;
	font-weight: 600;
	line-height: 0.9;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	font-family: var(--wp--preset--font-family--akshar);
	margin-bottom: 0;

	@media screen and (max-width: 781px) {
		font-size: 70px;
		letter-spacing: 0;
	}
}

.job-posts-heading-en mark {
	text-stroke: 2px var(--wp--preset--color--black);
	-webkit-text-stroke: 2px var(--wp--preset--color--black);
	paint-order: stroke fill;
	letter-spacing: 0;
	color: var(--term-color, #3ff7d6);
	background-color: rgba(0, 0, 0, 0);
}

.job-posts-heading {
	font-size: 24px;
	font-weight: 600;
	background-color: var(--wp--preset--color--white);
	z-index: 5;
	line-height: 1;
	padding: 6px 8px;
	letter-spacing: 0.05em;
	border-radius: 5px;
	width: -moz-fit-content;
	width: fit-content;
	margin: auto;

	@media screen and (max-width: 781px) {
		font-size: 14px;
		margin-top: 5px !important;
		width: -moz-fit-content;
		width: fit-content;
		padding: 3px 5px;
	}
}

.job-posts-heading--primary {
	background-color: var(--wp--preset--color--black);
	color: var(--wp--preset--color--white);
}

/* About Job */

.about-job {
	padding-top: 75px;
	padding-bottom: 130px;
  overflow: hidden;
  max-width: 100%;
}

.about-job-heading {
	text-align: center;
	font-size: 30px;
	font-weight: 700;

	@media screen and (max-width: 781px) {
		font-size: 16px;
	}
}

.about-job-cards {
	margin-top: 40px !important;
	gap: 0;
	position: relative;

	@media screen and (max-width: 1024px) {
		padding: 0 0 !important;
		margin-top: 24px !important;
		grid-template-columns: repeat(2, 1fr) !important;
		border-bottom: none;
	}
}

.about-job-cards::before,
.about-job-cards::after {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 100vw;
	height: 1px;
	background-color: #5f5f5f;
}

.about-job-cards::before {
	top: 0;
}

.about-job-cards::after {
	bottom: 0;

	@media screen and (max-width: 1024px) {
		display: none;
	}
}

.about-job-card {
	border-right: 1px solid var(--wp--preset--color--black);
	padding: 55px 90px !important;
	position: relative;

	@media screen and (max-width: 1024px) {
		padding: 32px 24px 44px 0 !important;
	}
}

.about-job-card:nth-child(even) {
	@media screen and (max-width: 1024px) {
		border-right: none;
		padding: 32px 0 44px 24px !important;
	}
}

.about-job-card::before {
	@media screen and (max-width: 1024px) {
		content: "";
		display: block;
		width: calc(100% + 24px);
		height: 1px;
		position: absolute;
		bottom: 0;
		background-color: var(--wp--preset--color--black);
	}
}

.about-job-card:nth-child(odd)::before {
	@media screen and (max-width: 1024px) {
		left: -24px;
	}
}

.about-job-card:nth-child(even)::before {
	@media screen and (max-width: 1024px) {
		right: -24px;
	}
}

.about-job-card:nth-child(3n - 2) {
	border-left: 1px solid var(--wp--preset--color--black);

	@media screen and (max-width: 1024px) {
		border-left: none;
	}
}

.about-job-card:nth-child(n+4):nth-child(3n-2)::after {
	content: "";
	display: block;
	width: 200vw;
	height: 1px;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--wp--preset--color--black);

	@media screen and (max-width: 1024px) {
		display: none;
	}
}

.about-job-card-inner {
  position: relative;
  gap: 0 !important;
}

.about-job-card-inner::after {
	content: "";
	display: block;
	width: 34px;
	height: 34px;
	position: absolute;
	bottom: 0;
	right: 0;
	-webkit-mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4KICA8cGF0aCBpZD0i5Lit44Oe44OJXzEiIGRhdGEtbmFtZT0i5Lit44Oe44OJIDEiIGQ9Ik0xMywyNkExMywxMywwLDAsMSwzLjgwOCwzLjgwOCwxMywxMywwLDEsMSwyMi4xOTIsMjIuMTkyLDEyLjkxNSwxMi45MTUsMCwwLDEsMTMsMjZaTTExLjcyLDcuOTY4aDBsLS43LjcxNkwxNC45MzUsMTIuNWwtMy45LDMuNTMxLjY3Ljc0MSw0LjY4OC00LjI0NUwxMS43Miw3Ljk2OFoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
	        mask-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNiIgaGVpZ2h0PSIyNiIgdmlld0JveD0iMCAwIDI2IDI2Ij4KICA8cGF0aCBpZD0i5Lit44Oe44OJXzEiIGRhdGEtbmFtZT0i5Lit44Oe44OJIDEiIGQ9Ik0xMywyNkExMywxMywwLDAsMSwzLjgwOCwzLjgwOCwxMywxMywwLDEsMSwyMi4xOTIsMjIuMTkyLDEyLjkxNSwxMi45MTUsMCwwLDEsMTMsMjZaTTExLjcyLDcuOTY4aDBsLS43LjcxNkwxNC45MzUsMTIuNWwtMy45LDMuNTMxLjY3Ljc0MSw0LjY4OC00LjI0NUwxMS43Miw3Ljk2OFoiIGZpbGw9IiNmZmYiLz4KPC9zdmc+Cg==);
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-position: center;
	        mask-position: center;
	background-color: #202020;
}

.about-job-card-inner:nth-child(even)::after {
	@media screen and (max-width: 1024px) {
		right: 0;
	}
}

.about-job-card-image a {
	position: static;
	display: block;
}

.about-job-card-image a::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 2;
	cursor: pointer;
}

.about-job-card-image img {
	border-radius: 10px;
  transition: transform 0.3s ease;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
}

.about-job-card-image a:hover img {
  transform: rotate(2deg);
}

.about-job-card-more {
  position: absolute;
  width: 190px;
  transform: rotate(5deg) translate(20px, -20px);
  transform-origin: top left;
  z-index: 10;
  top: 2px;
  right: -20px;
  pointer-events: none;
  svg {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.about-job-card-en {
	font-family: var(--wp--preset--font-family--akshar);
	font-size: 12px;
	padding-left: 7px;
	margin-top: 6px !important;
	position: relative;
	text-transform: uppercase;
  line-height: 1.3;

	@media screen and (max-width: 781px) {
		font-size: 10px;
		padding-left: 14px;
		margin-top: 3px !important;
    padding-right: 36px;
	}
}

.about-job-card-en::before {
	content: "";
	position: absolute;
	top: 5px;
	left: -4px;
	width: 8px;
	height: 8px;
	background-color: var(--wp--preset--color--black);
	border-radius: 50%;

	@media screen and (max-width: 781px) {
		top: 3px;
		left: 3px;
	}
}

.about-job-card-heading {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.29;

	@media screen and (max-width: 781px) {
		font-size: 14px;
		margin-top: 3px !important;
    padding-right: 36px;
	}
}

/* Interview */

.interview-posts {
	padding-bottom: 120px;

	@media screen and (max-width: 781px) {
		padding-bottom: 100px;
	}
}

.interview-posts .wp-block-post-template {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 70px 32px;

	@media screen and (max-width: 960px) {
		gap: 40px 16px;
		grid-template-columns: repeat(3, 1fr);
	}

	@media screen and (max-width: 781px) {
		gap: 24px 8px;
		grid-template-columns: repeat(2, 1fr);
	}
}

.interview-posts .wp-block-post-template .wp-block-post {
	margin-top: 0 !important;
	position: relative;
}

.interview-posts-head {
	position: relative;
}

.interview-posts-thumbnail {
	position: relative;
	width: 100%;
	border-radius: 22px;
	overflow: hidden;
	filter: drop-shadow(14px 3px 16px rgba(0, 0, 0, 0.16));
  overflow: hidden;
}

.interview-posts-thumbnail img {
	transition: 0.3s ease-in-out;
  transform-origin: center center;
}

.interview-posts .interview:hover .interview-posts-thumbnail img {
	transform: rotate(2deg);
}

.interview-posts-copy {
	position: absolute;
	top: 30px;
	left: 25px;
	z-index: 4;
	display: flex;
	flex-direction: row-reverse;
	gap: 6px;
	margin-top: 0 !important;

	@media screen and (max-width: 781px) {
		top: 12px;
		left: 12px;
	}

	span {
		font-size: 17px;
		background-color: #fff;
		font-weight: 700;
		line-height: 1.6;
		text-align: center;
		margin: 0;
		writing-mode: vertical-rl;
		height: -moz-fit-content;
		height: fit-content;
		display: inline-block;
		padding: 8px 0;
		border-radius: 4px;

		@media screen and (max-width: 781px) {
			font-size: 12px;
			line-height: 1.3;
			padding: 5px 0;
		}
	}
}

.interview-posts-more {
  position: absolute;
  width: 190px;
  transform: rotate(5deg) translate(20px, -20px);
  transform-origin: top left;
  z-index: 10;
  top: 2px;
  right: -20px;
  pointer-events: none;
  svg {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.interview-posts-position {
	font-size: 20px;
	text-align: center;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 22px;
	margin-bottom: 0;

	@media screen and (max-width: 960px) {
		font-size: 16px;
		margin-top: 14px;
	}

	@media screen and (max-width: 781px) {
		font-size: 12px;
		margin-top: 8px;
	}
}

.interview-posts-name {
	font-size: 32px;
	text-align: center;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 0;

	@media screen and (max-width: 960px) {
		font-size: 24px;
	}

	@media screen and (max-width: 781px) {
		font-size: 20px;
	}
}

.interview-posts-name a {
	color: var(--wp--preset--color--black);
}

.interview-posts-name a:hover {
	text-decoration: none;
}

.interview-posts-name a::after {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.interview-post-title {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 20px;

	@media screen and (max-width: 781px) {
		font-size: 20px;
	}
}

.interview-post-block {
	margin-top: 120px !important;

	@media screen and (max-width: 781px) {
		margin-top: 60px !important;
	}
}

.interview-post-block + * {
	margin-top: 120px !important;

	@media screen and (max-width: 781px) {
		margin-top: 60px !important;
	}
}

.interview-post-back {
	margin-top: 56px !important;
	margin-bottom: 100px !important;

	@media screen and (max-width: 781px) {
		margin-top: 40px !important;
		margin-bottom: 80px !important;
	}
}

.interview-post-back .wp-block-button {
	max-width: 268px;
}

.interview-post-back .wp-block-button__link {
	padding: 16px 32px !important;
	font-size: 14px;
	line-height: 1.4;
	letter-spacing: 0.05em;
	font-weight: 500;
	border: none;
	outline: none;
	text-align: center;
	background-color: var(--wp--preset--color--white);
	color: var(--wp--preset--color--black);
	box-shadow: 0 0 0 1px var(--wp--preset--color--gray);
}

.interview-post-back .wp-block-button__link::before,
.interview-post-back .wp-block-button__link::after {
	display: none;
}

/* 404 */

.not-found-content {
	padding-bottom: 100px;
	margin-top: -90px !important;

	@media screen and (max-width: 781px) {
		margin-top: -40px !important;
	}
}

.not-found-title {
	font-size: 63px;
	font-weight: 700;
	line-height: 1.5;
	font-family: var(--wp--preset--font-family--zen-antique);

	@media screen and (max-width: 781px) {
		font-size: 32px;
		text-align: left !important;
	}
}

.not-found-desc {
	margin-top: 30px !important;
}

.not-found-desc p {
	@media screen and (max-width: 781px) {
		text-align: left !important;
	}
}

.not-found-desc p + p {
	margin-top: 1lh !important;
}

.not-found-button {
	margin-top: 36px !important;
}

/* ==========================================================================
   WordPress Core Overrides
   ========================================================================== */

/* エディターで生成されるスタイルとの整合性 */

.wp-block-group {
	box-sizing: border-box;
}

/* ブロック間のマージン調整 */

.entry-content > * + * {
	margin-top: var(--wp--style--block-gap, 32px);
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
	position: relative;
	z-index: 100;
}

/* ==========================================================================
   footer
   ========================================================================== */

.site-footer {
	margin-top: auto;
}

body:not(:is(.page-template-template-header-black, .home)) .wp-site-blocks {
	padding-top: 100px !important;

	@media screen and (max-width: 781px) {
		padding-top: 90px !important;
	}
}


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