/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/

/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/

/*****************************************
 * rclamp(): レスポンシブな clamp() 値を生成
 *
 * $minVw の画面幅で $min、$maxVw の画面幅で $max になり、
 * 間は線形に変化する CSS clamp() を返す。
 *
 * 引数 (すべて単位なし px の数値):
 *   $min    最小ピクセル値 (必須)
 *   $max    最大ピクセル値 (必須)
 *   $minVw  この画面幅で $min に固定 (省略時 375)
 *   $maxVw  この画面幅で $max に固定 (省略時 1200)
 *
 * 使用例:
 *   // 基本: 375〜1200px の間で 24px〜64px に変化
 *   font-size: rclamp(24, 64);
 *
 *   // ビューポート範囲を指定
 *   font-size: rclamp(24, 64, 768, 1440);
 *
 *   // どんなプロパティでも使える
 *   padding: rclamp(16, 40);
 *   gap:     rclamp(8, 20);
 *   margin-top: rclamp(40, 120);
******************************************/

html {
	font-size: 16px;
	font-size: 16px;
}

body {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	color: #151515;
}

body.is-scroll-lock {
	overflow: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.7;
}

:root {
	--rem: 1rem / 16;
}

:root {
	--header-height: calc(91 * var(--rem));
}

/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/

/* Box sizing rules */

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

/* remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Set core root defaults */

html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */

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

li {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* remove all animations and transitions for people that prefer not to see them */

button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.l-about {
	margin-top: 4.375rem;
}

.l-contact-catch {
	margin-top: 7.5rem;
}

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

.l-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	padding-top: 1.25rem;
}

.l-inner {
	max-width: 1250px;
	margin-inline: auto;
	padding-inline: 25px;
	width: 100%;
}

.l-news {
	margin-top: 10rem;
}

.l-news--top {
	margin-top: 7.5rem;
}

.l-recruit {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}

.l-services {
	margin-top: 6.9375rem;
}

.l-single {
	margin-top: 3.75rem;
}

.l-top-case {
	margin-top: 3.75rem;
}

.l-top-contact {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}

.c-breadcrumb__list {
	display: flex;
	font-size: 1.25rem;
	font-family: "Zen Kaku Gothic New";
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.03em;
	color: #fff;
	writing-mode: vertical-rl;
	text-orientation: sideways;
}

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

.c-breadcrumb__item + .c-breadcrumb__item::before {
	content: "";
	display: block;
	margin-inline: 0.5rem;
	width: 1.0625rem;
	aspect-ratio: 1;
	background-image: url("../images/arrow_breadcrumb.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.c-breadcrumb__link {
	color: inherit;
}

.c-breadcrumb-horizontal {
	margin-top: 12.5rem;
}

.c-breadcrumb-horizontal__list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	background-color: #f7f7f7;
	padding-block: 1.25rem;
	padding-inline: 1.875rem;
	border-radius: 3.75rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
	line-height: 1.6111111111;
	width: -moz-fit-content;
	width: fit-content;
}

.c-breadcrumb-horizontal__item + .c-breadcrumb-horizontal__item {
	display: flex;
	align-items: center;
}

.c-breadcrumb-horizontal__item + .c-breadcrumb-horizontal__item::before {
	content: "";
	display: block;
	flex-shrink: 0;
	margin-inline: 1rem;
	width: 1.0625rem;
	aspect-ratio: 1;
	background-image: url("../images/arrow_breadcrumb-horizontal.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

.c-breadcrumb-horizontal__link {
	color: inherit;
}

.c-btn {
	display: inline-block;
	min-width: 200px;
	padding: 10px 20px;
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	background-color: #0e62aa;
	border: 1px solid #0e62aa;
	transition: 0.3s;
}

.c-btn::after {
	content: "";
	display: inline-block;
	margin-left: 16px;
	width: 10px;
	height: 10px;
	border-top: 1px solid #fff;
	border-right: 1px solid #fff;
	transform: rotate(45deg);
	transition: 0.3s;
}

.c-btn:hover {
	text-decoration: none;
	background-color: #fff;
	color: #0e62aa;
	opacity: 1;
	cursor: pointer;
}

.c-btn:hover::after {
	border-top: 1px solid #0e62aa;
	border-right: 1px solid #0e62aa;
	transform: translateX(5px) rotate(45deg);
}

.c-button {
	display: inline-block;
}

.c-button a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 3.875rem;
	min-width: 14.875rem;
	padding-block: 1.0625rem;
	padding-inline: 1.375rem;
	background-color: #f39939;
	border: 1px solid #f39939;
	border-radius: 0.25rem;
	color: #f7f7f7;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

.c-button a::after {
	content: "";
	flex-shrink: 0;
	width: 1.0625rem;
	aspect-ratio: 17/15;
	background-color: #f7f7f7;
	-webkit-mask-image: url("../images/icon_link.svg");
	mask-image: url("../images/icon_link.svg");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	transition: background-color 0.3s;
}

.c-card__link {
	display: block;
	position: relative;
	background: #fff;
	border-radius: 0.25rem;
}

.c-card__img {
	overflow: clip;
	border-radius: 0.25rem 0.25rem 0 0;
}

.c-card__img img {
	aspect-ratio: 355/176;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.c-card__body {
	padding: 1.25rem 1.25rem 3.5625rem;
}

.c-card__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.c-card__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4375rem;
	margin-top: 0.9375rem;
}

.c-card__tag {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
	color: #f39939;
	border: 1px solid #f39939;
	border-radius: 1.25rem;
	padding: 0.25rem 0.625rem;
}

.c-card__text {
	display: -webkit-box;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	color: #424242;
	letter-spacing: 0.05em;
	margin-top: 0.875rem;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-clamp: 3;
}

.c-card__more {
	position: absolute;
	left: 50%;
	translate: -50% 0;
	bottom: -2.5rem;
	width: 5rem;
	aspect-ratio: 1;
	background-color: #0e62aa;
	border-radius: 50%;
	border: 1px solid transparent;
	padding-top: 1.25rem;
	transition: background-color 0.3s, border-color 0.3s;
}

.c-card__more::before {
	content: "→";
	position: absolute;
	left: 50%;
	translate: -50% 0;
	bottom: 1rem;
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.06em;
	text-align: center;
	color: #fff;
	transition: color 0.3s;
}

.c-card__more-text {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.06em;
	color: #fff;
	text-align: center;
	transition: color 0.3s;
}

.c-catch {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 2.75rem;
	max-width: 43.8125rem;
	margin-inline: auto;
}

.c-catch__bubble {
	position: relative;
	flex: 1;
	padding: 1.6875rem 2.5rem;
	background-color: #f4faff;
	border-radius: 6.25rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #0e62aa;
}

.c-catch__bubble::after {
	content: "";
	position: absolute;
	right: -2.1875rem;
	bottom: 1rem;
	width: 4.375rem;
	height: 2.125rem;
	background: url("../images/bubble-shape.png") no-repeat center/contain;
}

.c-catch__line {
	display: flex;
	align-items: center;
	white-space: nowrap;
	line-height: 1.25;
}

.c-catch__line + .c-catch__line {
	margin-top: 0.625rem;
}

.c-catch__line--indent {
	padding-left: 1.875rem;
}

.c-catch__logo {
	width: 9rem;
	height: auto;
	aspect-ratio: 144/27;
	object-fit: contain;
	flex-shrink: 0;
	margin-right: 0.75rem;
	margin-left: 0.3125rem;
}

.c-catch__mascot img {
	width: 8.125rem;
	height: auto;
	aspect-ratio: 130/162;
	object-fit: contain;
}

.c-more-btn {
	display: block;
	max-width: -moz-fit-content;
	max-width: fit-content;
}

.c-more-btn__link {
	display: inline-flex;
	align-items: center;
	gap: 1.25rem;
	padding: 1.0625rem 1.25rem 1.0625rem 1.875rem;
	background-color: #fff;
	border: 2px solid #0e62aa;
	border-radius: 9999px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #151515;
	transition: background-color 0.3s, color 0.3s;
}

.c-more-btn__arrow {
	position: relative;
	flex-shrink: 0;
	width: 2.375rem;
	aspect-ratio: 1;
	border-radius: 50%;
	overflow: clip;
	background-color: #0e62aa;
	transition: background-color 0.3s;
}

.c-more-btn__arrow::before,
.c-more-btn__arrow::after {
	content: "";
	position: absolute;
	inset: 0;
	-webkit-mask-image: url("../images/icon-arrow-more.svg");
	mask-image: url("../images/icon-arrow-more.svg");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
	-webkit-mask-size: contain;
	mask-size: contain;
	background-color: #fff;
	transition: background-color 0.3s;
}

.c-more-btn__arrow::after {
	transform: translateX(-100%);
}

.c-pager-list {
	display: flex;
	align-items: center;
	margin-top: 4.6875rem;
	padding-bottom: 4.6875rem;
}

.c-pager-list__col {
	flex: 1;
	display: flex;
}

.c-pager-list__col--prev {
	justify-content: flex-start;
}

.c-pager-list__col--center {
	justify-content: center;
}

.c-pager-list__col--next {
	justify-content: flex-end;
}

.c-pager-list__btn {
	display: inline-flex;
	align-items: center;
	gap: 1.5625rem;
	padding-inline: 1.25rem;
	height: 4.5rem;
	border: 2px solid #0e62aa;
	border-radius: 3.125rem;
	background-color: #fff;
	color: #151515;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	transition: background-color 0.3s, color 0.3s;
}

.c-pager-list__btn:hover {
	background-color: #0e62aa;
	color: #fff;
	opacity: 1;
}

.c-pager-list__btn--prev::before {
	content: "←";
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.375rem;
	height: 2.375rem;
	border-radius: 50%;
	background-color: #0e62aa;
	color: #fff;
	font-size: 1.125rem;
	letter-spacing: 0;
	transition: background-color 0.3s, color 0.3s;
}

.c-pager-list__btn--prev:hover::before {
	background-color: #fff;
	color: #0e62aa;
}

.c-pager-list__btn--next::after {
	content: "→";
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2.375rem;
	height: 2.375rem;
	border-radius: 50%;
	background-color: #0e62aa;
	color: #fff;
	font-size: 1.125rem;
	letter-spacing: 0;
	transition: background-color 0.3s, color 0.3s;
}

.c-pager-list__btn--next:hover::after {
	background-color: #fff;
	color: #0e62aa;
}

.c-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 6.75rem;
}

.c-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.4375rem;
	padding-inline: 1rem;
	border-radius: 0.1875rem;
	font-size: 1rem;
	font-weight: 500;
	border: 1px solid #9d9d9d;
	background-color: #fff;
	color: #151515;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.c-pagination .page-numbers:hover {
	background-color: #0e62aa;
	color: #fff;
	border-color: #0e62aa;
	opacity: 1;
}

.c-pagination .page-numbers + .page-numbers {
	margin-left: 1.125rem;
}

.c-pagination .current {
	background-color: #0e62aa;
	color: #fff;
	border-color: #0e62aa;
}

.c-pagination .current:hover {
	background-color: #0e62aa;
	color: #fff;
}

.c-pagination .dots {
	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	min-width: 1.125rem;
	height: 2.4375rem;
	border: none;
	background: transparent;
	padding: 0;
	font-size: 0rem;
	color: transparent;
	margin-left: 2.8125rem;
	pointer-events: none;
}

.c-pagination .dots::before {
	content: "";
	display: block;
	width: 0.25rem;
	height: 0.25rem;
	border-radius: 50%;
	background-color: #151515;
	flex-shrink: 0;
	box-shadow: 0.4375rem 0 0 #151515, 0.875rem 0 0 #151515;
}

.c-pagination .prev,
.c-pagination .next {
	background-color: #0e62aa;
	border-color: #0e62aa;
	font-size: 0;
	position: relative;
}

.c-pagination .prev:hover,
.c-pagination .next:hover {
	background-color: #0e62aa;
	border-color: #0e62aa;
	opacity: 0.75;
}

.c-pagination .prev::before {
	content: "";
	display: block;
	width: 0.375rem;
	height: 0.375rem;
	border-top: 1.5px solid #fff;
	border-left: 1.5px solid #fff;
	transform: rotate(-45deg) translate(0.09375rem, 0);
}

.c-pagination .next::after {
	content: "";
	display: block;
	width: 0.375rem;
	height: 0.375rem;
	border-top: 1.5px solid #fff;
	border-right: 1.5px solid #fff;
	transform: rotate(45deg) translate(-0.09375rem, 0);
}

.c-section-title {
	display: grid;
	gap: 0.5rem;
}

.c-section-title.c-section-title--center {
	text-align: center;
}

.c-section-title__en {
	font-family: "Afacad Flux", sans-serif;
	font-size: 5.5rem;
	font-weight: 700;
	color: #0e62aa;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.c-section-title__ja {
	display: flex;
	align-items: center;
	gap: 0.4375rem;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	font-weight: medium;
	color: #151515;
	line-height: 1;
}

.c-section-title.c-section-title--center .c-section-title__ja {
	justify-content: center;
}

.c-section-title__ja::before {
	content: "";
	display: block;
	width: 1.375rem;
	aspect-ratio: 22/19;
	background-image: url("../images/logo_section-title.svg");
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.p-404 {
	padding-block: 6.25rem 7.5rem;
}

.p-404__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.p-404__text {
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.75;
	color: #151515;
}

.p-404__btn {
	margin-top: 3rem;
}

.p-about {
	padding-block: 6.5625rem 7.8125rem;
	background-color: #f7f7f7;
	background-image: url("../images/about-bg.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.p-about__inner {
	display: flex;
	flex-direction: column;
	gap: 3.25rem;
}

.p-about__main {
	container-type: inline-size;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 7.0625rem;
}

.p-about__header {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.25rem;
	max-width: 43.25rem;
	width: 100%;
}

.p-about__logo {
	display: block;
}

.p-about__logo img {
	width: 9.375rem;
	height: auto;
}

.p-about__title {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
}

.p-about__title-en {
	font-family: "Afacad Flux", sans-serif;
	font-size: 5.625rem;
	font-weight: 700;
	color: #0e62aa;
	line-height: 1.6;
	letter-spacing: 0.03em;
	white-space: nowrap;
	width: 100%;
}

.p-about__title-ja {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.5833333333;
	letter-spacing: 0.03em;
	text-align: center;
}

.p-about__body {
	display: flex;
	gap: 7.625rem;
	align-items: flex-start;
	width: 100%;
}

.p-about__logos {
	display: grid;
	grid-template-columns: repeat(2, 12.0625rem);
	row-gap: 0.9375rem;
	-moz-column-gap: 2.25rem;
	column-gap: 2.25rem;
	flex-shrink: 0;
}

.p-about__logos-item {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 12.0625rem;
	height: 12.0625rem;
	border-radius: 50%;
	background-color: #fff;
	overflow: hidden;
}

.p-about__logos-item picture {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.p-about__logos-item img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.p-about__content {
	display: flex;
	flex-direction: column;
	gap: 4.125rem;
}

.p-about__lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.6666666667;
	letter-spacing: 0.05em;
}

.p-about__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5cqi;
	font-weight: 500;
	color: #151515;
	line-height: 2.2222222222;
	letter-spacing: 0.05em;
}

.p-about__btn {
	text-align: right;
}

.p-anchor-nav {
	padding-block: 7.5rem 3.75rem;
}

.p-anchor-nav__list {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
}

.p-anchor-nav__link {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.8125rem;
	padding: 0.625rem 1.875rem 0.625rem 3.125rem;
	background-color: #f7f7f7;
	border-radius: 0.25rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #151515;
	letter-spacing: 0.05em;
	white-space: nowrap;
	transition: background-color 0.2s ease, color 0.2s ease;
}

.p-anchor-nav__link::after {
	content: "↓";
	flex-shrink: 0;
	font-size: 1.5rem;
	color: #0e62aa;
	transition: color 0.2s ease;
}

.p-anchor-nav__link:hover {
	background-color: #0e62aa;
	color: #fff;
	opacity: 1;
}

.p-anchor-nav__link:hover::after {
	color: #fff;
}

.p-between {
	position: relative;
	overflow-x: clip;
}

.p-between__img img {
	display: block;
	aspect-ratio: 1440/394;
	object-fit: cover;
	width: 100%;
	height: auto;
	max-height: 24.625rem;
}

.p-between__deco {
	position: absolute;
	left: 0;
	right: 0;
	bottom: -4.0625rem;
	overflow: hidden;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.p-between__deco-track {
	display: flex;
	flex-wrap: nowrap;
	width: -moz-max-content;
	width: max-content;
	will-change: transform;
	animation: p-between-marquee var(--p-between-deco-duration, 20s) linear infinite;
	animation-play-state: paused;
}

.p-between__deco-track.is-marquee-ready {
	animation-play-state: running;
}

.p-between__deco-text {
	flex-shrink: 0;
	white-space: nowrap;
	font-family: "Albert Sans", sans-serif;
	font-size: 8.125rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.15em;
	color: rgba(231, 231, 231, 0.8);
	text-transform: uppercase;
	padding-right: 5rem;
}

.p-biz-overview {
	position: relative;
	padding-top: 8rem;
	padding-bottom: 10.875rem;
	margin-bottom: 3.75rem;
	overflow-x: clip;
}

.p-biz-overview__inner.l-inner {
	position: relative;
	z-index: 1;
}

.p-biz-overview__content {
	max-width: 40rem;
	margin-top: 3.9375rem;
}

.p-biz-overview__lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.3333333333;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.p-biz-overview__lead-theme {
	display: block;
	color: #014896;
}

.p-biz-overview__lead-accent {
	display: block;
	color: #f39939;
}

.p-biz-overview__heading {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: clamp(2rem, 1.063rem + 1.25vw, 2.188rem);
	font-weight: 700;
	color: #151515;
	line-height: 1.3333333333;
	letter-spacing: 0.05em;
	white-space: nowrap;
	margin-top: 3rem;
}

.p-biz-overview__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.6111111111;
	letter-spacing: 0.05em;
	margin-top: 2.6875rem;
}

.p-biz-overview__img {
	position: absolute;
	top: 11rem;
	right: 0;
	bottom: 0;
	width: 41.25%;
	min-height: 53.8125rem;
	overflow: clip;
}

.p-biz-overview__img picture {
	display: block;
	height: 100%;
}

.p-biz-overview__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: left center;
	clip-path: polygon(23% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.p-biz-overview__img::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 12.5rem;
	background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.7) 50%, #fff 75%);
	pointer-events: none;
}

.p-brands {
	padding-block: 6.875rem 0;
}

.p-brands__container {
	background-color: #f4faff;
	padding-block: 3.75rem;
	padding-inline: 3.3125rem;
	margin-top: 4.375rem;
}

.p-brands__accordion-list {
	display: flex;
	flex-direction: column;
	gap: 2.625rem;
}

.p-brands__accordion-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-block: 0.8125rem;
	padding-inline: 1.875rem;
	background-color: #0e62aa;
	border: 0;
	cursor: pointer;
	transition: opacity 0.2s;
}

.p-brands__accordion-kana {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.p-brands__accordion-icon {
	position: relative;
	display: inline-block;
	width: 1.375rem;
	height: 1.375rem;
	flex-shrink: 0;
}

.p-brands__accordion-icon::before,
.p-brands__accordion-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #fff;
}

.p-brands__accordion-icon::before {
	width: 1.375rem;
	height: 0.125rem;
	transform: translate(-50%, -50%);
}

.p-brands__accordion-icon::after {
	width: 0.125rem;
	height: 1.375rem;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
}

