/*
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: middle;
}

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: #000;
	cursor: pointer;
	text-decoration: none;
}

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

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

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

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

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

body {
	background-color: #FFF;
	color: #000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
}

img {
	border: 0;
	display: block;
	height: auto;
	max-width: 100%;
}

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

.l-wrapper {
	overflow: hidden;
}

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

.l-header {
	background-color: #FFF;
	height: 60px;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	width: 100;
	z-index: 50;
}

.l-header__inner {
	align-items: center;
	display: flex;
	justify-content: space-between;
	padding-left: 10px;
}

.l-header__logo {
	aspect-ratio: 1;
	height: auto;
	width: 60px;
}

.l-header__logo-link {
	display: inline-block;
	height: inherit;
	width: inherit;
}

.l-header__logo-img {
	height: inherit;
	width: inherit;
}

.l-top-fv {
	margin-top: 60px;
	padding-top: 33px;
}

.l-top-fv__inner {
	padding-left: 10px;
}

.l-top-fv__hero {
	position: relative;
}

.l-top-fv__hero-img {
	aspect-ratio: 365/589;
	height: auto;
	width: 100%;
}

.p-top-fv__hero__texts {
	bottom: 60px;
	display: flex;
	flex-direction: column;
	gap: 21px;
	left: 9px;
	position: absolute;
}

.p-top-fv__hero-main-text {
	background-color: #FFF;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	padding: 14px 13px;
	width: -moz-fit-content;
	width: fit-content;
}

.p-top-fv__hero-sub-text {
	font-size: 12px;
	font-weight: 700;
	line-height: 2;
}

.p-top-fv__hero-sub-text span {
	color: #004aad;
	vertical-align: top;
}

.p-top-fv__hero-scrolldown {
	bottom: 36px;
	color: #004aad;
	font-size: 10px;
	font-weight: 700;
	left: 9px;
	line-height: 1;
	position: absolute;
}

.p-top-fv__hero-scrolldown::before {
	animation: scroll 2s infinite;
	background-color: #004aad;
	bottom: -60px;
	content: "";
	height: 52px;
	left: calc(50% - 2px);
	position: absolute;
	transform: translateX(-50%);
	width: 1px;
}

.l-top-service {
	padding-block: 52px 91px;
	position: relative;
}

.l-top-service::before {
	background: #F8F8F8;
	border-radius: 50px 0 0 50px;
	content: "";
	height: 100%;
	position: absolute;
	right: 0;
	top: 52px;
	width: 73.3333333333%;
	z-index: -1;
}

.l-footer__wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.l-footer__contents {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.l-footer__img {
	aspect-ratio: 1;
	height: auto;
	width: 222px;
}

.l-footer__address {
	font-size: 12px;
	line-height: 1;
}

.l-footer__businessHours {
	font-size: 12px;
	line-height: 1;
	margin-top: 20px;
}

.l-footer__closed {
	font-size: 12px;
	line-height: 1;
	margin-top: 20px;
}

/* =========================
    セクションの共通クラス
   ========================= */

.l-section {
	margin-top: 60px;
}

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

/* =========================
   共通（ベース）
   ========================= */

.c-button {
	background-color: #FFF;
	border-radius: 10px;
	color: #000;
	display: block;
	line-height: 1;
	max-width: 100%;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s; /* 擬似要素の基本ユーティリティ */ /* ボタン内テキスト（共通） */
}

.c-button::before,
.c-button::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	pointer-events: none;
}

.c-button .c-button__text {
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	vertical-align: baseline;
}

/* =========================
   モディファイヤー：ドット
   ========================= */

.c-button--dot {
	border: 1px solid #000;
	padding: 21px 40px;
	width: 240px; /* 右側の黒/白ドット（位置・サイズは共通） */ /* hover */
}

