/*
sass内の各フォルダを管理するscss
*/

/*
foundation内の各ファイルを管理するscss
*/

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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

li,
dd {
	list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
	display: block;
}

img {
	border: none;
	vertical-align: bottom;
}

a {
	color: #222222;
	cursor: pointer;
	text-decoration: none;
}

/*
global内の各ファイルを管理するscss
*/

/*
変数を定義するファイル
*/

/*
関数を定義するファイル
*/

/*
global内の各ファイルを管理するscss
*/

/*
mixinを定義するファイル
*/

body {
	background-color: #fff;
	color: #222222;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}

/*
layout内の各ファイルを管理するscss
*/

/* =========================
   共通のインナークラス
   ========================= */

.l-inner {
	padding-inline: 17px;
	width: 100%;
}

/* 全体を囲む要素 */

.l-wrapper--top {
	overflow: hidden;
}

/* 最初から見えているheader（上層ページのみ） */

.l-header {
	background-color: transparent;
	height: 54px;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 2; /* 後から出てくるheader（上層 + 下層） */ /* モディファイヤー */
}

.l-header--fixed {
	background-color: #fff;
	left: 0;
	position: fixed;
	top: 0;
	transform: translateY(-100%);
	transition: transform 0.5s, background-color 0.3s;
	width: 100%;
	z-index: 40;
}

.l-header--fixed.js-scroll {
	transform: translateY(0);
}

.l-header__logo {
	align-items: center;
	display: flex;
	height: 100%;
	padding-left: 12px;
	width: 100%;
}

.l-header--fixed.l-header__logo-link {
	display: block;
	height: 40px;
	width: 150px;
}

.l-header__logo-link {
	display: block;
	height: 38px;
	width: 154px;
}

.l-header__logo-img {
	display: block;
	height: 100%;
	width: 100%;
}
.l-header__logo-img img {
	width: 100%;
	height: 100%;
}

/* 下層ページでのクラス */

.is-lower .l-header--fixed {
	transform: translateY(0);
}

/* footerの枠 */

.l-footer {
	position: relative;
}

.l-footer__inner {
	background-color: #faf7f1;
	padding-inline: 20px;
}

/* footerの枠 */

.l-footer__content {
	display: flex;
	flex-direction: column;
	gap: 21px;
	padding-top: 160px;
	text-align: center;
}

/* footer__navの中身 */

.l-footer__nav {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

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

.l-footer__link {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 10px;
	transition: opacity 0.3s; /* hover */
}

.l-footer__link:hover {
	opacity: 0.6;
}

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

.l-footer__sns-link {
	padding: 8px;
	transition: opacity 0.3s; /* hover */
}

.l-footer__sns-link:hover {
	opacity: 0.6;
}

.l-footer__sns-link img {
	height: 100%;
	width: 100%;
}

/* footer__logoの中身 */

.l-footer__wrap-left {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 49px;
}

.l-footer__logo-link {
	height: 61px;
	width: 250px;
}

.l-footer__logo-img {
	height: 100%;
	width: 100%;
}

.l-footer__copyright {
	color: #999999;
	display: inline-block;
	font-family: "Viga", sans-serif;
	font-size: 12px;
	line-height: 1;
	padding-bottom: 24px;
	padding-left: 8px;
}

/*
component内の各ファイルを管理するscss
*/

/* 募集要項のボタン */

.c-button__top {
	align-items: center;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	justify-content: center;
	line-height: 1;
	min-inline-size: 126px;
	text-align: center;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.c-button__top--primary {
	background-color: #222222;
	border: 1px solid #222222;
	border-color: #222222;
	color: #fff;
	padding: 13px 20px;
}

.c-button__top--primary:hover {
	background-color: #fff;
	color: #222222;
}

.c-button__top--secondary {
	background-color: #afa86f;
	color: #fff;
	padding: 14px 20px;
}

.c-button__top--secondary:hover {
	background-color: #988c2c;
}

.c-button__top--primary {
	background-color: #222222;
	border: 1px solid #222222;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 13px 20px;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
	width: 126px;
}

.c-button__top--primary:hover {
	background-color: #fff;
	color: #222222;
}

/* ENTRYのボタン */

.c-button__top--secondary {
	background-color: #afa86f;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 14px 20px;
	text-align: center;
	transition: background-color 0.3s;
	width: 126px;
}

.c-button__top--secondary:hover {
	background-color: #988c2c;
}

/* 右矢印ボタン */

.c-button--right-arrow {
	background-color: #fff;
	border: 1px solid #222222;
	display: inline-block;
	font-family: "Viga", sans-serif;
	font-size: 20px;
	line-height: 1;
	margin-inline: auto;
	max-width: 355px;
	padding: 29px;
	position: relative;
	text-align: center;
	transition: background-color 0.3s, color 0.3s;
	width: 100%;
}

.c-button--right-arrow::before,
.c-button--right-arrow::after {
	aspect-ratio: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: auto;
	position: absolute;
	right: 19px;
	top: calc(50% - 2px);
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 20px;
}

.c-button--right-arrow::before {
	background-image: url(../img/svg/icon-right-arrow__black.svg);
}

.c-button--right-arrow::after {
	background-image: url(../img/svg/icon-right-arrow__white.svg);
	opacity: 0;
	transition: opacity 0.3s, right 0.3s;
}

.c-button--right-arrow:hover {
	background-color: #222222;
	color: #fff;
}

.c-button--right-arrow:hover::before,
.c-button--right-arrow:hover::after {
	right: 10px;
}

.c-button--right-arrow:hover::after {
	opacity: 1;
}

/* サークルボタン */

.c-button__circle {
	aspect-ratio: 1;
	background-color: #fff;
	border: 1px solid #000;
	border-radius: 50%;
	display: inline-block;
	height: auto;
	position: relative;
	width: 58px;
}

.c-button__circle::before {
	background-position: center;
	background-size: contain;
	content: "";
	height: 16px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
}

.c-button__circle--right::before {
	background-image: url(../img/svg/icon-circle-right__black.svg);
}

.c-button__circle--left::before {
	background-image: url(../img/svg/icon-circle-left__black.svg);
}

.c-button__circle-icon {
	color: #222222;
	height: 0;
	width: 16px;
}

/* 下矢印ボタン */

.c-button__down {
	background: #faf7f1;
	border: 1px solid #222222;
	border-radius: 40px;
	display: inline-block;
	line-height: 1;
	max-width: 500px;
	padding: 17px;
	text-align: center;
	width: 100%;
}

.c-button__down:hover .c-button__down-text::before {
	transform: translateY(-5px);
}

.c-button__down-text {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	position: relative;
	vertical-align: baseline;
}

.c-button__down-text::before {
	background: url(../img/svg/icon-down-arrow__black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 20px;
	position: absolute;
	right: -30px;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s;
	width: 20px;
}

.c-drawer {
	background-color: #faf7f1;
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: opacity 0.6s;
	width: 100%;
	z-index: 50;
}

.c-drawer.is-open {
	opacity: 1;
	pointer-events: auto;
}

.c-drawer__head {
	height: 118px;
	width: 100%;
}

.c-drawer__head-logo {
	padding-left: 30px;
}

.c-drawer__head-link {
	display: block;
	height: 61px;
	width: 250px;
}

.c-drawer__head-img {
	display: block;
	height: 100%;
	width: 100%;
}

.c-drawer__inner {
	padding-inline: 12px;
	width: 100%;
}

.c-drawer__header {
	align-items: center;
	display: flex;
	height: 54px;
	width: 100%;
}

.c-drawer__logo {
	height: 40px;
	width: 150px;
}

.c-drawer__link {
	width: 150px;
	height: 40px;
}

.c-drawer__img {
	height: 100%;
	width: 100%;
}
.c-drawer__img img {
	height: 100%;
	width: 100%;
}

.c-drawer__nav {
	margin-top: 37px;
}

.c-drawer__nav-item {
	border-bottom: 1px solid #afa86f;
}

.c-drawer__nav-item:nth-of-type(1) {
	border-top: 1px solid #afa86f;
}

.c-drawer__nav-link {
	display: flex;
	flex-direction: column;
	gap: 9px;
	padding-block: 13px 12px;
	transition: opacity 0.3s; /* hover */
}

.c-drawer__nav-link:hover {
	opacity: 0.4;
}

.c-drawer__nav-title {
	line-height: 1; /*モディファイヤー：en */ /*モディファイヤー：jp */
}

.c-drawer__nav-title--en {
	font-family: "Viga", sans-serif;
	font-size: 18px;
	font-weight: 400;
	text-transform: uppercase;
}

.c-drawer__nav-title--jp {
	font-size: 12px;
	font-weight: 700;
}

.c-drawer__nav-buttons {
	display: flex;
	flex-direction: column;
	gap: 13px;
	margin-top: 52px;
}

.c-drawer__nav-buttons .c-button__top {
	width: 248px;
}

.c-drawer-fixed {
	align-items: center;
	display: flex;
	gap: 40px;
	position: fixed;
	right: 12px;
	top: 10px;
	z-index: 70; /* スクロールで色を変更 */
}

.c-drawer-fixed.js-scroll .c-drawer-fixed__button-bar {
	background-color: #222222;
}

.c-drawer-fixed.js-scroll .c-drawer-fixed__button-text {
	color: #222222;
}

.c-drawer-fixed__link-buttons {
	align-items: center;
	cursor: pointer;
	display: flex;
	gap: 22px;
}

.c-drawer-fixed__button {
	background-color: transparent;
	cursor: pointer;
	height: 36px;
	position: relative;
	width: 32px;
}

.c-drawer-fixed__button.is-open .c-drawer-fixed__button-bar {
	background-color: #222222;
}

.c-drawer-fixed__button.is-open .c-drawer-fixed__button-bar:nth-of-type(1),
.c-drawer-fixed__button.is-open .c-drawer-fixed__button-bar:nth-of-type(3) {
	left: calc(50% + 4px);
	top: calc(50% - 6px);
}

.c-drawer-fixed__button.is-open .c-drawer-fixed__button-bar:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.c-drawer-fixed__button.is-open .c-drawer-fixed__button-bar:nth-of-type(2) {
	opacity: 0;
	pointer-events: none;
}

.c-drawer-fixed__button.is-open .c-drawer-fixed__button-bar:nth-of-type(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.c-drawer-fixed__button.is-open .c-drawer-fixed__button-text {
	opacity: 0;
}

.c-drawer-fixed__button-bar {
	background-color: #fff;
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: transform 0.3s, top 0.3s, left 0.3s, opacity 0.3s, width 0.3s, background-color 0.3s;
	width: 100%;
}

.c-drawer-fixed__button-bar:nth-of-type(1) {
	top: 0;
}

.c-drawer-fixed__button-bar:nth-of-type(2) {
	top: 9px;
}

.c-drawer-fixed__button-bar:nth-of-type(3) {
	top: 18px;
}

.c-drawer-fixed__button-text {
	color: #fff;
	display: inline-block;
	font-family: "Viga", sans-serif;
	font-size: 10px;
	line-height: 1;
	padding-top: calc(100% - 6px);
	transition: opacity 0.3s;
	transition: color 0.5s;
}

/* 下層ページでのクラス */

.is-lower .c-drawer-fixed .c-drawer-fixed__button-bar {
	background-color: #222222;
}

.is-lower .c-drawer-fixed .c-drawer-fixed__button-text {
	color: #222222;
}

.c-top-head__title {
	position: relative; /* モディファイヤー */ /* モディファイヤー：英語 */ /* モディファイヤー：日本語 */
}

.c-top-head__title--en {
	color: rgba(151, 151, 151, 0.1);
	font-family: "Poppins", sans-serif;
	font-size: 80px;
	line-height: 1;
	text-transform: uppercase;
}

.c-top-head__title--jp {
	color: #222222;
	font-size: 32px;
	font-weight: 700;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	white-space: nowrap;
	z-index: 1;
}

.c-top-head__title--jp span {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-thickness: 2px;
	text-underline-offset: 5px;
	vertical-align: baseline;
}

.c-section-heading {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	margin-inline: auto;
	width: -moz-fit-content;
	width: fit-content;
}

/* 下層ページのfirst-view */

.c-fv-lower {
	height: 200px;
	margin-top: 54px;
	position: relative;
	width: 100%;
}

.c-fv-lower__img {
	background: url(<path-to-image>) lightgray 50%/cover no-repeat;
	height: 100%;
	position: relative;
	width: 100%; /* モディファイヤー */
}

.c-fv-lower__img::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.c-fv-lower__img--about {
	background-image: url(../img/fv-lower__img-about.jpg);
}

.c-fv-lower__img--staff {
	background-image: url(../img/fv-lower__img-staff.jpg);
}

.c-fv-lower__img--blog {
	background-image: url(../img/fv-lower__img-blog.jpg);
}

.c-fv-lower__img--benefits {
	background-image: url(../img/fv-lower__img-benefits.jpg);
}

.c-fv-lower__img--career {
	background-image: url(../img/fv-lower__img-career.jpg);
}

.c-fv-lower__img--details {
	background-image: url(../img/fv-lower__img-details.jpg);
}

.c-fv-lower__img--faq {
	background-image: url(../img/fv-lower__img-faq.jpg);
	background-position: center bottom;
}

.c-fv-lower__main {
	display: flex;
	flex-direction: column;
	gap: 8px;
	left: 6.9444444444vw;
	position: absolute;
	top: calc(50% - 11px);
	transform: translateY(-50%);
}

.c-fv-lower__title {
	font-family: "Viga", sans-serif;
	font-size: 40px;
	font-weight: 400;
	text-transform: uppercase;
}

.c-fv-lower__tag {
	font-style: normal;
	font-weight: 700;
}

.c-fv-lower__lead {
	color: #988c2c;
	font-size: 12px;
	font-weight: 700;
}

.bg-title {
	background-color: #fff;
	line-height: 1;
	padding: 3px 10px;
	width: -moz-fit-content;
	width: fit-content;
}

/* ぱんくずリスト */

.c-breadcrumb {
	background-color: #f0f0f0; /* モディファイヤー */ /* モディファイヤー */
}

.c-breadcrumb--blog {
	margin-top: 54px;
}

.c-breadcrumb--blog {
	margin-top: 54px;
}

.c-breadcrumb__list {
	align-items: center;
	display: flex;
}

.c-breadcrumb__item {
	font-size: 12px;
	margin-right: 16px;
	position: relative;
}

.c-breadcrumb__item + .c-breadcrumb__item::after {
	content: ">";
	font-size: 10px;
	left: -11px;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.c-breadcrumb__link {
	display: inline-block;
	padding-block: 8px;
	vertical-align: baseline;
}

/* 共通のリストクラス */

.c-list__item {
	border-bottom: 1px dashed #222222;
	display: flex;
	flex-direction: column;
	gap: 12px;
	padding-block: 18px;
}

.c-list__term {
	font-weight: 700;
	line-height: 1;
}

.c-list__desc {
	font-size: 16px;
	line-height: 1.5;
}

.c-list__sub-item {
	line-height: 1.5;
	padding-left: 24px;
	position: relative;
}

.c-list__sub-item::before {
	content: "・";
	font-size: 24px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.c-list__sub-item--2 {
	padding-left: 16px;
}

.c-list__sub-item--2::before {
	font-size: 16px;
}

.c-loading {
	align-items: center;
	background-color: #faf7f1;
	display: flex;
	height: 100%;
	justify-content: center;
	left: 0;
	position: fixed;
	top: 0;
	transition: translate 1s ease;
	width: 100%;
	z-index: 300;
}

.c-loading.js-loading-end {
	translate: 0 -100%;
}

.c-loading__text {
	font-family: "Poppins", sans-serif;
	font-size: 4.1666666667vw;
	font-weight: 700;
	overflow: hidden;
}

.c-loading__text span {
	animation: 0.5s 0.5s ease-in-out forwards slideUp;
	display: inline-block;
	translate: 0 100%;
}

/* ブログ：枠 */

.c-blog-card {
	aspect-ratio: 341/121;
	background-color: #fff;
	border-radius: 10px;
	display: grid;
	grid-template-columns: 35.4838709677% 1fr;
	max-height: 180px;
	overflow: hidden;
	width: 100%; /* hover時 */
}

.c-blog-card:hover .c-blog-card__img img {
	transform: scale(1.1);
}

/* ブログ：画像 */

.c-blog-card__img {
	aspect-ratio: 1;
	display: block;
	height: auto;
	overflow: hidden;
	width: 100%;
}

.c-blog-card__img img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	display: block;
	object-position: center;
	transition: transform 0.3s;
}

/* ブログ：文章の枠 */

.c-blog-card__body {
	display: grid;
	grid-template-rows: 22px auto auto;
	padding: 9px 7px 5px 18px;
}

/* ブログ：文章の内容 */

.c-blog-card__category {
	align-self: start;
	display: inline-block;
	font-size: 12px;
	line-height: 1;
	padding-left: 16px;
	position: relative;
	vertical-align: top;
}

.c-blog-card__category::before {
	background: url(../img/svg/blog-icon.svg) no-repeat center/contain;
	content: "";
	height: 14px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 12px;
}

.c-blog-card__title {
	display: -webkit-box;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.5;
	overflow: hidden;
	text-decoration-line: underline;
	text-decoration-style: solid;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	align-self: start;
}

.c-blog-card__date {
	align-self: end;
	font-size: 12px;
	grid-row: 3;
	line-height: 1;
}

.c-staff-card {
	display: block;
	max-width: 300px;
	width: 100%;
}

.c-staff-card:hover .c-staff-card__img {
	transform: scale(1.1);
}

.c-staff-card__figure {
	position: relative;
}

.c-staff-card__imgWrap {
	aspect-ratio: 300/379;
	border-radius: 30px;
	overflow: hidden;
}

.c-staff-card__img {
	display: block;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	transition: transform 0.3s;
}

.c-staff-card__badges {
	bottom: -18px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	left: 0;
	position: absolute;
	z-index: 1;
}

.c-staff-card__badge {
	background-color: #afa86f;
	font-weight: 700;
	line-height: 1;
	padding: 7px;
	width: -moz-fit-content;
	width: fit-content;
}

.c-staff-card__meta {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 31px;
}

.c-staff-card__meta-top {
	align-items: center;
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 13px;
	line-height: 1;
}

.c-staff-card__name {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

/* 枠のスタイル */

.c-staff-intro {
	background-color: #faf7f1;
	margin-top: 54px;
	padding-block: 20px;
}

.c-staff-intro__content {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

/* 詳細のスタイル */

.c-staff-intro__leads {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.c-staff-intro__lead {
	background-color: #fff;
	font-weight: 700;
	line-height: 1;
	padding: 3px 10px;
	width: -moz-fit-content;
	width: fit-content; /* モディファイヤー */
}

.c-staff-intro__lead--main {
	font-size: 24px;
}

.c-staff-intro__detail {
	margin-top: 18px;
}

.c-staff-intro__role {
	color: #988c2c;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.c-staff-intro__wrap {
	align-items: flex-end;
	display: flex;
	gap: 10px;
	line-height: 1;
	margin-top: 12px;
}

.c-staff-intro__name {
	font-weight: 700;
	line-height: 1;
}

.c-staff-intro__year {
	font-size: 12px;
}

.c-staff-intro__description {
	font-size: 14px;
	margin-top: 13px;
}

/* 画像のスタイル */

.c-staff-intro__img {
	display: block;
	height: 100%;
	width: 100%;
}

/* スタッフ記事詳細の枠 */

.c-staff-article {
	padding-block: 61px 99px;
}

/* スタッフ記事（枠） */

.c-staff-article__main {
}

.c-staff-article__main h2 {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 50px;
	position: relative;
}

.c-staff-article__main h2::before {
	background-color: #222222;
	content: "";
	height: 1px;
	left: calc(-100vw - 16px);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 100vw;
}

.c-staff-article__main h3 {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 30px;
}

.c-staff-article__main p {
	color: #000;
	font-size: 16px;
	margin-bottom: 25px;
}

.c-staff-article__main li p {
	margin-bottom: 0;
}

.c-staff-article__main :is(ul,
ol) > li {
	margin-bottom: 27px; /* お好みの間隔に */
}

.c-staff-article__main :is(ul,
ol) > li:last-child {
	margin-bottom: 0;
}

.c-staff-article__main ul {
	margin-bottom: 23px;
}

.c-staff-article__main li {
	margin-bottom: 40px;
}

.c-staff-article__main--2 :is(ul,
ol) > li {
	margin-bottom: 0; /* お好みの間隔に */
}

.c-staff-article__main--2 ul {
	margin-bottom: 30px;
}

.c-staff-article__main--2 li {
	margin-bottom: 0;
	padding-left: 16px;
	position: relative;
}

.c-staff-article__main--2 li::before {
	content: "・";
	font-size: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.c-staff-article__main--2 li::before p {
	margin-bottom: 0;
}


/* 目次 */

.c-staff-article__sidebar {
	position: sticky;
	top: 118px;
	width: 210px;
	flex-shrink: 0;
}

.toc__title {
	color: #666;
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
}

/* その他のメンバー */

.c-staff-article__others {
	margin-top: 50px;
}

.c-staff-article__others-title {
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}

.c-staff-article__articles {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 48px;
	place-items: center;
	row-gap: 30px;
}

/* 目次のカスタマイズ */

#toc ol {
	margin-top: 5px;
}

#toc a {
	color: #999999;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	padding-block: 8px;
	position: relative;
	transition: color 0.3s;
	vertical-align: baseline;
}

#toc a::before {
	content: "・";
	font-size: 14px;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#toc li.js-active > a {
	color: #222222;
}

.c-staff-article__main { /* “h2の1つ目” を nth-of-type で取り、以降は + でつなぐ */
}

.c-staff-article__main > * {
	inline-size: min(696px, 100%);
	margin-inline: auto;
}

.c-blog__pagination {
	align-items: center;
	display: flex;
	gap: 32px;
	justify-content: center;
}

.c-blog__pagination-button {
	align-items: center;
	background-color: #fff;
	border: 1px solid #222222;
	border-radius: 50%;
	color: #222222;
	display: flex;
	font-size: 14px;
	height: 58px;
	justify-content: center;
	line-height: 1;
	width: 58px;
}

.c-blog__pagination-button.current {
	background-color: #222222;
	color: #fff;
}

.c-blog-details p {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 23px;
}

.c-blog-details h2 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 30px;
}

.c-blog-details ul {
	margin-bottom: 23px;
}

.c-blog-details li {
	font-size: 14px;
	padding-left: 24px;
	position: relative;
}

.c-blog-details li::before {
	aspect-ratio: 1;
	content: "・";
	font-size: 24px;
	height: auto;
	left: 0;
	position: absolute;
	top: calc(50% + 1px);
	transform: translateY(-50%);
}

.c-blog-details__body {
	background-color: #faf7f1;
	overflow: hidden;
	padding-block: 34px 80px;
}

.c-blog-details__article {
	background-color: #fff;
	border-radius: 10px;
	padding: 23px 20px;
}

.c-blog-details__article > p:last-of-type {
	margin-bottom: 0;
}

.c-blog-details__meta {
	align-items: center;
	display: flex;
	gap: 19px;
	margin-bottom: 18px;
}

.c-blog-details__time {
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 1;
}

.c-blog-details__title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 32px;
}

.c-blog-details__icatch {
	aspect-ratio: 720/411;
	height: auto;
	margin-bottom: 30px;
}

.c-blog-details__icatch img {
	height: 100%;
	width: 100%;
}

.c-blog-details__bottom {
	background: #f0f0f0;
}

.c-blog-details__bottom p {
	margin-bottom: 0;
}

.c-blog-details__bottom-inner {
	display: flex;
	flex-direction: column;
}

.c-blog-details__link {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding-block: 11px;
	position: relative; /* モディファイヤー（prev） */ /* モディファイヤー（next） */ /* hover時 */
}

.c-blog-details__link:nth-of-type(odd) {
	border-bottom: 1px solid #222222;
}

.c-blog-details__link::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 24px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.c-blog-details__link--prev {
	padding-left: 45px;
	padding-right: 30px;
}

.c-blog-details__link--prev::before {
	background-image: url(../img/svg/icon-arrow__prev.svg);
	left: 10px;
	transition: left 0.3s;
}

.c-blog-details__link--next {
	padding-right: 45px;
	text-align: right;
	padding-left: 30px;
}

.c-blog-details__link--next::before {
	background-image: url(../img/svg/icon-arrow__next.svg);
	right: 10px;
	transition: right 0.3s;
}

.c-blog-details__link:hover.c-blog-details__link--prev::before {
	left: 0;
}

.c-blog-details__link:hover.c-blog-details__link--next::before {
	right: 0;
}

.c-blog-details__bottom-text {
	line-height: 1;
}

.c-blog-details__bottom-date {
	font-size: 12px;
	line-height: 1;
}

/*
project内の各ファイルを管理するscss
*/

.p-drawer-button {
	background-color: transparent;
	height: 36px;
	position: relative;
	width: 32px;
}

.p-drawer-button.is-open .p-drawer-button__bar {
	background-color: #222222;
}

.p-drawer-button.is-open .p-drawer-button__bar:nth-of-type(1),
.p-drawer-button.is-open .p-drawer-button__bar:nth-of-type(3) {
	top: 50%;
	width: 52px;
}

.p-drawer-button.is-open .p-drawer-button__bar:nth-of-type(1) {
	transform: translate(-50%, -50%) rotate(45deg);
}

.p-drawer-button.is-open .p-drawer-button__bar:nth-of-type(2) {
	opacity: 0;
	pointer-events: none;
}

.p-drawer-button.is-open .p-drawer-button__bar:nth-of-type(3) {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.p-drawer-button.is-open .p-drawer-button__text {
	opacity: 0;
}

.p-drawer-button__bar {
	background-color: #fff;
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: transform 0.3s, top 0.3s, opacity 0.3s, width 0.3s, background-color 0.3s;
	width: 100%;
}

.p-drawer-button__bar:nth-of-type(1) {
	top: 0;
}

.p-drawer-button__bar:nth-of-type(2) {
	top: 9px;
}

.p-drawer-button__bar:nth-of-type(3) {
	top: 18px;
}

.p-drawer-button__text {
	color: #fff;
	display: inline-block;
	font-family: "Viga", sans-serif;
	font-size: 10px;
	line-height: 1;
	padding-top: calc(100% - 6px);
	transition: opacity 0.3s;
}

/* fv-top枠のスタイル */

.p-fv-top__img {
	height: 100%;
	inset: 0;
	position: absolute;
	width: 100%;
	z-index: -1;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	display: block;
	object-position: center;
}

/* fv-top内部のスタイル */

.p-fv-top__title {
	color: #fff;
	font-family: "Viga", sans-serif;
	font-size: 48px;
	left: 12px;
	line-height: 1.2;
	position: absolute;
	text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	top: 414px;
	z-index: 1;
}

.p-fv-top__sub-title {
	background-color: #222222;
	clip-path: polygon(0 0, 100% 0, 94.145% 100%, 0 100%);
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	left: 0;
	line-height: 1;
	padding: 9px 24px 9px 12px;
	position: absolute;
	top: 548px;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 1;
}

.p-fv-top__news {
	align-items: center;
	background-color: #fff;
	border: 1px solid #222222;
	border-radius: 50px;
	display: flex;
	left: 11px;
	margin: auto;
	overflow: hidden;
	position: absolute;
	top: 608px;
	width: calc(100% - 24px);
	z-index: 1;
}

.p-fv-top__news-title {
	background-color: #222222;
	color: #fff;
	font-family: "Viga", sans-serif;
	font-size: 10px;
	line-height: 1;
	padding: 19px 12px;
}

.p-fv-top__news-link {
	font-size: 12px;
	line-height: 1.2;
	padding: 9px 10px;
	transition: opacity 0.3s; /* hover */
}

.p-fv-top__news-link:hover {
	opacity: 0.6;
}

.p-fv-top__news-links {
	font-family: "Viga", sans-serif;
	font-size: 14px;
	line-height: 1;
	margin-left: auto;
	transition: opacity 0.3s;
	padding-right: 63px;
	position: relative; /* hover */
}

.p-fv-top__news-links::before {
	background: url(../img/svg/icon-right-arrow__black.svg) no-repeat center/contain;
	content: "";
	height: 10px;
	position: absolute;
	right: 47px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 10px;
}

.p-fv-top__news-links:hover {
	opacity: 0.6;
}

.p-fv-top__news-links:hover::before {
	right: 32px;
}

/* スライダーのスタイル */

.p-fv-top__swiper-container,
.p-fv-top__swiper,
.p-fv-top__swiper-wrapper,
.p-fv-top__swiper-slide {
	position: relative;
}

.p-fv-top__swiper-slide {
	height: 667px;
}

/* top-about 枠のスタイル */

.p-top-about {
	padding-top: 41px;
}

.p-top-about__swiper-container {
	position: relative;
}

.p-top-about__titles {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 8px;
	left: 50%;
	position: absolute;
	top: 162px;
	z-index: 1;
}
.p-top-about__titles.u-fade-in-up {
  transform: translate(-50%, 24px);
}
.p-top-about__titles.u-fade-in-up.is-in-view {
  transform: translate(-50%, 0);
}

.p-top-about__title {
	background-color: #fff;
	font-size: 24px;
	font-weight: 700;
	line-height: normal;
	padding: 7px 11px;
	white-space: nowrap;
	width: -moz-fit-content;
	width: fit-content;
}

.p-top-about__body {
	margin-top: 79px;
	position: relative;
}

.p-top-about__body::before {
	aspect-ratio: 341/180;
	background: url(../img/svg/top-about__bg.svg) no-repeat center/cover;
	content: "";
	height: auto;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 90.9333333333%;
}

.p-top-about__messages {
	display: flex;
	flex-direction: column;
	gap: 39px;
}

.p-top-about__message {
	font-family: Inter;
	font-size: 18px;
	font-weight: 700;
	line-height: 2.5;
	text-align: center;
	white-space: nowrap;
}

.p-top-about__buttonWrap {
	margin-top: 39px;
	text-align: center;
}

.p-top-about__buttonWrap .c-button--right-arrow {
	font-size: 16px;
	padding-block: 22px;
	width: 277px;
}

.p-top-about__buttonWrap .c-button--right-arrow::before,
.p-top-about__buttonWrap .c-button--right-arrow::after {
	right: 16px;
	width: 16px;
}

.p-top-about__buttonWrap .c-button--right-arrow:hover::before,
.p-top-about__buttonWrap .c-button--right-arrow:hover::after {
	right: 10px;
}

/* top-about 中身のスタイル */

.p-top-about__swiper-container,
.p-top-about__swiper,
.p-top-about__swiper-wrapper,
.p-top-about__swiper-slide {
	position: relative;
}

.p-top-about__swiper-wrapper {
	transition-timing-function: linear;
}

.p-top-about__swiper-wrapper .p-top-about__swiper-slide:nth-child(odd) {
	margin-top: 27px;
}

.p-top-about__swiper-slide {
	border-radius: 60px;
	height: 210px;
	overflow: hidden;
	width: 271px;
}

.p-top-about__img {
	display: inline-block;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

/* 枠のスタイル */

.p-top-staff {
	padding-top: 71px;
}

/* 中身のスタイル */

.p-top-staff__head {
	display: flex;
	flex-direction: column;
	gap: 19px;
}

.p-top-staff__head-text {
	line-height: 1.5;
}

/* sliderの枠のスタイル */

.p-top-staff__swiper-container,
.p-top-staff__swiper,
.p-top-staff__swiper-wrapper,
.p-top-staff__swiper-slide {
	position: relative;
}

.p-top-staff__swiper-container {
	margin-left: 26px;
	margin-top: 50px;
}

.p-top-staff__swiper-wrapper {
	transition-timing-function: linear;
}

.p-top-staff__swiper-wrapper .p-top-staff__swiper-slide:nth-child(even) {
	margin-top: 25px;
}

.p-top-staff__swiper-slide {
	height: auto;
	width: 246px;
}

.swiper-button-prev,
.swiper-button-next,
.swiper-pagination-bullets.swiper-pagination-horizontal {
	bottom: unset;
	left: unset;
	margin: 0;
	padding: 0;
	right: unset;
	top: unset;
}

.swiper-button-prev::after,
.swiper-button-next::after {
	content: "";
}

.swiper-button-prev,
.swiper-button-next {
	height: auto;
	inset: auto;
	margin: 0;
	position: static;
	transform: none;
	width: auto;
}

/* slider中身のスタイル */

.p-top-staff__link {
	display: inline-block;
	position: relative;
}

.p-top-staff__img {
	display: block;
	height: 311px;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-staff__leads {
	display: flex;
	flex-direction: column;
	gap: 6px;
	left: 0;
	position: absolute;
	top: 263px;
	z-index: 1;
}

.p-top-staff__lead {
	background-color: #afa86f;
	font-weight: 700;
	line-height: 1;
	padding: 7px;
	width: -moz-fit-content;
	width: fit-content;
}

.p-top-staff__info {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-top: 31px;
}

.p-top-staff__info-heads {
	display: flex;
	font-size: 12px;
	font-weight: 700;
	gap: 13px;
}

.p-top-staff__info-name {
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.p-top-staff__buttonsWrap {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 64px;
	position: relative;
}

.p-top-staff__swiper-buttons {
	bottom: 3px;
	display: flex;
	gap: 20px;
	position: absolute;
	/* right: 19px; */
	right: -50px;
}

.p-top-staff__swiper-buttons .c-button__circle {
	transition: width 0.3s; /* hover時 */
}

.p-top-staff__swiper-buttons .c-button__circle:hover {
	width: 70px;
}

.p-top-staff__buttonWrap {
	text-align: center;
}

.p-top-staff__buttonWrap .c-button--right-arrow {
	font-size: 16px;
	padding-block: 22px;
	width: 277px;
}

.p-top-staff__buttonWrap .c-button--right-arrow::before,
.p-top-staff__buttonWrap .c-button--right-arrow::after {
	right: 16px;
	width: 16px;
}

.p-top-staff__buttonWrap .c-button--right-arrow:hover::before,
.p-top-staff__buttonWrap .c-button--right-arrow:hover::after {
	right: 10px;
}

.p-top-benefits {
	padding-block: 71px 78px;
}

.p-top-benefits__head {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 19px;
}

.p-top-benefits__head-text {
	line-height: 1.5;
}

.p-top-benefits__head-title 
.c-top-head__title--jp {
	left: -2px;
}

.p-top-benefits__cards {
	display: flex;
	flex-direction: column;
	gap: 36px;
	margin-top: 51px;
}

/* p-top-benefits__cardのスタイル */

.p-top-benefits__card {
	display: block; /* hover */ /* モディファイヤー */
}

.p-top-benefits__card:hover .p-top-benefits__card-img img {
	transform: scale(1.2);
}

.p-top-benefits__card:hover .p-top-benefits__card-button {
	right: 3px;
}

.p-top-benefits__card--2 .p-top-benefits__card-img img {
	aspect-ratio: 202/135;
	height: auto;
	max-width: 202px;
	transition: transform 0.3s;
	width: 80.4780876494%;
}

.p-top-benefits__card--2 .p-top-benefits__card-line {
	bottom: 98px;
}

.p-top-benefits__card-content {
	aspect-ratio: 1;
	height: auto;
	margin-inline: auto;
	max-width: 251px;
	position: relative;
	width: 73.6070381232%;
}

.p-top-benefits__card-img {
	align-items: center;
	background: #faf7f1;
	border-radius: 50%;
	display: flex;
	height: 100%;
	justify-content: center;
	margin-inline: auto;
	overflow: hidden;
	width: 100%;
}

.p-top-benefits__card-img img {
	aspect-ratio: 194/164;
	height: auto;
	max-width: 194px;
	transition: transform 0.3s;
	width: 77.2908366534%;
}

.p-top-benefits__card-line {
	bottom: 91px;
	font-family: "Viga", sans-serif;
	font-feature-settings: "vert" on;
	font-size: 14px;
	letter-spacing: 2.1px;
	line-height: 1;
	position: absolute;
	right: 13px;
	text-align: center;
	text-orientation: mixed;
	white-space: nowrap;
	writing-mode: vertical-rl;
}

.p-top-benefits__card-title {
	background-color: #afa86f;
	bottom: -15px;
	font-size: 24px;
	font-weight: 700;
	left: 50%;
	line-height: 1;
	padding: 7px;
	position: absolute;
	transform: translateX(-50%);
	white-space: nowrap;
}

.p-top-benefits__card-button {
	background-color: #222222;
	bottom: 39px;
	position: absolute;
	right: 13px;
	transition: right 0.3s;
	width: 42px;
}

.p-top-benefits__card-button.c-button__circle--right::before {
	background-image: url(../img/svg/icon-circle-right__white.svg);
}

.p-top-benefits__card-text {
	line-height: 1.5;
	margin-inline: auto;
	margin-top: 36px;
	max-width: 430px;
}

.p-top-blog {
	background-color: #faf7f1;
	padding-top: 54px;
}

.p-top-blog__head {
	display: flex;
	flex-direction: column;
	gap: 19px;
}

.p-top-blog__head-title {
	width: -moz-fit-content;
	width: fit-content;
}

.p-top-blog-head__text {
	line-height: 1.5;
}

.p-top-blog__articles {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 43px;
	row-gap: 9px;
}

.p-top-blog__link {
	align-items: center;
	display: flex;
	gap: 13px;
	height: 162px; /* hover時 */
}

.p-top-blog__link .c-button__circle {
	transition: width 0.3s;
}

.p-top-blog__link:hover .c-button__circle {
	width: 70px;
}

.p-top-blog__link-text {
	font-family: "Viga", sans-serif;
	line-height: 1;
	text-decoration-line: underline;
	text-decoration-style: solid;
}

.p-top-recruitment {
	background-color: #faf7f1;
	padding-block: 14px 86px;
}

.p-top-recruitment__head {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	gap: 19px;
}

.p-top-recruitment__head-text {
	line-height: 1.5;
}

.p-top-recruitment__links {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 30px;
	row-gap: 19px;
}

.p-top-recruitment__link {
	display: block;
	font-weight: 700; /* モディファイヤー */
}

.p-top-recruitment__link .c-button--right-arrow {
	border: none;
	max-width: 100%;
	padding-block: 33px;
}

.p-top-recruitment__link .c-button--right-arrow::before {
	right: 19px;
}

.p-top-cta {
	height: 250px;
	position: relative;
	width: 100%;
}

.p-top-cta::before {
	background-image: url(../img/top-cta-sp.jpg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-top-cta__inner {
	padding-inline: 16px;
	width: 100%;
}

.p-top-cta__content {
	background-color: #fff;
	border-radius: 20px;
	bottom: -118px;
	left: 50%;
	max-width: 500px;
	padding: 24px 8px 29px 10px;
	position: absolute;
	transform: translateX(-50%);
	width: 91.4666666667%;
	z-index: 1;
}

.p-top-cta__message {
	font-size: 14px;
	font-weight: 700;
	line-height: 2.5;
	text-align: center;
}

.p-top-cta__buttonWrap {
	margin-top: 24px;
	text-align: center;
}

.p-top-cta__buttonWrap .c-button {
	background-color: #afa86f;
	border: none;
	max-width: 200px;
	transition: background-color 0.3s, color 0.3s;
}

.p-top-cta__buttonWrap .c-button:hover {
	background-color: #222222;
}

.p-top-cta__buttonWrap .c-button--right-arrow {
	font-size: 14px;
	padding-block: 20px;
}

.p-top-cta__buttonWrap .c-button--right-arrow::before,
.p-top-cta__buttonWrap .c-button--right-arrow::after {
	right: 22px;
	transition: right 0.3s;
	width: 16px;
}

.p-top-cta__buttonWrap .c-button--right-arrow:hover::before,
.p-top-cta__buttonWrap .c-button--right-arrow:hover::after {
	right: 10px;
}

.p-top-cta__buttonWrap .c-button--right-arrow:hover::after {
	opacity: 1;
}

.p-about-philosophy {
	padding-top: 30px;
}

.p-about-philosophy__boxes {
	display: flex;
	flex-direction: column;
	gap: 36px;
	margin-top: 50px;
}

.p-about-philosophy__box {
	background: #faf7f1;
	border-radius: 10px;
	padding: 20px 40px;
}

.p-about-philosophy__box-head {
	align-items: center;
	display: flex;
	gap: 12px;
}

.p-about-philosophy__box-number {
	align-items: center;
	aspect-ratio: 1;
	border: 1px solid #222222;
	border-radius: 50%;
	display: flex;
	flex-shrink: 0;
	font-size: 14px;
	height: auto;
	justify-content: center;
	line-height: 1;
	width: 30px;
}

.p-about-philosophy__box-title {
	font-weight: 700;
	line-height: 1;
}

.p-about-philosophy__box-text {
	font-size: 14px;
	line-height: 1.5;
	margin-top: 20px;
}

.p-about-message {
	padding-top: 60px;
}

.p-about-message__content {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 40px;
}

.p-about-message__lead {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}

.p-about-message__texts {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 30px;
}

.p-about-message__text {
	color: #000;
	font-size: 14px;
}

.p-about-message__name {
	aspect-ratio: 91/16;
	display: inline-block;
	height: auto;
	margin-top: 12px;
	width: 91px;
}

.p-about-message__imgWrap {
	height: auto;
	width: 100%;
}

.p-about-message__img {
	height: 100%;
	width: 100%;
}

.p-about-business {
	padding-top: 60px;
}

.p-about-business__heading {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.p-about-business__description {
	font-size: 14px;
	line-height: 1.5;
	margin-top: 24px;
}

.p-about-business__cards {
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}

.p-about-business__cards .p-about-business__card:nth-child(1) {
	padding-bottom: 24px;
}

.p-about-business__cards .p-about-business__card:nth-child(2) {
	padding-block: 24px;
}

.p-about-business__cards .p-about-business__card:nth-child(2) .p-about-business__card-subtitle {
	line-height: 1.5;
}

.p-about-business__cards .p-about-business__card:nth-child(3) {
	padding-top: 35px;
}

.p-about-business__cards .p-about-business__card:nth-child(3) .p-about-business__card-subtitle {
	line-height: 1.5;
}

.p-about-business__card {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-about-business__card:not(:last-child) {
	border-bottom: 1px solid #afa86f;
}

.p-about-business__card-imgWrap {
	height: 100%;
	width: 100%;
}

.p-about-business__card-img {
	height: 100%;
	width: 100%;
}

.p-about-business__card-body {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.p-about-business__card-title {
	color: #988c2c;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
}

.p-about-business__card-subtitle {
	font-style: normal;
	font-weight: 700;
	line-height: 1;
}

.p-about-business__card-subtitle:not(:first-of-type) {
	line-height: 1.5;
}

.p-about-business__card-description {
	font-size: 14px;
	line-height: 1.5;
}

.p-about-company {
	padding-block: 75px 60px;
}

.p-about-company__heading {
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.p-about-company__list {
	margin-top: 20px;
}
.p-about-company__list-sub-list {
	line-height: 1.5;
	padding-block: 2px;
}

.p-staff {
	padding-block: 60px 69px;
}

.p-staff__cards {
	align-items: center;
	display: grid;
	justify-content: center;
	row-gap: 30px;
}

.p-staff__card {
	margin-inline: auto;
	max-width: 300px;
	width: 87.9765395894%;
}

.p-staff__card-imgWrap-img {
	aspect-ratio: 300/379;
	height: auto;
	width: 100%;
}

.p-blog {
	padding-block: 60px 69px;
}

.p-blog__articles {
	display: grid;
	grid-template-columns: 1fr;
	place-items: center;
	row-gap: 23px;
}

.p-blog__article {
	background-color: #faf7f1;
}

.p-blog__pagination {
	margin-top: 50px;
	width: 100%;
}

/* benefits：大枠 */

.p-benefits {
	padding-block: 72px 70px;
}

/* 各種制度 */

.p-benefits__title {
	margin: 0;
}

.p-benefits__lists {
	padding-top: 25px;
}

/* 制度利用者の声 */

.p-benefits__voices {
	padding-top: 64px;
}

.p-benefits__voices-content {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 23px;
}

.p-benefits__voices-meta {
	display: flex;
	flex-direction: column;
	gap: 13px;
}

.p-benefits__voices-year {
	color: #988c2c;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 1;
}

.p-benefits__voices-name {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
}

.p-benefits__voices-texts {
	font-size: 14px;
	margin-top: 25px;
}

/* イメージ画像 */

.p-benefits__voices-img {
	aspect-ratio: 980/560;
	display: block;
	height: auto;
	margin-top: 36px;
	width: 100%;
}

.p-benefits__sub-list {
	line-height: 1.5;
}

.p-benefits__list-item {
	align-items: flex-start;
}

.p-details {
	padding-block: 73px 70px;
}

.p-details__text {
	font-size: 14px;
	line-height: 1;
	margin-top: 80px;
	text-align: center;
}

.p-details__links {
	display: grid;
	grid-template-columns: 1fr;
	margin-top: 50px;
	place-items: center;
	row-gap: 30px;
}

.p-details__lists {
	display: flex;
	flex-direction: column;
	gap: 60px;
	margin-top: 97px;
}

.p-details__list {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.p-details__list .c-list__desc {
	line-height: 1;
}

/* モディファイヤー */

.p-details__list-title {
	margin: 0;
	text-align: left;
}

.p-career {
	padding-block: 72px 90px;
}

.p-career__title {
	margin: 0;
	padding-bottom: 50px;
}

.p-career__text {
	font-size: 14px;
}

.p-career__img {
	aspect-ratio: 980/734;
	height: auto;
	margin-block: 30px 25px;
	width: 100%;
}

.p-career__steps {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin-top: 50px;
}

.p-career__step {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.p-career__step-title {
	background: #afa86f;
	border-radius: 10px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 18px;
}

.p-career__step-desc {
	font-size: 14px;
}

.p-faq {
	padding-block: 72px 70px;
}

.p-faq__links {
	display: grid;
	grid-template-columns: 1fr;
	place-items: center;
	row-gap: 30px;
}

.p-faq__details {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 60px;
}

.p-faq__details-text {
	margin: 0;
}

.p-faq__details-wrapper {
	margin-top: 60px;
}

details {
	border-bottom: 1px solid #afa86f;
}

details:first-of-type {
	border-top: 1px solid #afa86f;
}

summary {
	display: block;
}

summary::-webkit-details-marker {
	display: none;
}

.p-faq__item {
	padding-block: 40px 35px;
}

.p-faq__item.is-opened .p-faq__question::after {
	transform: translateY(-50%) rotate(0);
}

.p-faq__item--small {
	padding-block: 35px 36px;
}
.p-faq__item--small2 {
	padding-block: 35px 31px;
}

.p-faq__question {
	margin-block: -35px;
	padding-block: 35px;
	padding-right: 20px;
	position: relative;
	transition: opacity 0.3s; /* hover時 */
	display: block;
	line-height: 1;
}

.p-faq__question::before,
.p-faq__question::after {
	background-color: #988c2c;
	content: "";
	height: 3px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

.p-faq__question::before {
	right: 0;
}

.p-faq__question::after {
	right: 0;
	transform: translateY(-50%) rotate(90deg);
	transition: transform 0.3s;
}

.p-faq__question:hover {
	opacity: 0.6;
}

.p-faq__question-text {
	font-size: 14px;
	line-height: 1;
	padding-left: 26px;
	position: relative;
	display: inline-block;
}

.p-faq__question-text::before {
	color: #988c2c;
	content: "Q";
	font-family: "Viga", sans-serif;
	font-size: 18px;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-faq__answer {
	display: block;
	height: 0;
	opacity: 0;
	overflow: hidden;
	padding-inline: 26px;
	transition: height 0.4s ease, opacity 0.4s ease;
}

.is-opened.p-faq__answer {
	opacity: 1;
}

.p-faq__answer-text {
	font-size: 14px;
	line-height: 1;
	padding-top: 18px;
}

.p-faq__answer-text span {
	font-weight: 700;
	vertical-align: baseline;
}

.p-entry {
	padding-bottom: 70px;
}

.p-entry__content {
	background-color: #faf7f1;
	padding-block: 33px 57px;
}

.p-entry__container {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	padding: 20px 20px 40px;
}

.p-entry__head {
	border-bottom: 1px solid #afa86f;
	margin-inline: auto;
	max-width: 738px;
	padding-bottom: 50px;
}

.p-entry__lead {
	font-size: 18px;
	font-weight: 400;
	line-height: 1;
	text-align: center;
}

.p-entry__heading {
	margin-top: 29px;
	text-align: center;
}

.p-entry__heading span {
	color: #988c2c;
	vertical-align: baseline;
}

.p-entry__text {
	font-size: 14px;
	line-height: 1.5;
	margin-inline: auto;
	margin-top: 30px;
	max-width: 510px;
}

.p-entry__text span {
	color: #988c2c;
	vertical-align: baseline;
}

.p-entry__form {
	padding-top: 50px;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
	background: #faf7f1;
	border: 1px solid #afa86f;
	border-radius: 10px;
	padding: 23px 20px 17px;
	width: 100%;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
	color: #757575;
	font-size: 16px;
	line-height: 1;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
	color: #757575;
	font-size: 16px;
	line-height: 1;
}

textarea {
	height: 240px;
	resize: vertical;
	padding: 22px 19px 17px;
}

.p-form__wrapper {
	margin-inline: auto;
	max-width: 738px;
}

.p-form__fields {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin-top: 51px;
}

.p-form__field {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.p-form__field-head {
	align-items: center;
	display: flex;
	line-height: normal; /* モディファイヤー */
}

.p-form__field-label {
	padding-block: 16px 17px;
}

.p-form__field-mark {
	color: #afa86f;
}

.p-form__field-item {
	flex: 1;
}

select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	color: #000;
	font-family: "Noto Sans JP";
	font-size: 12px;
	line-height: 1.2;
	width: 168px;
	transform: translateY(-1px);
	padding: 21px 20px 19px;
}

.p-form__field-item--select {
	display: grid;
	-moz-column-gap: 24px;
	align-items: center;
	column-gap: 24px;
	grid-template-columns: 1fr;
	justify-content: start;
	row-gap: 15px;
}

.p-form__field-item--select input[type=text] {
	width: 168px;
}

.p-form__field-item--select #month,
.p-form__field-item--select #day {
	position: relative;
}

.p-form__field-item--select #month::before,
.p-form__field-item--select #day::before {
	background: url(../img/svg/ENTRY-select__arrow-black.svg) no-repeat center/contain;
	content: "";
	height: 6px;
	position: absolute;
	left: 142px;
	top: 50%;
	transform: translateY(-50%);
	width: 11px;
	z-index: 2;
}

.p-form__select {
	align-items: center;
	display: flex;
	gap: 10px;
}

input[type=radio] {
	height: 1px;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

input[type=radio]:checked + .p-form__radio-name::after {
	opacity: 1;
}

.p-form__field--radio {
	margin-top: 10px;
}

.p-form__field--radio .p-form__radio-name {
	line-height: normal;
	padding-left: 36px;
	position: relative;
}

.p-form__field--radio .p-form__radio-name::before,
.p-form__field--radio .p-form__radio-name::after {
	aspect-ratio: 1;
	border-radius: 50%;
	content: "";
	height: auto;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.p-form__field--radio .p-form__radio-name::before {
	background-color: #faf7f1;
	border: 1px solid #afa86f;
	left: 0;
	width: 24px;
}

.p-form__field--radio .p-form__radio-name::after {
	background-color: #222222;
	left: 7px;
	opacity: 0;
	transition: opacity 0.3s;
	width: 10px;
}

.p-form__field--radio .p-form__field-item--radio {
	display: flex;
	flex-direction: column;
	/* gap: 11px; */
}

input[type=checkbox] {
	height: 1px;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
}

/* チェック時の ▪ の表示 */
input[type="checkbox"]:checked + .p-form__checkbox-name::after,
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* テキスト部分（□ ▪ を擬似要素で描く）*/
.p-form__field--checkbox .p-form__checkbox-name,
.p-form__field--checkbox .wpcf7-list-item-label {
  line-height: normal;
  padding-left: 37px;
  position: relative;
}

.p-form__field--checkbox .p-form__checkbox-name::before,
.p-form__field--checkbox .p-form__checkbox-name::after,
.p-form__field--checkbox .wpcf7-list-item-label::before,
.p-form__field--checkbox .wpcf7-list-item-label::after {
  aspect-ratio: 1;
  content: "";
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.p-form__field--checkbox .p-form__checkbox-name::before,
.p-form__field--checkbox .wpcf7-list-item-label::before {
  background-color: #faf7f1;
  border: 1px solid #afa86f;
  left: 0;
  width: 24px;
}

.p-form__field--checkbox .p-form__checkbox-name::after,
.p-form__field--checkbox .wpcf7-list-item-label::after {
  background-color: #222222;
  left: 7px;
  opacity: 0;
  transition: opacity 0.3s;
  width: 10px;
}
.p-form__checkboxes {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* （任意）ネイティブのチェックボックスを見えないようにする */
.p-form__field--checkbox .wpcf7-list-item label {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.p-form__field--checkbox .wpcf7-list-item label > input[type="checkbox"] {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 24px;
  opacity: 0;               /* 見た目は隠すがフォーカス/クリックは可能 */
  cursor: pointer;
}


.p-form__field-item--checkbox {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

/* 既存：コンテナ */
/* コンテナ体裁 */
.p-form__privacy {
  margin-top: 54px;
  text-align: center;
}

/* CF7の受け皿 */
.p-form__privacy .wpcf7-form-control.wpcf7-acceptance { display: inline-block; }
.p-form__privacy .wpcf7-list-item { margin: 0; }

/* チェックボックス本体は視覚的に非表示（ラベルで操作） */
.p-form__privacy .wpcf7-acceptance input[type="checkbox"] {
  appearance: none;
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
}

/* ラベル（CF7が必ず挿入する） */
.p-form__privacy .wpcf7-list-item-label {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 1.6;
  padding-left: 22px;
}

/* 枠 */
.p-form__privacy .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;             /* 明示的に高さも指定（aspect-ratioは使わない） */
  background-color: #faf7f1;
  border: 1px solid #afa86f;
}

/* ✔：デフォは非表示 */
.p-form__privacy .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;             /* 明示的に高さも指定 */
  opacity: 0;
  transition: opacity 0.2s;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;

  /* 画像パス問題を避けるため data URI を使用（#222のチェック） */
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12"><path fill="%23222" d="M4.5 8.5L1.5 5.5l1-1 2 2 4-4 1 1z"/></svg>');
}

/* ★チェック時に表示（CF7構造に合わせた隣接兄弟セレクタ） */
.p-form__privacy .wpcf7-acceptance input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}


.p-form__btn {
  background: #fff;
  border: 1px solid #222222;
  margin-inline: auto;
  margin-top: 25px;
  width: 256px;
}

/* ここを button → submit に合わせて変更 */
.p-form__btn .wpcf7-submit,
.p-form__btn input[type="submit"],
.p-form__btn .p-form__submit {
  background-color: #fff;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 1;
  padding: 19px 50px;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  border: none;          /* ブラウザのデフォルト枠を消す */
  cursor: pointer;
	color: #222;
font-family: "Noto Sans JP";
font-size: 16px;
font-weight: 400;
line-height: 1;
}

/* hover も同様に submit 用へ */
.p-form__btn .wpcf7-submit:hover,
.p-form__btn input[type="submit"]:hover,
.p-form__btn .p-form__submit:hover {
  background-color: #222222;
  color: #fff;
}

/* （任意）キーボードフォーカスの可視化 */
.p-form__btn .wpcf7-submit:focus-visible,
.p-form__btn input[type="submit"]:focus-visible,
.p-form__btn .p-form__submit:focus-visible {
  outline: 2px solid #222;
  outline-offset: 3px;
}
.wpcf7-spinner {
	display: none;
}

.p-entry-thanks {
	padding-bottom: 70px;
}

.p-entry-thanks__content {
	background-color: #faf7f1;
	padding-block: 33px 57px;
}

.p-entry-thanks__container {
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
	padding-block: 30px 48px;
	text-align: center;
}

.p-entry-thanks__text {
	line-height: 1.5;
	margin-top: 30px;
}

/*
utility内の各ファイルを管理するscss
*/

/* --------------------------
  要素を消すスタイル
-------------------------- */

.u-hidden {
	display: none;
}

/* --------------------------
  要素を表示させるクラス
-------------------------- */

.u-display--sm {
	display: none;
}

.u-display--md {
	display: none;
}

.u-display--lg {
	display: none;
}

.u-display--xl {
	display: none;
}

.u-blank {
	margin-block: 50px;
}

.u-fade-in-up {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 1s, transform 1s;
}

.u-fade-in-up.is-in-view {
	opacity: 1;
	transform: translateY(0);
}

@media (any-hover: hover) {

details:hover {
	cursor: pointer;
}

}

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

.u-hidden--sm {
	display: none;
}

.u-display--sm {
	display: block;
}

}

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

.c-section-heading {
	font-size: 28px;
}

.c-fv-lower__main {
	gap: 12px;
	left: 10.4166666667vw;
}

.c-fv-lower__title {
	font-size: 48px;
}

.c-fv-lower__tag {
	font-size: 20px;
}

.c-fv-lower__lead {
	font-size: 14px;
}

.c-blog-card {
	aspect-ratio: 452/180;
	grid-template-columns: 34.5132743363% 1fr;
	max-width: 452px;
}

.c-blog-card__img {
	aspect-ratio: 156/180;
}

.c-staff-intro__content {
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
	padding-inline: 24px;
}

.c-staff-intro__main {
	transform: translateY(-3px);
	width: 61.987704918%;
}

.c-staff-intro__imgWrap {
	aspect-ratio: 286/368;
	height: auto;
	width: 29.3032786885%;
}

.c-blog-details h2 {
	font-size: 20px;
}

.c-blog-details__title {
	font-size: 28px;
}

.c-blog-details__bottom {
	padding-block: 20px;
}

.c-blog-details__bottom-inner {
	flex-direction: row;
	justify-content: space-between;
}

.c-blog-details__link:nth-of-type(odd) {
	border-bottom: none;
	border-right: 1px solid #222222;
	width: 50%;
}

.p-top-benefits__card-text {
	margin-top: 28px;
}

.p-top-blog__articles {
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.p-top-recruitment__links {
	grid-template-columns: repeat(2, 1fr);
	row-gap: 21px;
	-moz-column-gap: 16px;
	column-gap: 16px;
	margin-top: 40px;
	padding-inline: 34px;
}

.p-top-recruitment__link--1 {
	grid-column: 1/2;
	grid-row: 1/2;
}

.p-top-recruitment__link--2 {
	grid-column: 2/3;
	grid-row: 1/2;
}

.p-top-recruitment__link--3 {
	grid-column: 1/3;
	grid-row: 2/3;
}

.p-about-philosophy__box {
	padding-inline: 60px;
}

.p-about-message {
	padding-top: 125px;
}

.p-about-message__content {
	flex-direction: row-reverse;
	gap: 0;
	justify-content: space-between;
	align-items: center;
	margin-top: 109px;
	padding-inline: 22px;
}

.p-about-message__body {
	width: 48.8775510204%;
}

.p-about-message__lead {
	font-size: 24px;
}

.p-about-message__imgWrap {
	aspect-ratio: 484/629;
	width: 49.387755102%;
}

.p-about-business__head {
	padding-left: 22px;
	width: 69.4897959184%;
}

.p-about-business__description {
	font-size: 16px;
	margin-top: 44px;
}

.p-about-business__cards .p-about-business__card:nth-child(1) {
	padding-bottom: 35px;
}

.p-about-business__cards .p-about-business__card:nth-child(1) .p-about-business__card-body {
	transform: translateY(-4px);
}

.p-about-business__cards .p-about-business__card:nth-child(1) .p-about-business__card-imgWrap {
	aspect-ratio: 457/261;
	height: auto;
	width: 47.7035490605%;
}

.p-about-business__cards .p-about-business__card:nth-child(2) {
	padding-block: 35px;
}

.p-about-business__cards .p-about-business__card:nth-child(2) .p-about-business__card-body {
	transform: translateY(7px);
}

.p-about-business__cards .p-about-business__card:nth-child(3) {
	padding-top: 48px;
}

.p-about-business__cards .p-about-business__card:nth-child(3) .p-about-business__card-body {
	transform: translateY(8px);
}

.p-about-business__card {
	align-items: center;
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
	padding-inline: 22px 42px;
}

.p-about-business__card-imgWrap {
	aspect-ratio: 462/264;
	height: auto;
	width: 48.2254697286%;
}

.p-about-business__card-body {
	width: 47.5991649269%;
}

.p-about-business__card-title {
	font-size: 28px;
}

.p-about-business__card-subtitle {
	font-size: 20px;
}

.p-staff {
	padding-block: 90px 99px;
}

.p-staff__cards {
	grid-template-columns: repeat(2, 300px);
	justify-content: space-between;
	margin-inline: auto;
	padding-inline: 19px;
	width: min(744px, 100%);
}

.p-blog__articles {
	grid-template-columns: repeat(2, 1fr);
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.p-benefits {
	padding-block: 145px 139px;
}

.p-form__field {
	align-items: center;
	flex-direction: row;
	gap: 35px;
}

.p-form__field--select,
.p-form__field--radio,
.p-form__field--textarea,
.p-form__field--checkbox {
	align-items: flex-start;
}

.p-form__field-head {
	width: 128px;
}

.p-form__field-item--select {
	grid-template-columns: max-content max-content;
}

.p-form__field-item--select #year {
	grid-column: 1/2;
	grid-row: 1/2;
}

.p-form__field-item--select #month {
	grid-column: 1/2;
	grid-row: 2/3;
}

.p-form__field-item--select #day {
	grid-column: 2/3;
	grid-row: 2/3;
}

.u-hidden--md {
	display: none;
}

.u-display--md {
	display: block;
}
.p-faq__question {
	padding-right: 50px;
	display: block;
}

}

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

.l-inner {
	margin-inline: auto;
	padding-inline: 30px;
	width: min(1084px, 100%);
}

.l-header {
	height: 118px;
}

.l-header__logo {
	padding-left: 30px;
}

.l-header__logo-link {
	height: 61px;
	transform: translateY(-2px);
	width: 250px;
}

.is-lower .l-header--fixed .l-header__logo {
	padding-left: 26px;
}

.l-footer {
	margin-bottom: 64px;
}

.l-footer__inner {
	border-radius: 0 0 20px 20px;
	margin-inline: auto;
	padding-inline: 30px;
	width: 91.1111111111vw;
}

.l-footer__content {
	flex-direction: row-reverse;
	justify-content: space-between;
	margin-inline: auto;
	padding-bottom: 51px;
	padding-top: 198px;
	width: 80.487804878%;
}
.l-footer__content--blog {
	margin-top: 2px;
}

.l-footer__nav {
	align-items: flex-end;
	gap: 35px;
	width: 60.9756097561%;
}

.l-footer__list {
	flex-direction: row;
	flex-wrap: wrap;
}

.l-footer__link {
	font-size: 16px;
	padding: 25px 11px 16px;
}

.l-footer__sns-links {
	transform: translateY(-2px);
}

.l-footer__wrap-left {
	align-items: flex-start;
	gap: 104px;
	width: 250px;
}

.l-footer__copyright {
	padding-bottom: 0;
	padding-left: 0;
}

.c-button__down {
	max-width: 294px;
}

.c-drawer__head.u-display--lg {
	align-items: center;
	display: flex;
}

.c-drawer__link {
	width: 250px;
	height: 61px;
}

.c-drawer__main {
	margin-top: 90px;
}

.c-drawer__inner {
	align-items: center;
	display: flex;
	padding-inline: 30px;
}

.c-drawer__header {
	width: 50%;
	height: 100%;
	padding-right: 62px;
}

.c-drawer__logo {
	height: 61px;
	margin-left: auto;
	/* transform: translateY(-2px); */
	width: 250px;
}

.c-drawer__nav {
	border-left: 1px solid #afa86f;
	margin-top: 0;
	max-width: 589px;
	padding-left: 62px;
	width: 50%
}

.c-drawer__nav-list {
	display: grid;
	grid-auto-flow: column;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(3, auto);
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.c-drawer__nav-item {
	max-width: 248px;
}

.c-drawer__nav-buttons {
	margin-top: 49px;
}

.c-drawer__nav-item:nth-of-type(4) {
	border-top: 1px solid #afa86f;
}

.c-drawer__nav-link {
	gap: 11px;
	padding-block: 23px 22px;
}

.c-drawer__nav-title--en {
	font-size: 28px;
}

.c-drawer__nav-title--jp {
	font-size: 14px;
}

.c-drawer__nav-buttons {
	flex-direction: row;
	gap: 30px;
	justify-content: flex-start;
}

.c-drawer__nav-buttons .c-button__top {
	max-width: 248px;
}

.c-drawer-fixed {
	right: 31px;
	top: 31px;
}

.c-drawer-fixed__link-buttons.u-display--lg {
	display: flex;
}

.c-drawer-fixed__button {
	height: 56px;
	width: 52px;
}
.c-drawer-fixed__button.is-open .c-drawer-fixed__button-bar:nth-of-type(1), .c-drawer-fixed__button.is-open .c-drawer-fixed__button-bar:nth-of-type(3) {
	left: calc(50% + 7px);
	top: calc(50% - 7px);
}

.c-drawer-fixed__button-bar:nth-of-type(2) {
	top: 15px;
}

.c-drawer-fixed__button-bar:nth-of-type(3) {
	top: 30px;
}

.c-drawer-fixed__button-text {
	font-size: 12px;
	padding-top: calc(100% - 10px);
}

.c-top-head__title--en {
	font-size: 136px;
	text-align: left;
	width: -moz-fit-content;
	width: fit-content;
}

.c-top-head__title--jp {
	font-size: 52px;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.c-list__item.c-list__item--2 {
	padding-block: 31px 32px;
}
.c-list__item.c-list__item--3 {
	padding-block: 31px 31px
}
.c-list__item.c-list__item--4 {
	padding-block: 35px;	
}
.c-list__item.c-list__item--5 {
	padding-block: 37px 36px;
}

.c-section-heading {
	font-size: 32px;
}

.c-fv-lower {
	height: 23.5416666667vw;
	margin-top: 118px;
}

.c-fv-lower__main {
	gap: 18px;
	left: 16.1111111111vw;
}

.c-fv-lower__title {
	font-size: 64px;
}

.c-fv-lower__tag {
	font-size: 24px;
}

.c-fv-lower__lead {
	font-size: 16px;
}

.c-fv-lower__lead.bg-title {
	padding: 7px 10px;
}

.c-breadcrumb--blog {
	margin-top: 118px;
}

.c-breadcrumb--blog {
	margin-top: 118px;
}

.c-breadcrumb__list {
	padding-left: 24px;
}

.c-breadcrumb__item {
	font-size: 14px;
}

.c-breadcrumb__item + .c-breadcrumb__item::after {
	font-size: 14px;
}

.c-breadcrumb__link {
	padding-block: 15px;
}

.c-list__item {
	align-items: center;
	flex-direction: row;
	gap: 0;
	padding-block: 36px 35px;
}

.c-list__term {
	width: 23.5714285714%;
}

.c-blog-card__body {
	grid-template-rows: 37px auto auto;
	padding: 20px 23px 20px 23px;
}

.c-blog-card__category {
	font-size: 14px;
	padding-left: 18px;
}

.c-blog-card__category::before {
	width: 14px;
}

.c-blog-card__title {
	font-size: 18px;
}

.c-staff-card__badge {
	font-size: 20px;
	padding-block: 5px;
}

.c-staff-card__meta {
	gap: 16px;
	margin-top: 34px;
}

.c-staff-card__meta-top {
	font-size: 16px;
	gap: 9px;
}

.c-staff-card__name {
	font-size: 24px;
}

.c-staff-intro {
	margin-top: 118px;
	padding-block: 44px;
}

.c-staff-intro__leads {
	gap: 18px;
}

.c-staff-intro__lead {
	font-size: 24px;
}

.c-staff-intro__lead--main {
	font-size: 36px;
}

.c-staff-intro__detail {
	margin-top: 30px;
}

.c-staff-intro__role {
	font-size: 14px;
}

.c-staff-intro__wrap {
	gap: 20px;
}

.c-staff-intro__name {
	font-size: 24px;
}

.c-staff-intro__year {
	font-size: 16px;
}

.c-staff-intro__description {
	font-size: 16px;
}

.c-staff-article {
	padding-block: 99px 139px;
}

.c-staff-article__container {
	align-items: flex-start;
	display: flex;
	justify-content: space-between;
	padding-inline: 24px;
	gap: 56px;
}

.c-staff-article__container .u-display--lg {
	display: flex;
}

.c-staff-article__main {
	width: min(696px, 100%);
}

.c-staff-article__others {
	margin-top: 84px;
	padding-inline: 19px;
}

.c-staff-article__others-title {
	font-size: 32px;
}

.c-staff-article__articles {
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.c-blog-details p {
	font-size: 16px;
}

.c-blog-details h2 {
	font-size: 24px;
	margin-bottom: 51px;
}

.c-blog-details li {
	font-size: 16px;
}

.c-blog-details li::before {
	width: 16px;
}

.c-blog-details__body {
	padding-block: 34px 139px;
}

.c-blog-details__inner {
	margin-inline: auto;
	padding-inline: 30px;
	width: min(860px, 100%);
}

.c-blog-details__article {
	padding: 40px 40px 23px;
}

.c-blog-details__meta {
	margin-bottom: 25px;
}

.c-blog-details__time {
	font-size: 14px;
}

.c-blog-details__title {
	font-size: 32px;
	margin-bottom: 41px;
}

.c-blog-details__icatch {
	margin-bottom: 45px;
}

.c-blog-details__link--prev {
	padding-left: 95px;
}

.c-blog-details__link--prev::before {
	left: 50px;
}

.c-blog-details__link--next {
	padding-right: 95px;
	text-align: left;
}

.c-blog-details__link--next::before {
	right: 50px;
}

.c-blog-details__link:hover.c-blog-details__link--prev::before {
	left: 35px;
}

.c-blog-details__link:hover.c-blog-details__link--next::before {
	right: 35px;
}

.c-top-head__title--jp span {
	text-underline-offset: 9px;
}

.p-drawer-button {
	height: 56px;
	width: 52px;
}

.p-drawer-button__bar:nth-of-type(2) {
	top: 15px;
}

.p-drawer-button__bar:nth-of-type(3) {
	top: 30px;
}

.p-drawer-button__text {
	font-size: 12px;
	padding-top: calc(100% - 10px);
}

.p-fv-top__title {
	font-size: 72px;
	left: 66px;
}

.p-fv-top__sub-title {
	font-size: 20px;
	padding: 17px 66px;
	top: 602px;
}

.p-fv-top__news {
	left: 72px;
	max-width: 1263px;
	top: 722px;
	width: 87.7083333333vw;
}

.p-fv-top__news-title {
	font-size: 16px;
	padding: 19px 40px;
}

.p-fv-top__news-link {
	font-size: 14px;
	padding-inline: 60px;
}

.p-fv-top__swiper-slide {
	height: 823px;
}

.p-top-about {
	margin-top: 60px;
}

.p-top-about__titles {
	top: 268px;
}

.p-top-about__title {
	font-size: 40px;
}

.p-top-about__body {
	margin-top: 103px;
}

.p-top-about__body::before {
	aspect-ratio: 1024/553;
	max-width: 1024px;
	width: 71.1111111111vw;
}

.p-top-about__messages {
	gap: 53px;
}

.p-top-about__message {
	font-size: 36px;
	line-height: 1.8;
}

.p-top-about__buttonWrap {
	margin-top: 49px;
}

.p-top-about__buttonWrap .c-button--right-arrow {
	font-size: 20px;
	padding-block: 29px;
	width: 355px;
}

.p-top-about__buttonWrap .c-button--right-arrow::before,
.p-top-about__buttonWrap .c-button--right-arrow::after {
	right: 20px;
	width: 20px;
}

.p-top-about__swiper-wrapper .p-top-about__swiper-slide:nth-child(odd) {
	margin-top: 36px;
}

.p-top-about__swiper-slide {
	height: 393px;
	width: 506px;
}

.p-top-staff {
	padding-top: 121px;
}

.p-top-staff__inner {
	margin-inline: auto;
	padding-inline: 76px;
	width: min(1592px, 100%);
}

.p-top-staff__head {
	align-items: flex-start;
	gap: 10px;
}
.p-top-staff__head-title .c-top-head__title--jp span {
	text-underline-offset: 10px;
}

.p-top-staff__head-text {
	margin-left: 166px;
}

.p-top-staff__swiper-container {
	margin-left: 16.8055555556vw;
	margin-top: 52px;
}

.p-top-staff__swiper-wrapper {
	transition-timing-function: ease;
}

.p-top-staff__swiper-wrapper .p-top-staff__swiper-slide:nth-child(even) {
	margin-top: 36px;
}

.p-top-staff__swiper-slide {
	width: 300px;
}

.p-top-staff__img {
	height: 379px;
}

.p-top-staff__leads {
	top: 331px;
}

.p-top-staff__lead {
	font-size: 20px;
	padding-block: 5px;
}

.p-top-staff__info {
	gap: 16px;
	margin-top: 34px;
}

.p-top-staff__info-heads {
	font-size: 16px;
	gap: 9px;
}

.p-top-staff__info-name {
	font-size: 24px;
}

.p-top-staff__buttonsWrap {
	margin-inline: auto;
	margin-top: 80px;
	width: 71.1111111111vw;
}

.p-top-staff__buttonWrap .c-button--right-arrow {
	font-size: 20px;
	padding-block: 29px;
	width: 355px;
}

.p-top-staff__buttonWrap .c-button--right-arrow::before,
.p-top-staff__buttonWrap .c-button--right-arrow::after {
	right: 20px;
	width: 20px;
}

.p-top-benefits {
	padding-block: 108px 107px;
}

.p-top-benefits__head {
	gap: 10px;
}
.p-top-benefits__head-title 
.c-top-head__title--jp {
	left: 50%;
}

.p-top-benefits__head-text {
	line-height: 1;
	padding-left: 48px;
}

.p-top-benefits__cards {
	flex-direction: row;
	justify-content: space-between;
	margin-top: 114px;
	padding-inline: 35px;
}

.p-top-benefits__card--2 .p-top-benefits__card-img img {
	aspect-ratio: 344/230;
	max-width: 344px;
	width: 80%;
}

.p-top-benefits__card--2 .p-top-benefits__card-line {
	bottom: 165px;
}

.p-top-benefits__card-content {
	max-width: 430px;
	width: 100%;
}

.p-top-benefits__card-img img {
	aspect-ratio: 244/175;
	max-width: 244px;
	width: 56.7441860465%;
}

.p-top-benefits__card-line {
	bottom: 155px;
	font-size: 24px;
	letter-spacing: 3.6px;
	right: 20px;
}

.p-top-benefits__card-title {
	bottom: 9px;
	font-size: 32px;
	padding-block: 5px;
}

.p-top-benefits__card-button {
	bottom: 66px;
	right: 20px;
	width: 58px;
}

.p-top-blog {
	padding-top: 45px;
}

.p-top-blog__head {
	gap: 30px;
}

.p-top-blog__head-titles {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.p-top-blog__head-title {
	margin-left: -13px;
}

.p-top-blog-head__text {
	padding-left: 34px;
}

.p-top-blog__articles {
	justify-content: space-between;
	padding-inline: 34px;
	row-gap: 23px;
	-moz-column-gap: 10px;
	column-gap: 10px;
	margin-top: 61px;
}

.p-top-blog__link {
	height: 0;
	margin-right: 54px;
	margin-top: 0;
}

.p-top-blog__link.u-display--lg {
	display: flex;
}

.p-top-recruitment {
	padding-block: 127px 136px;
}

.p-top-recruitment__head {
	align-items: center;
	gap: 4px;
}

.p-top-recruitment__links {
	margin-top: 62px;
	row-gap: 22px;
}

.p-top-recruitment__link .c-button--right-arrow {
	padding-block: 50px;
}

.p-top-cta {
	background-image: url(../img/top-cta.jpg);
	height: 488px;
}

.p-top-cta__content {
	bottom: -137px;
	max-width: 956px;
	padding: 50px;
	width: 66.3888888889vw;
}

.p-top-cta__message {
	font-size: 16px;
	line-height: 1.5;
}

.p-top-cta__buttonWrap {
	margin-top: 31px;
}

.p-top-cta__buttonWrap .c-button {
	max-width: 556px;
}

.p-top-cta__buttonWrap .c-button--right-arrow {
	font-size: 16px;
	padding-block: 27px;
}

.p-about-philosophy {
	padding-top: 66px;
}

.p-about-philosophy__inner {
	margin-inline: auto;
	padding-inline: 30px;
	width: min(1040px, 100%);
}

.p-about-philosophy__boxes {
	margin-top: 86px;
}

.p-about-philosophy__box {
	padding: 30px 80px;
}

.p-about-philosophy__box-head {
	gap: 21px;
}

.p-about-philosophy__box-number {
	font-size: 18px;
	width: 48px;
}

.p-about-philosophy__box-title {
	font-size: 20px;
}

.p-about-philosophy__box-text {
	font-size: 16px;
}

.p-about-message__lead {
	font-size: 28px;
}

.p-about-message__texts {
	gap: 31px;
	margin-top: 44px;
}

.p-about-message__text {
	font-size: 16px;
	line-height: 2;
}

.p-about-message__name {
	aspect-ratio: 185/35;
	margin-top: 21px;
	width: 185px;
}

.p-about-business {
	padding-top: 111px;
}

.p-about-business__heading {
	font-size: 32px;
}

.p-about-business__cards {
	margin-top: 81px;
}

.p-about-business__cards .p-about-business__card:nth-child(1) {
	padding-bottom: 48px;
}

.p-about-business__cards .p-about-business__card:nth-child(2) {
	padding-block: 48px;
}

.p-about-business__cards .p-about-business__card:nth-child(2) .p-about-business__card-subtitle {
	max-width: 456px;
}

.p-about-business__cards .p-about-business__card:nth-child(3) {
	padding-top: 59px;
}

.p-about-business__card-body {
	gap: 40px;
}

.p-about-business__card-title {
	font-size: 32px;
}

.p-about-business__card-subtitle {
	font-size: 24px;
	max-width: 432px;
}

.p-about-business__card-description {
	font-size: 16px;
	max-width: 430px;
}

.p-about-company {
	padding-block: 154px 138px;
}

.p-about-company__inner {
	margin-inline: auto;
	padding-inline: 30px;
	width: min(1040px, 100%);
}

.p-about-company__heading {
	font-size: 32px;
}

.p-about-company__list {
	margin-top: 75px;
}
.p-about-company__list-item {
	padding-block: 33px 31px;
}

.p-about-company__list-term.p-about-company__list-term--up {
	transform: translateY(-16px);
}

.p-staff {
	padding-block: 130px 139px;
}

.p-blog {
	padding-block: 130px 139px;
}

.p-blog__inner {
	margin-inline: auto;
	padding-inline: 34px;
	width: min(1024px, 100%);
}

.p-blog__articles {
	-moz-column-gap: 40px;
	column-gap: 40px;
}

.p-blog__articles {
	-moz-column-gap: 52px;
	column-gap: 52px;
}

.p-blog__pagination {
	margin-top: 98px;
}

.p-benefits__inner {
	margin-inline: auto;
	padding-inline: 22px;
	width: min(1024px, 100%);
}

.p-benefits__lists {
	padding-top: 78px;
}

.p-benefits__item.c-list__item {
	align-items: flex-start;
}

.p-benefits__voices {
	padding-top: 128px;
}

.p-benefits__voices-content {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.p-benefits__voices-post {
	width: calc(50% - 23px);
}

.p-benefits__voices-year {
	font-size: 16px;
}

.p-benefits__voices-name {
	font-size: 24px;
}

.p-benefits__voices-texts {
	font-size: 16px;
}

.p-details {
	padding-block: 145px 139px;
}

.p-details__top {
	padding-inline: 22px;
}

.p-details__heading {
	margin: 0;
}

.p-details__text {
	font-size: 16px;
	margin-top: 113px;
	text-align: left;
}

.p-details__links {
	grid-template-columns: repeat(3, 1fr);
	margin-top: 70px;
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.p-details__link > .c-button__down-text {
	color: #222222;
}


.p-details__lists {
	gap: 89px;
	padding-inline: 22px;
}

.p-details__list {
	gap: 84px;
}

.p-details__list-item .c-list__item {
	align-items: flex-start;
}

.p-career {
	padding-block: 145px 178px;
}

.p-career__inner {
	margin-inline: auto;
	padding-inline: 22px;
	width: min(1024px, 100%);
}

.p-career__title {
	padding-bottom: 107px;
}

.p-career__text {
	font-size: 16px;
}

.p-career__img {
	margin-block: 41px 31px;
}

.p-career__steps {
	gap: 37px;
	margin-top: 83px;
}

.p-career__step {
	gap: 50px;
}

.p-career__step-title {
	font-size: 24px;
	padding: 12px 21px;
}

.p-career__step-desc {
	font-size: 16px;
}

.p-faq {
	padding-block: 145px 139px;
}

.p-faq__inner {
	margin-inline: auto;
	padding-inline: 22px;
	width: min(1024px, 100%);
}

.p-faq__links {
	grid-template-columns: repeat(3, 1fr);
	-moz-column-gap: 20px;
	column-gap: 20px;
}

.p-faq__details {
	gap: 87px;
	margin-top: 96px;
}

.p-faq__details-wrapper {
	margin-top: 113px;
}

.p-faq__question-text {
	font-size: 16px;
	padding-left: 36px;
}

.p-faq__question-text::before {
	font-size: 24px;
}

.p-faq__answer {
	padding-inline: 36px;
}

.p-faq__answer-text {
	font-size: 16px;
}

.p-entry {
	padding-bottom: 139px;
}

.p-entry__inner {
	margin-inline: auto;
	padding-inline: 30px;
	width: min(940px, 100%);
}

.p-entry__container {
	padding: 58px 30px 81px;
}

.p-entry__head {
	padding-bottom: 94px;
}

.p-entry__lead {
	font-size: 24px;
}

.p-entry__text {
	font-size: 16px;
	margin-top: 51px;
}

.p-entry__form {
	padding-top: 97px;
}

.p-form__field--checkbox {
	margin-top: 4px;
}

.p-form__field-head--radio {
	transform: translateY(-11px);
}

.p-form__field-head--checkbox {
	transform: translateY(-10px);
}

.p-entry-thanks {
	padding-bottom: 139px;
}

.p-entry-thanks__inner {
	margin-inline: auto;
	padding-inline: 30px;
	width: min(940px, 100%);
}

.p-entry-thanks__container {
	padding-block: 58px 95px;
}

.p-entry-thanks__text {
	margin-top: 51px;
}

.u-hidden--lg {
	display: none;
}

.u-display--lg {
	display: block;
}

}

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

.l-footer__nav {
	transform: translateX(-19px);
}

.c-drawer__inner {
	margin-inline: auto;
	/* width: 962px; */
}

.c-drawer__nav-title--en {
	font-size: 32px;
}

.c-drawer__nav-title--jp {
	font-size: 16px;
}

.c-staff-article__articles {
	-moz-column-gap: 43px;
	column-gap: 43px;
	justify-content: space-between;
}

.c-blog-details__content #heading0,
.c-blog-details__content #heading0 + p,
.c-blog-details__content #heading0 + p + ul {
  width: 710px;
  margin-inline: auto;   /* 中央寄せ */
  box-sizing: border-box;
}

.p-fv-top__title {
	font-size: 96px;
	top: 286px;
}

.p-fv-top__sub-title {
	font-size: 24px;
	padding: 17px 66px;
}

.p-fv-top__news-title {
	font-size: 24px;
	padding-inline: 59px;
}

.p-fv-top__news-link {
	font-size: 16px;
	padding-inline: 90px;
}

.p-top-blog__articles {
	grid-template-columns: repeat(2, 452px);
	-moz-column-gap: 0;
	column-gap: 0;
}

.p-about-message__body {
	margin-top: 18px;
}

.p-about-message__lead {
	font-size: 32px;
	transform: translateX(-80px);
}
.p-about-message__content {
	align-items: flex-start;
}

.p-staff__cards {
	grid-template-columns: repeat(3, 300px);
	row-gap: 48px;
	width: 100%;
}

.p-staff__card {
	width: 300px;
}

.p-details__links {
	-moz-column-gap: 49px;
	column-gap: 49px;
}

.p-faq__links {
	-moz-column-gap: 49px;
	column-gap: 49px;
}

.u-hidden--xl {
	display: none;
}

.u-display--xl {
	display: block;
}

.p-top-staff__swiper-buttons {
	right: 19px;
}

}

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

.l-footer__wrap-left {
	margin-left: 26px;
}

.c-drawer__nav-item {
	width: 248px;
}

.c-drawer__nav-buttons {
	justify-content: space-between;
}

}

@keyframes slideUp {

0% {
	translate: 0 100%;
}

100% {
	translate: 0 0;
}

}

.wpcf7-form-control {
	display: flex;
	flex-direction: column;
}
.wpcf7-list-item {
	display: inline-block;
	/* margin: 0 0 0 1em; */
	padding-block: 5px;
}

/* ラジオ群を縦並び＆間隔（必須クラスが付いてもOK） */
.p-form__field-item--radio .wpcf7-form-control.wpcf7-radio,
.p-form__field-item--radio .wpcf7-form-control.wpcf7-radio.wpcf7-validates-as-required,
.p-form__field-item--radio .wpcf7-form-control.wpcf7-radio.p-form__radios {
  display: flex;
  flex-direction: column;
}
.p-form__field-item--radio .wpcf7-list-item { margin: 0; }

/* input は視覚的に隠す（ラベルで操作） */
.p-form__field-item--radio .wpcf7-list-item input[type=radio] {
  appearance: none;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

/* テキスト部分（旧 .p-form__radio-name 相当） */
.p-form__field-item--radio .wpcf7-list-item-label {
  position: relative;
  padding-left: 36px;
  line-height: 1.6;
  display: inline-block;
}

/* 外枠の丸／中黒 */
.p-form__field-item--radio .wpcf7-list-item-label::before,
.p-form__field-item--radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  aspect-ratio: 1;
  height: auto;
}
.p-form__field-item--radio .wpcf7-list-item-label::before {
  left: 0;
  width: 24px;
  background-color: #faf7f1;
  border: 1px solid #afa86f;
}
.p-form__field-item--radio .wpcf7-list-item-label::after {
  left: 7px;
  width: 10px;
  background-color: #222;
  opacity: 0;
  transition: opacity .3s;
}

/* チェック時に中黒を表示（input の直後の .wpcf7-list-item-label を狙う） */
.p-form__field-item--radio .wpcf7-list-item input[type=radio]:checked
  + .wpcf7-list-item-label::after {
  opacity: 1;
}

/* 補助：古いHTML(.p-form__radio-name)でも動かしたい場合だけ残す */
input[type=radio]:checked + .p-form__radio-name::after { opacity: 1; }


.wpcf7-response-output {
	display: none;
}
.current-item {
	padding-block: 8px;
  vertical-align: baseline;
}

.c-list__term.c-list__item--job-title {
transform: translateY(-8px);
}
.c-list__desc.c-list__item--job-title {
transform: translateY(-4px);
}

.p-form__field--textarea {
	transform: translateY(-8px);
}
.wpcf7-list-item {
	margin: 0;
}

.p-faq__answer-text > p {
	line-height: 1.5;
}