.p-brands__accordion-btn[aria-expanded=true] .p-brands__accordion-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.p-brands__accordion-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
}

.p-brands__accordion-panel.is-open {
	grid-template-rows: 1fr;
}

.p-brands__accordion-panel-inner {
	overflow: hidden;
	background-color: #fff;
}

.p-brands__brand-list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 1.125rem;
	padding-block: 1.25rem;
	padding-inline: 3.125rem;
}

.p-brands__brand-item {
	width: 33.3333333333%;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.8;
}

.p-brands__brand-item::before {
	content: "・";
}

.p-brands__brand-link {
	color: inherit;
	text-decoration: none;
	transition: opacity 0.2s;
}

.p-brands__brand-link:hover {
	opacity: 0.7;
}

.p-business-lead {
	padding-block: 13.125rem;
	background-color: #f4faff;
}

.p-business-lead__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.74;
	letter-spacing: 0.05em;
	text-align: center;
}

.p-business-lead__text-accent {
	color: #f39939;
}

.p-cases {
	padding-top: 7.5rem;
}

.p-cases__container {
	background-color: #f4faff;
	background-image: url(../images/cases-bg.jpg);
	background-repeat: repeat-y;
	background-position: center top;
	background-size: 100% auto;
	padding-top: 4.5625rem;
	padding-bottom: 7.5rem;
}

.p-cases__filter {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.6875rem 1.125rem;
	max-width: 56.25rem;
	margin-inline: auto;
}

.p-cases__filter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.25rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #151515;
	background-color: #fff;
	padding: 0.625rem 1.875rem;
	border-radius: 0.25rem;
	transition: background-color 0.3s, color 0.3s;
}

.p-cases__filter-btn.is-active {
	color: #fff;
	background-color: #0e62aa;
}

.p-cases__list {
	display: grid;
	grid-template-columns: repeat(3, 22.1875rem);
	gap: 5.3125rem 1.25rem;
	justify-content: center;
	margin-top: 5.75rem;
	padding-inline: 2.8125rem;
	padding-bottom: 3.125rem;
}

.p-client {
	background-color: #f4faff;
	padding-block: 2.5rem 5.625rem;
	overflow-x: clip;
}

.p-client__head {
	overflow: visible;
}

.p-client__head-inner {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 1.875rem;
}

.p-client__mascot {
	flex-shrink: 0;
}

.p-client__mascot--left img {
	display: block;
	width: 8.3125rem;
	height: auto;
}

.p-client__mascot--right img {
	display: block;
	width: 7.125rem;
	height: auto;
}

.p-client__heading {
	text-align: center;
}

.p-client__tagline {
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.125rem;
	color: #f39939;
	line-height: 1;
	letter-spacing: 0.05em;
}

.p-client__title {
	display: flex;
	align-items: baseline;
	justify-content: center;
	line-height: 1;
	margin-top: 0.5rem;
}

.p-client__title-text {
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 3.125rem;
	color: #151515;
	letter-spacing: 0.05em;
}

.p-client__title-num {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 900;
	font-size: 6.25rem;
	color: #fff;
	line-height: 1;
	letter-spacing: 0.05em;
	-webkit-text-stroke: 0.125rem #0e62aa;
}

.p-client__rows {
	margin-top: 3.75rem;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.p-client__row {
	width: 100%;
	overflow: hidden;
}

.p-client__row-track {
	display: flex;
	align-items: center;
	gap: 1.875rem;
	width: -moz-max-content;
	width: max-content;
	animation-duration: 60s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.p-client__row--left .p-client__row-track {
	animation-name: p-client-marquee-left;
}

.p-client__row--right .p-client__row-track {
	animation-name: p-client-marquee-right;
}

.p-client__logo {
	display: inline-flex;
	flex-shrink: 0;
}

.p-client__logo img {
	display: block;
	height: 4.375rem;
	width: auto;
}

.p-company-between {
	overflow-x: clip;
}

.p-company-between__slider {
	overflow: hidden;
}

.p-company-between__track {
	display: flex;
	align-items: center;
	width: -moz-max-content;
	width: max-content;
	animation: p-company-between-slide 50s linear infinite;
}

.p-company-between__item {
	flex-shrink: 0;
	padding-right: 2.0625rem;
}

.p-company-between__item img {
	display: block;
	width: 25.625rem;
	height: 17.8125rem;
	aspect-ratio: 410/285;
	object-fit: cover;
	border-radius: 0.4375rem;
}

.p-company-between__text-row {
	overflow: hidden;
	margin-top: -4.0625rem;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
}

.p-company-between__text-track {
	display: flex;
	width: -moz-max-content;
	width: max-content;
	animation: p-company-between-slide 30s linear infinite;
}

.p-company-between__text {
	flex-shrink: 0;
	white-space: nowrap;
	font-family: "Albert Sans", sans-serif;
	font-size: 8.125rem;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.15em;
	color: rgba(231, 231, 231, 0.8);
	padding-right: 5rem;
}

.p-contact-page {
	padding-block: 7.5rem;
}

.p-contact-page__inner {
	max-width: 80.9375rem;
	background-color: #f7f7f7;
	border-radius: 3.5625rem;
}

.p-contact-page__container {
	background: url(../images/contact-page_bg.jpg) no-repeat center center/cover;
	padding: 3.125rem 3.875rem 6.6875rem;
}

.p-contact-page__tel {
	background-color: #fff;
	border-radius: 3.125rem;
	padding: 2rem 5rem 1.25rem;
}

.p-contact-page__tel-heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1.25rem;
}

.p-contact-page__tel-heading img {
	width: 3.75rem;
	aspect-ratio: 1;
	object-fit: contain;
}

.p-contact-page__tel-heading-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	color: #014896;
	line-height: 3rem;
	letter-spacing: 0.05em;
}

.p-contact-page__tel-info {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-top: 0.625rem;
	max-width: 50rem;
	margin-inline: auto;
}

.p-contact-page__tel-number {
	display: flex;
	align-items: baseline;
}

.p-contact-page__tel-num {
	font-family: "Alata", sans-serif;
	font-size: 3.75rem;
	font-weight: 400;
	color: #0e62aa;
}

.p-contact-page__tel-daihyo {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	color: #014896;
	line-height: 3rem;
	letter-spacing: 0.05em;
}

.p-contact-page__tel-hours {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #f39939;
}

.p-contact-section__catch {
	margin-top: 5.9375rem;
}

.p-contact-section__body {
	display: flex;
	gap: 2.125rem;
	margin-top: 3.125rem;
}

.p-contact-section__item {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	padding-block: 3.5rem 2rem;
	background: #f7f7f7;
}

.p-contact-section__item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	color: #151515;
	text-align: center;
}

.p-contact-section__item-cta {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 1.375rem;
}

.p-contact-section__item-icon img {
	width: 7.4375rem;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
}

.p-contact-section__item-link {
	margin-top: 1.3125rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #0e62aa;
}

.p-contact-section__item-tel {
	font-family: "Alata", sans-serif;
	font-size: 3.75rem;
	font-weight: 400;
	color: #0e62aa;
	text-align: center;
}

.p-contact-section__item-sub {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #f39939;
	text-align: center;
}

.p-contact-section__item--web .p-contact-section__item-sub {
	margin-top: 1.0625rem;
}

.p-contact-section__item--tel .p-contact-section__item-sub {
	margin-top: 0;
}

.p-contact-section__item-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	text-align: center;
}

.p-contact-section__item--web .p-contact-section__item-text {
	margin-top: 1.1875rem;
}

.p-contact-section__item--tel .p-contact-section__item-text {
	margin-top: 0.625rem;
}

.p-contact__inner {
	margin-right: auto;
	margin-left: auto;
	padding: 0 1.5625rem 6.25rem;
	width: 100%;
	max-width: 62.5rem;
}

.p-form {
	position: relative;
	margin-top: 2.6875rem;
	padding: 5.4375rem 5.875rem;
	border-radius: 3.5625rem;
	background-color: #fff;
}

.p-form__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6875rem;
}

.p-form__heading img {
	width: 3.75rem;
	aspect-ratio: 1;
	object-fit: contain;
}

.p-form__heading-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.25rem;
	font-weight: 700;
	color: #014896;
	line-height: 3rem;
	letter-spacing: 0.05em;
}

.p-form__lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #000;
	line-height: 1.45;
	letter-spacing: 0.05em;
	margin-top: 4.75rem;
	text-align: center;
}

.p-form__lead p + p {
	margin-top: 1.0625rem;
}

.p-form__content {
	margin-top: 4.75rem;
}

.p-form__item {
	display: grid;
	grid-template-columns: 12.9375rem 3.375rem minmax(0, 1fr);
	align-items: center;
	-moz-column-gap: 0.6875rem;
	column-gap: 0.6875rem;
}

.p-form__item + .p-form__item {
	margin-top: 1.875rem;
}

.p-form__item--checkboxes + .p-form__item {
	margin-top: 1.25rem;
}

.p-form__item--alignStart {
	align-items: start;
}

.p-form__item--alignStart .p-form__title span {
	margin-top: 0.3125rem;
}

.p-form__title {
	display: contents;
}

.p-form__title label {
	grid-column: 1/2;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	line-height: 1.6;
}

.p-form__title label .p-form__title-confirm {
	font-size: 1rem;
}

.p-form__title span:not(.p-form__title-confirm) {
	display: inline-flex;
	grid-column: 2/3;
	align-items: center;
	justify-content: center;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.6;
	width: 3.375rem;
	min-height: 1.375rem;
	border-radius: 1rem;
	background-color: #f39939;
}

.p-form__input {
	grid-column: 3/4;
}

.p-formInput input,
.p-formTextarea textarea {
	padding: 0.8125rem 1.5rem;
	width: 100%;
	border: 0;
	border-radius: 0.3125rem;
	background-color: #f7f7f7;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: #000;
	line-height: 1.8125rem;
	letter-spacing: 0.05em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.p-formInput input {
	min-height: 3.4375rem;
}

.p-formTextarea textarea {
	display: block;
	min-height: 12.5rem;
	resize: vertical;
}

.p-formInput input::-moz-placeholder,
.p-formTextarea textarea::-moz-placeholder {
	color: #b1b1b1;
	opacity: 1;
}

.p-formInput input::placeholder,
.p-formTextarea textarea::placeholder {
	color: #b1b1b1;
	opacity: 1;
}

.p-formInput input:focus,
.p-formTextarea textarea:focus,
.p-formSelect select:focus,
.p-formCalendar input:focus {
	outline: 0.125rem solid rgba(14, 98, 170, 0.35);
}

.p-formInput--sm input {
	width: 21.875rem;
	max-width: 100%;
}

.p-formInput__post {
	display: flex;
	align-items: center;
	gap: 0.6875rem;
}

.p-formInput__post-mark {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #000;
	line-height: 1.35;
}

.p-formInput__post input {
	width: 14rem;
}

.p-formInput__address {
	margin-top: 0.625rem;
}

.p-formInput__address input {
	width: 70%;
}

.p-formInput--tel {
	display: flex;
	align-items: center;
	gap: 0.3125rem;
}

.p-formInput--tel > * {
	min-width: 0;
}

.p-formInput--tel input {
	width: 9.375rem;
	max-width: 100%;
}

.p-formSelect select {
	padding-left: 1.25rem;
	width: 15.625rem;
	max-width: 100%;
	min-height: 3.75rem;
	border: 0.0625rem solid #b5b5b5;
	border-radius: 0;
	background: url(../images/common/pulldown.svg) right 0.625rem center/0.625rem no-repeat;
	font-size: 1rem;
	color: lightgray;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.p-formSelect--selected select {
	color: #333;
}

.p-formDate__flex {
	display: flex;
	align-items: center;
	gap: 2.1875rem;
}

.p-formDate__flex + .p-formDate__flex {
	margin-top: 1.25rem;
}

.p-formDate__label,
.p-form__dataBlockLabel,
.p-formNumber__txt,
.p-formNumber__blockLabel01,
.p-formNumber__blockLabel02 {
	font-size: 1rem;
}

.p-form__dataBlockFlex {
	display: flex;
	align-items: center;
}

.p-form__dataBlockFlex + .p-form__dataBlockFlex {
	margin-top: 1.25rem;
}

.p-form__dataBlockLabel {
	width: 5rem;
}

.p-formCalendar {
	position: relative;
}

.p-formCalendar input {
	position: relative;
	padding-right: 0.3125rem;
	padding-left: 1.25rem;
	width: 15.625rem;
	min-height: 3.75rem;
	border: 0.0625rem solid #b5b5b5;
	border-radius: 0;
	background: url(../images/common/calendar.svg) right 0.5rem center/0.9375rem no-repeat;
	background-color: #fff;
	font-size: 1rem;
	color: lightgray;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.p-formCalendar input::-webkit-calendar-picker-indicator {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	color: transparent;
	background: transparent;
}

.p-formCalendar input::-webkit-date-and-time-value {
	text-align: left;
}

.p-form__dataBlockDate input:not(.p-formDate__default) {
	color: #333;
}

.p-formNumber__flex {
	display: flex;
	align-items: center;
	gap: 1.875rem;
	margin-top: 1.25rem;
}

.p-formNumber__block {
	display: flex;
	align-items: center;
}

.p-formNumber__blockLabel01 {
	margin-right: 1.875rem;
}

.p-formNumber__blockInput {
	margin-right: 0.625rem;
	width: 9.375rem;
}

.p-formCheckbox label,
.p-formRadio label {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.p-formCheckbox input,
.p-formRadio input[type=radio] {
	position: absolute;
	width: auto;
	opacity: 0;
	pointer-events: none;
}

.p-formCheckbox .wpcf7-checkbox,
.p-formRadio .wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 1.25rem;
}

.p-formCheckbox .wpcf7-list-item,
.p-formRadio .wpcf7-list-item {
	display: block;
	margin-left: 0;
}

.p-formCheckbox--vertical,
.p-formRadio--vertical {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.p-formCheckbox--vertical .wpcf7-checkbox,
.p-formRadio--vertical .wpcf7-radio {
	display: block;
}

.p-formCheckbox--vertical label + label,
.p-formRadio--vertical label + label,
.p-formCheckbox--vertical .wpcf7-list-item + .wpcf7-list-item,
.p-formRadio--vertical .wpcf7-list-item + .wpcf7-list-item {
	margin-top: 0;
}

.p-formCheckbox input + span,
.p-formRadio input + span {
	position: relative;
	display: inline-block;
	padding-left: 1.6875rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: #000;
	line-height: 1.8125rem;
	letter-spacing: 0.05em;
	cursor: pointer;
}

.p-formCheckbox input + span::before,
.p-formRadio input + span::before {
	position: absolute;
	top: 50%;
	left: 0;
	display: block;
	content: "";
	width: 1rem;
	aspect-ratio: 1;
	border-radius: 0.1875rem;
	background-color: #f7f7f7;
	transform: translateY(-50%);
}

.p-formCheckbox input + span::after {
	position: absolute;
	top: 50%;
	left: 0.3125rem;
	display: block;
	content: "";
	width: 0.375rem;
	aspect-ratio: 6/10;
	border-right: 0.125rem solid #f39939;
	border-bottom: 0.125rem solid #f39939;
	opacity: 0;
	transform: translateY(-60%) rotate(45deg);
}

.p-formCheckbox input:checked + span::after {
	opacity: 1;
}

.p-formRadio input + span::before {
	border-radius: 50%;
}

.p-formRadio input:checked + span::before {
	background-color: #f39939;
	box-shadow: inset 0 0 0 0.1875rem #fff;
}

.p-formFile .wpcf7-form-control-wrap {
	display: block;
}

.p-formFile .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: 1.25rem;
}

.p-formFile input {
	max-width: 100%;
	font-size: 1rem;
	line-height: 1;
}

.p-form__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 4.75rem;
}

.p-form__privacy {
	margin-top: 1.875rem;
	text-align: center;
	font-size: 1rem;
}

.p-form__privacy a {
	line-height: 1;
	text-decoration: underline;
}

.p-form__acceptance {
	text-align: center;
}

.p-form__submit {
	margin-top: 1.25rem;
	text-align: center;
}

.p-formBtn input,
.p-formBtn button {
	padding: 0.875rem 2.5rem;
	width: 18.625rem;
	border: 0;
	border-radius: 0.3125rem;
	background-color: #f39939;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	line-height: 2rem;
	letter-spacing: 0.03em;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.3s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.p-formBtn input:disabled,
.p-formBtn button:disabled {
	background-color: #eee;
	color: #fff;
	cursor: not-allowed;
	opacity: 1;
}

.p-form__mascot {
	position: absolute;
	bottom: -2.6875rem;
	left: -0.625rem;
	width: 12.6875rem;
}

.p-form__mascot img {
	width: 100%;
	aspect-ratio: 203/253;
	object-fit: contain;
}

.p-form__field .wpcf7-form-control-wrap,
.p-form__input .wpcf7-form-control-wrap {
	display: block;
}

.p-form__field .wpcf7-form-control-wrap + .wpcf7-form-control-wrap,
.p-form__input .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
	margin-top: 0.5rem;
}

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

.wpcf7-spinner {
	display: none;
}

.wpcf7-not-valid-tip {
	display: block;
	margin-top: 0.375rem;
	color: red;
	font-size: 0.875rem;
	font-weight: normal;
}

.wpcf7-form.hide_error_message .wpcf7-not-valid-tip {
	display: none;
}

.p-formValidation .wpcf7-not-valid-tip {
	display: none;
}

.p-formValidation__error {
	display: none;
	margin-top: 0.625rem;
	color: red;
	font-size: 1rem;
	font-weight: normal;
}

.wpcf7-form:not(.hide_error_message) .p-formValidation:has(.wpcf7-not-valid-tip) .p-formValidation__error {
	display: block;
}

.wpcf7 form.sent .wpcf7-response-output {
	padding: 0.9375rem 0.625rem;
	border-color: #2c94de;
	font-size: 1.125rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	padding: 0.9375rem 0.625rem;
	border-color: red;
	font-size: 1.125rem;
}

.p-footer {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 48.875rem;
	background: url("../images/footer_bg.jpg") no-repeat center/cover;
}

.p-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(255, 255, 255, 0.2);
	z-index: 0;
}

.p-footer__inner.l-inner {
	position: relative;
	z-index: 1;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 4.5625rem;
	padding-top: 4.875rem;
	max-width: 85.9375rem;
}

.p-footer__left {
	flex-shrink: 0;
	width: 25rem;
}

.p-footer__copy img {
	width: 19.6875rem;
	height: auto;
	aspect-ratio: 315/243;
	object-fit: contain;
}

.p-footer__info {
	margin-top: 2.1875rem;
}

.p-footer__logo img {
	width: 15.9375rem;
	height: auto;
	aspect-ratio: 255/43;
	object-fit: contain;
}

.p-footer__address {
	font-style: normal;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.5;
	letter-spacing: 0.05em;
	margin-top: 1rem;
}

.p-footer__address-label {
	color: #0e62aa;
}

.p-footer__nav {
	display: flex;
	gap: 4.5625rem;
	flex: 1;
	max-width: 47.8125rem;
}

.p-footer__nav-col {
	flex: 1;
}

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

.p-footer__nav-item {
	padding-bottom: 0.5625rem;
	border-bottom: 1px solid rgba(21, 21, 21, 0.15);
}

.p-footer__nav-item + .p-footer__nav-item {
	margin-top: 1.125rem;
}

.p-footer__nav-item--privacy {
	border-bottom: none;
	padding-bottom: 0;
}

.p-footer__nav-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.4444444444;
	letter-spacing: 0;
}