.c-button--dot::before,
.c-button--dot::after {
	content: "";
	height: 10px;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

.c-button--dot::before {
	background-image: url(../img/svg/icon-dot__black.svg);
}

.c-button--dot::after {
	background-image: url(../img/svg/icon-dot__white.svg);
	opacity: 0;
	transition: opacity 0.3s;
}

.c-button--dot:hover {
	background-color: #000;
	color: #FFF;
}

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

/* =========================
   モディファイヤー：コンタクト
  （左にメールアイコン、右にドット）
   ========================= */

.c-button--contact {
	padding: 21px 25px 21px 32px;
	text-align: left;
	width: 284px; /* 右側のドット */ /* 左側のメールアイコンはテキスト内の擬似要素で */ /* hover */
}

.c-button--contact::before,
.c-button--contact::after {
	content: "";
	height: 10px;
	position: absolute;
	right: 24px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

.c-button--contact::before {
	background-image: url(../img/svg/icon-dot__black.svg);
}

.c-button--contact::after {
	background-image: url(../img/svg/icon-dot__white.svg);
	opacity: 0;
	transition: opacity 0.2s;
}

.c-button--contact .c-button__text {
	padding-left: 28px;
	position: relative;
}

.c-button--contact .c-button__text::before,
.c-button--contact .c-button__text::after {
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.c-button--contact .c-button__text::before {
	background-image: url(../img/svg/icon-contact__black.svg);
}

.c-button--contact .c-button__text::after {
	background-image: url(../img/svg/icon-contact__white.svg);
	opacity: 0;
	transition: opacity 0.3s;
}

.c-button--contact:hover {
	background-color: #000;
	color: #FFF;
}

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

.c-button--contact:hover .c-button__text::after {
	opacity: 1;
}

/* =========================
   モディファイヤー：下矢印
   ========================= */

.c-button--arrow {
	border: 1px solid #004aad;
	color: #004aad;
	padding: 10px 30px 33px;
	width: 208px; /* hover */
}

.c-button--arrow::before,
.c-button--arrow::after {
	content: "";
	height: 10px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 10px;
}

.c-button--arrow::before {
	background-image: url(../img/svg/icon-arrow__blue.svg);
	bottom: 10px;
	transition: bottom 0.3s ease;
}

.c-button--arrow::after {
	background-image: url(../img/svg/icon-arrow__white.svg);
	bottom: 3px;
	opacity: 0;
	transition: opacity 3s ease;
}

.c-button--arrow .c-button__text {
	color: #000;
	font-weight: 400;
	transition: color 0.3s;
}

.c-button--arrow:hover {
	background-color: #004aad;
	color: #FFF;
}

.c-button--arrow:hover::before {
	bottom: 3px;
}

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

.c-button--arrow:hover .c-button__text {
	color: #FFF;
}

.c-heading {
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 16px;
	line-height: 1;
}

.c-heading__jp {
	font-size: 20px;
	font-style: normal;
}

.c-heading__en {
	-webkit-text-stroke-color: #4282B8;
	-webkit-text-stroke-width: 1px;
	color: transparent;
	font-family: "Kanit", sans-serif;
	font-size: 72px;
	text-transform: uppercase;
}

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

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

.c-loading__text {
	color: #004aad;
	font-family: "Kanit", sans-serif;
	font-size: 32px;
	font-weight: 500;
	line-height: 1.5;
	overflow: hidden;
}

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

.c-copyright {
	margin-top: 10px;
	text-align: center;
}

.c-copyright small {
	font-size: 12px;
	line-height: 1;
}

/* =========================
   モディファイヤー：フッター
   ========================= */

.c-copyright {
	margin-top: 42px;
}

.c-contact {
	padding-block: 27px 41px;
	position: relative;
}

.c-contact::before,
.c-contact::after {
	content: "";
}

.c-contact::before {
	background-color: #F8F8F8;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.c-contact::after {
	aspect-ratio: 59/83;
	background: url(../img/svg/contact-cta__img.svg) no-repeat center/contain;
	height: auto;
	position: absolute;
	right: 20px;
	top: -28px;
	width: 59px;
}

.c-contact__content {
	margin-top: 47px;
}

.c-contact__tel {
	align-items: baseline;
	border-bottom: 1px solid #000;
	display: flex;
	gap: 16px;
	line-height: 1;
	padding-bottom: 23px;
}

.c-contact__tel-label {
	line-height: 1;
}

.c-contact__tel-label--en {
	font-family: "Kanit", sans-serif;
	font-size: 32px;
}

.c-contact__tel-label--jp {
	font-size: 12px;
	font-weight: 700;
}

.c-contact__details {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding-top: 23px;
}

.c-contact__number {
	font-family: "Kanit", sans-serif;
	font-size: 32px;
	line-height: 1;
}

.c-contact__opening-hours {
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
}

.c-contact__cta {
	margin-top: 36px;
}

.c-summary {
	margin-top: 40px;
}

.c-summary__content {
	position: relative;
}

.c-summary__content::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: auto;
	position: absolute;
	right: 20px;
	top: -30px;
}

.c-summary__description {
	font-size: 14px;
	margin-top: 32px;
}

.c-summary__buttons {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-top: 40px;
}

button {
	background: none;
}

:where(dialog) {
	background-color: unset;
	border: unset;
	color: unset;
	height: unset;
	max-height: unset;
	max-width: unset;
	overflow: unset;
	padding: unset;
	width: unset;
}

body:has(dialog[open]) {
	overflow: hidden;
}

dialog::backdrop {
	opacity: 0;
	transition: background 0.3s ease-in-out;
}

dialog.js-show.c-modal__content {
	opacity: 1;
}

dialog.js-show::backdrop {
	background: rgba(0, 0, 0, 0.5);
	opacity: 1;
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
}

.c-modal__content {
	background: #fff;
	max-height: 80vh;
	opacity: 0;
	overflow: hidden;
	transition: opacity 0.3s ease-in-out;
	width: min(860px, 80%);
}

.c-modal__inner {
	height: 100%;
	overflow-y: scroll;
	position: relative;
}

.c-modal__body {
	height: -moz-fit-content;
	height: fit-content;
	margin-inline: auto;
	max-width: 716px;
	padding: 16px 30px 24px;
}

.c-modal__header {
	align-items: center;
	color: #004aad;
	display: flex;
	font-size: 14px;
	font-weight: 700;
	gap: 16px;
	line-height: 1;
}

.c-modal__tag {
	border: 1px solid #004aad;
	padding: 4px 15px;
}

.c-modal__title {
	font-size: 18px;
	font-weight: 700;
}

.c-modal__textWrap {
	aspect-ratio: 656/366;
	height: auto;
	margin-inline: auto;
	width: 100%;
}

.c-modal__img {
	display: block;
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.c-modal__texts {
	font-size: 12px;
}

.c-modal__text {
	margin-top: 16px;
}

.c-modal__text-list {
	list-style: disc;
	margin-top: 16px;
	padding-left: 1.5em;
}

.c-modal__text-item {
	list-style-type: disc;
}

.c-modal__button {
	margin-inline: auto;
	margin-top: 40px;
}

.c-modal__close-btn {
	font-size: 30px;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 2;
}

/* =========================
   ブログ記事に関する共通のクラス
   ========================= */

.c-blog-article {
	border-bottom: 1px solid #004aad;
	display: inline-block; /* hover時 */
}

.c-blog-article:nth-of-type(1) {
	border-top: 1px solid #004aad;
}

.c-blog-article:hover .c-blog-article__img {
	transform: scale(1.2);
}

.c-blog-article:hover .c-blog-article__tag {
	background-color: #004aad;
	color: #FFF;
}

.c-blog-article__content {
	display: flex;
	flex-direction: column;
	gap: 24px;
	margin-inline: auto;
	max-width: 600px;
	padding-block: 30px;
}

.c-blog-article__imgWrap {
	aspect-ratio: 335/220;
	height: auto;
	overflow: hidden;
	width: 100%;
}

.c-blog-article__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 ease;
}

.c-blog-article__body {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.c-blog-article__tag {
	background-color: #FFF;
	border: 1px solid #004aad;
	border-radius: 10px;
	color: #004aad;
	font-size: 12px;
	padding: 3px 10px;
	transition: background-color 0.3s ease, color 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
}

.c-blog-article__title {
	font-size: 18px;
	font-weight: 700;
}

.c-blog-article__excerpt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
	font-size: 14px;
	overflow: hidden;
}

.c-blog-article__date {
	font-size: 12px;
}

.c-blog-article--archive {
	padding-inline: 20px;
}

/* =========================
   トップへ戻るボタン
   ========================= */

.c-to-top {
	align-items: center;
	aspect-ratio: 1;
	background-color: #004aad;
	border-radius: 50%;
	bottom: 36px;
	cursor: pointer;
	display: flex;
	height: auto;
	justify-content: center;
	opacity: 0;
	position: fixed;
	right: 40px;
	transition: opacity 0.5s;
	visibility: hidden;
	width: 60px;
	z-index: 300;
}

.c-to-top.js-show {
	opacity: 1;
	visibility: visible;
}

.c-to-top__text {
	color: #FFF;
	font-size: 20px;
	font-weight: 700;
}

/* =========================
   fvの共通クラス
   ========================= */

.c-fv-low {
	margin-top: 60px;
	padding-top: 33px;
	position: relative;
}

.c-fv-low__inner {
	padding-inline: 20px;
}

.c-fv-low__imgWrap {
	aspect-ratio: 335/200;
	border-radius: 20px;
	height: auto;
	overflow: hidden;
	width: 100%;
}

.c-fv-low__img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	display: block;
	object-position: center;
}

.c-fv-low__inner--recruit {
	position: relative;
}

/* =========================
   下層ページの各セクション共通の見出しクラス
   ========================= */

.c-section-heading {
	font-size: 18px;
	font-weight: 700;
	line-height: 100%;
}

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

.c-form__wrapper {
	margin-top: 60px;
	max-width: 470px;
}

.c-form__fields {
	display: flex;
	flex-direction: column;
	gap: 27px;
}

.c-form__field {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.c-form__field-head {
	align-items: center;
	display: flex;
	font-weight: 700;
	gap: 10px;
	line-height: 1;
}

.c-form__field-tag {
	background-color: #FE0000;
	border-radius: 4px;
	color: #FFF;
	font-size: 12px;
	padding: 4px 8px;
}

input[type=text],
input[type=email],
input[type=tel],
select,
textarea {
	background-color: #F8F8F8;
	border: 1px solid #004aad;
	border-radius: 0;
	padding: 21px 15px;
	width: 100%;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
	color: #c2c2c2;
	font-weight: 700;
	line-height: 1;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
select::placeholder,
textarea::placeholder {
	color: #c2c2c2;
	font-weight: 700;
	line-height: 1;
}

textarea {
	height: 243px;
	resize: vertical;
}

/* ラジオのネイティブUIは視覚的に隠す（可視フォーカスは後で付与） */

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

/* グループのレイアウト */

.c-form__field-item--radio {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

/* クリック範囲を広げる */

.c-form__radio-label {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
}

/* 表示テキスト（= input直後の要素）に丸を描く */

.c-form__radio-name {
	font-weight: 700;
	line-height: 1;
	padding-left: 24px;
	position: relative;
}

/* 外枠の丸 */

.c-form__radio-name::before {
	background: transparent;
	border: 1px solid #004aad;
	border-radius: 50%;
	box-sizing: border-box;
	content: "";
	height: 16px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
}

/* 中の点（初期は非表示） */

.c-form__radio-name::after {
	background-color: #004aad;
	border-radius: 50%;
	content: "";
	height: 10px;
	left: 3px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: opacity 0.2s ease;
	width: 10px;
}

/* ✅ チェック時に中の点を表示（input の直後が .c-form__radio-name であることが前提） */

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

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

.c-form__privacy {
	margin-top: 32px;
	text-align: center;
}

.c-form__privacy-label {
	align-items: center;
	cursor: pointer;
	display: inline-flex;
}

.c-form__checkbox {
	height: 1px;
	margin: 0;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
}

.c-form__privacy-text {
	display: inline-block;
	line-height: 1.5;
	padding-left: 28px;
	position: relative;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.c-form__privacy-text::before {
	background: transparent;
	border: 1px solid #004aad;
	border-radius: 3px;
	box-sizing: border-box;
	content: "";
	height: 18px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
}

.c-form__privacy-text::after {
	border-bottom: 2px solid #004aad;
	border-right: 2px solid #004aad;
	content: "";
	height: 10px;
	left: 5px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-55%) rotate(45deg);
	transition: opacity 0.2s ease;
	width: 6px;
}

/* ✅ チェック時に✔を表示（input の直後が .c-form__privacy-text であることが前提） */

.c-form__checkbox:checked + .c-form__privacy-text::after {
	opacity: 1;
}

.c-form__btn {
	background-color: #004aad;
	border-radius: 10px;
	color: #FFF;
	display: block;
	font-weight: 700;
	line-height: 100%;
	margin: 32px auto 0;
	padding-block: 22px;
	text-align: center;
	width: 284px;
}

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

.p-drawer-button {
	background-color: #004aad;
	display: block;
	height: 60px;
	position: relative;
	width: 60px;
}

.p-drawer-button.is-open .p-drawer-button__bar:nth-of-type(1) {
	top: 50%;
	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) {
	top: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
}

.p-drawer-button__bar {
	background-color: #FFF;
	border-radius: 999px;
	height: 2px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	transition: opacity 0.3s, transform 0.3s;
	width: 32px;
}

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

.p-drawer-button__bar:nth-of-type(2) {
	top: 50%;
	transform: translate(50% -50%);
}

.p-drawer-button__bar:nth-of-type(3) {
	top: calc(100% - 16px);
}

.p-drawer-nav {
	background-color: #FFF;
	height: 100%;
	left: 0;
	margin-top: 60px;
	padding-top: 24px;
	position: fixed;
	text-align: center;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.3s;
	width: 100%;
	z-index: 40;
}

.p-drawer-nav.is-open {
	transform: translateX(0);
}

.p-drawer-nav__link {
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	padding: 16px;
}

.p-drawer-nav__link--contact {
	padding-left: 28px;
	position: relative;
}

.p-drawer-nav__link--contact::before {
	background: url(../img/svg/icon-contact__black.svg) no-repeat center;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.p-header-nav {
	width: 100%;
}

.p-header-nav__link {
	border-bottom: 1px solid #B1C6DC;
	display: block;
	font-size: 20px;
	font-weight: 700;
	line-height: 1;
	padding-block: 31px;
}

.p-header-nav__sub-list {
	border-bottom: 1px solid #B1C6DC;
	display: none;
	padding: 19px 17px;
}

.p-header-nav__sub-link {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding-block: 12px;
	transition: opacity 0.3s; /* hover */
}

.p-header-nav__sub-link:hover {
	opacity: 0.4;
}

/* =========================
   モディファイヤー：ドロップダウン
   ========================= */

.p-header-nav__link--dropdown {
	position: relative;
	transition: transform 0.3s; /* hover */
}

.p-header-nav__link--dropdown::before,
.p-header-nav__link--dropdown::after {
	background-color: #004aad;
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: transform 0.3s;
	width: 24px;
}

.p-header-nav__link--dropdown::after {
	transform: translateY(-50%) rotate(90deg);
}

.p-header-nav__link--dropdown:hover::after {
	transform: rotate(180deg);
}

/* =========================
   モディファイヤー：お問い合わせ
   ========================= */

.p-header-nav__link--contact {
	padding-left: 40px;
	position: relative;
}

.p-header-nav__link--contact::before {
	aspect-ratio: 1;
	background: url(../img/svg/icon-contact__black.svg) no-repeat center;
	content: "";
	height: auto;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
}

.p-footer-nav {
	text-align: center;
}

.p-footer-nav__link {
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	padding: 16px;
	transition: opacity 0.3s; /* hover */
}

.p-footer-nav__link:hover {
	opacity: 0.4;
}

/* =========================
   モディファイヤー：お問い合わせ
   ========================= */

.p-footer-nav__link--contact {
	padding-left: 30px;
	position: relative;
}

.p-footer-nav__link--contact::before {
	background: url(../img/svg/icon-contact__black.svg) no-repeat center/contain;
	content: "";
	height: 20px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.p-top-about__wrapper {
	padding-bottom: 126px;
	position: relative;
}

.p-top-about__tagline {
	bottom: 0;
	position: absolute;
	right: 27px;
	z-index: 1;
}

.p-top-about__tagline::before {
	aspect-ratio: 60/80;
	background: url(../img/svg/top-about.svg) no-repeat center/contain;
	bottom: 62px;
	content: "";
	height: auto;
	left: -70px;
	position: absolute;
	width: 60px;
}

.p-top-about__tagline-text {
	background-color: #F8F8F8;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.5em;
	line-height: 1.6;
	padding: 24px 16px;
	white-space: nowrap;
	writing-mode: vertical-rl;
}

.p-top-about__tagline-text span {
	color: #004aad;
	vertical-align: baseline;
}

.p-top-about__description {
	font-size: 14px;
	margin-top: 40px;
}

.p-top-about__description span {
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	padding-bottom: 12px;
}

.p-top-about__button {
	margin-top: 32px;
}

/* =========================
   swiper
   ========================= */

.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-container {
	background-color: #F8F8F8;
	padding: 16px 0 58px 19px;
}

.p-top-about__swiper-slide {
	aspect-ratio: 1;
	height: auto;
	max-width: 240px;
	width: 53.3333333333%;
}

.p-top-about__img {
	height: 100%;
	width: 100%;
}

.p-top-service {
	padding-bottom: 91px;
	position: relative;
}

.p-top-service::before,
.p-top-service::after {
	content: "";
}

.p-top-service::before {
	background-color: #F8F8F8;
	border-radius: 50px 0 0 50px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	width: calc(100% - 100px);
	z-index: -1;
}

.p-top-service::after {
	aspect-ratio: 69/96;
	background: url(../img/svg/top-service.svg) no-repeat center/contain;
	height: auto;
	position: absolute;
	right: 20px;
	top: -48px;
	width: 69px;
}

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

.p-top-service__article {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.p-top-service__article-imgWrap {
	aspect-ratio: 335/301;
	display: inline-block;
	height: auto;
	margin-inline: auto;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-top-service__article-img {
	height: 100%;
	width: 100%;
}

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

.p-top-service__article-title {
	background-color: #FFF;
	border-radius: 10px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	padding: 10px 16px;
}

.p-top-service__article-number {
	color: #B1C6DC;
	font-family: "Kanit", sans-serif;
	font-size: 48px;
	font-weight: 700;
	line-height: 1;
	z-index: -1;
}

.p-top-service__article-number--big {
	position: absolute;
	right: -40px;
	top: 0;
}

.p-top-service__article-text {
	margin-top: 16px;
}

.p-top-service__article-cta {
	margin-top: 28px;
}

/* =========================
   モディファイヤー：reverse
   ========================= */

.p-top-service__article--reverse .p-top-service__article-number--big {
	left: -55px;
	position: absolute;
}

.p-top-news__modals {
	border-top: 1px solid #004aad;
	margin-top: 48px;
}

.p-top-news__modal {
	background-color: #FFF;
	border-bottom: 1px solid #004aad;
	display: inline-block;
	padding-block: 15px;
	position: relative;
	width: 100%;
}

.p-top-news__modal::before {
	aspect-ratio: 1;
	background: url(../img/svg/icon-arrow-right__blue.svg) no-repeat center/contain;
	content: "";
	height: auto;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	transition: right 0.3s;
	width: 16px;
}

.p-top-news__modal:hover::before {
	right: 3px;
}

.p-top-news__modal:hover .p-top-news__tag {
	background-color: #004aad;
	color: #FFF;
}

.p-top-news__info {
	align-items: center;
	color: #004aad;
	display: flex;
	font-size: 14px;
	gap: 16px;
	line-height: 1;
}

.p-top-news__tag {
	border: 1px solid #004aad;
	padding: 4px 15px;
	transition: color 0.3s, background-color 0.3s;
}

.p-top-news__title {
	font-size: 14px;
	font-weight: 700;
	margin-top: 16px;
	text-align: left;
}

/* =========================

   ========================= */

.p-top-recruit__body {
	margin-top: 20px;
}

.p-top-recruit__lead {
	font-weight: 700;
}

.p-top-recruit__text {
	margin-top: 20px;
}

.p-top-recruit__text span {
	font-weight: 700;
	vertical-align: baseline;
}

.p-top-recruit__button {
	margin-top: 32px;
}

/* =========================

   ========================= */

.p-top-blog__description {
	margin-top: 32px;
	max-width: 600px;
}

.p-top-blog__articles {
	display: flex;
	flex-direction: column;
	margin-top: 32px;
}

.p-about-summary__content::before {
	aspect-ratio: 80/99;
	background-image: url(../img/svg/about-summary__img.svg);
	width: 80px;
}

/* =========================
   経営理念に関するクラス
   ========================= */

.p-about-philosophy__imgWrap {
	margin-top: 16px;
}

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

/* =========================
   会社概要に関するクラス
   ========================= */

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

.p-about-company__description {
	font-size: 12px;
}

.p-about-company__description span {
	color: #004aad;
	font-weight: 700;
	vertical-align: baseline;
}

.p-about-company__ceo-img {
	aspect-ratio: 335/425;
	height: auto;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	display: block;
	object-position: center;
}

.p-about-company__ceo-caption {
	align-items: baseline;
	display: flex;
	gap: 10px;
	margin-top: 16px;
}

.p-about-company__ceo-role {
	font-size: 14px;
}

.p-about-company__ceo-name {
	color: #004aad;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
}

.p-about-company__list {
	margin-top: 32px;
}

.p-about-company__row {
	display: grid;
	grid-template-columns: 80px 1fr;
	-moz-column-gap: 16px;
	align-items: center;
	border-bottom: 1px solid #004aad;
	column-gap: 16px;
	font-size: 14px;
	line-height: 1;
	padding-block: 23px;
}

.p-about-company__term {
	font-weight: 700;
	white-space: nowrap;
}

.p-about-company__sub-list {
	display: flex;
	flex-direction: column;
}

/* =========================

   ========================= */

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

.p-about-safety__article {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.p-about-safety__content {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.p-about-safety__title {
	font-weight: 700;
}

.p-about-safety__description {
	font-size: 12px;
}

.p-about-safety__description span {
	font-weight: 700;
	vertical-align: baseline;
}

.p-about-safety__media {
	aspect-ratio: 335/260;
	height: auto;
	width: 100%;
}

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

.p-service-summary__content::before {
	aspect-ratio: 80/101;
	background-image: url(../img/svg/service-summary__img.svg);
	width: 80px;
}

.p-service-article {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.p-service-article__imgWrap {
	aspect-ratio: 335/140;
	border-radius: 30px;
	height: auto;
	overflow: hidden;
	width: 100%;
}

.p-service-article__img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.p-service-article__title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	margin-bottom: 19px;
}

.p-service-article__content {
	border-top: 1px solid #004aad;
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding-top: 19px;
}

.p-service-article__sub-heading {
	font-weight: 700;
}

.p-service-article__description {
	font-size: 14px;
}

.p-archive__top {
	max-width: 860px;
}

.p-archive__description {
	margin-top: 24px;
}

.p-archive__articles {
	margin-top: 36px;
}

.p-recruit__top {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
}

.p-recruit__top::before {
	aspect-ratio: 59/86;
	background: url(../img/svg/recruit-img.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: auto;
	position: absolute;
	right: 0;
	top: -40px;
	width: 59px;
}

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

.p-recruit__about-description {
	font-size: 14px;
	margin-top: 16px;
}

.p-recruit__about-button {
	margin-top: 40px;
}

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

.p-recruit-fv__lead {
	bottom: 10px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	left: 30px;
	position: absolute;
}

.p-recruit-fv__lead-main {
	background-color: #FFF;
	border-radius: 10px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	padding: 10px;
	width: -moz-fit-content;
	width: fit-content;
}

.p-recruit-fv__lead-sub {
	color: #FFF;
	font-size: 10px;
	font-weight: 700;
	padding-left: 10px;
	text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}

.p-recruit-info {
	width: 100%;
}

.p-recruit-info__role {
	font-size: 18px;
	font-weight: 700;
}

.p-recruit-info__list {
	margin-top: 16px;
}

.p-recruit-info__row {
	align-items: flex-start;
	border-bottom: 1px solid #004aad;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	gap: 16px;
	line-height: 1;
	padding-block: 23px;
}

.p-recruit-info__term {
	font-weight: 700;
	width: 70px;
}

.p-recruit-info__desc {
	white-space: nowrap;
}

.p-recruit-info__button {
	border: 1px solid #000;
	margin-inline: auto;
	margin-top: 60px;
}

.p-recruit-info__button.c-button--contact {
	text-align: center;
}

.p-blog__body {
	margin-block: 24px;
}

.p-blog__description {
	font-size: 14px;
	margin-top: 24px;
}

.p-blog__button {
	margin: 32px auto 0;
}

.p-contact-summary {
	margin-inline: auto;
}

.p-contact-summary__content {
	max-width: 700px;
	position: relative;
}

.p-contact-summary__content::before {
	aspect-ratio: 82/87;
	background: url(../img/svg/contact-summary__img.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: auto;
	position: absolute;
	right: 0;
	top: -30px;
	width: 82px;
}

.p-contact-summary__description {
	max-width: 422px;
}

.p-contact-summary__wrapper {
	display: flex;
	flex-direction: column;
	gap: 50px;
	margin-top: 62px;
}

.p-contact-summary__steps {
	display: flex;
	flex-direction: column;
	gap: 52px;
}

.p-contact-summary__step {
	align-items: center;
	background-color: #004aad;
	color: #FFF;
	display: flex;
	flex-direction: column;
	font-weight: 700;
	gap: 10px;
	line-height: 1;
	padding-block: 7px 13px;
	width: 100%;
}

.p-contact-summary__step-number {
	font-size: 12px;
}

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

.p-contact-summary__step--reverse {
	background-color: #FFF;
	border: 3px solid #004aad;
	color: #004aad;
	padding-block: 4px 10px;
	position: relative;
}

.p-contact-summary__step--reverse::before {
	background-color: #004aad;
	content: "";
	height: 54px;
	left: 50%;
	position: absolute;
	top: -56px;
	transform: translateX(-50%);
	width: 1px;
}

.p-contact-summary__tel {
	display: flex;
	flex-direction: column;
	gap: 29px;
}

.p-contact-summary__tel .c-contact__details {
	padding-top: 0;
}

.p-contact-summary__tel-text {
	font-weight: 700;
	line-height: 1;
}

.p-contact-thanks .p-contact-summary__step {
	background-color: #FFF;
	border: 3px solid #004aad;
	color: #004aad;
	padding-block: 4px 10px;
}

.p-contact-thanks .p-contact-summary__step--reverse {
	background-color: #004aad;
	color: #FFF;
	padding-block: 7px 13px;
}

.p-contact-thanks__buttonWrap {
	margin-inline: auto;
	margin-top: 30px;
}

.p-contact-thanks__button {
	background-color: #FFF;
	border: 1px solid #004aad;
	border-radius: 10px;
	color: #004aad;
	display: inline-block;
	font-weight: 700;
	line-height: 1;
	opacity: color 0.3s;
	opacity: background-color 0.3s, color 0.3s;
	padding: 21px 24px;
	position: relative;
	text-align: center;
	width: 284px;
}

.p-contact-thanks__button::before,
.p-contact-thanks__button::after {
	aspect-ratio: 1;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: auto;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

.p-contact-thanks__button::before {
	background-image: url(../img/svg/icon-dot__blue.svg);
}

.p-contact-thanks__button::after {
	background-image: url(../img/svg/icon-dot__white.svg);
	opacity: 0;
	transition: opacity 0.3s;
}

.p-contact-thanks__button:hover {
	background-color: #004aad;
	color: #FFF;
}

.p-contact-thanks__button:hover::after {
	opacity: 1;
}

/*
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: 30px;
}

/* =========================
   浮き上がるクラス
   ========================= */

.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 screen and (min-width: 600px) {

.p-recruit-fv__lead {
	bottom: 20px;
}

.p-recruit-fv__lead-main {
	font-size: 18px;
}

.p-recruit-fv__lead-sub {
	font-size: 12px;
}

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

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

}

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

.l-top-fv__inner {
	padding-inline: 20px;
}

.l-top-fv__hero-img {
	aspect-ratio: 1120/873;
	width: 96.5517241379%;
}

.l-top-fv__hero-img img {
	display: block;
	height: auto;
	width: 100%;
}

.p-top-fv__hero__texts {
	left: auto;
	right: 80px;
}

.p-top-fv__hero-main-text {
	font-size: 5.5172413793vw;
}

.p-top-fv__hero-sub-text {
	font-size: 1.3793103448vw;
}

.c-loading__text {
	font-size: 7.8125vw;
}

.c-contact {
	padding-block: 32px 53px;
}

.c-contact::before {
	border-radius: 50px 0 0 50px;
}

.c-contact::after {
	aspect-ratio: 175/256;
	max-width: 175px;
	right: 40px;
	top: 0;
	width: 15.350877193%;
}

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

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

.c-contact__tel {
	border-bottom: 0;
	border-right: 1px solid #000;
	flex-direction: column;
	gap: 8px;
	padding-bottom: 0;
	padding-right: 31px;
}

.c-contact__details {
	border-right: 1px solid #000;
	padding-inline: 31px;
	padding-top: 0;
}

.c-contact__cta {
	margin-left: 31px;
	margin-top: 0;
}

.c-summary__content::before {
	right: 0;
}

.c-summary__description {
	font-size: 16px;
}

.c-summary__buttons {
	flex-direction: row;
}

.c-modal__title {
	font-size: 24px;
}

.c-blog-article:nth-of-type(even) .c-blog-article__content {
	flex-direction: row-reverse;
}

.c-blog-article__content {
	align-items: center;
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
	max-width: 100%;
	padding-block: 48px;
}

.c-blog-article__imgWrap {
	width: calc(40% - 16px);
}

.c-blog-article__body {
	gap: 16px;
	width: calc(60% - 16px);
}

.c-blog-article__tag {
	font-size: 14px;
	padding: 5px 15px;
}

.c-blog-article__title {
	font-size: 24px;
}

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

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

.c-blog-article--archive {
	padding-inline: 40px;
}

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

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

.p-top-about__swiper-container {
	padding: 63px 0 63px 48px;
}

.p-top-about__swiper-slide {
	max-width: 360px;
	width: 31.0344827586%;
}

.p-top-service {
	padding-bottom: 100px;
}

.p-top-service::after {
	aspect-ratio: 124/172;
	right: 40px;
	width: 10.6896551724%;
}

.p-top-service__article {
	align-items: flex-end;
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 1002px;
}

.p-top-service__article-imgWrap {
	aspect-ratio: 514/464;
	margin: 0;
	position: relative;
	width: 51.2974051896%;
}

.p-top-service__article-body {
	width: 42.9141716567%;
}

.p-top-service__article-header {
	align-items: flex-start;
	flex-direction: column-reverse;
}

.p-top-service__article-text {
	margin-top: 24px;
}

.p-top-service__article--reverse {
	flex-direction: row-reverse;
}

.p-top-news__modal {
	padding-block: 31px;
}

.p-top-recruit__body {
	margin-top: 32px;
	max-width: 600px;
}

.p-top-recruit__text {
	margin-top: 32px;
}

.p-top-recruit__button {
	margin-top: 48px;
}

.p-top-blog__description {
	margin-top: 64px;
}

.p-top-blog__articles {
	margin-top: 64px;
}

.p-about-summary__content::before {
	aspect-ratio: 116/139;
	width: 116px;
}

.p-about-philosophy__imgWrap {
	margin-top: 32px;
}

.p-about-company__body {
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
	margin-top: 48px;
}

.p-about-company__description {
	font-size: 16px;
	width: 45.1206715635%;
}

.p-about-company__ceo {
	width: 34.7324239244%;
}

.p-about-company__ceo-caption {
	flex-direction: column;
	margin-top: 20px;
}

.p-about-company__ceo-role {
	font-size: 16px;
}

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

.p-about-company__list {
	margin-top: 48px;
}

.p-about-company__row {
	font-size: 16px;
	-moz-column-gap: 100px;
	column-gap: 100px;
	padding-block: 31px;
}

.p-about-safety__articles {
	margin-top: 48px;
}

.p-about-safety__article:nth-of-type(even) .p-about-safety__content {
	flex-direction: row-reverse;
}

.p-about-safety__content {
	align-items: center;
	flex-direction: row;
	justify-content: space-between;
}

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

.p-about-safety__description {
	font-size: 16px;
	width: 67.3662119622%;
}

.p-about-safety__media {
	aspect-ratio: 267/208;
	width: 28.0167890871%;
}

.p-service-summary__content::before {
	aspect-ratio: 116/141;
	width: 116px;
}

.p-service-article {
	gap: 48px;
}

.p-service-article__imgWrap {
	aspect-ratio: 960/400;
	border-radius: 50px;
}

.p-service-article__body {
	margin-inline: auto;
	max-width: 860px;
}

.p-service-article__title {
	font-size: 24px;
	margin-bottom: 38px;
}

.p-service-article__content {
	align-items: flex-start;
	flex-direction: row;
	justify-content: space-between;
}

.p-service-article__sub-heading {
	font-size: 20px;
	width: 43.488372093%;
}

.p-service-article__description {
	font-size: 16px;
	width: 51.8604651163%;
}

.p-archive__description {
	font-size: 20px;
	margin-top: 36px;
}

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

.p-recruit__top {
	gap: 24px;
}

.p-recruit__top::before {
	aspect-ratio: 100/120;
	width: 100px;
}

.p-recruit__description {
	font-size: 16px;
}

.p-recruit__about-description {
	font-size: 16px;
	margin-top: 24px;
}

.p-recruit__about-button {
	margin-top: 60px;
}

.p-recruit__info-content {
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
	margin-top: 48px;
}

.p-recruit-fv__lead {
	bottom: 30px;
	gap: 10px;
	left: 40px;
}

.p-recruit-fv__lead-main {
	font-size: 20px;
}

.p-recruit-fv__lead-sub {
	font-size: 14px;
}

.p-recruit-info {
	width: calc(50% - 10px);
}

.p-recruit-info {
	width: calc(50% - 30px);
}

.p-recruit-info__role {
	font-size: 22px;
}

.p-recruit-info__list {
	margin-top: 48px;
}

.p-recruit-info__row {
	font-size: 16px;
	padding-block: 31px;
}

.p-blog__body {
	margin: 36px auto;
	max-width: 900px;
}

.p-blog__description {
	font-size: 16px;
	margin-top: 36px;
}

.p-contact-summary__content::before {
	aspect-ratio: 116/122;
	width: 116px;
}

.p-contact-summary__wrapper {
	align-items: flex-start;
	flex-direction: row;
}

.p-contact-summary__steps {
	flex-direction: row;
}

.p-contact-summary__step {
	width: 209px;
}

.p-contact-summary__step--reverse::before {
	left: -28px;
	top: 50%;
	transform: translateY(-50%) rotate(90deg);
}

.p-contact-summary__tel .c-contact__details {
	border: none;
	padding: 0;
}

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

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

}

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

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

}

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

.p-top-fv__hero__texts {
	right: 100px;
}

.p-top-fv__hero-main-text {
	font-size: 64px;
}

.p-top-fv__hero-sub-text {
	font-size: 16px;
}

.p-top-fv__hero-scrolldown {
	bottom: 64px;
	left: 18px;
}

.p-top-fv__hero-scrolldown::before {
	bottom: -120px;
	height: 112px;
}

.l-section {
	margin-top: 100px;
}

.c-heading {
	gap: 20px;
}

.c-heading__jp {
	font-size: 24px;
}

.c-heading__en {
	font-size: 128px;
}

.c-loading__text {
	font-size: 80px;
}

.c-contact::after {
	top: 50%;
	transform: translateY(-50%);
}

.c-summary {
	margin-top: 64px;
}

.c-summary__description {
	margin-top: 64px;
}

.c-summary__buttons {
	margin-top: 64px;
}

.p-top-about__wrapper {
	padding-bottom: 71px;
}

.p-top-about__tagline {
	bottom: -180px;
	right: 40px;
}

.p-top-about__tagline::before {
	aspect-ratio: 161/213;
	bottom: 40px;
	left: -181px;
	width: 161px;
}

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

.p-top-about__body {
	max-width: 560px;
}

.p-top-about__description {
	font-size: 16px;
}

.p-top-about__description span {
	font-size: 24px;
	padding-bottom: 16px;
}

.p-top-about__button {
	margin-top: 40px;
}

.p-top-service::before {
	width: calc(100% - 192px);
}

.p-top-service::after {
	right: 178px;
	top: 93px;
}

.p-top-service__list {
	gap: 92px;
}

.p-top-service__article-number--big {
	font-size: 96px;
	right: -90px;
}

.p-top-service__article-text {
	margin-top: 48px;
}

.p-top-service__article--reverse .p-top-service__article-number--big {
	left: -110px;
}

.p-top-news__modal::before {
	right: 27px;
}

.p-top-news__modal:hover::before {
	right: 10px;
}

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

.p-top-recruit__text {
	font-size: 18px;
}

.p-top-blog__description {
	font-size: 18px;
}

.p-about-summary__content::before {
	aspect-ratio: 165/198;
	width: 165px;
}

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

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

.p-about-company__row {
	-moz-column-gap: 180px;
	column-gap: 180px;
}

.p-service-summary__content::before {
	aspect-ratio: 165/203;
	width: 165px;
}

.p-service-article {
	gap: 56px;
}

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

.p-recruit-fv__lead-main {
	font-size: 24px;
}

.p-recruit-fv__lead-main {
	font-size: 36px;
	padding: 16px;
}

.p-recruit-fv__lead-sub {
	font-size: 16px;
}

.p-recruit-info__role {
	font-size: 24px;
}

.p-recruit-info__row {
	flex-direction: row;
}

.p-blog__button {
	margin-top: 48px;
}

.p-contact-summary__wrapper {
	gap: 150px;
}

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

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

}

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

.l-inner {
	max-width: 1160px;
	padding-inline: 0 40px;
	text-align: left;
}

.l-inner--low {
	max-width: 993px;
}

.l-header {
	height: 100%;
	width: 280px;
}

.l-header__inner {
	align-items: flex-start;
	flex-direction: column;
	padding-inline: 40px;
}

.l-header__logo {
	width: 200px;
}

.l-top-fv {
	margin-left: 280px;
	margin-top: 0;
	padding-top: 40px;
	position: relative;
}

.l-top-fv::before {
	aspect-ratio: 1;
	background-color: #004aad;
	content: "";
	height: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 62.6724137931%;
	z-index: -1;
}

.l-top-fv__inner {
	padding-inline: 0 40px;
}

.p-top-fv__hero__texts {
	right: 113px;
}

.l-footer {
	margin-bottom: 30px;
	margin-left: 280px;
}

.l-footer__inner {
	padding-right: 10px;
}

.l-footer__wrapper {
	align-items: end;
	flex-direction: row;
	gap: 0;
	justify-content: space-between;
}

.l-footer__contents {
	align-items: flex-start;
	width: 40.5172413793%;
}

.l-footer__address {
	font-size: 16px;
}

.l-footer__businessHours {
	font-size: 16px;
	margin-top: 16px;
}

.l-footer__closed {
	font-size: 16px;
	margin-top: 16px;
}

.l-main {
	margin-left: 280px;
}

.c-copyright {
	text-align: right;
}

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

.c-summary__content::before {
	right: 50px;
}

.c-fv-low {
	margin-left: 280px;
	margin-top: 0;
}

.c-fv-low::before {
	aspect-ratio: 727/563;
	background-color: #004aad;
	content: "";
	height: auto;
	position: absolute;
	right: 0;
	top: 0;
	width: 62.6724137931%;
	z-index: -1;
}

.c-fv-low__inner {
	padding-inline: 0 40px;
}

.c-fv-low__imgWrap {
	aspect-ratio: 1120/661;
	border-radius: 50px;
	width: 100%;
}

.p-drawer-nav {
	margin-top: 0;
}

.p-footer-nav {
	max-width: 700px;
	width: 60.3448275862%;
}

.p-footer-nav__sub-list {
	display: flex;
}

.p-footer-nav__link {
	padding: 20px 12px;
}

.p-footer-nav__link--contact {
	padding-left: 32px;
}

.p-top-service__article-number--big {
	font-size: 132px;
	right: -126px;
}

.p-top-service__article--reverse .p-top-service__article-number--big {
	left: -150px;
}

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

.p-service__inner {
	max-width: 1000px;
}

.p-archive__inner {
	max-width: 1000px;
}

.p-recruit-fv__lead {
	bottom: 50px;
	gap: 16px;
	left: 60px;
}

.p-blog__body {
	margin: 60px 0;
	margin-left: 280px;
}

.p-blog__description {
	font-size: 18px;
	margin-top: 48px;
}

.p-contact-summary {
	margin-inline: 0;
}

.p-contact-summary__content::before {
	aspect-ratio: 165/174;
	width: 165px;
}

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

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

}

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

.l-footer__inner {
	padding-right: 56px;
}

.c-contact::after {
	left: calc(50% + 250px);
	right: 0;
}

.p-top-about__tagline {
	right: 142px;
}

.p-top-service__article-number--big {
	font-size: 168px;
	right: -160px;
}

.p-top-service__article--reverse .p-top-service__article-number--big {
	left: -190px;
}

}

@keyframes scroll {

0% {
	transform: scale(1, 0);
	transform-origin: 0 0;
}

50% {
	transform: scale(1, 1);
	transform-origin: 0 0;
}

51% {
	transform: scale(1, 1);
	transform-origin: 0 100%;
}

100% {
	transform: scale(1, 0);
	transform-origin: 0 100%;
}

}

@keyframes slideUp {

0% {
	translate: 0 100%;
}

100% {
	translate: 0 0;
}

}

@use "../global" as global;

/* ラジオ群（CF7 のラッパーは .wpcf7-form-control.wpcf7-radio） */
.c-form__field-item--radio .wpcf7-form-control.wpcf7-radio{
  display: flex;
  flex-direction: column;   /* 横並びにしたいなら row に */
  gap: .5rem;
}

/* クリック範囲を広げる */
.c-form__field-item--radio .wpcf7-list-item label{
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

/* ネイティブUIを視覚的に隠す（アクセス可能） */
.c-form__field-item--radio .wpcf7-list-item input[type=radio]{
  position: absolute;
  width: 1px; height: 1px;
  clip: rect(0,0,0,0);
  overflow: hidden;
}

/* 表示テキスト（= input直後のスパン）に丸を描く */
.c-form__field-item--radio .wpcf7-list-item-label{
  position: relative;
  padding-left: 24px;
  font-weight: 700;
  line-height: 1.3;
}

/* 外枠の丸 */
.c-form__field-item--radio .wpcf7-list-item-label::before{
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 16px; height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid global.$main-color;
  background: transparent;
}

/* 中の点（初期は非表示） */
.c-form__field-item--radio .wpcf7-list-item-label::after{
  content: "";
  position: absolute;
  top: 50%; left: 3px;
  width: 10px; height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: global.$main-color;
  opacity: 0;
  transition: opacity .2s ease;
}

/* ✅ チェック時に点を表示（input の直後が .wpcf7-list-item-label） */
.c-form__field-item--radio .wpcf7-list-item input[type=radio]:checked
  + .wpcf7-list-item-label::after{
  opacity: 1;
}

/* 任意：チェック時に外枠を強調 */
.c-form__field-item--radio .wpcf7-list-item input[type=radio]:checked
  + .wpcf7-list-item-label::before{
  border-width: 2px;
}

/* キーボード操作の可視フォーカス（推奨） */
.c-form__field-item--radio .wpcf7-list-item input[type=radio]:focus-visible
  + .wpcf7-list-item-label::before{
  outline: 2px solid rgba(0,0,0,.35);
  outline-offset: 2px;
}

/* ラベル文字に位置基準と余白を付与 */
.c-form__radio-name,
.c-form__field-item--radio .wpcf7-list-item-label{
  position: relative;
  padding-left: 24px;
  font-weight: 700;
  line-height: 1.3;
}

/* 外枠の丸 */
.c-form__radio-name::before,
.c-form__field-item--radio .wpcf7-list-item-label::before{
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 16px; height: 16px;
  transform: translateY(-50%);
  border-radius: 50%;
  box-sizing: border-box;
  background: transparent;
  border: 1px solid #004aad; /* global.$main-color に置き換え可 */
}

/* 中の点（初期は非表示） */
.c-form__radio-name::after,
.c-form__field-item--radio .wpcf7-list-item-label::after{
  content: "";
  position: absolute;
  top: 50%; left: 3px;
  width: 10px; height: 10px;
  transform: translateY(-50%);
  border-radius: 50%;
  background-color: #004aad; /* global.$main-color に置き換え可 */
  opacity: 0;
  transition: opacity .2s ease;
}

/* ✅ チェック時に点を出す（input の直後がラベル文字の <span>） */
.c-form__radio-label input[type=radio]:checked + .c-form__radio-name::after,
.c-form__field-item--radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label::after{
  opacity: 1;
}

/* ラッパーはそのまま */
.c-form__privacy{
  margin-top:32px;
  text-align:center;
}

/* ラベル化（クリック範囲を広げる） */
.c-form__privacy .wpcf7-list-item label{
  display:inline-flex;
  align-items:center;
  cursor:pointer;
}

/* ネイティブチェックを視覚的に隠す（アクセシブル） */
.c-form__checkbox{
  position:absolute;
  width:1px; height:1px; margin:0;
  clip:rect(0,0,0,0);
  overflow:hidden;
}

/* ラベル文字（= input直後）に□と✔を描く */
.c-form__privacy .wpcf7-list-item-label{
  position:relative;
  padding-left:28px;
  line-height:1.5;
  user-select:none;
}
.c-form__privacy .wpcf7-list-item-label::before{
  content:"";
  position:absolute; top:50%; left:0;
  width:18px; height:18px; transform:translateY(-50%);
  box-sizing:border-box;
  border:1px solid #004aad;
  border-radius:3px;
  background:transparent;
}
.c-form__privacy .wpcf7-list-item-label::after{
  content:"";
  position:absolute; top:50%; left:5px;
  width:6px; height:10px; transform:translateY(-55%) rotate(45deg);
  border-right:2px solid #004aad;
  border-bottom:2px solid #004aad;
  opacity:0; transition:opacity .2s ease;
}

/* ✅ チェック時に✔を表示（inputの直後が .wpcf7-list-item-label） */
.c-form__checkbox:checked + .wpcf7-list-item-label::after{
  opacity:1;
}

/* キーボード操作のフォーカス可視化（任意） */
.c-form__checkbox:focus-visible + .wpcf7-list-item-label::before{
  outline:2px solid rgba(0,0,0,.35);
  outline-offset:2px;
}

/* ラップ */
.c-form__privacy{ margin-top:32px; text-align:center; }

/* ラベルをクリックしやすく */
.c-form__privacy .wpcf7-list-item label{
  display:inline-flex; align-items:center; cursor:pointer;
}

/* チェック本体は視覚的に隠す */
.c-form__checkbox{
  position:absolute; width:1px; height:1px; margin:0;
  clip:rect(0,0,0,0); overflow:hidden;
}

/* テキスト（= input直後）に□と✔を描く */
.c-form__privacy .wpcf7-list-item-label{
  position:relative; padding-left:28px; line-height:1.5; user-select:none;
}
.c-form__privacy .wpcf7-list-item-label::before{
  content:""; position:absolute; top:50%; left:0; width:18px; height:18px;
  transform:translateY(-50%); box-sizing:border-box; border:1px solid #004aad;
  border-radius:3px; background:transparent;
}
.c-form__privacy .wpcf7-list-item-label::after{
  content:""; position:absolute; top:50%; left:5px; width:6px; height:10px;
  transform:translateY(-55%) rotate(45deg);
  border-right:2px solid #004aad; border-bottom:2px solid #004aad;
  opacity:0; transition:opacity .2s ease;
}
/* ✅ チェック時に✔を表示（input直後が .wpcf7-list-item-label） */
.c-form__checkbox:checked + .wpcf7-list-item-label::after{ opacity:1; }