.p-footer__nav-link::after {
	content: "→";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.4375rem;
	height: 1.4375rem;
	border-radius: 50%;
	background-color: #0e62aa;
	color: #fff;
	font-size: 0.625rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1;
}

.p-footer__nav-link--recruit::after {
	content: "";
	width: 1.0625rem;
	height: 1.0625rem;
	border-radius: 0;
	background-color: #151515;
	color: transparent;
	font-size: 0;
	-webkit-mask-image: url("../images/icon_link.svg");
	mask-image: url("../images/icon_link.svg");
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-position: center;
	mask-position: center;
}

.p-footer__nav-link--privacy {
	font-size: 0.875rem;
	font-weight: 500;
	color: #151515;
}

.p-footer__nav-link--privacy::after {
	display: none;
}

.p-footer__nav-sub {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	margin-top: 1.3125rem;
}

.p-footer__nav-sub-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #4d4d4d;
	line-height: 1;
	letter-spacing: 0;
}

.p-footer__nav-sub-link::before {
	content: "";
	display: block;
	flex-shrink: 0;
	width: 0.6875rem;
	height: 1px;
	background-color: currentColor;
}

.p-footer__bottom {
	position: relative;
	z-index: 1;
	margin-top: auto;
	padding-top: 1.875rem;
	padding-bottom: 2.5rem;
}

.p-footer__bottom-inner {
	container-type: inline-size;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	max-width: 88.75rem;
	margin-inline: auto;
}

.p-footer__bottom-left {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.p-footer__shinseikatsukan-link {
	display: inline-flex;
	background-color: #fff;
	padding: 0.4375rem 0.8125rem;
}

.p-footer__shinseikatsukan img {
	width: 9.6875rem;
	height: auto;
	aspect-ratio: 155/19;
	object-fit: contain;
}

.p-footer__sns {
	display: flex;
	gap: 0.375rem;
}

.p-footer__sns-link {
	display: flex;
	align-items: center;
	gap: 0.6944444444cqi;
	padding: 0.4375rem 0.6944444444cqi;
	background-color: #fff;
}

.p-footer__sns-link img {
	width: 1.9444444444cqi;
	height: auto;
	aspect-ratio: 1;
	object-fit: contain;
	flex-shrink: 0;
}

.p-footer__sns-link span {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.9722222222cqi;
	font-weight: 700;
	color: #151515;
	line-height: 1.43;
}

.p-footer__bottom-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 0.3472222222cqi;
}

.p-footer__group {
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.8);
	padding: 2rem 1.6666666667cqi;
}

.p-footer__group-main {
	padding-right: 1.25cqi;
}

.p-footer__group-main img {
	width: 7.3611111111cqi;
	height: auto;
	aspect-ratio: 106/24;
	object-fit: contain;
}

.p-footer__group-list {
	display: flex;
	align-items: center;
	gap: 1.25cqi;
	padding-left: 1.25cqi;
	border-left: 1px solid rgba(21, 21, 21, 0.3);
}

.p-footer__group-list img {
	height: 1.5rem;
	width: auto;
	object-fit: contain;
}

.p-footer__copyright {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.625rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.97);
	letter-spacing: 0.1em;
	line-height: 1;
}

.p-fv {
	background: url(../images/fv_bg.png) no-repeat center/cover;
	overflow: clip;
}

.p-fv__inner {
	container-type: inline-size;
	display: flex;
}

.p-fv__container {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	width: 35.625cqi;
	padding-left: 3.5416666667cqi;
	gap: 2.1527777778cqi;
	z-index: 10;
}

.p-fv__side {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex-shrink: 0;
	width: 1.4375rem;
	padding-top: 15.2777777778cqi;
	gap: 0.5625rem;
}

.p-fv__side::after {
	content: "";
	display: block;
	width: 0.0625rem;
	height: 4.5833333333cqi;
	background-color: #f39939;
}

.p-fv__side-text {
	font-family: "Afacad Flux", sans-serif;
	font-size: 1.25cqi;
	font-weight: 700;
	color: #f39939;
	letter-spacing: 0.08em;
	white-space: nowrap;
	writing-mode: vertical-rl;
}

.p-fv__content {
	align-self: center;
}

.p-fv__heading {
	font-family: "mfw-pa1gothicstdn-regular", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 5.6944444444cqi;
	font-weight: 400;
	font-style: italic;
	color: #151515;
	line-height: 1.1;
	letter-spacing: 0.1em;
	white-space: nowrap;
}

.p-fv__heading-accent {
	color: #0e62aa;
}

.p-fv__heading-max {
	font-size: 8.3333333333cqi;
	line-height: 1;
}

.p-fv__heading-large {
	font-size: 6.9444444444cqi;
	line-height: 1;
}

.p-fv__char {
	display: inline-block;
	overflow: clip;
	overflow-clip-margin: 0.15em;
	vertical-align: top;
}

.p-fv__char-text {
	display: inline-block;
	transform: translateX(-130%);
	opacity: 0;
	transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0s;
	transition-delay: calc(0.05s * var(--char-index));
}

.p-fv__heading.is-active .p-fv__char-text {
	transform: translateX(0);
	opacity: 1;
}

.p-fv__lead-wrap {
	overflow: hidden;
	margin-top: 1.375rem;
}

.p-fv__lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.1805555556cqi;
	font-weight: 500;
	color: #151515;
	line-height: 2;
	letter-spacing: 0.05em;
	transform: translateY(100%);
	animation: fv-lead-slide-up 0.5s 1s forwards ease-in-out;
}

.p-fv__slider-wrap {
	flex-shrink: 0;
	height: 100%;
	width: 75.3472222222cqi;
}

.p-fv__swiper,
.p-fv__slide {
	height: 100%;
}

.p-fv__img-wrap {
	overflow: clip;
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 1085/848;
}

.p-fv__img-wrap::before,
.p-fv__img-wrap::after {
	content: none;
}

.p-fv__img-wrap.is-animating::before,
.p-fv__img-wrap.is-animating::after {
	content: "";
	position: absolute;
	inset: 0;
	background: #fff;
	pointer-events: none;
	z-index: 1;
	animation-duration: 1000ms;
	animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	animation-fill-mode: forwards;
}

.p-fv__img-wrap.is-animating::before {
	clip-path: polygon(0 0, 55.5% 0, 45.5% 100%, 0 100%);
	animation-name: fv-curtain-left;
}

.p-fv__img-wrap.is-animating::after {
	clip-path: polygon(55.5% 0, 100% 0, 100% 100%, 45.5% 100%);
	animation-name: fv-curtain-right;
}

.p-fv__slide img {
	display: block;
	aspect-ratio: 1085/848;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.p-header__bar {
	position: relative;
	z-index: 60;
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.9);
	height: var(--header-height);
	width: calc(100% - 3.75rem);
	max-width: 85rem;
	margin-inline: auto;
}

.p-header__bar-inner.l-inner {
	display: flex;
	align-items: center;
	height: 100%;
	max-width: none;
}

.p-header__logo {
	flex-shrink: 0;
	line-height: 1;
}

.p-header__logo-link {
	display: block;
}

.p-header__logo-link picture {
	display: block;
}

.p-header__logo-link img {
	display: block;
	width: 15.75rem;
	height: auto;
	aspect-ratio: 252/43;
	object-fit: contain;
}

.p-header__nav {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: 100%;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.p-header__nav.is-hidden {
	opacity: 0;
	visibility: hidden;
}

.p-header__nav-list {
	display: flex;
	height: 100%;
}

.p-header__nav-item {
	height: 100%;
}

.p-header__nav-link {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	height: 100%;
	padding-inline: 1rem;
	transition: background-color 0.2s ease;
}

.p-header__nav-link::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background-color: #0e62aa;
	transform: scaleX(0);
	transition: transform 0.25s ease;
}

.p-header__nav-item:has([aria-expanded=true]) .p-header__nav-link {
	background-color: #f4faff;
}

.p-header__nav-item:has([aria-expanded=true]) .p-header__nav-link::after {
	transform: scaleX(1);
}

.p-header__nav-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
}

.p-header__nav-icon img {
	width: 1.75rem;
	height: 1.75rem;
	aspect-ratio: 1;
	object-fit: contain;
}

.p-header__nav-label {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #151515;
	line-height: 1;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.p-header__hamburger {
	display: none;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.25rem;
	width: 3rem;
	height: 3rem;
	margin-left: auto;
	background-color: #0e62aa;
	border-radius: 0.25rem;
	padding-top: 0.25rem;
}

.p-header__hamburger-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 0.3125rem;
	width: 1.375rem;
	height: 0.875rem;
}

.p-header__hamburger-line {
	display: block;
	width: 1.375rem;
	height: 2px;
	background-color: #fff;
	border-radius: 1px;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.p-header__hamburger-text {
	font-family: "Afacad Flux", sans-serif;
	font-size: 0.5rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1;
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-child(1) {
	transform: translateY(0.3125rem) rotate(45deg);
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-child(2) {
	opacity: 0;
	transform: scaleX(0);
}

.p-header__hamburger.is-open .p-header__hamburger-line:nth-child(3) {
	transform: translateY(-0.4375rem) rotate(-45deg);
}

.p-mega-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: calc(100% - 3.75rem);
	max-width: 85rem;
	margin-inline: auto;
	background-color: #fff;
	box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
	border-top: 1px solid rgba(14, 98, 170, 0.15);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	padding-block: 2.5rem 3rem;
}

.p-mega-menu[data-active=true] {
	opacity: 1;
	visibility: visible;
}

.p-mega-menu__inner {
	display: flex;
	align-items: center;
	gap: 3rem;
}

.p-mega-menu__left {
	flex-shrink: 0;
	width: 15rem;
}

.p-mega-menu__en {
	font-family: "Afacad Flux", sans-serif;
	font-size: 3.5rem;
	font-weight: 700;
	color: #0e62aa;
	line-height: 1;
	letter-spacing: 0.05em;
}

.p-mega-menu__ja {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #151515;
	line-height: 1;
	letter-spacing: 0.08em;
}

.p-mega-menu__all-link {
	display: flex;
	flex-direction: column;
	gap: 0.375rem;
	transition: opacity 0.2s ease;
}

.p-mega-menu__all-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	margin-top: 1rem;
	background-color: #0e62aa;
	border-radius: 50%;
	color: #fff;
	font-family: "Afacad Flux", sans-serif;
	font-size: 1.125rem;
}

.p-mega-menu__grid {
	flex: 1;
	display: grid;
	gap: 1.0625rem 2.3125rem;
	border-left: 1px solid rgba(21, 21, 21, 0.15);
	padding-left: 3rem;
	margin-left: 2.5rem;
}

.p-mega-menu__grid--3col {
	grid-template-columns: repeat(3, 1fr);
}

.p-mega-menu__grid--2col {
	grid-template-columns: repeat(2, 1fr);
	max-width: 40rem;
}

.p-mega-menu__card {
	display: block;
	transition: opacity 0.2s ease;
}

.p-mega-menu__card-img {
	overflow: clip;
	border-radius: 0.25rem;
}

.p-mega-menu__card-img img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 87/40;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.p-mega-menu__card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.p-mega-menu__card-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.4;
	letter-spacing: 0.04em;
}

.p-mega-menu__card-arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	background-color: #0e62aa;
	border-radius: 50%;
	color: #fff;
	font-family: "Afacad Flux", sans-serif;
	font-size: 1.125rem;
}

.p-drawer {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	z-index: 50;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	overflow-y: auto;
}

.p-drawer.is-preopen {
	visibility: visible;
}

.p-drawer.is-open {
	opacity: 1;
}

.p-drawer__wrapper {
	padding-block: calc(var(--header-height) + 1.375rem) 2.5rem;
}

.p-drawer__nav {
	padding-inline: 1.25rem;
}

.p-drawer__nav-item {
	border-bottom: 1px solid #8d8d8d;
}

.p-drawer__nav-link {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	width: 100%;
	padding-block: 1.125rem 0.625rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
	text-align: left;
}

.p-drawer__nav-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
}

.p-drawer__nav-icon img {
	width: 2rem;
	height: 2rem;
	aspect-ratio: 1;
	object-fit: contain;
}

.p-drawer__nav-text {
	flex: 1;
}

.p-drawer__nav-arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.375rem;
	height: 1.375rem;
	border-radius: 50%;
	background-color: #0e62aa;
	color: #fff;
	font-size: 0.75rem;
	transition: transform 0.25s ease;
}

.p-drawer__nav-arrow::after {
	content: "→";
	font-family: "Afacad Flux", sans-serif;
	line-height: 1;
}

.js-accordion-title[aria-expanded=true] .p-drawer__nav-arrow {
	transform: rotate(90deg);
}

.p-drawer__sub {
	overflow: hidden;
	height: 0;
}

.p-drawer__sub-list {
	padding-block: 0.5rem 1rem;
	display: flex;
	flex-direction: column;
	gap: 0rem;
}

.p-drawer__sub-item {
	border-top: 1px solid rgba(21, 21, 21, 0.06);
}

.p-drawer__sub-item:first-child {
	border-top: none;
}

.p-drawer__sub-link {
	display: block;
	padding-block: 0.75rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	font-weight: 400;
	color: #151515;
	letter-spacing: 0.04em;
}

.p-drawer__buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.p-drawer__btn {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	width: 100%;
	padding: 1rem 1.25rem;
	border-radius: 0.375rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.9375rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}

.p-drawer__btn--recruit {
	background-color: #fff;
	color: #0e62aa;
	border: 1px solid #0e62aa;
}

.p-drawer__btn--recruit .p-drawer__btn-arrow {
	background-color: #0e62aa;
	color: #fff;
}

.p-drawer__btn--contact {
	background-color: #226db0;
	color: #fff;
}

.p-drawer__btn--contact .p-drawer__btn-arrow {
	background-color: #fff;
	color: #0e62aa;
}

.p-drawer__btn-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
}

.p-drawer__btn-icon img {
	width: 1.75rem;
	height: 1.75rem;
	aspect-ratio: 1;
	object-fit: contain;
}

.p-drawer__btn-text {
	flex: 1;
}

.p-drawer__btn-arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 1.75rem;
	height: 1.75rem;
	border-radius: 50%;
	font-size: 0.75rem;
}

.p-drawer__btn-arrow::after {
	content: "→";
	font-family: "Afacad Flux", sans-serif;
	line-height: 1;
}

.p-drawer__address {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.875rem;
	font-style: normal;
	color: #151515;
	line-height: 1.6;
	letter-spacing: 0em;
	margin-top: 1.375rem;
}

.p-instagram-wrapper {
	display: grid;
	gap: 7.5rem;
	margin-bottom: 7.5rem;
}

.p-instagram__container {
	position: relative;
	background-image: url("../images/instagram_bg.jpg");
	background-size: cover;
	background-position: center;
	padding-top: 3.4375rem;
	padding-inline: 3.125rem;
	padding-bottom: 3.4375rem;
}

.p-instagram__badge {
	position: absolute;
	top: -1.0625rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
	background-color: #f39939;
	border-radius: 0.1875rem;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.5rem;
	color: #f4faff;
	line-height: 1;
	padding: 0.625rem 1.5625rem;
	white-space: nowrap;
}

.p-instagram__badge::after {
	content: "";
	position: absolute;
	bottom: -1.0625rem;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 1.25rem 0.625rem 0 0.625rem;
	border-color: #f39939 transparent transparent transparent;
}

.p-instagram__head::after {
	content: "";
	display: block;
	height: 0.125rem;
	margin-top: 1.125rem;
	background-image: repeating-linear-gradient(90deg, #0e62aa 0, #0e62aa 12px, transparent 12px, transparent 18px);
}

.p-instagram__title {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.5rem;
	color: #0e62aa;
	letter-spacing: 0.05em;
	line-height: 1.2;
}

.p-instagram__text,
.p-instagram__text-line {
	display: contents;
}

.p-instagram__text-sub {
	display: inline-block;
	font-size: 1.875rem;
	color: #151515;
	margin-bottom: -0.3125rem;
}

.p-instagram__text-main {
	font-size: 2.5rem;
	color: #0e62aa;
}

.p-instagram__icon {
	display: block;
	margin-right: 1.4375rem;
	width: 3.875rem;
	height: auto;
	aspect-ratio: 1;
	flex-shrink: 0;
}

.p-instagram__content {
	margin-top: 2.75rem;
}

.p-locations {
	background-color: #f4faff;
	padding-top: 5rem;
	padding-bottom: 7.5rem;
}

.p-locations__map-area {
	position: relative;
	container-type: inline-size;
	width: 100%;
	aspect-ratio: 1200/884;
	margin-top: 2.5rem;
}

.p-locations__map {
	position: absolute;
	left: 21.5%;
	top: 1.7%;
	width: 58.42%;
	height: auto;
}

.p-locations__map img {
	width: 100%;
	height: auto;
	display: block;
}

.p-locations__mascot {
	position: absolute;
	left: 78%;
	top: 3.28%;
	width: 14.42%;
	height: auto;
}

.p-locations__mascot img {
	width: 100%;
	height: auto;
}

.p-locations__label-list {
	position: absolute;
	inset: 0;
}

.p-locations__label-item {
	position: absolute;
}

.p-locations__label {
	display: flex;
	align-items: center;
	width: 100%;
	height: 4cqw;
	padding-left: 2.5cqw;
	padding-right: 1.25cqw;
	background-color: #f39939;
	border: solid 0.1cqw #f39939;
	border-radius: 2.5cqw;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2cqw;
	font-weight: 700;
	color: #fff;
	white-space: nowrap;
	transition: background-color 0.2s, color 0.2s;
}

.p-locations__label::after {
	content: "↓";
	font-family: "Alatsi", sans-serif;
	font-size: 2cqw;
	font-weight: 400;
	color: #0e62aa;
	line-height: 1;
	margin-left: auto;
	padding-left: 1cqw;
	flex-shrink: 0;
	transition: color 0.2s;
}

.p-locations__label:hover {
	background-color: #fff;
	color: #f39939;
	opacity: 1;
}

.p-locations__label:hover::after {
	color: #f39939;
}

.p-locations__label-item--akita {
	left: 2%;
	top: 10.52%;
	width: 21.5%;
}

.p-locations__label-item--shonai {
	left: 0%;
	top: 33.6%;
	width: 21.5%;
}

.p-locations__label-item--shinseikatukan {
	left: 7.17%;
	top: 45.48%;
	width: 19.5%;
}

.p-locations__label-item--auto {
	left: 1.17%;
	top: 54.52%;
	width: 25.5%;
}

.p-locations__label-item--yonezawa {
	left: 4.33%;
	top: 73.19%;
	width: 21.5%;
}

.p-locations__label-item--honsha {
	left: 70.33%;
	top: 39.48%;
	width: 24.08%;
}

.p-locations__label-item--sendai {
	left: 70.5%;
	top: 54.07%;
	width: 21.5%;
}

.p-locations__label-item--fukushima {
	left: 70.67%;
	top: 68.33%;
	width: 21.5%;
}

.p-locations__label-item--iwaki {
	left: 71.33%;
	top: 84.5%;
	width: 23.5%;
}

.p-locations__cards {
	display: flex;
	flex-wrap: wrap;
	gap: 1.9375rem 1.4375rem;
	margin-top: 5rem;
}

.p-locations__card {
	width: calc((100% - 2.875rem) / 3);
	padding: 1.5625rem 2.625rem 1.5625rem 3.0625rem;
	background-color: #fff;
	border-radius: 0.3125rem;
}

.p-locations__card-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #0e62aa;
}

.p-locations__card-title::after {
	content: "";
	display: block;
	background-image: repeating-linear-gradient(90deg, #b5b5b5 0, #b5b5b5 12px, transparent 12px, transparent 18px);
	background-size: 18px 1px;
	background-position: 0 100%;
	background-repeat: repeat-x;
	height: 1px;
	margin-top: 0.625rem;
}

.p-locations__card-map-btn {
	margin-top: 1.5625rem;
}

.p-locations__card-map-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 17rem;
	padding: 1rem 2.625rem;
	background-color: #0e62aa;
	border: solid 0.125rem #0e62aa;
	border-radius: 1.875rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1;
	transition: background-color 0.2s, color 0.2s;
}

.p-locations__card-map-link::after {
	content: "";
	display: block;
	width: 1.125rem;
	aspect-ratio: 19/17;
	background-image: url("../images/icon_link.svg");
	background-size: contain;
	background-repeat: no-repeat;
	flex-shrink: 0;
	transition: filter 0.2s;
}

.p-locations__card-map-link:hover {
	background-color: #fff;
	color: #0e62aa;
	opacity: 1;
}

.p-locations__card-map-link:hover::after {
	filter: brightness(0);
}

.p-locations__card-address {
	margin-top: 1rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-style: normal;
}

.p-locations__card-contacts {
	margin-top: 0.4375rem;
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.p-locations__card-contact-item {
	display: flex;
	align-items: center;
	gap: 0.625rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.p-locations__card-contact-item::before {
	content: "";
	display: block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	flex-shrink: 0;
}

.p-locations__card-contact-item--tel::before {
	width: 1.4375rem;
	height: 1.4375rem;
	background-image: url("../images/icon_location_tel.svg");
}

.p-locations__card-contact-item--fax::before {
	width: 1.5625rem;
	height: 1.5rem;
	background-image: url("../images/icon_location_fax.svg");
}

.p-locations__card-contact-item--free::before {
	width: 1.5625rem;
	height: 1rem;
	background-image: url("../images/icon_location_free.svg");
}

.p-locations__card-note {
	margin-top: 0.625rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	color: #676767;
	line-height: 1.4;
}

.p-main-brands {
	padding-block: 6.875rem 0;
}

.p-main-brands__inner {
	container-type: inline-size;
}

.p-main-brands__container {
	background-color: #f7f7f7;
	border-radius: 0.3125rem;
	padding-block: 6.25rem;
	padding-inline: 3.25cqi;
}

.p-main-brands__grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	-moz-column-gap: 0.8333333333cqi;
	column-gap: 0.8333333333cqi;
	row-gap: 1.875rem;
	margin-top: 7.5rem;
}

.p-main-brands__link {
	display: block;
}

.p-main-brands__link img {
	display: block;
	width: auto;
	height: 4.375rem;
	object-fit: contain;
	object-position: center;
}

.p-maker-lead {
	padding-top: 8rem;
	padding-bottom: 6.25rem;
	background-color: #f4faff;
}

.p-maker-lead__inner.l-inner {
	display: flex;
	align-items: flex-start;
	gap: 5rem;
}

.p-maker-lead__content {
	flex: 1;
	min-width: 0;
	padding-left: 1.875rem;
}

.p-maker-lead__bubbles {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.p-maker-lead__bubble {
	display: flex;
	align-items: center;
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.p-maker-lead__bubble--left {
	width: 100%;
	max-width: 33.625rem;
	height: 5.4375rem;
	background-image: url("../images/bubble-whole_left.png");
	padding: 0.75rem 1.875rem 1.375rem 4.5rem;
}

.p-maker-lead__bubble--right {
	width: 100%;
	max-width: 34.3125rem;
	height: 5.4375rem;
	background-image: url("../images/bubble-whole_right.png");
	padding: 0.75rem 3.625rem 1.375rem 1.875rem;
	margin-left: 8.875rem;
}

.p-maker-lead__bubble-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.3;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.p-maker-lead__bubble-accent {
	color: #0e62aa;
}

.p-maker-lead__body {
	margin-top: 2.5rem;
}

.p-maker-lead__catch {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.875rem;
	font-weight: 700;
	color: #f39939;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.p-maker-lead__desc {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.8;
	letter-spacing: 0.03em;
	margin-top: 2.25rem;
}

.p-maker-lead__desc + .p-maker-lead__desc {
	margin-top: 2.25rem;
}

.p-maker-lead__media {
	flex: 0 0 23.375rem;
	position: relative;
	height: 43.875rem;
	padding-right: 0.5rem;
}

.p-maker-lead__img {
	position: absolute;
}

.p-maker-lead__img img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 0.4375rem;
}

.p-maker-lead__img--01 {
	top: 0.5625rem;
	right: 0;
	width: 16.875rem;
	height: 19.9375rem;
}

.p-maker-lead__img--02 {
	top: 25.5625rem;
	left: 0;
	width: 19.3125rem;
	height: 14.375rem;
}

.p-maker-lead__mascot {
	position: absolute;
	top: 36.5625rem;
	right: 0.75rem;
	width: 9.375rem;
}

.p-maker-lead__mascot img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 150/117;
	object-fit: contain;
}

.p-message {
	padding-block: 3.75rem;
}

.p-message__body {
	display: flex;
	align-items: flex-start;
	gap: 5rem;
	padding: 5.6875rem 6.125rem 5.6875rem 5.25rem;
	margin-top: 4.375rem;
	background: url("../images/message_bg.jpg") no-repeat center center/cover;
}

.p-message__content {
	flex: 0 0 39rem;
}

.p-message__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.6111111111;
	letter-spacing: 0.05em;
}

.p-message__signature {
	display: flex;
	align-items: flex-end;
	gap: 1.6875rem;
	margin-top: 2.5625rem;
}

.p-message__position {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5rem;
	font-weight: 400;
	color: #151515;
	line-height: 1.5833333333;
	letter-spacing: 0.05em;
}

.p-message__signature img {
	mix-blend-mode: multiply;
	width: 9.3125rem;
	height: auto;
	aspect-ratio: 149/48;
}

.p-message__img {
	flex: 0 0 19.625rem;
}

.p-message__img img {
	width: 100%;
	height: auto;
	aspect-ratio: 314/368;
	object-fit: cover;
}

.p-news__body {
	display: flex;
	gap: 0.9375rem;
}

.p-news__sidebar {
	flex: 0 0 21.375rem;
	position: sticky;
	top: 1.875rem;
	align-self: flex-start;
}

.p-news__sidebar .c-section-title {
	margin-bottom: 2.5rem;
}

.p-news__categories {
	display: flex;
	flex-direction: column;
	gap: 1.0625rem;
}

.p-news__cat-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.9375rem;
	padding-inline: 0.9375rem;
	border: 1px solid #0e62aa;
	border-radius: 1.25rem;
	background-color: #fff;
	color: #0e62aa;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.p-news__cat-btn--active {
	background-color: #0e62aa;
	color: #fff;
}

.p-news__main {
	flex: 1;
	min-width: 0;
}

.p-news__list {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 2.75rem;
}

.p-news__link {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: inherit;
}

.p-news__item-content {
	flex: 1;
	min-width: 0;
	background-color: #f7f7f7;
	border-radius: 0.25rem;
	padding: 1.25rem 5rem 1.1875rem 2.625rem;
}

.p-news__item-meta {
	display: flex;
	align-items: center;
	gap: 1.1875rem;
}

.p-news__date {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #757575;
	line-height: 1;
}

.p-news__badge {
	display: inline-flex;
	align-items: center;
	min-height: 1.25rem;
	padding-inline: 0.625rem;
	border: 1px solid #f39939;
	border-radius: 1.25rem;
	background-color: #f7f7f7;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.75rem;
	font-weight: 700;
	color: #f39939;
	line-height: 1;
}

.p-news__title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: #151515;
	line-height: 1;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin-top: 0.8125rem;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
}

.p-news__arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3.375rem;
	height: 3.375rem;
	border-radius: 50%;
	background-color: #0e62aa;
	color: #fff;
	font-size: 1.125rem;
	letter-spacing: 0.06em;
	margin-left: -1.75rem;
	border: 0.125rem solid transparent;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.p-news__pager {
	display: flex;
	justify-content: center;
	margin-top: 2.75rem;
}

.p-news__more {
	margin-top: 2.5rem;
	margin-left: auto;
}

.p-news__tab-content {
	display: none;
}

.p-news__tab-content.is-active {
	display: block;
	animation: p-news-fade 0.4s ease-out forwards;
}

.p-news__empty {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #757575;
	padding: 1.5rem 0;
}

.p-overview {
	padding-top: 5rem;
	padding-bottom: 6.25rem;
}

.p-overview__table {
	margin-top: 4.375rem;
}

.p-overview__row {
	display: flex;
	align-items: center;
	gap: 1.875rem;
	padding-bottom: 0.8125rem;
	background-image: repeating-linear-gradient(90deg, #b5b5b5 0, #b5b5b5 12px, transparent 12px, transparent 18px);
	background-size: 18px 1px;
	background-position: 0 100%;
	background-repeat: repeat-x;
}

.p-overview__row + .p-overview__row {
	margin-top: 2.125rem;
}

.p-overview__label {
	width: 8.8125rem;
	flex-shrink: 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #0e62aa;
	line-height: 1.0555555556;
	letter-spacing: 0.03em;
}

.p-overview__value {
	flex: 1;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 500;
	color: #333333;
	line-height: 1.6111111111;
	letter-spacing: 0.05em;
}

.p-partner {
	margin-top: 10.1875rem;
	padding-bottom: 6.25rem;
}

.p-partner__inner.l-inner {
	position: relative;
}

.p-partner__heading {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.p-partner__heading-text {
	display: inline-block;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2.875rem;
	line-height: 1;
	color: #151515;
	margin-left: 0.625rem;
}

.p-partner__heading-text--blue {
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-style: italic;
	color: #0e62aa;
}

.p-partner__heading-text--accent {
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-style: italic;
	color: #f39939;
}

.p-partner__ornament {
	width: 4.5rem;
	height: auto;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 50%;
	flex-shrink: 0;
}

.p-partner__catch {
	margin-top: 4.375rem;
}

.p-partner__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #151515;
	line-height: 2.3333333333;
	text-align: center;
	margin-top: 3.75rem;
}

.p-partner__text + .p-partner__text {
	margin-top: 1lh;
}

.p-partner__img {
	position: absolute;
}

.p-partner__img--01 {
	top: calc(50% - 1.25rem);
	translate: 0 -50%;
	left: 1.5625rem;
	width: 17.4375rem;
}

.p-partner__img--02 {
	bottom: 1.875rem;
	right: 1.5625rem;
	width: 13.5rem;
}

.p-partner__img img {
	object-fit: cover;
	width: 100%;
	height: auto;
	border-radius: 0.3125rem;
}

.p-partner__img.p-partner__img--01 img {
	aspect-ratio: 279/176;
}

.p-partner__img.p-partner__img--02 img {
	aspect-ratio: 216/280;
}

.p-privacy {
	padding-block: 5rem 7.5rem;
}

.p-privacy__content {
	margin-top: 3.75rem;
	padding: 3.75rem 5rem;
	background-color: #f7f7f7;
	border-radius: 0.5rem;
}

.p-privacy__lead {
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.8;
}

.p-privacy__list {
	margin-top: 2.5rem;
	counter-reset: privacy-list;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	list-style: none;
}

.p-privacy__list-item {
	position: relative;
	padding-left: 1.75rem;
	counter-increment: privacy-list;
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.p-privacy__list-item::before {
	content: counter(privacy-list) ".";
	position: absolute;
	top: 0;
	left: 0;
	color: #0e62aa;
	font-weight: 700;
}

.p-privacy__contact {
	margin-top: 2.5rem;
	padding-top: 2.5rem;
	border-top: 1px solid #e7e7e7;
}

.p-privacy__contact-title {
	font-size: 1.125rem;
	font-weight: 700;
	color: #151515;
	letter-spacing: 0.05em;
}

.p-privacy__contact-info {
	margin-top: 1rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	list-style: none;
}

.p-privacy__contact-item {
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
	line-height: 1.6;
}

.p-privacy__contact-item a {
	color: #0e62aa;
	text-decoration: underline;
	text-underline-offset: 0.125rem;
	transition: opacity 0.3s ease;
}

.p-products {
	padding-block: 6.875rem 0;
}

.p-products__blocks {
	display: flex;
	flex-direction: column;
	gap: 5rem;
	margin-top: 4.375rem;
}

.p-products__block-head {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding-left: 1rem;
	border-left: 0.25rem solid #f39939;
}

.p-products__block-category {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.75rem;
	font-weight: 700;
	color: #0e62aa;
	line-height: 1;
}

.p-products__block-category-en {
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1rem;
	color: #f39939;
	line-height: 1;
	margin-top: 0.3125rem;
}

.p-products__list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.75rem 1.875rem;
	margin-top: 1.875rem;
}

.p-products__item {
	background-color: #f4faff;
	border-radius: 0.25rem;
	padding: 1.25rem 1.875rem 1.875rem;
}

.p-products__img {
	border-radius: 0.25rem;
	overflow: hidden;
}

.p-products__img img {
	width: 100%;
	height: auto;
	aspect-ratio: 319/223;
	object-fit: cover;
}

.p-products__info {
	margin-top: 1.25rem;
}

.p-products__category {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.375rem;
	font-weight: 700;
	color: #151515;
	letter-spacing: 0.05em;
}

.p-products__accordion {
	margin-top: 0.8125rem;
}

.p-products__accordion-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-block: 0.5rem;
	padding-inline: 1.0625rem;
	background-color: #f39939;
	border: 0;
	border-radius: 0.25rem;
	cursor: pointer;
	transition: opacity 0.2s;
}

.p-products__accordion-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #fff;
	letter-spacing: 0.05em;
}

.p-products__accordion-icon {
	position: relative;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	flex-shrink: 0;
}

.p-products__accordion-icon::before,
.p-products__accordion-icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #fff;
}

.p-products__accordion-icon::before {
	width: 1rem;
	height: 0.125rem;
	transform: translate(-50%, -50%);
}

.p-products__accordion-icon::after {
	width: 0.125rem;
	height: 1rem;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
}

.p-products__accordion-btn[aria-expanded=true] .p-products__accordion-icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.p-products__accordion-panel {
	display: grid;
	grid-template-rows: 0fr;
	transition: grid-template-rows 0.4s ease;
}

.p-products__accordion-panel.is-open {
	grid-template-rows: 1fr;
}

.p-products__accordion-panel-inner {
	overflow: hidden;
	background-color: #fff;
}

.p-products__maker-text {
	padding: 1rem 1.0625rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
	line-height: 1.8;
}

.p-products__illust {
	display: flex;
	flex-direction: column;
	gap: 6.25rem;
	margin-top: 3.125rem;
}

.p-products__illust-head {
	display: flex;
	align-items: baseline;
	gap: 0.75rem;
}

.p-products__illust-category {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.5rem;
	font-weight: 700;
	color: #0e62aa;
}

.p-products__illust-category-en {
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.25rem;
	color: #f39939;
}

.p-products__illust-map {
	position: relative;
	container-type: inline-size;
	width: 100%;
	margin-top: 1.25rem;
}

.p-products__illust-map picture {
	display: block;
	width: 100%;
}

.p-products__illust-map img {
	display: block;
	width: 100%;
	height: auto;
}

.p-products__illust-link-list {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.p-products__illust-link-item {
	position: absolute;
	pointer-events: auto;
}

.p-products__illust-link {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding: 0.25cqw 0.5cqw;
	background-color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.33cqw;
	font-weight: 500;
	color: #151515;
	line-height: 1;
	transition: color 0.2s;
}

.p-products__illust-link::after {
	content: "↓";
	color: #0e62aa;
	margin-left: 0.42cqw;
	font-size: 1.67cqw;
	flex-shrink: 0;
	transition: color 0.2s;
}

.p-products__illust-link:hover {
	color: #0e62aa;
	opacity: 1;
}

.p-products__illust-link-item--solar {
	left: 4%;
	top: 10.38%;
}

.p-products__illust-link-item--wall {
	left: 4%;
	top: 22.03%;
}

.p-products__illust-link-item--curtain {
	left: 4%;
	top: 32.13%;
}

.p-products__illust-link-item--toilet {
	left: 4%;
	top: 40.87%;
}

.p-products__illust-link-item--aircon {
	left: 4%;
	top: 48.83%;
}

.p-products__illust-link-item--door {
	left: 3.92%;
	top: 56.98%;
}

.p-products__illust-link-item--entrance {
	left: 4%;
	top: 62.81%;
}

.p-products__illust-link-item--stairs {
	left: 4%;
	top: 70.77%;
}

.p-products__illust-link-item--floor {
	left: 4%;
	top: 77.56%;
}

.p-products__illust-link-item--foundation {
	left: 4%;
	top: 85.72%;
}

.p-products__illust-link-item--tile-left {
	left: 4.04%;
	top: 92.04%;
}

.p-products__illust-link-item--roof {
	left: 83.62%;
	top: 5.63%;
}

.p-products__illust-link-item--lighting {
	left: 83.24%;
	top: 18.06%;
}

.p-products__illust-link-item--washstand {
	left: 83.2%;
	top: 24.27%;
}

.p-products__illust-link-item--sash {
	left: 83.28%;
	top: 30.49%;
}

.p-products__illust-link-item--bath {
	left: 83.03%;
	top: 38.45%;
}

.p-products__illust-link-item--exterior-wall {
	left: 83.12%;
	top: 47.77%;
}

.p-products__illust-link-item--kitchen {
	left: 83.12%;
	top: 53.59%;
}

.p-products__illust-link-item--tile-right {
	left: 83.12%;
	top: 59.42%;
}

.p-products__illust-link-item--garden {
	left: 83.12%;
	top: 65.24%;
}

.p-products__illust-link-item--water-heater {
	left: 83.12%;
	top: 71.46%;
}

.p-products__illust-link-item--floor-heating {
	left: 83.12%;
	top: 77.67%;
}

.p-products__illust-link-item--hvac {
	left: 76.21%;
	top: 41.6%;
}

.p-products__illust-link-item--bathroom-fittings {
	left: 76.13%;
	top: 47.88%;
}

.p-products__illust-link-item--commercial-kitchen {
	left: 76.21%;
	top: 54.35%;
}

.p-products__illust-link-item--water-heater-c {
	left: 76.3%;
	top: 59.91%;
}

.p-products__illust-link-item--nursing-room {
	left: 76.39%;
	top: 69.79%;
}

.p-products__illust-link-item--handwash {
	left: 76.47%;
	top: 77.15%;
}

.p-products__illust-link-item--multipurpose-toilet {
	left: 76.39%;
	top: 82.71%;
}

.p-products__illust-link-item--barrier-free {
	left: 76.21%;
	top: 88.28%;
}

.p-products__illust-link-item--color-pavement {
	left: 67%;
	top: 49.92%;
}

.p-products__illust-link-item--granite {
	left: 67.17%;
	top: 58.04%;
}

.p-products__illust-link-item--braille-block {
	left: 66.75%;
	top: 67.32%;
}

.p-products__illust-link-item--tile {
	left: 66.75%;
	top: 76.83%;
}

.p-products__illust-sp-num-list {
	display: none;
}

.p-products__illust-sp-num-link {
	display: none;
}

.p-products__illust-sp-links {
	display: none;
}

.p-recruit__container {
	position: relative;
	display: grid;
	grid-template-columns: 41.25rem 1fr;
	container-type: inline-size;
	min-height: 27.875rem;
	background: url(../images/recruit-section-bg.jpg) no-repeat center center/cover;
	border-radius: 0.3125rem;
}

.p-recruit__media {
	grid-column: 1;
	grid-row: 1;
	align-self: stretch;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 0, 76.5% 0, 100% 100%, 0 100%);
	border-radius: 0.3125rem 0 0 0.3125rem;
	overflow: clip;
}

.p-recruit__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.p-recruit__media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 700/446;
	object-fit: cover;
	object-position: center;
}

.p-recruit__body {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.6875rem;
	align-self: flex-start;
	padding-right: 4.0625rem;
	translate: 0 -1.4375rem;
}

.p-recruit__head {
	align-self: stretch;
}

.p-recruit__en {
	font-family: "Afacad Flux", sans-serif;
	font-size: 9.1666666667cqi;
	font-weight: 700;
	color: #fff;
	line-height: 0.4363636364;
	letter-spacing: 0.08em;
	text-align: center;
	-webkit-text-stroke: 0.125rem #0e62aa;
}

.p-recruit__ja {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.3333333333cqi;
	font-weight: 500;
	color: #151515;
	line-height: 1.7142857143;
	letter-spacing: 0.06em;
	text-align: center;
	margin-top: 0.5625rem;
}

.p-recruit__content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3.4375rem;
}

.p-recruit__lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.5cqi;
	font-weight: 700;
	color: #151515;
	line-height: 1.6666666667;
	letter-spacing: 0.03em;
	text-align: center;
}

.p-recruit__lead-accent {
	color: #0e62aa;
}

.p-recruit__mascot {
	position: absolute;
	left: 35.75rem;
	top: 14.0625rem;
	width: 7.6875rem;
}

.p-recruit__mascot img {
	width: 100%;
	aspect-ratio: 123/170;
	object-fit: contain;
}

.p-service-item {
	position: relative;
	display: grid;
	grid-template-columns: 44rem 1fr;
	container-type: inline-size;
	min-height: 44.4375rem;
	overflow: clip;
	background: url("../images/service-item-bg.jpg") no-repeat center center/cover;
	border-radius: 0.3125rem;
}

.p-service-item--reverse {
	grid-template-columns: 32.125rem 1fr;
}

.p-service-item__media {
	position: relative;
	display: grid;
	grid-column: 1;
	grid-row: 1;
	align-self: stretch;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 0, 72.5% 0, 100% 100%, 0 100%);
}

.p-service-item--reverse .p-service-item__media {
	grid-column: 2;
	justify-self: end;
	clip-path: polygon(27.5% 0, 100% 0, 100% 100%, 0 100%);
}

.p-service-item__media picture {
	display: block;
	grid-column: 1;
	grid-row: 1;
	width: 100%;
	height: 100%;
}

.p-service-item__media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 700/711;
	object-fit: cover;
	object-position: center;
}

.p-service-item__number {
	position: absolute;
	top: 2.0625rem;
	left: 2.25rem;
	font-family: "Afacad Flux", sans-serif;
	font-size: 6.875rem;
	font-weight: 700;
	color: #fff;
	line-height: 0.44;
	letter-spacing: 0.08em;
	-webkit-text-stroke: 0.125rem #0e62aa;
}

.p-service-item--reverse .p-service-item__number {
	right: 1.25rem;
	left: auto;
}

.p-service-item__body {
	grid-column: 2;
	grid-row: 1;
	align-self: center;
}

.p-service-item--reverse .p-service-item__body {
	grid-column: 1;
	margin-left: 6.375rem;
}

.p-service-item__title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 4.5cqi;
	font-weight: 700;
	color: #0e62aa;
	line-height: 0.8888888889;
	letter-spacing: 0.05em;
	white-space: nowrap;
}

.p-service-item__subtitle {
	display: flex;
	align-items: center;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.6666666667cqi;
	font-weight: 500;
	color: #151515;
	line-height: 2.4;
	letter-spacing: 0.06em;
	margin-top: 0.625rem;
}

.p-service-item__subtitle::before {
	content: "";
	display: block;
	flex-shrink: 0;
	margin-right: 0.4375rem;
	width: 1.375rem;
	aspect-ratio: 22/19;
	background-image: url("../images/logo_section-title.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

.p-service-item__lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2cqi;
	font-weight: 700;
	color: #151515;
	line-height: 1.6;
	margin-top: 1.4375rem;
	white-space: nowrap;
}

.p-service-item__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5cqi;
	font-weight: 500;
	color: #151515;
	line-height: 1.6111111111;
	letter-spacing: 0.04em;
	margin-top: 1.375rem;
}

.p-service-item__more {
	display: flex;
	padding-right: 1.875rem;
	margin-top: 2rem;
}

.p-service-item:not(.p-service-item--reverse) .p-service-item__more {
	justify-content: flex-end;
}

.p-service-item__more-link {
	display: inline-flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.625rem 2.5625rem;
	min-width: 14.875rem;
	min-height: 3.25rem;
	background-color: #f39939;
	border-radius: 0.25rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.3333333333cqi;
	font-weight: 700;
	color: #f7f7f7;
	line-height: 2;
	letter-spacing: 0.03em;
	border: 0.125rem solid #f39939;
	transition: background-color 0.3s, color 0.3s;
}

.p-service-item__more-link::after {
	content: "→";
	font-family: "Alata", sans-serif;
	font-size: 1.5cqi;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.06em;
	margin-left: 1.25rem;
}

.p-services-lead {
	padding-block: 12.9375rem;
	background-color: #f4faff;
}

.p-services-lead__inner.l-inner {
	container-type: inline-size;
	max-width: 61.625rem;
}

.p-services-lead__heading {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 3.8461538462cqi;
	font-weight: 700;
	line-height: 1.3333333333;
	letter-spacing: 0.05em;
}

.p-services-lead__heading-accent {
	display: block;
	color: #f39939;
}

.p-services-lead__heading-theme {
	display: block;
	color: #014896;
}

.p-services-lead__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5rem;
	font-size: 2.5641025641cqi;
	font-weight: 700;
	color: #151515;
	line-height: 1.6;
	letter-spacing: 0;
	margin-top: 1.875rem;
}

.p-services__items {
	display: flex;
	flex-direction: column;
	gap: 8.5rem;
}

.p-single__body {
	padding: 5.6875rem 6.5625rem;
	background-color: #f7f7f7;
}

.p-single__meta {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.p-single__date {
	font-size: 1.125rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
	line-height: 1.6111111111;
}

.p-single__term {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 1.9375rem;
	padding-inline: 0.9375rem;
	border: 1px solid #0e62aa;
	border-radius: 1.25rem;
	color: #0e62aa;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
}

.p-single__title {
	margin-top: 1.25rem;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.3333333333;
	letter-spacing: 0.05em;
	color: #151515;
}

.p-single__eyecatch {
	max-width: 65%;
	margin-inline: auto;
	margin-top: 4.6875rem;
}

.p-single__eyecatch img {
	width: 100%;
	height: auto;
	aspect-ratio: 985/579;
	object-fit: cover;
	border-radius: 0.3125rem;
}

.p-single__content {
	margin-top: 4.6875rem;
}

.p-single__content h2 {
	padding: 0.625rem 0.9375rem;
	background-color: #0e62aa;
	border-radius: 0.3125rem;
	color: #fff;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.6;
}

.p-single__content h3 {
	width: -moz-fit-content;
	width: fit-content;
	padding-bottom: 0.1875rem;
	background-image: linear-gradient(to right, #f39939 66.67%, transparent 66.67%);
	background-repeat: repeat-x;
	background-position: left bottom;
	background-size: 1.125rem 1px;
	font-size: 1.25rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.6;
}

.p-single__content p {
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
	line-height: 1.75;
}

.p-single__content ul,
.p-single__content ol {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.p-single__content li {
	position: relative;
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
	line-height: 1.4375;
}

.p-single__content ul li {
	padding-left: 1em;
}

.p-single__content ul li::before {
	content: "・";
	position: absolute;
	top: 0;
	left: 0;
	color: #0e62aa;
}

.p-single__content ol {
	counter-reset: single-list;
}

.p-single__content ol li {
	padding-left: 1.4em;
	counter-increment: single-list;
}

.p-single__content ol li::before {
	content: counter(single-list) ".";
	position: absolute;
	top: 0;
	left: 0;
	color: #0e62aa;
}

.p-single__content figure img {
	width: 100%;
	height: auto;
	border-radius: 0.25rem;
}

.p-single__content figure.alignright {
	float: right;
	margin-top: 0;
	margin-left: 5.125rem;
	width: 42.9441624365%;
}

.p-single__content a {
	color: #0e62aa;
	font-weight: 700;
	text-decoration: underline;
	text-decoration-thickness: 0.125rem;
	text-underline-offset: 0.125rem;
	text-decoration-color: currentColor;
	transition: text-decoration-color 0.3s ease, color 0.3s ease;
	word-break: break-word;
}

.p-single__content .wp-block-button__link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem 1.25rem;
	background-color: #fff;
	border: 2px solid #0e62aa;
	border-radius: 3.125rem;
	color: #151515;
	font-size: 1rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 2;
	text-decoration: none;
	transition: background-color 0.3s, color 0.3s;
}

.p-single__content > * {
	margin-bottom: 1.5rem;
}

.p-sticky-buttons {
	position: fixed;
	right: 0;
	top: 50%;
	z-index: 100;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	visibility: hidden;
	opacity: 0;
	transform: translate(1rem, -50%);
	pointer-events: none;
	transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.p-sticky-buttons.is-show {
	visibility: visible;
	opacity: 1;
	transform: translate(0, -50%);
	pointer-events: auto;
}

.p-sticky-buttons__item {
	position: relative;
}

.p-sticky-buttons__item--contact {
	padding-top: 1.6875rem;
}

.p-sticky-buttons__mascot {
	position: absolute;
	top: -1.6875rem;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 1;
}

.p-sticky-buttons__mascot img {
	min-width: 5.75rem;
	width: 5.75rem;
	height: auto;
	aspect-ratio: 92/87;
	object-fit: contain;
}

.p-sticky-buttons__contact {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 7.5rem;
	padding-top: 3.75rem;
	padding-bottom: 1.125rem;
	background-color: #0e62aa;
	border: 2px solid transparent;
	border-radius: 0.5rem 0 0 0.5rem;
	text-align: center;
	transition: background-color 0.2s, border-color 0.2s;
}

.p-sticky-buttons__contact-body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-sticky-buttons__contact-en {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #b8deff;
	line-height: 1.375;
	transition: color 0.2s;
}

.p-sticky-buttons__contact-ja {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #fff;
	line-height: 1.375;
	transition: color 0.2s;
}

.p-sticky-buttons__recruit {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 7.5rem;
	padding: 0.9375rem 0;
	background-color: #fff;
	border: 2px solid #0e62aa;
	border-radius: 0.5rem 0 0 0.5rem;
	text-align: center;
	transition: background-color 0.2s;
}

.p-sticky-buttons__recruit-icon {
	width: 3.125rem;
	height: 3.125rem;
	background-color: #0e62aa;
	mask-image: var(--recruit-icon-url);
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-image: var(--recruit-icon-url);
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	transition: background-color 0.2s;
}

.p-sticky-buttons__recruit-body {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-sticky-buttons__recruit-en {
	display: block;
	margin-top: 0.25rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 400;
	color: #0e62aa;
	line-height: 1.375;
	transition: color 0.2s;
}

.p-sticky-buttons__recruit-ja {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 700;
	color: #f39939;
	line-height: 1.375;
	transition: color 0.2s;
}

.p-strengths {
	padding-block: 6.25rem 0;
}

.p-strengths__grid {
	position: relative;
	margin-top: 4.375rem;
}

.p-strengths__list {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.25rem;
	padding-inline: 5.625rem;
}

.p-strengths__item {
	display: grid;
	grid-row: span 2;
	grid-template-rows: subgrid;
	padding-block: 2.125rem;
	padding-inline: 3.5rem;
	background-color: #f4faff;
	border-radius: 0.25rem;
}

.p-strengths__content {
	display: grid;
	grid-row: span 2;
	grid-template-rows: subgrid;
	width: 100%;
}

.p-strengths__img {
	border-radius: 0.25rem;
}

.p-strengths__img img {
	aspect-ratio: 396/243;
	width: 100%;
	height: auto;
	object-fit: cover;
}

.p-strengths__body {
	display: flex;
	flex-direction: column;
	gap: 0.8125rem;
	padding-inline: 1.125rem;
}

.p-strengths__title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.25rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.6;
}

.p-strengths__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	letter-spacing: 0.05em;
}

.p-strengths__mascot {
	position: absolute;
	left: -1.375rem;
	bottom: -0.625rem;
	width: 9.3125rem;
	height: auto;
}

.p-sub-fv {
	position: relative;
	z-index: 1;
}

.p-sub-fv__inner {
	display: flex;
	align-items: flex-end;
}

.p-sub-fv__breadcrumb {
	flex: 0 0 8.75rem;
	display: flex;
	justify-content: center;
}

.p-sub-fv__main {
	position: relative;
	flex: 1 0 0;
}

.p-sub-fv__main img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	max-height: 34.25rem;
}

.p-sub-fv__title {
	position: absolute;
	top: 3.125rem;
	left: 5rem;
}

.p-sub-fv__title-en {
	font-family: "Afacad Flux", sans-serif;
	font-size: 6.875rem;
	font-weight: 700;
	line-height: 0.8;
	letter-spacing: 0.08em;
	color: #0e62aa;
}

.p-sub-fv__title-ja {
	display: inline-block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.625rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #151515;
	background-color: #fff;
	padding-block: 0.25rem;
	padding-inline: 0.5rem;
	margin-top: 0.5rem;
}

.p-subpage {
	position: relative;
	padding-top: 8.3125rem;
}

.p-subpage::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 49.8611111111vw;
	min-width: 39.75rem;
	max-width: 44.875rem;
	aspect-ratio: 718/842;
	background-color: #0e62aa;
	clip-path: polygon(0 0, 100% 0, 0 100%);
}

.p-thanks {
	padding-block: 10rem 12.5rem;
}

.p-thanks__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.p-thanks__mascot {
	margin-top: 2rem;
}

.p-thanks__mascot img {
	width: 12.6875rem;
	aspect-ratio: 203/253;
	object-fit: contain;
}

.p-thanks__lead {
	font-size: 1.875rem;
	font-weight: 700;
	color: #151515;
	line-height: 1.5;
}

.p-thanks__text {
	font-size: 1rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.75;
	margin-top: 1rem;
}

.p-thanks__btn {
	margin-top: 3rem;
}

.p-top-case {
	position: relative;
	padding-top: 8.75rem;
}

.p-top-case--full-bg {
	padding-bottom: 6.25rem;
}

.p-top-case--full-bg::before {
	content: "";
	position: absolute;
	top: 8.75rem;
	left: 0;
	right: 0;
	bottom: 0;
	background: #f4faff url(../images/top-case_bg.jpg) no-repeat center center/cover;
	z-index: 0;
}

.p-top-case--full-bg .p-top-case__inner {
	background: none;
	padding-bottom: 0;
	position: relative;
	z-index: 1;
}

.p-top-case--full-bg .p-top-case__mascot {
	display: none;
}

.p-top-case__inner {
	position: relative;
	container-type: inline-size;
	background: #f4faff url(../images/top-case_bg.jpg) no-repeat center center/cover;
	padding-bottom: 2.5rem;
}

.p-top-case__en {
	font-family: "Afacad Flux", sans-serif;
	font-size: 9.1666666667cqi;
	font-weight: 700;
	color: #fff;
	line-height: 0.4363636364;
	letter-spacing: 0.08em;
	text-align: center;
	-webkit-text-stroke: 0.125rem #0e62aa;
	margin-top: -1.6666666667cqi;
}

.p-top-case__body {
	max-width: 69.0625rem;
	margin-inline: auto;
	margin-top: 1.875rem;
}

.p-top-case__ja {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.4375rem;
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 1.875rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.6;
	letter-spacing: 0.06em;
}

.p-top-case__ja::before {
	content: "";
	display: block;
	width: 1.375rem;
	aspect-ratio: 22/19;
	background-image: url("../images/logo_section-title.svg");
	background-repeat: no-repeat;
	background-size: contain;
	flex-shrink: 0;
}

.p-top-case__grid {
	display: grid;
	grid-template-columns: repeat(3, 22.1875rem);
	gap: 1.25rem;
	justify-content: center;
	margin-top: 2.125rem;
}

.p-top-case__btn {
	margin-top: 6.25rem;
	margin-inline: auto;
}

.p-top-case__mascot {
	position: absolute;
	right: max(1.25rem, 50% - 35.5625rem);
	bottom: -5.3125rem;
	width: 12.5rem;
	pointer-events: none;
}

.p-top-case__mascot img {
	width: 100%;
	height: auto;
	aspect-ratio: 160/200;
	object-fit: contain;
}

.p-top-company {
	padding-top: 7.5rem;
	padding-bottom: 11.25rem;
}

.p-top-company__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-top: 3.75rem;
}

.p-top-company__link {
	display: block;
}

.p-top-company__img {
	overflow: hidden;
}

.p-top-company__img img {
	width: 100%;
	height: auto;
	aspect-ratio: 600/193;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.p-top-company__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 4.0625rem;
	min-height: 5.5rem;
	background-color: #f7f7f7;
}

.p-top-company__footer::after {
	content: "→";
	font-size: 1.625rem;
	color: #151515;
}

.p-top-company__labels {
	display: flex;
	align-items: baseline;
	gap: 2.25rem;
}

.p-top-company__label-ja {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5rem;
	font-weight: 700;
	color: #151515;
	line-height: 1;
}

.p-top-company__label-en {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #f39939;
	line-height: 1;
}

.p-top-company__more-btn {
	margin-inline: auto;
	margin-top: 3.75rem;
}

.p-top-links {
	padding-block: 7.5rem 0;
}

.p-top-links__list {
	display: flex;
	gap: 4.3125rem;
}

.p-top-links__item {
	flex: 1;
}

.p-top-links__link {
	display: block;
	padding: 1.25rem 1.875rem;
	background-color: #f7f7f7;
	border-radius: 0.3125rem;
}

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

.p-top-links__header::after {
	content: "→";
	font-size: 1.625rem;
	color: #0e62aa;
	transition: transform 0.3s ease;
	flex-shrink: 0;
}

.p-top-links__info {
	display: flex;
	align-items: center;
	gap: 1.375rem;
}

.p-top-links__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.8125rem;
	height: 4.8125rem;
	border-radius: 50%;
	background-color: #fff;
	flex-shrink: 0;
}

.p-top-links__icon img {
	width: 4.8125rem;
	height: 4.8125rem;
	aspect-ratio: 1/1;
	object-fit: contain;
}

.p-top-links__text {
	display: flex;
	flex-direction: column;
}

.p-top-links__en {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	color: #0e62aa;
	line-height: 1.74;
	letter-spacing: 0.08em;
}

.p-top-links__ja {
	font-family: "mfw-pa1gothicstdn-medium", "A P-OTF A1Gothic Std", sans-serif;
	font-size: 2rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.74;
	margin-top: -0.625rem;
}

.p-top-links__img {
	overflow: clip;
	border-radius: 0.3125rem;
	margin-top: 1.5rem;
}

.p-top-links__img img {
	width: 100%;
	height: auto;
	aspect-ratio: 1007/636;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.p-top-recruit {
	margin-top: 7.5rem;
}

.p-top-recruit__container {
	container-type: inline-size;
	position: relative;
	display: grid;
	grid-template-columns: 44rem 1fr;
	container-type: inline-size;
	min-height: 44.4375rem;
	overflow: clip;
	background: url("../images/top-recruit-bg.jpg") no-repeat center center/cover;
	border-radius: 0.3125rem;
}

.p-top-recruit__media {
	grid-column: 1;
	grid-row: 1;
	align-self: stretch;
	width: 100%;
	height: 100%;
	clip-path: polygon(0 0, 76.5% 0, 100% 100%, 0 100%);
}

.p-top-recruit__media picture {
	display: block;
	width: 100%;
	height: 100%;
}

.p-top-recruit__media img {
	display: block;
	width: 100%;
	height: 100%;
	aspect-ratio: 700/711;
	object-fit: cover;
	object-position: center;
}

.p-top-recruit__body {
	grid-column: 2;
	grid-row: 1;
	display: flex;
	flex-direction: column;
	gap: 4.375rem;
	align-self: center;
	padding-right: 5rem;
}

.p-top-recruit__content {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

.p-top-recruit__lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.6666666667cqi;
	font-weight: 700;
	color: #151515;
	line-height: 2.5;
	letter-spacing: 0.03em;
}

.p-top-recruit__text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.5cqi;
	font-weight: 500;
	color: #151515;
	line-height: 1.6111111111;
	letter-spacing: 0.05em;
}

.p-top-recruit__more {
	display: flex;
	justify-content: flex-end;
}

.p-top-services {
	position: relative;
	isolation: isolate;
}

.p-top-services__sticky {
	position: sticky;
	top: var(--header-height);
	overflow-x: clip;
	padding-top: 3.125rem;
	padding-bottom: 2.1875rem;
}

.p-top-services__slider {
	overflow: hidden;
	margin-top: 1.875rem;
}

.p-top-services__list {
	display: flex;
	gap: 2.1875rem;
	width: -moz-max-content;
	width: max-content;
	flex-wrap: nowrap;
	will-change: transform;
	padding-inline-start: max(25px, (100% - 1200px) / 2);
	padding-inline-end: 6.9444444444vw;
}

.p-top-services__item--housing .p-top-services__link {
	background-image: url(../images/top-service-item-bg-housing.jpg);
}

.p-top-services__item--equipment .p-top-services__link {
	background-image: url(../images/top-service-item-bg-equipment.jpg);
}

.p-top-services__item--contractor .p-top-services__link {
	background-image: url(../images/top-service-item-bg-contractor.jpg);
}

.p-top-services__item--tile .p-top-services__link {
	background-image: url(../images/top-service-item-bg-tile.jpg);
}

.p-top-services__item--sidewalk .p-top-services__link {
	background-image: url(../images/top-service-item-bg-sidewalk.jpg);
}

.p-top-services__item--repair .p-top-services__link {
	background-image: url(../images/top-service-item-bg-repair.jpg);
}

.p-top-services__link {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: url(../images/top-service-item_bg.jpg) no-repeat center center/cover;
	border-radius: 12.5rem;
	padding-block: 2.5rem 1.25rem;
	padding-inline: 4.125rem;
	min-height: 30.9375rem;
	width: 17.375rem;
}

.p-top-services__icon {
	max-width: 9.125rem;
}

.p-top-services__icon img {
	aspect-ratio: 1;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.p-top-services__item-title {
	font-size: 1.75rem;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 700;
	line-height: 1.07;
	letter-spacing: 0.05em;
	color: #fff;
	writing-mode: vertical-rl;
	margin-top: 1.375rem;
}

.p-top-services__more-btn {
	margin-inline: auto;
	margin-top: 4.375rem;
}

.p-top-services__mascot {
	position: absolute;
	left: max(8.3125rem, (100vw - 1200px) / 2 + 0.8125rem);
	bottom: 1rem;
	width: 14.625rem;
	pointer-events: none;
}

.p-top-services__mascot img {
	width: 100%;
	height: auto;
	aspect-ratio: 234/182;
	object-fit: contain;
}

.p-topics {
	padding-top: 2.5rem;
	padding-bottom: 7.5rem;
}

.p-topics__slider-wrap {
	margin-top: 3.125rem;
	overflow: clip;
}

.p-topics__swiper {
	overflow: visible;
}

.p-topics__slide {
	width: 25rem;
	padding-bottom: 2.5rem;
}

.p-topics__link {
	display: block;
	position: relative;
}

.p-topics__img-wrap {
	position: relative;
	overflow: hidden;
	border-radius: 0.3125rem;
}

.p-topics__img-wrap img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 400/341;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.p-topics__slide:not(.swiper-slide-active) .p-topics__img-wrap::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.6);
	mix-blend-mode: screen;
	pointer-events: none;
}

.p-topics__link .c-card__more {
	bottom: -2.5rem;
}

.u-mt10 {
	margin-top: 10px !important;
	margin-top: prem(10) !important;
}

.u-mt20 {
	margin-top: 20px !important;
	margin-top: prem(20) !important;
}

.u-mt30 {
	margin-top: 30px !important;
	margin-top: prem(30) !important;
}

.u-mt40 {
	margin-top: 40px !important;
	margin-top: prem(40) !important;
}

.u-mt50 {
	margin-top: 50px !important;
	margin-top: prem(50) !important;
}

.u-mt60 {
	margin-top: 60px !important;
	margin-top: prem(60) !important;
}

.u-mt70 {
	margin-top: 70px !important;
	margin-top: prem(70) !important;
}

.u-mt80 {
	margin-top: 80px !important;
	margin-top: prem(80) !important;
}

.u-mt90 {
	margin-top: 90px !important;
	margin-top: prem(90) !important;
}

.u-mt100 {
	margin-top: 100px !important;
	margin-top: prem(100) !important;
}

.u-mt110 {
	margin-top: 110px !important;
	margin-top: prem(110) !important;
}

.u-mt120 {
	margin-top: 120px !important;
	margin-top: prem(120) !important;
}

.u-mt130 {
	margin-top: 130px !important;
	margin-top: prem(130) !important;
}

.u-mt140 {
	margin-top: 140px !important;
	margin-top: prem(140) !important;
}

.u-mt150 {
	margin-top: 150px !important;
	margin-top: prem(150) !important;
}

.u-mt160 {
	margin-top: 160px !important;
	margin-top: prem(160) !important;
}

.u-mt170 {
	margin-top: 170px !important;
	margin-top: prem(170) !important;
}

.u-mt180 {
	margin-top: 180px !important;
	margin-top: prem(180) !important;
}

.u-mt190 {
	margin-top: 190px !important;
	margin-top: prem(190) !important;
}

.u-mt200 {
	margin-top: 200px !important;
	margin-top: prem(200) !important;
}

.u-sp {
	display: none;
}

@media (prefers-reduced-motion: no-preference) {

html {
	scroll-behavior: smooth;
	scroll-padding-top: var(--header-height);
}

}

@media (prefers-reduced-motion: reduce) {

html:focus-within {
	scroll-behavior: auto;
}

*,
*::before,
*::after {
	animation-duration: 0.01ms !important;
	animation-iteration-count: 1 !important;
	transition-duration: 0.01ms !important;
	scroll-behavior: auto !important;
}

.p-client__row-track {
	animation: none;
}

.p-company-between__track,
.p-company-between__text-track {
	animation: none;
}

}

@media (any-hover: hover) {

.c-button a:hover {
	background-color: #fff;
	color: #f39939;
	opacity: 1;
}

.c-button a:hover::after {
	background-color: #f39939;
}

.c-card__link:hover {
	opacity: 1;
}

.c-card__link:hover .c-card__img img {
	transform: scale(1.05);
}

.c-card__link:hover .c-card__more {
	background-color: #fff;
	border-color: #0e62aa;
}

.c-card__link:hover .c-card__more::before {
	color: #0e62aa;
}

.c-card__link:hover .c-card__more-text {
	color: #0e62aa;
}

.c-more-btn__link:hover {
	background-color: #0e62aa;
	color: #fff;
	opacity: 1;
}

.c-more-btn__link:hover .c-more-btn__arrow {
	background-color: #fff;
}

.c-more-btn__link:hover .c-more-btn__arrow::before {
	animation-name: moreBtnArrowOut;
	animation-duration: 0.4s;
	animation-fill-mode: forwards;
	background-color: #0e62aa;
}

.c-more-btn__link:hover .c-more-btn__arrow::after {
	animation-name: moreBtnArrowIn;
	animation-duration: 0.4s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
	background-color: #0e62aa;
}

.p-cases__filter-btn:hover {
	color: #fff;
	background-color: #0e62aa;
	opacity: 1;
}

.p-cases__filter-btn.is-active:hover {
	color: #0e62aa;
	background-color: #fff;
}

.p-header__nav-link:hover {
	background-color: #f4faff;
}

.p-header__nav-link:hover::after {
	transform: scaleX(1);
}

.p-mega-menu__all-link:hover {
	opacity: 0.8;
}

.p-mega-menu__card:hover {
	opacity: 0.8;
}

.p-mega-menu__card:hover .p-mega-menu__card-img img {
	transform: scale(1.04);
}

.p-news__cat-btn:hover {
	background-color: #0e62aa;
	color: #fff;
	opacity: 1;
}

.p-news__link:hover .p-news__arrow {
	background-color: #fff;
	border-color: #0e62aa;
	color: #0e62aa;
}

.p-privacy__contact-item a:hover {
	opacity: 0.7;
}

.p-single__content a:hover {
	text-decoration-color: transparent;
	opacity: 1;
}

.p-single__content .wp-block-button__link:hover {
	background-color: #0e62aa;
	color: #fff;
	text-decoration: none;
	opacity: 1;
}

.p-sticky-buttons__contact:hover {
	background-color: #fff;
	border-color: #0e62aa;
	opacity: 1;
}

.p-sticky-buttons__contact:hover .p-sticky-buttons__contact-en {
	color: #0e62aa;
}

.p-sticky-buttons__contact:hover .p-sticky-buttons__contact-ja {
	color: #0e62aa;
}

.p-sticky-buttons__recruit:hover {
	background-color: #0e62aa;
	opacity: 1;
}

.p-sticky-buttons__recruit:hover .p-sticky-buttons__recruit-icon {
	background-color: #fff;
}

.p-sticky-buttons__recruit:hover .p-sticky-buttons__recruit-en {
	color: #fff;
}

.p-sticky-buttons__recruit:hover .p-sticky-buttons__recruit-ja {
	color: #fff;
}

.p-top-company__link:hover .p-top-company__img img {
	transform: scale(1.05);
}

.p-top-links__link:hover .p-top-links__img img {
	transform: scale(1.05);
}

.p-top-links__link:hover .p-top-links__header::after {
	transform: translateX(0.3125rem);
}

.p-topics__link:hover {
	opacity: 1;
}

.p-topics__link:hover .p-topics__img-wrap img {
	transform: scale(1.05);
}

.p-topics__link:hover .c-card__more {
	background-color: #fff;
	border-color: #0e62aa;
}

.p-topics__link:hover .c-card__more::before {
	color: #0e62aa;
}

.p-topics__link:hover .c-card__more-text {
	color: #0e62aa;
}

}

@media (hover: hover) {

.p-service-item__more-link:hover {
	background-color: #f7f7f7;
	color: #f39939;
}

}

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

.p-formBtn input:hover,
.p-formBtn button:hover {
	opacity: 0.75;
}

}

@media screen and (max-width: 1250px) {

.p-service-item__body {
	translate: -8% 0;
}

}

@media (max-width: 1200px) {

html {
	font-size: 1.3333333333vw;
}

}

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

html {
	font-size: 16px;
}

a:hover {
	opacity: 1;
}

:root {
	--header-height: calc(58 * var(--rem));
}

.l-about {
	margin-top: 2.5rem;
}

.l-contact-catch {
	margin-top: 3.75rem;
}

.l-header {
	padding-top: 0;
}

.l-inner {
	padding-inline: 20px;
	max-width: 500px;
}

.l-news {
	margin-top: 5rem;
}

.l-news--top {
	margin-top: 3.75rem;
}

.l-recruit {
	padding-top: 5rem;
	padding-bottom: 5rem;
}

.l-services {
	margin-top: 3.75rem;
}

.l-single {
	margin-top: 2.5rem;
}

.l-top-contact {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
}

.c-breadcrumb__list {
	font-size: 1rem;
}

.c-breadcrumb-horizontal {
	margin-top: 6.25rem;
}

.c-breadcrumb-horizontal__list {
	font-size: 0.875rem;
	padding-inline: 0.625rem;
	overflow-x: auto;
	white-space: nowrap;
}

.c-breadcrumb-horizontal__item + .c-breadcrumb-horizontal__item::before {
	margin-inline: 0.5rem;
	width: 0.875rem;
}

.c-breadcrumb-horizontal__item.c-breadcrumb-horizontal__item--category {
	display: none;
}

.c-button a {
	gap: 2.5rem;
	padding-block: 0.8125rem;
}

.c-card__body {
	padding: 1rem 1rem 2.5rem;
}

.c-card__title {
	font-size: 1rem;
}

.c-card__tags {
	margin-top: 0.5rem;
}

.c-card__text {
	font-size: 0.875rem;
	margin-top: 0.5rem;
}

.c-card__more {
	width: 3.75rem;
	bottom: -1.875rem;
	padding-top: 0.75rem;
}

.c-card__more::before {
	bottom: 0.75rem;
}

.c-card__more-text {
	font-size: 0.875rem;
}

.c-catch {
	position: relative;
	gap: 0.75rem;
	padding-top: 1.375rem;
	max-width: 21.25rem;
}

.c-catch__bubble {
	padding: 1rem 0.625rem;
	border-radius: 3.75rem;
	font-size: 0.8125rem;
}

.c-catch__bubble::after {
	right: -0.875rem;
	bottom: 0.625rem;
	width: 1.75rem;
	height: 0.875rem;
}

.c-catch__line + .c-catch__line {
	margin-top: 0.375rem;
}

.c-catch__line--indent {
	padding-left: 0.875rem;
}

.c-catch__logo {
	width: 4.25rem;
	margin-top: 0.125rem;
	margin-right: 0.125rem;
}

.c-catch__mascot img {
	width: 4.5rem;
}

.c-more-btn__link {
	padding: 0.625rem 1rem 0.625rem 1.375rem;
	gap: 1rem;
	font-size: 0.875rem;
}

.c-more-btn__arrow {
	width: 2.125rem;
}

.c-pager-list {
	flex-wrap: wrap;
	row-gap: 1.25rem;
	margin-top: 3.125rem;
	padding-bottom: 3.125rem;
}

.c-pager-list__col--prev {
	flex: 0 0 50%;
	order: 1;
	justify-content: center;
}

.c-pager-list__col--center {
	flex: 0 0 100%;
	order: 3;
}

.c-pager-list__col--next {
	flex: 0 0 50%;
	order: 2;
	justify-content: center;
}

.c-pager-list__btn {
	height: 3.75rem;
	gap: 0.9375rem;
	font-size: 0.875rem;
}

.c-pager-list__btn--prev::before {
	width: 1.875rem;
	height: 1.875rem;
	font-size: 0.875rem;
}

.c-pager-list__btn--next::after {
	width: 1.875rem;
	height: 1.875rem;
	font-size: 0.875rem;
}

.c-pagination {
	margin-top: 3.75rem;
	gap: 0.5rem;
}

.c-pagination .page-numbers {
	min-width: 2.125rem;
	height: 2.125rem;
	padding-inline: 0.75rem;
	font-size: 0.875rem;
}

.c-pagination .page-numbers + .page-numbers {
	margin-left: 0;
}

.c-pagination .dots {
	height: 2.125rem;
	margin-left: 0;
	min-width: 0.875rem;
}

.c-pagination .dots::before {
	width: 0.1875rem;
	height: 0.1875rem;
	box-shadow: 0.3125rem 0 0 #151515, 0.625rem 0 0 #151515;
}

.c-section-title {
	gap: 0;
}

.c-section-title__en {
	font-size: 2.75rem;
}

.c-section-title__ja {
	font-size: 0.75rem;
	gap: 0.25rem;
}

.c-section-title__ja::before {
	width: 0.75rem;
}

.p-404 {
	padding-block: 3.75rem 5rem;
}

.p-404__text {
	font-size: 0.875rem;
}

.p-404__btn {
	margin-top: 2rem;
}

.p-about {
	padding-block: 3.75rem 3.75rem;
	background-size: auto;
	background-repeat: repeat;
}

.p-about__inner {
	gap: 2.5rem;
}

.p-about__main {
	gap: 3.125rem;
}

.p-about__header {
	gap: 1rem;
}

.p-about__logo img {
	width: 6.25rem;
}

.p-about__title-en {
	font-size: 2.75rem;
	line-height: 1.4;
	text-align: center;
}

.p-about__title-ja {
	font-size: 1.125rem;
	line-height: 1.6;
}

.p-about__body {
	flex-direction: column;
	gap: 2.5rem;
}

.p-about__logos {
	grid-template-columns: repeat(2, 8.75rem);
	row-gap: 0.75rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	margin-inline: auto;
}

.p-about__logos-item {
	width: 8.75rem;
	height: 8.75rem;
}

.p-about__content {
	gap: 2.5rem;
}

.p-about__lead {
	font-size: 1.125rem;
	line-height: 1.7;
}

.p-about__text {
	font-size: 0.9375rem;
	line-height: 1.8;
}

.p-about__btn {
	text-align: center;
}

.p-anchor-nav {
	padding-block: 1.875rem;
}

.p-anchor-nav__list {
	flex-wrap: wrap;
}

.p-anchor-nav__item {
	width: calc(50% - 0.25rem);
}

.p-anchor-nav__link {
	width: 100%;
	font-size: 0.9375rem;
	padding: 0.625rem 1rem 0.625rem 1.25rem;
	gap: 0.5rem;
}

.p-between__img img {
	aspect-ratio: 375/150;
	max-height: 9.375rem;
}

.p-between__deco {
	bottom: -1.125rem;
}

.p-between__deco-text {
	font-size: 2.25rem;
	padding-right: 1.25rem;
}

.p-biz-overview {
	min-height: 0;
}

.p-biz-overview__content {
	max-width: 100%;
	margin-top: 1.875rem;
}

.p-biz-overview__lead {
	font-size: 1.25rem;
	line-height: 1.5;
	letter-spacing: 0;
	white-space: normal;
}

.p-biz-overview__heading {
	font-size: 1.25rem;
	line-height: 1.5;
	letter-spacing: 0;
	white-space: normal;
	margin-top: 1.5rem;
}

.p-biz-overview__text {
	font-size: 0.875rem;
	line-height: 1.7;
	margin-top: 1.5rem;
}

.p-biz-overview__img {
	position: static;
	width: 100%;
	height: auto;
	margin-top: 1.875rem;
	min-height: 0;
}

.p-biz-overview__img picture {
	height: auto;
}

.p-biz-overview__img img {
	height: auto;
	aspect-ratio: 375/250;
	clip-path: none;
	object-position: center top;
}

.p-biz-overview__img::after {
	height: 10rem;
}

.p-brands {
	padding-block: 3.75rem;
}

.p-brands__container {
	padding-block: 1.875rem;
	padding-inline: 1.25rem;
	margin-top: 2.5rem;
}

.p-brands__accordion-list {
	gap: 1.875rem;
}

.p-brands__accordion-btn {
	padding-block: 0.75rem;
	padding-inline: 1rem;
}

.p-brands__accordion-kana {
	font-size: 1.125rem;
}

.p-brands__accordion-icon {
	width: 1.125rem;
	height: 1.125rem;
}

.p-brands__accordion-icon::before {
	width: 1.125rem;
}

.p-brands__accordion-icon::after {
	height: 1.125rem;
}

.p-brands__brand-list {
	padding-block: 1rem;
	padding-inline: 1.25rem;
}

.p-brands__brand-item {
	width: 100%;
	font-size: 0.875rem;
}

.p-business-lead {
	padding-block: 3.75rem;
}

.p-business-lead__text {
	font-size: 1.1875rem;
	line-height: 1.7;
}

.p-cases {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
}

.p-cases__container {
	padding-top: 2.5rem;
	padding-bottom: 3.75rem;
}

.p-cases__filter {
	gap: 1rem 0.375rem;
}

.p-cases__filter-btn {
	font-size: 0.875rem;
	padding: 0.5rem 1rem;
}

.p-cases__list {
	grid-template-columns: 1fr;
	gap: 3.125rem 0;
	margin-top: 2.5rem;
	padding-inline: 1rem;
	padding-bottom: 1.875rem;
}

.p-client {
	padding-block: 3.125rem 3.75rem;
}

.p-client__head-inner {
	position: relative;
	gap: 0;
	padding-bottom: 3.25rem;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
}

.p-client__mascot--left {
	position: absolute;
	left: -2.8125rem;
	bottom: -0.625rem;
}

.p-client__mascot--left img {
	width: 3.25rem;
}

.p-client__mascot--right {
	position: absolute;
	right: -2.8125rem;
	bottom: 0rem;
}

.p-client__mascot--right img {
	width: 2.75rem;
}

.p-client__tagline {
	font-size: 1.125rem;
}

.p-client__title-text {
	font-size: 1.875rem;
	letter-spacing: 0;
}

.p-client__title-num {
	font-size: 4.25rem;
	letter-spacing: 0.02em;
}

.p-client__rows {
	margin-top: 2.5rem;
	gap: 0.875rem;
}

.p-client__row-track {
	gap: 1rem;
	animation-duration: 40s;
}

.p-client__logo img {
	height: 2.875rem;
}

.p-company-between__track {
	animation-duration: 40s;
}

.p-company-between__item {
	padding-right: 1rem;
}

.p-company-between__item img {
	width: 12.5rem;
	height: 8.6875rem;
	border-radius: 0.25rem;
}

.p-company-between__text-row {
	margin-top: -1.25rem;
}

.p-company-between__text-track {
	animation-duration: 25s;
}

.p-company-between__text {
	font-size: 3.75rem;
	padding-right: 1.25rem;
}

.p-contact-page {
	padding-block: 3.75rem;
}

.p-contact-page__inner {
	max-width: 34.375rem;
	border-radius: 1.875rem;
}

.p-contact-page__container {
	padding: 1.875rem 1.25rem 3.125rem;
}

.p-contact-page__tel {
	padding: 1.5rem 1.25rem;
	border-radius: 1.5rem;
	text-align: center;
}

.p-contact-page__tel-heading {
	flex-direction: column;
	gap: 0.5rem;
	text-align: center;
}

.p-contact-page__tel-heading img {
	width: 2.75rem;
}

.p-contact-page__tel-heading-text {
	font-size: 1.375rem;
	line-height: 2rem;
}

.p-contact-page__tel-info {
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.5rem;
}

.p-contact-page__tel-number {
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.p-contact-page__tel-num {
	font-size: 2.25rem;
}

.p-contact-page__tel-daihyo {
	font-size: 1.375rem;
	line-height: 2rem;
}

.p-contact-page__tel-hours {
	font-size: 0.875rem;
}

.p-contact-section__catch {
	margin-top: 1.875rem;
}

.p-contact-section__body {
	flex-direction: column;
	gap: 1.25rem;
	margin-top: 1.875rem;
}

.p-contact-section__item {
	padding-block: 2.25rem 1.75rem;
}

.p-contact-section__item-title {
	font-size: 1.375rem;
}

.p-contact-section__item-cta {
	margin-top: 1.125rem;
}

.p-contact-section__item-icon img {
	width: 5rem;
}

.p-contact-section__item-link {
	font-size: 1.25rem;
	margin-top: 1rem;
}

.p-contact-section__item-tel {
	font-size: 2.5rem;
}

.p-contact-section__item-sub {
	font-size: 0.875rem;
}

.p-contact-section__item-text {
	font-size: 0.8125rem;
}

.p-contact__inner {
	padding-right: 0.9375rem;
	padding-left: 0.9375rem;
	max-width: 34.375rem;
}

.p-form {
	margin-top: 1.75rem;
	padding: 2.5rem 1.25rem 2.25rem;
	border-radius: 1.75rem;
}

.p-form__heading {
	flex-direction: column;
	gap: 0.5rem;
	text-align: center;
}

.p-form__heading img {
	width: 2.75rem;
}

.p-form__heading-text {
	font-size: 1.25rem;
	line-height: 2rem;
}

.p-form__lead {
	font-size: 0.8125rem;
	margin-top: 2.125rem;
	text-align: left;
}

.p-form__content {
	margin-top: 2.125rem;
}

.p-form__item {
	display: block;
}

.p-form__item + .p-form__item {
	margin-top: 1.5rem;
}

.p-form__title {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.p-form__title label {
	font-size: 1rem;
}

.p-form__title span:not(.p-form__title-confirm) {
	font-size: 0.75rem;
	width: 2.875rem;
	min-height: 1.25rem;
}

.p-form__input {
	margin-top: 0.5rem;
}

.p-formInput input,
.p-formTextarea textarea {
	padding: 0.6875rem 0.875rem;
	font-size: 1rem;
}

.p-formInput--sm input {
	width: 100%;
}

.p-formInput__post input {
	width: 100%;
}

.p-formInput__address input {
	width: 100%;
}

.p-formSelect select {
	width: 100%;
	min-height: 3.125rem;
}

.p-formDate__flex {
	align-items: flex-start;
	gap: 1.25rem;
}

.p-form__dataBlock {
	flex: 1;
}

.p-form__dataBlockLabel {
	display: none;
}

.p-form__dataBlockDate,
.p-form__dataBlockSelect {
	width: 100%;
}

.p-formCalendar input {
	width: 100%;
	min-height: 3.125rem;
}

.Android .p-formCalendar input {
	padding-left: 0.9375rem;
}

.p-formNumber__flex {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.625rem;
}

.p-formNumber__blockLabel01 {
	width: 3.4375rem;
}

.p-formNumber__blockInput {
	flex: 1;
	margin-right: 1.25rem;
}

.p-formCheckbox input + span,
.p-formRadio input + span {
	font-size: 0.9375rem;
	line-height: 1.6;
}

.p-form__bottom {
	align-items: flex-start;
	margin-top: 2.25rem;
}

.p-form__privacy {
	text-align: left;
}

.p-form__acceptance {
	text-align: left;
}

.p-form__submit {
	width: 100%;
}

.p-formBtn input,
.p-formBtn button {
	width: 100%;
}

.p-form__mascot {
	position: static;
	margin-top: 1.75rem;
	width: 8rem;
}

.wpcf7 form.sent .wpcf7-response-output {
	font-size: 0.875rem;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
	font-size: 0.875rem;
}

.p-footer {
	min-height: 0;
}

.p-footer__inner.l-inner {
	flex-direction: column;
	gap: 2.5rem;
	padding-top: 3.125rem;
	padding-right: 1.25rem;
	padding-left: 1.25rem;
}

.p-footer__left {
	width: 100%;
}

.p-footer__copy img {
	width: 13.75rem;
}

.p-footer__logo img {
	width: 13.75rem;
}

.p-footer__address {
	font-size: 0.8125rem;
}

.p-footer__nav {
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	width: 100%;
}

.p-footer__nav-col {
	flex: none;
	max-width: 10rem;
	width: 100%;
}

.p-footer__nav-item {
	padding-bottom: 0.375rem;
}

.p-footer__nav-item + .p-footer__nav-item {
	margin-top: 0.75rem;
}

.p-footer__nav-link {
	font-size: 0.9375rem;
}

.p-footer__nav-sub {
	gap: 0.625rem;
	margin-top: 0.875rem;
}

.p-footer__nav-sub-link {
	font-size: 0.8125rem;
}

.p-footer__bottom {
	padding-top: 1.875rem;
	padding-bottom: 1.875rem;
}

.p-footer__bottom-inner {
	flex-direction: column;
	align-items: flex-start;
	gap: 1.875rem;
}

.p-footer__bottom-left {
	gap: 0.5rem;
}

.p-footer__sns {
	flex-wrap: wrap;
}

.p-footer__sns-link img {
	width: 1.875rem;
}

.p-footer__sns-link span {
	font-size: 0.75rem;
	letter-spacing: 0.05em;
}

.p-footer__bottom-right {
	align-items: flex-start;
	width: 100%;
}

.p-footer__group {
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 1.25rem;
	max-width: 21.875rem;
}

.p-footer__group-main {
	padding-right: 0;
}

.p-footer__group-list {
	gap: 0.75rem 1.5rem;
	padding-left: 0;
	border-left: none;
	flex-wrap: wrap;
}

.p-footer__copyright {
	font-size: 0.5625rem;
}

.p-fv__inner {
	flex-direction: column;
}

.p-fv__container {
	align-items: flex-start;
	flex-shrink: unset;
	width: 100%;
	max-width: 23.4375rem;
	margin-inline: auto;
	padding-left: 1.25rem;
	padding-top: var(--header-height);
	gap: 0.25rem;
}

.p-fv__side {
	padding-top: 1.5625rem;
}

.p-fv__side::after {
	height: 3.5625rem;
}

.p-fv__side-text {
	font-size: 0.875rem;
	letter-spacing: 0.06em;
}

.p-fv__content {
	align-self: auto;
}

.p-fv__heading {
	font-size: 3.5rem;
	letter-spacing: 0.12em;
}

.p-fv__heading-max {
	font-size: 5rem;
}

.p-fv__heading-large {
	font-size: 4.125rem;
}

.p-fv__lead-wrap {
	margin-top: 0.9375rem;
}

.p-fv__lead {
	font-size: 0.9375rem;
	letter-spacing: 0.06em;
	line-height: 1.3333333333;
}

.p-fv__slider-wrap {
	width: 100%;
	height: 113.6cqi;
	margin-top: 1.5625rem;
}

.p-fv__img-wrap {
	aspect-ratio: 375/426;
}

.p-fv__img-wrap.is-animating::before {
	clip-path: polygon(0 0, 56.3% 0, 39.3% 100%, 0 100%);
	animation-name: fv-curtain-left-sp;
}

.p-fv__img-wrap.is-animating::after {
	clip-path: polygon(56.3% 0, 100% 0, 100% 100%, 39.3% 100%);
	animation-name: fv-curtain-right-sp;
}

.p-fv__slide img {
	aspect-ratio: 375/426;
}

.p-header__bar {
	height: calc(var(--header-height));
	width: 100%;
	max-width: none;
	margin-inline: unset;
	background-color: transparent;
}

.p-header__logo-link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.625rem 0.75rem;
	width: 10.875rem;
	height: 3rem;
	background-color: #fff;
	border-radius: 0.3125rem;
}

.p-header__logo-link img {
	width: 9.375rem;
	aspect-ratio: 252/43;
}

.p-header__nav {
	display: none;
}

.p-header__hamburger {
	display: flex;
}

.p-instagram-wrapper {
	gap: 3.75rem;
	margin-bottom: 5rem;
}

.p-instagram__container {
	padding-top: 2.25rem;
	padding-inline: 1rem;
	padding-bottom: 2.5rem;
}

.p-instagram__badge {
	top: -0.625rem;
	font-size: 0.875rem;
	padding: 0.4375rem 1rem;
}

.p-instagram__badge::after {
	bottom: -0.625rem;
	border-width: 1.0625rem 0.4375rem 0 0.4375rem;
}

.p-instagram__head::after {
	margin-top: 0.75rem;
}

.p-instagram__title {
	font-size: 1.25rem;
	text-align: center;
}

.p-instagram__text-sub {
	font-size: 1.125rem;
}

.p-instagram__text-main {
	font-size: 1.25rem;
}

.p-instagram__title--tile .p-instagram__text {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.p-instagram__title--tile .p-instagram__text-sub {
	margin-bottom: 0;
}

.p-instagram__icon {
	margin-right: 0.75rem;
	width: 1.75rem;
}

.p-instagram__content {
	margin-top: 1.875rem;
}

.p-locations {
	overflow-x: clip;
	padding-bottom: 3.75rem;
}

.p-locations__map-area {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	aspect-ratio: unset;
	container-type: normal;
	margin-top: 1.5rem;
	padding-left: 2.5rem;
}

.p-locations__map {
	position: static;
	left: unset;
	top: unset;
	flex: 1;
	width: 100%;
	max-width: 17.5rem;
	min-width: 16.25rem;
	order: 2;
	margin-top: -1.875rem;
	margin-left: -1.875rem;
}

.p-locations__mascot {
	display: none;
}

.p-locations__label-list {
	position: static;
	inset: unset;
	display: flex;
	flex-direction: column;
	gap: 0.4375rem;
	flex: 0 0 9.375rem;
	order: 1;
	z-index: 1;
}

.p-locations__label-item {
	position: static;
	left: unset;
	top: unset;
	width: 100%;
}

.p-locations__label {
	height: 1.9375rem;
	padding-left: 0.9375rem;
	padding-right: 0.5rem;
	border: solid 1px #f39939;
	border-radius: 1rem;
	font-size: 0.75rem;
}

.p-locations__label::after {
	font-size: 0.75rem;
	padding-left: 0.3125rem;
}

.p-locations__cards {
	margin-top: 2.5rem;
	gap: 1.25rem;
}

.p-locations__card {
	width: 100%;
	padding: 1.25rem;
}

.p-locations__card-title {
	font-size: 1.5rem;
}

.p-locations__card-map-link {
	width: 100%;
	max-width: 17rem;
}

.p-locations__card-address {
	font-size: 1rem;
}

.p-locations__card-contact-item {
	font-size: 1rem;
}

.p-main-brands {
	padding-block: 3.75rem;
}

.p-main-brands__container {
	padding-block: 3.75rem;
	padding-inline: 1.25rem;
}

.p-main-brands__grid {
	row-gap: 0.625rem;
	-moz-column-gap: 1.25rem;
	column-gap: 1.25rem;
	margin-top: 1.5rem;
}

.p-main-brands__link img {
	height: 2.5rem;
}

.p-maker-lead {
	padding-block: 3.75rem;
}

.p-maker-lead__inner.l-inner {
	flex-direction: column;
	gap: 2.5rem;
}

.p-maker-lead__content {
	padding-left: 0;
}

.p-maker-lead__bubbles {
	align-items: center;
	gap: 1rem;
}

.p-maker-lead__bubble--left {
	padding: 0.4375rem 1.1875rem 0.875rem 2.8125rem;
	width: 20.9375rem;
	max-width: none;
	height: 3.375rem;
}

.p-maker-lead__bubble--right {
	padding: 0.4375rem 2.1875rem 0.8125rem 1.125rem;
	margin-left: 0;
	width: 20.9375rem;
	max-width: none;
	height: 3.3125rem;
}

.p-maker-lead__bubble-text {
	font-size: 0.875rem;
	letter-spacing: 0.01em;
	white-space: nowrap;
	line-height: 1.3;
}

.p-maker-lead__catch {
	font-size: 1.25rem;
}

.p-maker-lead__desc {
	font-size: 0.9375rem;
	margin-top: 1.25rem;
}

.p-maker-lead__desc + .p-maker-lead__desc {
	margin-top: 1.25rem;
}

.p-maker-lead__media {
	flex: none;
	width: 100%;
	height: auto;
	padding-right: 0;
	padding-bottom: 4.375rem;
}

.p-maker-lead__img {
	position: static;
}

.p-maker-lead__img img {
	height: auto;
}

.p-maker-lead__img--01 {
	width: 55%;
	height: auto;
	margin-left: auto;
}

.p-maker-lead__img--01 img {
	aspect-ratio: 270/319;
}

.p-maker-lead__img--02 {
	width: 70%;
	height: auto;
	margin-top: 0.9375rem;
}

.p-maker-lead__img--02 img {
	aspect-ratio: 309/230;
}

.p-maker-lead__mascot {
	top: auto;
	bottom: 0;
	right: 0;
	width: 6rem;
}

.p-message {
	padding-block: 2.5rem;
}

.p-message__body {
	flex-direction: column;
	gap: 1.875rem;
	padding: 2.5rem 1.25rem;
	margin-top: 1.875rem;
}

.p-message__content {
	flex: none;
	width: 100%;
}

.p-message__text {
	font-size: 0.875rem;
}

.p-message__signature {
	margin-top: 1.5rem;
}

.p-message__position {
	font-size: 1rem;
}

.p-message__signature img {
	width: 6.875rem;
}

.p-message__img {
	flex: none;
	width: 100%;
	max-width: 20rem;
	align-self: center;
}

.p-news__body {
	flex-direction: column;
	gap: 2.5rem;
}

.p-news__sidebar {
	flex: none;
	width: 100%;
	position: static;
}

.p-news__sidebar .c-section-title {
	margin-bottom: 1.25rem;
}

.p-news__categories {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 0.625rem;
}

.p-news__item-content {
	padding: 1rem 4.375rem 1rem 1.25rem;
}

.p-news__title {
	font-size: 1rem;
	white-space: normal;
}

.p-news__more {
	margin-top: 1.875rem;
}

.p-news__empty {
	font-size: 0.875rem;
}

.p-overview {
	padding-top: 3.125rem;
	padding-bottom: 3.75rem;
}

.p-overview__table {
	margin-top: 2.5rem;
}

.p-overview__row {
	flex-direction: column;
	align-items: flex-start;
	gap: 0.375rem;
	padding-bottom: 0.625rem;
}

.p-overview__row + .p-overview__row {
	margin-top: 1.25rem;
}

.p-overview__label {
	width: auto;
	font-size: 0.875rem;
}

.p-overview__value {
	font-size: 0.875rem;
	line-height: 1.7;
}

.p-partner {
	margin-top: 3.125rem;
	padding-bottom: 3.75rem;
}

.p-partner__heading {
	flex-wrap: nowrap;
}

.p-partner__heading-text {
	font-size: 0.875rem;
	white-space: nowrap;
	margin-left: 0.25rem;
}

.p-partner__heading-text--accent {
	margin-left: -0.3125rem;
}

.p-partner__ornament {
	width: 1.5625rem;
}

.p-partner__catch {
	margin-top: 2.4375rem;
}

.p-partner__text {
	font-size: 0.8125rem;
	line-height: 1.6923076923;
	margin-top: 2.4375rem;
}

.p-partner__img {
	display: none;
}

.p-privacy {
	padding-block: 3.125rem 5rem;
}

.p-privacy__content {
	margin-top: 2.5rem;
	padding: 2.5rem 1.25rem;
}

.p-privacy__lead {
	font-size: 0.875rem;
}

.p-privacy__list {
	margin-top: 1.875rem;
	gap: 1.25rem;
}

.p-privacy__list-item {
	font-size: 0.875rem;
	padding-left: 1.5rem;
}

.p-privacy__contact {
	margin-top: 1.875rem;
	padding-top: 1.875rem;
}

.p-privacy__contact-title {
	font-size: 1rem;
}

.p-privacy__contact-item {
	font-size: 0.875rem;
}

.p-products {
	padding-block: 3.75rem;
}

.p-products__blocks {
	gap: 3.125rem;
	margin-top: 2.5rem;
}

.p-products__block-category {
	font-size: 1.25rem;
}

.p-products__block-category-en {
	font-size: 0.75rem;
}

.p-products__list {
	grid-template-columns: 1fr;
	gap: 1.25rem;
	margin-top: 1.25rem;
}

.p-products__category {
	font-size: 1.125rem;
}

.p-products__illust {
	gap: 1.5rem;
	margin-top: 2.5rem;
}

.p-products__illust-head {
	gap: 0.625rem;
}

.p-products__illust-category {
	font-size: 1.5rem;
}

.p-products__illust-category-en {
	font-size: 0.8125rem;
}

.p-products__illust-link-list {
	display: none;
}

.p-products__illust-sp-num-list {
	display: block;
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.p-products__illust-sp-num-item {
	position: absolute;
	pointer-events: auto;
	transform: translate(-50%, -50%);
}

.p-products__illust-sp-num-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 4.78cqw;
	height: 4.78cqw;
	border-radius: 50%;
	background-color: #003760;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 2.99cqw;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}

.p-products__illust-sp-num-item--solar {
	left: 34.63%;
	top: 11.11%;
}

.p-products__illust-sp-num-item--wall {
	left: 20.9%;
	top: 26.77%;
}

.p-products__illust-sp-num-item--curtain {
	left: 27.16%;
	top: 28.79%;
}

.p-products__illust-sp-num-item--toilet {
	left: 45.37%;
	top: 38.89%;
}

.p-products__illust-sp-num-item--aircon {
	left: 34.33%;
	top: 50%;
}

.p-products__illust-sp-num-item--door {
	left: 25.67%;
	top: 62.12%;
}

.p-products__illust-sp-num-item--entrance {
	left: 20.6%;
	top: 69.7%;
}

.p-products__illust-sp-num-item--stairs {
	left: 31.64%;
	top: 69.7%;
}

.p-products__illust-sp-num-item--floor {
	left: 22.99%;
	top: 80.3%;
}

.p-products__illust-sp-num-item--foundation {
	left: 29.55%;
	top: 87.37%;
}

.p-products__illust-sp-num-item--tile-left {
	left: 17.96%;
	top: 94.27%;
}

.p-products__illust-sp-num-item--roof {
	left: 71.94%;
	top: 13.13%;
}

.p-products__illust-sp-num-item--lighting {
	left: 52.46%;
	top: 20.29%;
}

.p-products__illust-sp-num-item--washstand {
	left: 57.31%;
	top: 32.83%;
}

.p-products__illust-sp-num-item--sash {
	left: 83.28%;
	top: 37.88%;
}

.p-products__illust-sp-num-item--bath {
	left: 67.16%;
	top: 42.93%;
}

.p-products__illust-sp-num-item--exterior-wall {
	left: 83.28%;
	top: 72.22%;
}

.p-products__illust-sp-num-item--kitchen {
	left: 74.03%;
	top: 61.62%;
}

.p-products__illust-sp-num-item--tile-right {
	left: 67.67%;
	top: 61.65%;
}

.p-products__illust-sp-num-item--garden {
	left: 95.22%;
	top: 62.63%;
}

.p-products__illust-sp-num-item--water-heater {
	left: 92.54%;
	top: 76.26%;
}

.p-products__illust-sp-num-item--floor-heating {
	left: 62.09%;
	top: 77.78%;
}

.p-products__illust-sp-num-item--hvac {
	left: 35.82%;
	top: 45.18%;
}

.p-products__illust-sp-num-item--bathroom-fittings {
	left: 50.75%;
	top: 58.88%;
}

.p-products__illust-sp-num-item--commercial-kitchen {
	left: 74.33%;
	top: 62.94%;
}

.p-products__illust-sp-num-item--water-heater-c {
	left: 58.51%;
	top: 55.33%;
}

.p-products__illust-sp-num-item--nursing-room {
	left: 88.06%;
	top: 81.73%;
}

.p-products__illust-sp-num-item--handwash {
	left: 58.81%;
	top: 79.7%;
}

.p-products__illust-sp-num-item--multipurpose-toilet {
	left: 69.55%;
	top: 78.17%;
}

.p-products__illust-sp-num-item--barrier-free {
	left: 5.37%;
	top: 83.76%;
}

.p-products__illust-sp-num-item--color-pavement {
	left: 61.18%;
	top: 68.86%;
}

.p-products__illust-sp-num-item--granite {
	left: 36.7%;
	top: 63.16%;
}

.p-products__illust-sp-num-item--braille-block {
	left: 41.48%;
	top: 75.88%;
}

.p-products__illust-sp-num-item--tile {
	left: 47.15%;
	top: 65.79%;
}

.p-products__illust-sp-links {
	display: block;
	margin-top: 1rem;
	padding: 1.0625rem 1.25rem;
	border: 1px solid #0e62aa;
	border-radius: 0.3125rem;
	background-color: #fff;
}

.p-products__illust-sp-link-list {
	display: flex;
	flex-direction: column;
	gap: 0.3125rem;
}

.p-products__illust-sp-link-list--residential,
.p-products__illust-sp-link-list--non-residential {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-auto-flow: column;
	gap: 0.3125rem 0.625rem;
}

.p-products__illust-sp-link-list--residential {
	grid-template-rows: repeat(11, auto);
}

.p-products__illust-sp-link-list--non-residential {
	grid-template-rows: repeat(4, auto);
}

.p-products__illust-sp-link {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 0.75rem;
	font-weight: 500;
	color: #151515;
	line-height: 1.5;
}

.p-recruit__container {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.p-recruit__media {
	height: auto;
	clip-path: polygon(0 0, 100% 0, 100% 73%, 0 100%);
	border-radius: 0.3125rem 0.3125rem 0 0;
}

.p-recruit__media img {
	height: auto;
	aspect-ratio: 335/302;
}

.p-recruit__body {
	gap: 2rem;
	padding: 2.125rem 1.5rem 2.25rem;
	translate: none;
	width: 100%;
}

.p-recruit__en {
	font-size: 4.5rem;
	line-height: 0.6666666667;
}

.p-recruit__ja {
	font-size: 1.25rem;
	margin-top: 0.375rem;
}

.p-recruit__content {
	gap: 2rem;
	width: 100%;
}

.p-recruit__lead {
	font-size: 1.25rem;
}

.p-recruit__mascot {
	left: auto;
	right: 1rem;
	top: 50%;
	translate: 0 calc(-50% - 4.3125rem);
	width: 5.5rem;
}

.p-service-item {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.p-service-item--reverse {
	display: flex;
}

.p-service-item__media {
	height: auto;
	clip-path: polygon(0 0, 100% 0, 100% 73%, 0 100%);
}

.p-service-item--reverse .p-service-item__media {
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 73%);
}

.p-service-item__media img {
	height: auto;
	aspect-ratio: 335/302;
}

.p-service-item__number {
	top: 1.25rem;
	left: 1.25rem;
	font-size: 4.5rem;
}

.p-service-item--reverse .p-service-item__number {
	right: 1.25rem;
}

.p-service-item__body {
	padding: 2.125rem 1.125rem 2.25rem;
	translate: none;
}

.p-service-item--reverse .p-service-item__body {
	margin-left: 0;
}

.p-service-item__title {
	font-size: 2rem;
	line-height: 1.3;
	white-space: normal;
}

.p-service-item__subtitle {
	font-size: 0.875rem;
	line-height: 1.8;
	margin-top: 0.375rem;
}

.p-service-item__subtitle::before {
	margin-right: 0.375rem;
	width: 1rem;
}

.p-service-item__lead {
	font-size: 1.125rem;
	margin-top: 1.25rem;
	white-space: normal;
}

.p-service-item__text {
	font-size: 0.875rem;
	margin-top: 1.125rem;
}

.p-service-item__more {
	margin-top: 1.5rem;
}

.p-service-item__more-link {
	font-size: 0.875rem;
	padding: 0.5rem 1.75rem;
	min-width: 11.875rem;
	min-height: 2.75rem;
}

.p-services-lead {
	padding-block: 3.75rem;
}

.p-services-lead__heading {
	font-size: 1.375rem;
	line-height: 1.5;
}

.p-services-lead__text {
	font-size: 1rem;
	line-height: 1.7;
	margin-top: 1.25rem;
}

.p-services__items {
	gap: 3rem;
}

.p-single__body {
	padding: 3.125rem 1rem;
}

.p-single__date {
	font-size: 0.875rem;
}

.p-single__term {
	font-size: 0.75rem;
	min-height: 1.625rem;
}

.p-single__title {
	margin-top: 0.9375rem;
	font-size: 1.375rem;
	line-height: 1.5;
}

.p-single__eyecatch {
	max-width: 100%;
	margin-top: 2.5rem;
}

.p-single__content {
	margin-top: 2.5rem;
}

.p-single__content h2 {
	font-size: 1.125rem;
	padding: 0.5rem 0.75rem;
}

.p-single__content h3 {
	font-size: 1rem;
}

.p-single__content p {
	font-size: 0.875rem;
}

.p-single__content li {
	font-size: 0.875rem;
}

.p-single__content figure.alignright {
	float: none;
	width: 100%;
	margin-left: 0;
}

.p-single__content .wp-block-button__link {
	font-size: 0.875rem;
	padding: 0.625rem 0.9375rem;
}

.p-single__content > * {
	margin-bottom: 1rem;
}

.p-sticky-buttons {
	top: auto;
	bottom: 0;
	z-index: 40;
	flex-direction: row;
	width: 100%;
	gap: 0;
	transform: translateY(100%);
}

.p-sticky-buttons.is-show {
	transform: translateY(0);
}

.p-sticky-buttons__item {
	display: flex;
	width: 50%;
}

.p-sticky-buttons__item--contact {
	padding-top: 0;
}

.p-sticky-buttons__mascot {
	position: static;
	transform: none;
	z-index: auto;
	flex-shrink: 0;
}

.p-sticky-buttons__mascot img {
	min-width: auto;
	width: 2.5rem;
}

.p-sticky-buttons__contact {
	flex: 1;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	width: 100%;
	padding: 0.875rem 0.5rem;
	border-radius: 0;
	border: 1px solid #0e62aa;
}

.p-sticky-buttons__recruit {
	flex: 1;
	flex-direction: row;
	justify-content: center;
	gap: 0.5rem;
	width: 100%;
	padding: 0.75rem 0.5rem;
	border-radius: 0;
	border: 1px solid #0e62aa;
}

.p-sticky-buttons__recruit-icon {
	width: 2rem;
	height: 2rem;
}

.p-sticky-buttons__recruit-en {
	margin-top: 0;
}

.p-strengths {
	padding-block: 3.75rem;
}

.p-strengths__grid {
	margin-top: 2.5rem;
}

.p-strengths__list {
	grid-template-columns: 1fr;
	gap: 1rem;
	padding-inline: 0;
}

.p-strengths__item {
	padding-inline: 1.25rem;
}

.p-strengths__body {
	padding-inline: 0;
}

.p-strengths__title {
	font-size: 1.0625rem;
}

.p-strengths__text {
	font-size: 0.875rem;
}

.p-strengths__mascot {
	left: -1rem;
	bottom: -5.625rem;
	width: 5rem;
}

.p-sub-fv__inner {
	align-items: flex-start;
}

.p-sub-fv__breadcrumb {
	flex: 0 0 3.4375rem;
	padding-top: 3.125rem;
}

.p-sub-fv__main img {
	aspect-ratio: 320/346;
}

.p-sub-fv__title {
	top: 1.5625rem;
	left: 1.375rem;
}

.p-sub-fv__title-en {
	font-size: 3.125rem;
}

.p-sub-fv__title-en.p-sub-fv__title-en--small {
	font-size: 2.375rem;
}

.p-sub-fv__title-ja {
	font-size: 0.875rem;
	margin-top: 0.1875rem;
}

.p-subpage {
	padding-top: 1.625rem;
}

.p-subpage::before {
	width: 84vw;
	max-width: 33.125rem;
	min-width: initial;
	aspect-ratio: 315/382;
}

.p-thanks {
	padding-block: 3.75rem 5rem;
}

.p-thanks__mascot {
	margin-top: 0rem;
}

.p-thanks__mascot img {
	width: 8.75rem;
}

.p-thanks__lead {
	font-size: 1.25rem;
}

.p-thanks__text {
	font-size: 0.875rem;
	margin-top: 0.75rem;
}

.p-thanks__btn {
	margin-top: 2rem;
}

.p-top-case {
	padding-top: 2.25rem;
}

.p-top-case--full-bg::before {
	top: 2.25rem;
}

.p-top-case--full-bg {
	padding-bottom: 4.375rem;
}

.p-top-case__inner {
	padding-bottom: 6.25rem;
}

.p-top-case__en {
	font-size: 3.4375rem;
	line-height: 0.8727272727;
	-webkit-text-stroke-width: 0.09375rem;
	margin-top: -1.25rem;
}

.p-top-case__ja {
	font-size: 1.125rem;
	gap: 0.25rem;
}

.p-top-case__ja::before {
	width: 0.75rem;
}

.p-top-case__grid {
	grid-template-columns: 1fr;
	gap: 3.125rem;
	margin-top: 1.5rem;
}

.p-top-case__btn {
	margin-top: 4.375rem;
}

.p-top-case__mascot {
	width: 6.875rem;
	right: 1.25rem;
	bottom: -3.75rem;
}

.p-top-company {
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
}

.p-top-company__grid {
	grid-template-columns: 1fr;
	margin-top: 1.875rem;
}

.p-top-company__footer {
	padding: 0 1.25rem;
	min-height: 4.375rem;
}

.p-top-company__footer::after {
	font-size: 1.25rem;
}

.p-top-company__label-ja {
	font-size: 1.125rem;
}

.p-top-company__label-en {
	font-size: 0.875rem;
}

.p-top-company__more-btn {
	margin-top: 1.5rem;
}

.p-top-links {
	padding-block: 3.125rem 2.5rem;
}

.p-top-links__list {
	flex-direction: column;
	gap: 1.875rem;
}

.p-top-links__header::after {
	font-size: 1.25rem;
}

.p-top-links__icon {
	width: 3.4375rem;
	height: 3.4375rem;
}

.p-top-links__icon img {
	width: 3.4375rem;
	height: 3.4375rem;
}

.p-top-links__en {
	font-size: 0.875rem;
}

.p-top-links__ja {
	font-size: 1.375rem;
	margin-top: -0.375rem;
}

.p-top-recruit {
	margin-top: 5rem;
}

.p-top-recruit__container {
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.p-top-recruit__media {
	height: auto;
	clip-path: polygon(0 0, 100% 0, 100% 73%, 0 100%);
}

.p-top-recruit__media img {
	height: auto;
	aspect-ratio: 335/302;
}

.p-top-recruit__body {
	gap: 2rem;
	padding: 2.125rem 1.5rem 2.25rem;
	width: 100%;
}

.p-top-recruit__lead {
	font-size: 1.125rem;
	line-height: 1.5;
}

.p-top-recruit__text {
	font-size: 0.9375rem;
}

.p-top-recruit__more {
	justify-content: center;
}

.p-top-services__list {
	padding-inline-start: 20px;
	padding-inline-end: 20px;
}

.p-top-services__link {
	padding-block: 1.75rem 1rem;
	padding-inline: 2.75rem;
	min-height: 22.5rem;
	width: 12.5rem;
}

.p-top-services__icon {
	max-width: 6.25rem;
}

.p-top-services__item-title {
	font-size: 1.25rem;
	margin-top: 1rem;
}

.p-top-services__more-btn {
	margin-top: 2.5rem;
}

.p-top-services__mascot {
	display: none;
}

.p-topics {
	padding-bottom: 3.75rem;
}

.p-topics__slider-wrap {
	margin-top: 1.875rem;
}

.p-topics__slide {
	width: 17.5rem;
	padding-bottom: 2.5rem;
}

.p-topics__link .c-card__more {
	width: 5rem;
	padding-top: 1.25rem;
}

.u-mtSp10 {
	margin-top: 10px !important;
	margin-top: prem(10) !important;
}

.u-mtSp20 {
	margin-top: 20px !important;
	margin-top: prem(20) !important;
}

.u-mtSp30 {
	margin-top: 30px !important;
	margin-top: prem(30) !important;
}

.u-mtSp40 {
	margin-top: 40px !important;
	margin-top: prem(40) !important;
}

.u-mtSp50 {
	margin-top: 50px !important;
	margin-top: prem(50) !important;
}

.u-mtSp60 {
	margin-top: 60px !important;
	margin-top: prem(60) !important;
}

.u-mtSp70 {
	margin-top: 70px !important;
	margin-top: prem(70) !important;
}

.u-mtSp80 {
	margin-top: 80px !important;
	margin-top: prem(80) !important;
}

.u-mtSp90 {
	margin-top: 90px !important;
	margin-top: prem(90) !important;
}

.u-mtSp100 {
	margin-top: 100px !important;
	margin-top: prem(100) !important;
}

.u-mtSp110 {
	margin-top: 110px !important;
	margin-top: prem(110) !important;
}

.u-mtSp120 {
	margin-top: 120px !important;
	margin-top: prem(120) !important;
}

.u-mtSp130 {
	margin-top: 130px !important;
	margin-top: prem(130) !important;
}

.u-mtSp140 {
	margin-top: 140px !important;
	margin-top: prem(140) !important;
}

.u-mtSp150 {
	margin-top: 150px !important;
	margin-top: prem(150) !important;
}

.u-mtSp160 {
	margin-top: 160px !important;
	margin-top: prem(160) !important;
}

.u-mtSp170 {
	margin-top: 170px !important;
	margin-top: prem(170) !important;
}

.u-mtSp180 {
	margin-top: 180px !important;
	margin-top: prem(180) !important;
}

.u-mtSp190 {
	margin-top: 190px !important;
	margin-top: prem(190) !important;
}

.u-mtSp200 {
	margin-top: 200px !important;
	margin-top: prem(200) !important;
}

.u-pc {
	display: none;
}

.u-sp {
	display: block;
}

}

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

.p-biz-overview {
	padding-top: 2.5rem;
	padding-bottom: 1.875rem;
	margin-bottom: 0;
}

}

@media screen and (max-width: 550px) {

.p-footer__nav {
	justify-content: flex-start;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}

@keyframes moreBtnArrowOut {

from {
	transform: translateX(0);
}

to {
	transform: translateX(100%);
}

}

@keyframes moreBtnArrowIn {

from {
	transform: translateX(-100%);
}

to {
	transform: translateX(0);
}

}

@keyframes p-between-marquee {

from {
	transform: translateX(0);
}

to {
	transform: translateX(var(--_marquee-shift, -50%));
}

}

@keyframes p-client-marquee-left {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-50%);
}

}

@keyframes p-client-marquee-right {

from {
	transform: translateX(-50%);
}

to {
	transform: translateX(0);
}

}

@keyframes p-company-between-slide {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-50%);
}

}

@keyframes fv-lead-slide-up {

to {
	transform: translateY(0);
}

}

@keyframes fv-curtain-left {

from {
	transform: translate(0, 0);
}

to {
	transform: translate(-10%, 100%);
}

}

@keyframes fv-curtain-right {

from {
	transform: translate(0, 0);
}

to {
	transform: translate(10%, -100%);
}

}

@keyframes fv-curtain-left-sp {

from {
	transform: translate(0, 0);
}

to {
	transform: translate(-17%, 100%);
}

}

@keyframes fv-curtain-right-sp {

from {
	transform: translate(0, 0);
}

to {
	transform: translate(17%, -100%);
}

}

@keyframes p-news-fade {

from {
	opacity: 0;
}

to {
	opacity: 1;
}

}

