body {
	color: #000;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: normal;
	letter-spacing: normal;
}

body.is-fixed {
	overflow: clip;
}

.body-container {
	overflow: hidden;
}

.inner {
	margin-inline: auto;
	max-width: 1200px;
	width: 95%;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

.text {
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 2;
}

:where(a,
button,
input,
select,
textarea,
summary,
[tabindex]):focus-visible {
	box-shadow: 0 0 0 5px #005FCC;
	outline: 3px solid #fff;
	outline-offset: 2px;
}

br.is-pc {
	display: block;
}

br.is-sp {
	display: none;
}

span.is-pc {
	display: inline;
}

span.is-sp {
	display: none;
}

.red {
	color: #FF0000;
}

.dot {
	-webkit-text-emphasis: dot;
	text-emphasis: dot;
}

.js-fadeUp {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s, transform 0.8s;
}

.js-fadeUp.is-inview {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.5s;
}

.btn {
	align-items: center;
	background: #FF0000;
	border-radius: 9999px;
	color: #fff;
	cursor: pointer;
	display: flex;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	height: 75px;
	justify-content: space-between;
	letter-spacing: 0.04em;
	line-height: 1.4444444444;
	padding: 0 29px;
	position: relative;
	transition: all 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 5;
}

.btn.js-fadeUp {
	transition: all 0.3s ease, opacity 0.8s, transform 0.8s;
}

.btn::after {
	background: #fff url(../img/common/arrow_right_red.png) no-repeat center center/12px 10px;
	border-radius: 50%;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 38px;
	margin-left: 16px;
	width: 38px;
}

.btn--white {
	background: transparent;
	border: 1px solid #fff;
	justify-content: space-between;
	padding: 0 20px 0 30px;
	width: 280px;
}

.btn--white::after {
	background-color: #FF0000;
	background-image: url(../img/common/arrow_right_white.png);
}

.sec-title--center {
	text-align: center;
}

.sec-title .title-en {
	color: #FF0000;
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1;
}

.sec-title .title-jp {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 46px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4347826087;
	margin-top: 11px;
}

.breadcrumb {
	border-top: 1px solid #d1d1d1;
	height: 124px;
	padding-top: 32px;
}

.breadcrumb-items {
	align-items: center;
	display: flex;
	gap: 44px;
}

.breadcrumb-items > span {
	position: relative;
}

.breadcrumb-items > span::after {
	background: #8E8E8E;
	content: "";
	height: 1px;
	position: absolute;
	right: -33px;
	top: 50%;
	translate: 0 -50%;
	width: 22px;
}

.breadcrumb-items > span:last-of-type::after {
	display: none;
}

.breadcrumb-items .home {
	color: #8E8E8E;
	font-family: "Jost", sans-serif;
	font-size: 16px;
	letter-spacing: 0.06em;
	position: static;
}

.breadcrumb-items .post {
	color: #8E8E8E;
}

.breadcrumb-items .post,
.breadcrumb-items .archive,
.breadcrumb-items .current-item {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 3;
	position: static;
}

.breadcrumb-items .current-item {
	color: #383838;
}

.loop-text {
	--loop-text-gap: 48px;
	--loop-text-gap-sp: 24px;
	--loop-text-duration: 40s;
	--loop-text-color: rgba(255, 0, 0, 0.03);
	--loop-text-font-family: Jost, sans-serif;
	--loop-text-font-size: 140px;
	--loop-text-font-size-sp: 10rem;
	--loop-text-font-weight: 600;
	overflow: hidden;
	width: 100%;
}

.loop-text-track {
	animation: loopTextMarquee var(--loop-text-duration) linear infinite;
	display: flex;
	width: -moz-max-content;
	width: max-content;
	will-change: transform;
}

.loop-text-set {
	display: flex;
	flex-shrink: 0;
	gap: var(--loop-text-gap);
	min-width: -moz-max-content;
	min-width: max-content;
	padding-right: var(--loop-text-gap);
}

.loop-text-item {
	color: var(--loop-text-color);
	font-family: var(--loop-text-font-family);
	font-size: var(--loop-text-font-size);
	font-weight: var(--loop-text-font-weight);
	letter-spacing: 0.06em;
	line-height: 0.8714285714;
	white-space: nowrap;
}

.message-modal {
	background: rgba(0, 0, 0, 0.8);
	display: flex;
	inset: 0;
	overflow-y: auto;
	padding: 70px 20px;
	position: fixed;
	z-index: 100;
}

.message-modal[hidden] {
	display: none;
}

.message-modal-content {
	background: #fff;
	margin: auto;
	padding: 10px;
	position: relative;
	width: min(100%, 1000px);
}

.message-modal-close {
	background: #FF0000;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	height: 40px;
	padding: 0;
	position: absolute;
	right: 0;
	top: -50px;
	width: 40px;
}

.message-modal-close::before,
.message-modal-close::after {
	background: #fff;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 20px;
}

.message-modal-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.message-modal-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.message-modal-video {
	aspect-ratio: 16/9;
	background: #000;
	display: block;
	max-height: calc(100vh - 140px);
	width: 100%;
}

body.is-modal-open {
	overflow: hidden;
}

.pageLow-head {
	background-image: url(../img/service/inbound/head_inbound.png);
	background-position: right -58px top -254px;
	background-repeat: no-repeat;
	background-size: 753px 753px;
	margin-inline: auto;
	max-width: 1440px;
	position: relative;
}

.pageLow-head > * {
	position: relative;
	z-index: 1;
}

.pageLow-head::before {
	background: url(../img/common/low_head_deco.svg) no-repeat center center/cover;
	content: "";
	height: 289px;
	left: 49%;
	position: absolute;
	top: 48px;
	translate: -50% 0;
	width: 1617px;
	z-index: -1;
}

.pageLow-title {
	height: 374px;
	padding-top: 140px;
}

.pageLow-title .title-en {
	color: #FF0000;
	font-family: "Jost", sans-serif;
	font-size: 110px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.4454545455;
}

.pageLow-title .title-jp {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4583333333;
}

.header {
	align-items: center;
	background: #fff;
	border-radius: 15px;
	box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.0509803922);
	display: flex;
	height: 71px;
	left: 50%;
	padding: 0 28px 0 15px;
	position: fixed;
	top: 20px;
	translate: -50% 0;
	width: calc(100% - 40px);
	z-index: 10;
}

.header-logo {
	height: 38px;
	width: 144px;
}

.header-logo-text {
	color: #333;
	font-size: 9px;
	font-weight: 500;
	line-height: 1.4444444444;
	margin-left: 15px;
	margin-right: auto;
}

.header-logo-link {
	transition: all 0.3s ease;
}

.header-nav {
	margin-left: auto;
}

.header-nav-items {
	display: flex;
	gap: 0 30px;
}

.header-nav-item-link {
	color: #000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.4285714286;
	transition: all 0.3s ease;
}

.header-sub-items {
	left: 50%;
	opacity: 0;
	position: absolute;
	top: 100%;
	transition: all 0.3s ease;
	translate: -50% 0;
	visibility: hidden;
	z-index: 1;
}

.header-nav-item:hover .header-sub-items {
	opacity: 1;
	visibility: visible;
}

.header-sub-item-link {
	font-size: 12px;
}

.header-btn {
	font-size: 12px;
	height: 36px;
	letter-spacing: 0.08em;
	line-height: 1.4166666667;
	margin-left: 30px;
	padding: 0 16px;
}

.header-btn::before {
	background: url(../img/common/icon_plane.svg) no-repeat center center/cover;
	content: "";
	display: block;
	height: 12px;
	margin-right: 2px;
	width: 15px;
}

.header-btn::after {
	display: none;
}

.drawer-icon {
	align-items: center;
	background: #FF0000;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	height: 43px;
	justify-content: center;
	margin-left: 20px;
	padding: 0;
	width: 43px;
}

.drawer-bars {
	height: 14px;
	position: relative;
	width: 17px;
}

.drawer-bar {
	background: #fff;
	border-radius: 10px;
	height: 2px;
	left: 0;
	position: absolute;
	transition: all 0.3s ease;
	width: 17px;
}

.drawer-bar.bar01 {
	top: 0;
}

.drawer-bar.bar02 {
	top: 50%;
	transform: translateY(-50%);
}

.drawer-bar.bar03 {
	bottom: 0;
	top: initial;
}

.drawer-bar.is-active.bar01 {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.drawer-bar.is-active.bar02 {
	opacity: 0;
	visibility: hidden;
}

.drawer-bar.is-active.bar03 {
	bottom: initial;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

.drawer {
	background: #fff;
	border-radius: 0 0 0 20px;
	height: 95%;
	max-height: 734px;
	opacity: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
	padding: 75px 40px 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: all 0.3s ease;
	visibility: hidden;
	width: 84.7222222222%;
	z-index: 8;
}

.drawer.is-active {
	opacity: 1;
	visibility: visible;
}

.drawer-header {
	display: none;
}

.drawer-header-logo-text {
	display: none;
}

.drawer-content {
	align-items: center;
	display: flex;
	justify-content: center;
	min-height: 100%;
	padding: 40px 0;
}

.drawer-container {
	display: grid;
	gap: 0 30px;
	grid-template-columns: 434px 1fr;
	max-width: 894px;
	width: 100%;
}

.drawer-img {
	border-radius: 10px;
	height: 423px;
	margin-left: auto;
	max-width: 310px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.drawer-img img {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.drawer-items {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 28px 40px;
	height: 226px;
}

.drawer-item {
	border-bottom: 1px solid #f2f2f2;
	width: calc((100% - 40px) / 2);
}

.drawer-item-link {
	color: #000;
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.5;
	padding-bottom: 10px;
	transition: all 0.3s ease;
}

.drawer-mid {
	border-bottom: 1px solid #000;
	display: flex;
	flex-wrap: wrap;
	gap: 21px;
	margin-top: 50px;
	padding-bottom: 40px;
}

.drawer-btn-items {
	display: flex;
	gap: 10px;
}

.drawer-btn {
	border: 1px solid #FF0000;
	height: 36px;
	width: 160px;
}

.drawer-btn::after {
	display: none;
}

.drawer-btn--mail {
	font-size: 12px;
}

.drawer-btn--mail::before {
	background: url(../img/common/icon_plane.svg) no-repeat center center/cover;
	content: "";
	display: block;
	height: 12px;
	margin-right: 2px;
	width: 15px;
}

.drawer-btn--tel {
	color: #FF0000;
	font-family: "Jost", sans-serif;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.07em;
	padding: 0 20px;
}

.drawer-btn--tel::before {
	background: url(../img/common/icon_tel_red.svg) no-repeat center center/cover;
	content: "";
	display: block;
	height: 14px;
	margin-right: 2px;
	width: 11px;
}

.drawer-sns-items {
	display: flex;
	gap: 10px;
}

.drawer-sns-item {
	height: 3.9rem;
	transition: all 0.3s ease;
	width: 3.9rem;
}

.drawer-bottom {
	padding-top: 50px;
}

.drawer-link-items {
	display: flex;
	gap: 63px;
}

.drawer-link-item a {
	color: #000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 15px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.4;
	transition: all 0.3s ease;
}

.drawer-close {
	display: none;
}

.faq {
	padding: 65px 0 0;
	position: relative;
}

.faq-inner {
	max-width: 1360px;
	width: 95%;
}

.faq-content {
	background: #F7F7F7;
	border-radius: 40px;
	display: grid;
	gap: 30px;
	grid-template-columns: 200px 1fr;
	padding: 80px;
	position: relative;
}

.faq-content::after {
	background: url(../img/recruit/faq_deco.svg) no-repeat center center/cover;
	bottom: -25px;
	content: "";
	height: 299px;
	left: 13px;
	position: absolute;
	width: 200px;
}

.faq-title {
	padding-top: 5px;
}

.faq-items {
	display: grid;
	gap: 15px 0;
	grid-template-columns: 1fr;
	margin-left: auto;
	max-width: 895px;
	width: 100%;
}

.faq-item-question {
	align-items: center;
	background: #E3E3E3;
	border-radius: 10px;
	cursor: pointer;
	display: grid;
	gap: 0 40px;
	grid-template-columns: 1fr 25px;
	min-height: 107px;
	padding: 10px 47px 10px 47px;
}

.faq-item-question::-webkit-details-marker {
	display: none;
}

.faq-item-title,
.faq-item-answer-container {
	letter-spacing: 0.08em;
	padding-left: 44px;
	position: relative;
}

.faq-item-title::before,
.faq-item-answer-container::before {
	color: #FF0000;
	font-family: "Jost", sans-serif;
	font-size: 26px;
	font-style: italic;
	font-weight: 500;
	left: 0;
	position: absolute;
}

.faq-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.625;
}

.faq-item-title::before {
	content: "Q.";
	top: -8px;
}

.faq-item-answer {
	background: #fff;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	padding: 0 25px 0 47px;
}

.faq-item-answer-container {
	border-top: 1px solid #EAEAEA;
	font-size: 16px;
	line-height: 1.875;
	min-height: 163px;
	padding: 29px 18px 28px 44px;
}

.faq-item-answer-container::before {
	content: "A.";
	top: 20px;
}

.faq-item-answer-container::after {
	background: #FF0000;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: -1px;
	width: 24px;
}

.faq-item-btn {
	background: #FF0000;
	border-radius: 50%;
	border-radius: 50%;
	height: 25px;
	overflow: hidden;
	position: relative;
	width: 25px;
}

.faq-item-btn .btn-bar {
	background: #fff;
	height: 1px;
	left: 50%;
	position: absolute;
	top: 50%;
	transition: all 0.3s ease;
	translate: -50% -50%;
	width: 10px;
}

.faq-item-btn .btn-bar.bar01 {
	rotate: 90deg;
}

details[open] .faq-item-question {
	background: #fff;
	border-radius: 10px 10px 0 0;
}

details[open] .faq-item-btn .btn-bar.bar01 {
	rotate: 180deg;
}

.serviceCategory-inner {
	max-width: 1360px;
	width: 95%;
}

.serviceCategory-head {
	background: #f7f7f7;
	border-radius: 40px;
	padding: 83px 80px 100px;
	position: relative;
}

.serviceCategory-head::before {
	background: url(../img/service/inbound/inbound_deco.svg) no-repeat center center/cover;
	content: "";
	height: 279px;
	position: absolute;
	right: -32px;
	top: -62px;
	width: 213px;
}

.serviceCategory-head-items {
	border-radius: 30px;
	counter-reset: service-category-item;
	display: grid;
	grid-template-columns: 1fr 1fr;
	margin-top: 50px;
	overflow: hidden;
}

.serviceCategory-head-item {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	counter-increment: service-category-item;
	display: flex;
	flex-direction: column;
	gap: 22px;
	justify-content: center;
	min-height: 290px;
	padding: 20px 40px 20px 60px;
	position: relative;
}

.serviceCategory-head-item > * {
	position: relative;
	z-index: 1;
}

.serviceCategory-head-item::before {
	background: rgba(0, 0, 0, 0.3);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.serviceCategory-head-item-title,
.serviceCategory-head-item-text {
	color: #fff;
}

.serviceCategory-head-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.2058823529;
	margin-top: 14px;
	padding-left: 88px;
	position: relative;
}

.serviceCategory-head-item-title::before {
	color: #FF0000;
	content: counter(service-category-item, decimal-leading-zero);
	font-family: "Jost", sans-serif;
	font-size: 43px;
	font-style: italic;
	font-weight: 500;
	left: 0;
	letter-spacing: 0.04em;
	line-height: 1.511627907;
	position: absolute;
	top: -9px;
}

.serviceCategory-head-item-title::after {
	background: #FF0000;
	content: "";
	height: 33px;
	left: 67px;
	position: absolute;
	top: 7px;
	width: 1px;
}

.serviceCategory-head-btn {
	margin: 62px auto 0;
	width: 396px;
}

.serviceCategory--inbound .serviceCategory-head-item:nth-of-type(1) {
	background-image: url(../img/service/inbound/inbound_01_pc.png);
}

.serviceCategory--inbound .serviceCategory-head-item:nth-of-type(2) {
	background-image: url(../img/service/inbound/inbound_02_pc.png);
}

.serviceCategory--inbound .serviceCategory-head-item:nth-of-type(3) {
	background-image: url(../img/service/inbound/inbound_03_pc.png);
}

.serviceCategory--inbound .serviceCategory-head-item:nth-of-type(4) {
	background-image: url(../img/service/inbound/inbound_04_pc.png);
}

.serviceCategory--outbound .serviceCategory-head-item:nth-of-type(1) {
	background-image: url(../img/service/outbound/outbound_01_pc.png);
}

.serviceCategory--outbound .serviceCategory-head-item:nth-of-type(2) {
	background-image: url(../img/service/outbound/outbound_02_pc.png);
}

.recruit {
	position: relative;
}

.recruit-inner {
	max-width: 1360px;
	position: relative;
	width: 95%;
}

.recruit-inner > :not(.recruit-img) {
	position: relative;
	z-index: 1;
}

.recruit-content {
	background: #383838;
	border-radius: 40px;
	padding: 86px 0 78px;
}

.recruit-content::before {
	background: url(../img/top/recruit_deco.svg) no-repeat center center/cover;
	content: "";
	height: 164px;
	position: absolute;
	right: 25px;
	top: -63px;
	width: 118px;
}

.recruit-title .title-jp {
	color: #fff;
}

.recruit-lead {
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 40px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.5;
	margin: 60px auto 0;
	max-width: 780px;
	text-align: center;
}

.recruit-text {
	color: #fff;
	margin: 54px auto 0;
	max-width: 620px;
	position: relative;
	text-align: center;
	z-index: 2;
}

.recruit-btn {
	margin: 57px auto 0;
	padding-right: 21px;
	width: 280px;
}

.recruit-img {
	pointer-events: none;
	position: absolute;
	z-index: 1;
}

.recruit-img.img01 {
	height: min(327px, 32.7rem);
	left: 17px;
	top: 36px;
	width: min(330px, 33rem);
}

.recruit-img.img02 {
	height: min(313px, 31.3rem);
	right: -85px;
	top: 198px;
	width: min(420px, 42rem);
}

.recruit-img.img03 {
	bottom: 110px;
	height: min(271px, 27.1rem);
	left: -71px;
	width: min(399px, 39.9rem);
}

.recruit-img.img04 {
	bottom: 31px;
	height: min(219px, 21.9rem);
	right: 43px;
	width: min(331px, 33.1rem);
}

.recruit-img.img05 {
	display: none;
}

.instagram {
	margin-top: 80px;
}

.instagram-inner {
	max-width: 1000px;
}

.instagram-banner {
	background: transparent linear-gradient(100deg, #CD00BD 0%, #FF005D 50%, #FF6F00 100%) 0% 0% no-repeat padding-box;
	display: grid;
	grid-template-columns: 47.2% 52.8%;
	height: 176px;
	transition: all 0.3s ease;
}

.instagram-info {
	display: flex;
	flex-direction: column;
	gap: 11px;
	justify-content: center;
	padding: 0 50px;
}

.instagram-title {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Jost", sans-serif;
	font-size: 34px;
	font-weight: 600;
	gap: 26px;
	letter-spacing: 0.2em;
	line-height: 1.4411764706;
}

.instagram-title::before {
	background: url(../img/common/icon_instagram.svg) no-repeat center center/cover;
	content: "";
	display: block;
	height: 48px;
	width: 48px;
}

.instagram-text {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Jost", sans-serif;
	font-size: 18px;
	font-weight: 600;
	justify-content: space-between;
	line-height: 1.4444444444;
}

.instagram-text::after {
	background: #fff url(../img/common/arrow_right_red.png) no-repeat center center/12px 10px;
	border-radius: 50%;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 38px;
	margin-left: 16px;
	width: 38px;
}

.instagram-img {
	height: 176px;
	position: relative;
}

.instagram-img img {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.link {
	margin-top: 110px;
}

.link-inner {
	position: relative;
}

.link-inner::before,
.link-inner::after {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
	z-index: 2;
}

.link-inner::before {
	background-image: url(../img/common/link_deco_01.svg);
	height: 154px;
	left: -111px;
	top: -106px;
	width: 168px;
}

.link-inner::after {
	background-image: url(../img/common/link_deco_02.svg);
	bottom: -70px;
	height: 243px;
	right: -73px;
	width: 162px;
}

.link-items {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
}

.link-item {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	border-radius: 15px;
	display: grid;
	height: 372px;
	overflow: hidden;
	place-content: center;
	position: relative;
	transition: all 0.3s ease;
}

.link-item > * {
	position: relative;
	z-index: 5;
}

.link-item::before {
	background: rgba(0, 0, 0, 0.2);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.link-item--voice {
	background-image: url(../img/common/link_voice_pc.png);
}

.link-item--outline {
	background-image: url(../img/common/link_outline_pc.png);
}

.link-item-title {
	text-align: center;
}

.link-item-title .title-en {
	color: #FF0000;
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1.45;
}

.link-item-title .title-jp {
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 46px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4347826087;
}

.link-item-title::after {
	background: #FF0000 url(../img/common/arrow_right_white.png) no-repeat center center/18px 16px;
	border-radius: 50%;
	content: "";
	display: block;
	flex-shrink: 0;
	font-size: 0;
	height: 58px;
	margin: 41px auto 0;
	width: 58px;
}

.cta {
	background: #383838;
	border-radius: 40px 40px 0 0;
	margin-top: 120px;
	padding: 100px 0;
}

.cta-content {
	display: grid;
	gap: 20px;
	grid-template-columns: 350px 1fr;
}

.cta-title .title-en {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.45;
}

.cta-title .title-jp {
	color: #fff;
	font-size: 32px;
	line-height: 1.4375;
	margin-top: 1px;
}

.cta-text {
	color: #fff;
	line-height: 1.875;
	margin-top: 25px;
}

.cta-items {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
	margin-left: auto;
	max-width: 740px;
	width: 100%;
}

.cta-item {
	align-items: center;
	border: 2px solid #fff;
	border-radius: 15px;
	display: grid;
	grid-template-columns: 45.6% 54.4%;
	min-height: 136px;
	padding: 28px 46px 26px;
}

.cta-item dt {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	gap: 16px;
	letter-spacing: 0.13em;
	line-height: 1.5;
}

.cta-item dt::before {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
}

.cta-item dd {
	padding-left: 42px;
	position: relative;
}

.cta-item dd::before {
	background: #fff;
	content: "";
	height: 75px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 2px;
}

.cta-item--mail dt::before {
	background-image: url(../img/common/icon_plane.svg);
	height: 16px;
	width: 20px;
}

.cta-item--tel dt::before {
	background-image: url(../img/common/icon_tel.svg);
	height: 22px;
	width: 17px;
}

.cta-tel {
	color: #fff;
	font-family: "Jost", sans-serif;
	font-size: 34px;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.5588235294;
	transition: all 0.3s ease;
}

.cta-attention {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.13em;
	line-height: 2.1666666667;
}

.cta-btn {
	max-width: 310px;
	width: 100%;
}

.footer {
	padding: 80px 0 40px;
}

.footer-content {
	display: grid;
	grid-template-columns: 310px 1fr;
	padding-bottom: 64px;
}

.footer-logo {
	grid-column: 1/2;
	grid-row: 1/2;
	height: 53px;
	transition: all 0.3s ease;
	width: 201px;
}

.footer-nav {
	align-items: flex-start;
	display: flex;
	grid-column: 2/3;
	grid-row: 1/2;
	justify-content: space-between;
	margin-left: auto;
	max-width: 669px;
	width: 100%;
}

.footer-nav-items {
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

.footer-nav-item {
	height: -moz-fit-content;
	height: fit-content;
}

.footer-nav-item a {
	color: #000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.08em;
	transition: all 0.3s ease;
}

.footer-logo-items {
	display: flex;
	gap: 10px;
	grid-column: 1/2;
	grid-row: 2/3;
	margin-top: -12px;
}

.footer-logo-item:nth-of-type(1) {
	height: 66px;
	width: 66px;
}

.footer-logo-item:nth-of-type(2) {
	height: 72px;
	width: 55px;
}

.footer-logo-item:nth-of-type(3) {
	height: 65px;
	width: 57px;
}

.footer-logo-item:nth-of-type(4) {
	height: 72px;
	width: 83px;
}

.footer-sns-items {
	display: flex;
	gap: 10px;
	grid-column: 2/3;
	grid-row: 2/3;
	margin-left: auto;
	margin-top: 23px;
}

.footer-sns-item {
	border-radius: 50%;
	height: 36px;
	overflow: hidden;
	width: 36px;
}

.footer-sns-item-link {
	transition: all 0.3s ease;
}

.footer-bottom {
	border-top: 1px solid #333;
	display: flex;
	justify-content: space-between;
	padding-top: 63px;
}

.footer-link-items {
	display: flex;
	gap: 40px;
}

.footer-link-item a {
	color: #000;
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.08em;
	transition: all 0.3s ease;
}

.footer-copyright {
	font-size: 12px;
	font-weight: bold;
	letter-spacing: 0.08em;
	margin-top: 4px;
}

.pageInstall .pageLow-head {
	background-image: url(../img/install/head_case.png);
}

.pageInstall .case-intro-inner {
	max-width: 1360px;
	width: 95%;
}

.pageInstall .case-intro li {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: bold;
}

.pageInstall .case-intro-list {
	background: #f2f2f2;
	border-radius: 40px;
	display: grid;
	gap: 57px;
	grid-template-columns: 1fr;
	padding: 78px 80px;
	position: relative;
}

.pageInstall .case-intro-list::after {
	background: url(../img/install/list_deco.svg) no-repeat center center/cover;
	bottom: -107px;
	content: "";
	height: 130px;
	position: absolute;
	right: -14px;
	width: 70px;
}

.pageInstall .case-intro-list-item {
	font-size: 22px;
	letter-spacing: 0.08em;
	line-height: 1.7272727273;
}

.pageInstall .case-intro-list-item span {
	padding-left: 18px;
	position: relative;
}

.pageInstall .case-intro-list-item span::before {
	background: #FF0000;
	content: "";
	height: 24px;
	left: 0;
	position: absolute;
	top: 5px;
	width: 2px;
}

.pageInstall .case-intro-sub-list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(8, 1fr);
	margin-top: 27px;
}

.pageInstall .case-intro-sub-list-item {
	background: #fff;
	border-radius: 6px;
	display: grid;
	font-size: 18px;
	grid-column: span 2;
	letter-spacing: 0.1em;
	line-height: 1.5555555556;
	min-height: 90px;
	padding: 17px 10px;
	place-content: center;
	text-align: center;
}

.pageInstall .case-intro-sub-list-item--large {
	grid-column: span 4;
}

.pageInstall .case-company {
	margin-top: 100px;
	padding-bottom: 118px;
}

.pageInstall .case-company#voice {
	scroll-margin-top: 115px;
}

.pageInstall .case-company-list {
	display: grid;
	gap: 60px 30px;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	justify-content: center;
	position: relative;
}

.pageInstall .case-company-list::after {
	background: url(../img/install/case_deco.svg) no-repeat center center/cover;
	bottom: -132px;
	content: "";
	height: 279px;
	position: absolute;
	right: 0;
	width: 213px;
}

.pageInstall .case-company-list-item {
	border-radius: 15px;
	box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1019607843);
	display: grid;
	gap: 0;
	grid-row: span 3;
	grid-template-rows: subgrid;
	overflow: hidden;
}

.pageInstall .case-company-img figure {
	display: block;
	position: relative;
}

.pageInstall .case-company-img figcaption {
	align-items: center;
	background: #fff;
	border-radius: 6px;
	bottom: 20px;
	color: #FF0000;
	display: flex;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	font-weight: bold;
	left: 50%;
	letter-spacing: 0.1em;
	line-height: 1.3;
	max-width: 340px;
	min-height: 58px;
	padding: 14px 14px 14px 36px;
	position: absolute;
	translate: -50% 0;
	width: 90%;
}

.pageInstall .case-company-img figcaption::before {
	border: 3px solid #FF0000;
	border-radius: 50%;
	content: "";
	height: 7px;
	left: 14px;
	position: absolute;
	top: 22px;
	width: 7px;
}

.pageInstall .case-company-body {
	padding: 29px 30px 28px 30px;
}

.pageInstall .case-company-body-title {
	align-items: center;
	display: flex;
	gap: 21px;
}

.pageInstall .case-company-body-title .title-en {
	font-family: "Jost", sans-serif;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-top: 3px;
}

.pageInstall .case-company-body-title .title-jp {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 1.7272727273;
	position: relative;
}

.pageInstall .case-company-body-title .title-jp::before {
	background: #FF0000;
	content: "";
	height: 30px;
	left: -13px;
	position: absolute;
	top: 55%;
	translate: 0 -50%;
	width: 1px;
}

.pageInstall .case-company-body-text {
	margin-top: 2px;
}

.pageInstall .case-company-worries {
	background: #fff;
}

.pageInstall .case-company-worries-title .title-en::first-letter {
	color: #FF0000;
}

.pageInstall .case-company-commit {
	background: #FF0000;
	position: relative;
}

.pageInstall .case-company-commit::before {
	background: #fff;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	content: "";
	height: 15px;
	left: 50%;
	position: absolute;
	top: -2px;
	translate: -50% 0;
	width: 32px;
}

.pageInstall .case-company-commit-title {
	color: #fff;
	gap: 28px;
}

.pageInstall .case-company-commit-title .title-en::first-letter {
	color: #383838;
}

.pageInstall .case-company-commit-title .title-jp::before {
	background: #fff;
}

.pageInstall .case-company-commit-text {
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 1.6666666667;
	margin-top: 5px;
}

.pageInstall .case-btn-items {
	display: grid;
	gap: 20px 60px;
	grid-template-columns: 1fr 1fr;
	justify-content: center;
	margin: 78px auto 0;
	max-width: 853px;
}

.pageInstall .case-btn {
	max-width: 396px;
	width: 100%;
}

.pageForm .contact {
	margin-bottom: 91px;
	margin-top: 54px;
}

.pageForm .contact-inner {
	max-width: 1000px;
	position: relative;
}

.pageForm .contact-inner::before {
	background: url(../img/contact/contact_deco.svg) no-repeat center center/cover;
	content: "";
	height: 203px;
	left: -220px;
	position: absolute;
	top: 0;
	width: 174px;
}

.pageForm .contact-text {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 2.2857142857;
	text-align: center;
}

.pageForm .contact-text a {
	color: #FF0000;
	text-decoration: underline;
	transition: all 0.3s ease;
}

.pageForm .contact-form {
	background: #fff;
	border: 1px solid #bcbcbc;
	border-radius: 14px;
	margin-top: 41px;
	padding: 59px 50px 74px;
}

.pageForm .contact-form .contact-form-container {
	border-top: 1px solid #bcbcbc;
	margin-top: 19px;
	padding-top: 29px;
}

.pageForm .contact-form .contact-form-title {
	color: #000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	padding-left: 13px;
	position: relative;
}

.pageForm .contact-form .contact-form-title::before {
	background: #FF0000;
	content: "";
	height: 26px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 3px;
}

.pageForm .contact-form .form-group {
	align-items: center;
	display: grid;
	gap: 0 45px;
	grid-template-columns: 175px 1fr;
	margin-bottom: 24px;
}

.pageForm .contact-form .form-group:last-of-type {
	margin-bottom: 0;
}

.pageForm .contact-form .form-group.text-multi,
.pageForm .contact-form .form-group.radio {
	align-items: start;
}

.pageForm .contact-form .form-group.text-multi {
	border-top: 1px solid #bcbcbc;
	padding-top: 24px;
}

.pageForm .contact-form .form-label {
	align-items: center;
	display: flex;
	font-size: 16px;
	font-weight: bold;
	justify-content: space-between;
	letter-spacing: 0.08em;
	line-height: 1.625;
	padding-right: 48px;
}

.pageForm .contact-form .form-label.required {
	position: relative;
}

.pageForm .contact-form .form-label.required::after {
	background: #FF0000;
	color: #fff;
	content: "必須";
	display: grid;
	font-size: 14px;
	font-weight: bold;
	height: 22px;
	letter-spacing: 0.08em;
	place-content: center;
	position: absolute;
	right: 0;
	top: 3px;
	width: 42px;
}

.pageForm .contact-form .form-value {
	font-size: 16px;
	letter-spacing: 0.08em;
	word-break: break-all;
}

.pageForm .contact-form .zip-fields {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
}

.pageForm .contact-form .zip-fields .wpcf7-form-control-wrap {
	flex: 0 0 109px;
}

.pageForm .contact-form .zip-fields .wpcf7-form-control-wrap:last-of-type {
	flex-basis: 131px;
}

.pageForm .contact-form .zip-fields input {
	text-align: center;
}

.pageForm .contact-form .zip-fields > .wpcf7-not-valid-tip {
	flex: 0 0 100%;
	margin-top: 4px;
}

.pageForm .contact-form .zip-separator {
	flex: 0 0 auto;
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.08em;
}

.pageForm .contact-form fieldset {
	border: none;
	display: block;
	height: 100%;
	margin: initial;
	padding: initial;
}

.pageForm .contact-form fieldset .wpcf7-form-control-wrap {
	align-items: center;
	display: flex;
	height: 100%;
}

.pageForm .contact-form .sr-only {
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	clip: rect(0, 0, 0, 0);
	border: 0;
	white-space: nowrap;
}

.pageForm .contact-form input,
.pageForm .contact-form select,
.pageForm .contact-form textarea {
	background: #f5f5f5;
	border: none !important;
	border-radius: 0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 2;
	padding: 0 20px;
	width: 100%;
}

.pageForm .contact-form input::-moz-placeholder,
.pageForm .contact-form select::-moz-placeholder,
.pageForm .contact-form textarea::-moz-placeholder {
	color: #b4b4b4;
	font-family: inherit;
	font-size: inherit;
}

.pageForm .contact-form input::placeholder,
.pageForm .contact-form select::placeholder,
.pageForm .contact-form textarea::placeholder {
	color: #b4b4b4;
	font-family: inherit;
	font-size: inherit;
}

.pageForm .contact-form input:not([type=radio]) {
	height: 60px;
}

.pageForm .contact-form textarea {
	height: 178px;
	padding: 15px 20px;
}

.pageForm .contact-form input[type=radio] {
	margin: 0;
	opacity: 0;
	position: absolute;
	width: -moz-fit-content;
	width: fit-content;
}

.pageForm .contact-form input[type=radio]:focus-visible + span::before {
	outline: auto 1px;
}

.pageForm .contact-form input[type=radio] + span {
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.625;
	margin-left: 25px;
	position: relative;
}

.pageForm .contact-form input[type=radio] + span::before {
	background: #fff;
	border: 1px solid #000;
	border-radius: 50%;
	content: "";
	display: block;
	height: 18px;
	left: -25px;
	position: absolute;
	top: 51%;
	transform: translateY(-50%);
	width: 18px;
}

.pageForm .contact-form input[type=radio] + span::after {
	background: #000;
	border-radius: 50%;
	content: "";
	height: 10px;
	left: -20px;
	opacity: 0;
	position: absolute;
	top: 51%;
	transform: translateY(-50%);
	width: 10px;
}

.pageForm .contact-form input[type=radio]:checked + span::after {
	opacity: 1;
}

.pageForm .contact-form .contact-btn {
	background: #FF0000;
	border-radius: 38px;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	height: 75px;
	letter-spacing: 0.08em;
	margin: 40px auto 0;
	padding: 0;
	position: relative;
	transition: all 0.3s ease;
	width: 280px;
}

.pageForm .contact-form .contact-btn::after {
	background: #fff url(../img/common/arrow_right_red.png) no-repeat center center/12px 10px;
	border-radius: 50%;
	content: "";
	display: block;
	flex-shrink: 0;
	height: 38px;
	position: absolute;
	right: 20px;
	width: 38px;
}

.pageForm .contact-form .contact-btn input {
	background: transparent;
	background: transparent !important;
	border-radius: inherit;
	color: #fff !important;
	cursor: pointer;
	font-size: 18px !important;
	font-weight: bold !important;
	height: inherit !important;
	letter-spacing: 0.04em;
	padding: 0 20px 0 30px;
	text-align: left;
	width: inherit !important;
}

.pageForm .contact-form button {
	background: transparent;
	border-radius: inherit;
	color: #fff;
	cursor: pointer;
	height: inherit;
	width: inherit;
}

.pageForm .contact-form .wpcf7-list-item {
	margin: initial;
}

.pageForm .contact-form .wpcf7-list-item label {
	align-items: center;
	display: flex;
}

.pageForm .contact-form .wpcf7-radio {
	display: grid;
	gap: 9px;
	grid-template-columns: 1fr;
}

.pageForm .contact-form .wpcf7-not-valid-tip {
	font-size: 16px;
	letter-spacing: 0.08em;
}

.pageForm .contact-form .wpcf7-spinner {
	bottom: -34px;
	left: 50%;
	margin: 0;
	position: absolute;
	transform: translateX(-50%);
}

.pageForm .contact-form .wpcf7 form .wpcf7-response-output {
	display: none !important;
}

.pageForm .privacy-check {
	margin: 46px 0 0 0;
	text-align: center;
}

.pageForm .privacy-check label {
	align-items: center;
	display: flex;
	gap: 10px;
}

.pageForm .privacy-check label input[type=checkbox] {
	border-radius: 3px;
	height: 16px;
	margin: 0;
	width: 16px;
}

.pageForm .privacy-check label .wpcf7-list-item-label {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.06em;
}

.pageForm .contact-form-txt {
	font-size: 16px;
	letter-spacing: 0.08em;
	margin-top: 20px;
	text-align: center;
}

.pageForm .wpcf7 form [data-step] {
	position: relative;
}

.pageForm .wpcf7 form [data-step=confirm] {
	display: none !important;
	opacity: 0;
	transition: opacity 0.25s ease;
}

.pageForm .wpcf7 form[data-state=input] [data-step=input] {
	display: block !important;
}

.pageForm .wpcf7 form[data-state=input] [data-step=confirm] {
	display: none !important;
	pointer-events: none !important;
}

.pageForm .wpcf7 form[data-state=confirm] [data-step=confirm] {
	display: block !important;
	opacity: 1;
	z-index: 2;
}

.pageForm .wpcf7 form[data-state=confirm] [data-step=input] {
	display: none !important;
	pointer-events: none !important;
	z-index: -1;
}

.pageForm .wpcf7 form[data-state=confirm] .form-steps.is-hidden[data-step=confirm] {
	display: block !important;
	opacity: 1 !important;
}

.pageForm .wpcf7 form [data-step=confirm] .preline {
	white-space: pre-line;
}

.pageContact .pageLow-head {
	background-image: url(../img/contact/head_contact.png);
}

.pageEntry .pageLow-head {
	background-image: url(../img/entry/head_entry.png);
}

.pageCompany .pageLow-head {
	background-image: url(../img/company/head_company.png);
}

.pageCompany .company-content {
	display: grid;
	gap: 30px;
	grid-template-columns: 200px 1fr;
	position: relative;
}

.pageCompany .company-content::before,
.pageCompany .company-content::after {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
}

.pageCompany .company-content::before {
	background-image: url(../img/company/company_deco_01.svg);
	height: 203px;
	left: -90px;
	top: 189px;
	width: 174px;
}

.pageCompany .company-content::after {
	background-image: url(../img/company/company_deco_02.svg);
	bottom: 25px;
	height: 279px;
	right: -113px;
	width: 213px;
}

.pageCompany .company-title {
	margin-top: 5px;
}

.pageCompany .company-items {
	margin-left: auto;
	max-width: 894px;
	width: 100%;
}

.pageCompany .company-item {
	border-top: 1px solid #eaeaea;
	display: grid;
	gap: 20px;
	grid-template-columns: 150px 1fr;
	position: relative;
}

.pageCompany .company-item::before {
	background: #FF0000;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: -1px;
	width: 24px;
}

.pageCompany .company-item dt,
.pageCompany .company-item dd {
	min-height: 91px;
	padding: 30px 0;
}

.pageCompany .company-item dt {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6666666667;
}

.pageCompany .company-item dd {
	font-size: 16px;
	line-height: 1.875;
	margin-left: auto;
	max-width: 660px;
	width: 100%;
}

.pageCompany .company-item-list {
	display: grid;
	grid-template-columns: 1fr;
}

.pageCompany .company-item-list li {
	padding-left: 1em;
	position: relative;
}

.pageCompany .company-item-list li::before {
	background: #000;
	border-radius: 50%;
	content: "";
	height: 3px;
	left: 5px;
	position: absolute;
	top: 15px;
	width: 3px;
}

.pageCompany .company-item-list--address {
	gap: 17px;
	padding: 6px 0;
}

.pageCompany .company-item-list--address li {
	padding-left: 20px;
}

.pageCompany .company-item-list--address li::before {
	background: transparent;
	border: 3px solid #FF0000;
	height: 5px;
	left: 0;
	top: 8px;
	width: 5px;
}

.pageCompany .company-item-list--address li .name {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.3333333333;
	margin-bottom: 1px;
}

.pageCompany .company-loop-text {
	margin-top: 68px;
}

.pageCompany .story {
	padding-top: 100px;
}

.pageCompany .story-content {
	display: grid;
	gap: 30px;
	grid-template-columns: 200px 1fr;
}

.pageCompany .story-title {
	margin-top: 5px;
}

.pageCompany .story-items {
	margin-left: auto;
	max-width: 894px;
	width: 100%;
}

.pageCompany .story-item {
	border-top: 1px solid #eaeaea;
	display: grid;
	gap: 0 20px;
	grid-template-columns: 125px 1fr;
	position: relative;
}

.pageCompany .story-item::before {
	background: #FF0000;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: -1px;
	width: 24px;
}

.pageCompany .story-item dt,
.pageCompany .story-item dd {
	min-height: 92px;
}

.pageCompany .story-item dt {
	align-items: baseline;
	color: rgba(255, 0, 0, 0.3);
	display: flex;
	justify-content: space-between;
	padding: 25px 0;
}

.pageCompany .story-item dd {
	margin-left: auto;
	max-width: 694px;
	width: 100%;
}

.pageCompany .story-year {
	font-family: "Jost", sans-serif;
	font-size: 40px;
	font-weight: 600;
}

.pageCompany .story-year-label {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
}

.pageCompany .story-event {
	align-items: baseline;
	border-bottom: 1px solid #eaeaea;
	display: grid;
	grid-template-columns: 50px 1fr;
	padding: 30px 0;
}

.pageCompany .story-event:last-of-type {
	border-bottom: none;
}

.pageCompany .story-month {
	align-items: center;
	color: #FF0000;
	display: flex;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
}

.pageCompany .story-text {
	font-size: 16px;
	line-height: 1.875;
	margin-left: auto;
	margin-top: 1px;
	max-width: 563px;
	width: 100%;
}

.pageCompany .locations {
	margin-top: 47px;
}

.pageCompany .locations-inner {
	max-width: 1360px;
	width: 95%;
}

.pageCompany .locations-content {
	background: #f7f7f7;
	border-radius: 40px;
	padding: 85px 20px;
	position: relative;
}

.pageCompany .locations-content::before {
	background: url(../img/company/locations_deco.svg) no-repeat center center/cover;
	content: "";
	height: 299px;
	left: -85px;
	position: absolute;
	top: -192px;
	width: 200px;
}

.pageCompany .locations-items {
	counter-reset: locations-number;
	display: grid;
	gap: 0 66px;
	grid-template-columns: 1fr 1fr;
	margin: 50px auto 0;
	max-width: 1000px;
}

.pageCompany .locations-item {
	display: grid;
	gap: 0;
	grid-row: span 3;
	grid-template-rows: subgrid;
}

.pageCompany .locations-item-img {
	aspect-ratio: 934/640;
	border-radius: 1rem;
	overflow: hidden;
}

.pageCompany .locations-item-img picture {
	display: block;
	height: 100%;
	width: 100%;
}

.pageCompany .locations-item-img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.pageCompany .locations-item-title {
	margin-top: 25px;
	padding-left: 17px;
	position: relative;
}

.pageCompany .locations-item-title::before {
	background: #FF0000;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 2px;
}

.pageCompany .locations-item-title span {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.5384615385;
	padding-left: 44px;
	position: relative;
}

.pageCompany .locations-item-title span::before {
	color: #FF0000;
	content: "#" counter(locations-number);
	counter-increment: locations-number;
	font-family: "Jost", sans-serif;
	font-size: 26px;
	font-style: italic;
	font-weight: 500;
	left: 0;
	line-height: 1.4615384615;
	position: absolute;
	top: 0;
}

.pageCompany .locations-item-body {
	display: flex;
	flex-wrap: wrap;
	gap: 0 24px;
	margin-top: 18px;
}

.pageCompany .locations-item-date {
	color: #FF0000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.875;
}

.pageCompany .locations-item-text {
	letter-spacing: normal;
	line-height: 1.875;
}

.pageCompany .access {
	padding-bottom: 100px;
	padding-top: 100px;
}

.pageCompany .access-title {
	margin-top: 5px;
}

.pageCompany .access-content {
	display: grid;
	gap: 30px;
	grid-template-columns: 200px 1fr;
	position: relative;
}

.pageCompany .access-content::before {
	background: url(../img/company/access_deco.svg) no-repeat center center/cover;
	content: "";
	height: 203px;
	left: -84px;
	position: absolute;
	top: 367px;
	width: 174px;
}

.pageCompany .access-items {
	margin-left: auto;
	max-width: 894px;
	width: 100%;
}

.pageCompany .access-item {
	border-top: 1px solid #eaeaea;
	display: grid;
	display: flex;
	gap: 20px;
	padding: 39px 0 43px;
	position: relative;
}

.pageCompany .access-item::before {
	background: #FF0000;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: -1px;
	width: 24px;
}

.pageCompany .access-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.6666666667;
}

.pageCompany .access-item-img {
	margin-top: 18px;
	width: 170px;
}

.pageCompany .access-address {
	margin-inline: auto;
	max-width: 304px;
	padding-left: 7px;
	width: 100%;
}

.pageCompany .access-address-text {
	font-size: 16px;
	font-style: normal;
	line-height: 1.625;
	margin-top: 2px;
	padding-left: 28px;
	position: relative;
}

.pageCompany .access-address-text::before {
	background: url(../img/company/icon_address.svg) no-repeat center center/cover;
	content: "";
	height: 24px;
	left: 0;
	position: absolute;
	top: 1px;
	width: 18px;
}

.pageCompany .access-address-items {
	margin-top: 4px;
}

.pageCompany .access-address-item {
	border-bottom: 1px solid #EAEAEA;
	display: grid;
	gap: 0 32px;
	grid-template-columns: 70px 1fr;
	padding: 16px 0;
}

.pageCompany .access-address-item dt,
.pageCompany .access-address-item dd {
	font-style: normal;
}

.pageCompany .access-address-item dt {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	padding-left: 18px;
	position: relative;
}

.pageCompany .access-address-item dt::before {
	border: 3px solid #FF0000;
	border-radius: 50%;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	top: 6px;
	width: 5px;
}

.pageCompany .access-address-item dd {
	font-size: 16px;
	line-height: 1.125;
}

.pageCompany .access-map {
	aspect-ratio: 304/190;
	max-width: 304px;
	position: relative;
	width: 100%;
}

.pageCompany .access-map iframe {
	border: none;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.pageFlow .pageLow-head {
	background-image: url(../img/flow/head_flow.png);
}

.pageFlow .flow {
	margin-bottom: 140px;
}

.pageFlow .flow-items {
	counter-reset: flow-step;
	margin-top: 65px;
}

.pageFlow .flow-item {
	border-top: 1px solid #707070;
	counter-increment: flow-step;
	display: grid;
	grid-template-columns: 468px 1fr;
	min-height: 116px;
	padding: 40px 32px 40px 10px;
	position: relative;
}

.pageFlow .flow-item::before {
	background: #FF0000;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	top: -2px;
	width: 24px;
}

.pageFlow .flow-item:nth-child(even) {
	background-color: #fcfcfc;
}

.pageFlow .flow-item:last-of-type {
	border-bottom: 1px solid #707070;
}

.pageFlow .flow-item:last-of-type::after {
	background: #FF0000;
	bottom: -2px;
	content: "";
	height: 3px;
	left: 0;
	position: absolute;
	width: 24px;
}

.pageFlow .flow-item-head {
	align-items: center;
	display: flex;
	padding-left: 124px;
	position: relative;
}

.pageFlow .flow-item-head::before {
	color: #FF0000;
	content: "STEP" counter(flow-step, decimal-leading-zero);
	font-family: "Jost", sans-serif;
	font-size: 20px;
	font-weight: 600;
	left: 0;
	letter-spacing: 0.2em;
	line-height: 1.45;
	margin-right: 31px;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}

.pageFlow .flow-item-icon {
	height: 57px;
	margin-right: 20px;
	width: 57px;
}

.pageFlow .flow-item-title {
	font-size: 16px;
	font-weight: bold;
	line-height: 1.875;
}

.pageFlow .flow-item-body {
	align-items: center;
	display: flex;
}

.pageFlow .flow-item-text {
	line-height: 1.875;
}

@counter-style privacy-circled-decimal {
	system: fixed;
	symbols: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩" "⑪" "⑫" "⑬" "⑭" "⑮" "⑯" "⑰" "⑱" "⑲" "⑳";
	suffix: "";
}

.pagePrivacy .pageLow-head {
	background-image: url(../img/privacy/head_privacy.png);
}

.pagePrivacy .privacy {
	background-image: url(../img/privacy/privacy_bg.svg);
	background-position: top center;
	background-repeat: repeat-y;
	background-size: 1504px auto;
	margin-bottom: 120px;
	margin-top: 56px;
}

.pagePrivacy .privacy-inner {
	max-width: 1000px;
}

.pagePrivacy .privacy-intro {
	margin-top: 37px;
}

.pagePrivacy .privacy-text,
.pagePrivacy .privacy-list li,
.pagePrivacy .privacy-box-item dt,
.pagePrivacy .privacy-box-item dd {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 2.2857142857;
}

.pagePrivacy .privacy-text--small {
	font-size: 12px;
	line-height: 1.8333333333;
	margin-top: 32px;
}

.pagePrivacy .privacy-list {
	margin-top: 32px;
}

.pagePrivacy .privacy-list li {
	padding-left: 1em;
	position: relative;
}

.pagePrivacy .privacy-list li::before {
	background: #000;
	border-radius: 50%;
	content: "";
	height: 4px;
	left: 0;
	position: absolute;
	top: 15px;
	width: 4px;
}

.pagePrivacy .privacy-box {
	background: #f7f7f7;
	border-radius: 10px;
	margin-top: 37px;
	padding: 31px 50px;
}

.pagePrivacy .privacy-box-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 21px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4285714286;
	margin-bottom: 11px;
}

.pagePrivacy .privacy-box-title--circle {
	padding-left: 24px;
	position: relative;
}

.pagePrivacy .privacy-box-title--circle::before {
	border: 4px solid #FF0000;
	border-radius: 50%;
	content: "";
	height: 7px;
	left: 0;
	position: absolute;
	top: 9px;
	width: 7px;
}

.pagePrivacy .privacy-box-item {
	display: flex;
}

.pagePrivacy .privacy-box-item dt {
	flex-shrink: 0;
}

.pagePrivacy .privacy-box-body {
	margin-top: 8px;
}

.pagePrivacy .privacy-box-section {
	margin-bottom: 24px;
}

.pagePrivacy .privacy-box-section:last-of-type {
	margin-bottom: 0;
}

.pagePrivacy .privacy-boxes {
	display: grid;
	gap: 31px;
	margin-top: 77px;
}

.pagePrivacy .privacy-boxes .privacy-box {
	margin-top: initial;
	padding: 41px 50px 45px;
}

.pagePrivacy .privacy-content {
	margin-top: 82px;
}

.pagePrivacy .privacy-content-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4666666667;
	margin-inline: auto;
	padding-bottom: 24px;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.pagePrivacy .privacy-content-title::after {
	background: url(../img/privacy/privacy_title_deco.svg) no-repeat center center/cover;
	bottom: 0;
	content: "";
	height: 12px;
	left: 50%;
	position: absolute;
	translate: -50% 0;
	width: 394px;
}

.pagePrivacy .privacy-items {
	display: grid;
	gap: 57px;
	grid-template-columns: 1fr;
	margin-top: 37px;
}

.pagePrivacy .privacy-item-title {
	border-bottom: 1px solid #bfbfbf;
	border-top: 1px solid #bfbfbf;
	display: grid;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.02em;
	line-height: 1.5833333333;
	margin-bottom: 26px;
	min-height: 72px;
	padding: 17px 0;
	place-content: center;
	text-align: center;
}

.pagePrivacy .privacy-item-text {
	line-height: 1.875;
}

.pagePrivacy .privacy-item-text-wrapper {
	display: grid;
	gap: 30px;
	grid-template-columns: 1fr;
}

.pagePrivacy .privacy-counter-list {
	list-style: none;
}

.pagePrivacy .privacy-counter-list > li {
	padding-left: 2.5em;
	position: relative;
}

.pagePrivacy .privacy-counter-list > li::before {
	left: 0;
	position: absolute;
	top: 0;
}

.pagePrivacy .privacy-counter-list-text {
	line-height: 1.875;
}

.pagePrivacy .privacy-counter-list--parentheses {
	counter-reset: privacy-parentheses;
	display: grid;
	gap: 6px;
	grid-template-columns: 1fr;
	margin-top: 30px;
}

.pagePrivacy .privacy-counter-list--parentheses > li {
	counter-increment: privacy-parentheses;
	padding-left: 38px;
}

.pagePrivacy .privacy-counter-list--parentheses > li::before {
	content: "(" counter(privacy-parentheses) ")";
}

.pagePrivacy .privacy-counter-list--parentheses > li:not(:first-child) {
	margin-top: 24px;
}

.pagePrivacy .privacy-counter-list--circled {
	counter-reset: privacy-circled;
}

.pagePrivacy .privacy-counter-list--circled > li {
	counter-increment: privacy-circled;
	padding-left: 1em;
}

.pagePrivacy .privacy-counter-list--circled > li::before {
	content: counter(privacy-circled, privacy-circled-decimal);
}

.pagePrivacy .privacy-counter-list--closing-parenthesis {
	counter-reset: privacy-closing-parenthesis;
}

.pagePrivacy .privacy-counter-list--closing-parenthesis > li {
	counter-increment: privacy-closing-parenthesis;
	padding-left: 1.8em;
}

.pagePrivacy .privacy-counter-list--closing-parenthesis > li::before {
	content: counter(privacy-closing-parenthesis) ")";
}

.pagePrivacy .privacy-counter-list--compact {
	margin-top: 29px;
}

.pagePrivacy .privacy-counter-list--compact--noGap {
	gap: 0;
}

.pagePrivacy .privacy-counter-list--compact > li:not(:first-child) {
	margin-top: 0;
}

.pagePrivacy .privacy-details {
	display: grid;
	gap: 24px;
	margin-top: 60px;
}

.pagePrivacy .privacy-detail-box {
	background: #f7f7f7;
	border-radius: 10px;
	display: grid;
	gap: 30px;
	padding: 40px 50px;
}

.pagePrivacy .privacy-detail-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.5555555556;
}

.pagePrivacy .privacy-detail-text {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1.7142857143;
	margin-top: 10px;
}

.pagePrivacy .privacy-detail-text a {
	color: inherit;
}

@counter-style isms-circled-decimal {
	system: fixed;
	symbols: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩" "⑪" "⑫" "⑬" "⑭" "⑮" "⑯" "⑰" "⑱" "⑲" "⑳";
	suffix: "";
}

.pageIsms .pageLow-head {
	background-image: url(../img/isms/head_isms.png);
}

.pageIsms .isms {
	background-image: url(../img/privacy/privacy_bg.svg);
	background-position: top center;
	background-repeat: repeat-y;
	background-size: 1504px auto;
	margin-bottom: 95px;
	margin-top: 56px;
}

.pageIsms .isms-inner {
	max-width: 1000px;
	position: relative;
}

.pageIsms .isms-inner::before {
	background: url(../../img/isms/isms_deco.svg) no-repeat center center/cover;
	content: "";
	height: 203px;
	left: 0;
	position: absolute;
	top: 0;
	width: 174px;
}

.pageIsms .isms-intro {
	margin-top: 37px;
}

.pageIsms .isms-text {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 2.2857142857;
}

.pageIsms .isms-text--small {
	font-size: 12px;
	line-height: 1.8333333333;
	margin-top: 9px;
}

.pageIsms .isms-counter-list {
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
	list-style: none;
	margin-top: 33px;
}

.pageIsms .isms-counter-list > li {
	line-height: 2.2857142857;
	padding-left: 2.5em;
	position: relative;
}

.pageIsms .isms-counter-list > li::before {
	left: 0;
	position: absolute;
	top: 0;
}

.pageIsms .isms-counter-list-text {
	font-size: 14px;
	letter-spacing: 0.04em;
	line-height: 1.875;
}

.pageIsms .isms-counter-list--circled {
	counter-reset: isms-circled;
}

.pageIsms .isms-counter-list--circled > li {
	counter-increment: isms-circled;
	padding-left: 1em;
}

.pageIsms .isms-counter-list--circled > li::before {
	content: counter(isms-circled, isms-circled-decimal);
}

@counter-style recruit-circled-decimal {
	system: fixed;
	symbols: "①" "②" "③" "④" "⑤" "⑥" "⑦" "⑧" "⑨" "⑩" "⑪" "⑫" "⑬" "⑭" "⑮" "⑯" "⑰" "⑱" "⑲" "⑳";
}

.pageRecruit .pageLow-head {
	background-image: url(../img/recruit/head_recruit.png);
}

.pageRecruit .message {
	margin-top: 45px;
}

.pageRecruit .message-inner {
	max-width: 1000px;
}

.pageRecruit .message-movie {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: #fff;
	border: 0;
	border-radius: 15px;
	cursor: pointer;
	display: grid;
	height: 351px;
	margin-inline: auto;
	max-width: 800px;
	overflow: hidden;
	padding: 0;
	place-content: center;
	position: relative;
	transition: all 0.3s ease;
	width: 100%;
	z-index: 1;
}

.pageRecruit .message-movie::before {
	background: rgba(0, 0, 0, 0.2);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.pageRecruit .message-movie::after {
	background: url(../img/recruit/message_movie_button.svg) no-repeat center center/cover;
	content: "";
	height: 90px;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 90px;
}

.pageRecruit .message-movie img {
	height: 148px;
	width: 316px;
}

.pageRecruit .message-loop-text {
	margin-top: -35px;
}

.pageRecruit .support {
	margin-top: 79px;
}

.pageRecruit .support-items {
	counter-reset: support;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	margin-top: 40px;
}

.pageRecruit .support-item {
	border-left: 2px solid #d8d8d8;
	counter-increment: support;
	display: grid;
	grid-row: span 3;
	grid-template-rows: subgrid;
}

.pageRecruit .support-item:last-of-type {
	border-right: 2px solid #d8d8d8;
}

.pageRecruit .support-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	line-height: 1.6363636364;
	padding: 0 40px;
	position: relative;
	width: 102%;
}

.pageRecruit .support-item-title::before {
	background: #FF0000;
	content: "";
	height: 100%;
	left: -2px;
	position: absolute;
	top: 0;
	width: 2px;
}

.pageRecruit .support-item-title span {
	display: block;
	padding-left: 34px;
	position: relative;
}

.pageRecruit .support-item-title span::before {
	color: #FF0000;
	content: "#" counter(support);
	font-family: "Jost", sans-serif;
	font-size: 22px;
	font-style: italic;
	font-weight: 500;
	left: 0;
	line-height: 1.4545454545;
	position: absolute;
	top: 4px;
}

.pageRecruit .support-item-img {
	height: 202px;
	margin: 48px 40px 0;
	position: relative;
}

.pageRecruit .support-item-img img {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
	-o-object-fit: cover;
	border-radius: 15px;
	object-fit: cover;
}

.pageRecruit .support-item-text {
	line-height: 1.875;
	margin-top: 27px;
	padding: 0 40px;
}

.pageRecruit .member {
	margin-top: 98px;
}

.pageRecruit .member-inner {
	max-width: 1360px;
	width: 95%;
}

.pageRecruit .member-bg {
	background: #f7f7f7;
	border-radius: 40px;
	padding: 80px 40px;
	position: relative;
}

.pageRecruit .member-bg::before {
	background: url(../img/recruit/support_deco.svg) no-repeat center center/cover;
	content: "";
	height: 154px;
	position: absolute;
	right: -89px;
	top: -148px;
	width: 168px;
}

.pageRecruit .member-content {
	background: #fff;
	margin-inline: auto;
	max-width: 1200px;
	position: relative;
}

.pageRecruit .member-title {
	background: #f7f7f7;
	border-radius: 0 0 15px 0;
	height: 100%;
	padding-top: 3px;
	position: absolute;
	top: 0;
	width: calc(100% - min(898px, 89.8rem));
	z-index: 2;
}

.pageRecruit .member-slider {
	background: #f7f7f7;
	margin-inline: auto;
	margin-inline: initial;
	margin-left: auto;
	max-width: 898px;
	width: 89.8rem;
}

.pageRecruit .member-slider-container {
	position: relative;
}

.pageRecruit .member-slider-container .swiper-pagination {
	display: flex;
	gap: 10px;
	height: -moz-fit-content;
	height: fit-content;
	left: 0;
	top: 140px;
	width: -moz-fit-content;
	width: fit-content;
}

.pageRecruit .member-slider-container .swiper-pagination .swiper-pagination-bullet {
	background: #fff;
	border: 1px solid #9d9d9d;
	height: 12px;
	margin: 0;
	opacity: 1;
	transition: all 0.3s ease;
	width: 12px;
}

.pageRecruit .member-slider-container .swiper-pagination .swiper-pagination-bullet-active {
	background: #9d9d9d;
}

.pageRecruit .member-slider-container .swiper-button-wrapper {
	display: flex;
	gap: 20px;
	position: absolute;
	top: 191px;
}

.pageRecruit .member-slider-container .swiper-button-prev,
.pageRecruit .member-slider-container .swiper-button-next {
	background-color: #FF0000;
	background-image: url(../img/common/arrow_right_white.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 17px 16px;
	border-radius: 50%;
	height: 58px;
	margin-top: initial;
	overflow: hidden;
	position: static;
	transition: all 0.3s ease;
	width: 58px;
}

.pageRecruit .member-slider-container .swiper-button-prev::after,
.pageRecruit .member-slider-container .swiper-button-next::after {
	display: none;
}

.pageRecruit .member-slider-container .swiper-button-prev {
	transform: scale(-1, 1);
}

.pageRecruit .member-slider-container .swiper-wrapper {
	display: flex;
}

.pageRecruit .member-slider .swiper-slide {
	background: #fff;
	border-radius: 15px 15px 15px 0;
	display: grid;
	gap: 0 38px;
	grid-template-columns: 105px 1fr;
	max-width: 898px;
	padding: 42px 48px 39px 52px;
}

.pageRecruit .member-slider-img img {
	background: #f7f7f7;
	border-radius: 50%;
	height: 70px;
	margin-inline: auto;
	overflow: hidden;
	width: 70px;
}

.pageRecruit .member-slider-img figcaption {
	font-size: 12px;
	letter-spacing: 0.04em;
	margin-top: 17px;
	text-align: center;
}

.pageRecruit .member-slider-img figcaption span {
	display: block;
}

.pageRecruit .member-slider-img figcaption .name {
	font-size: 16px;
	font-weight: bold;
}

.pageRecruit .member-slider-img figcaption .age {
	font-size: 14px;
	margin-top: 15px;
}

.pageRecruit .member-slider-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.3333333333;
	position: relative;
}

.pageRecruit .member-slider-title::after {
	background: #FF0000;
	bottom: -37px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 24px;
}

.pageRecruit .member-slider-text {
	line-height: 1.875;
	padding-top: 69px;
}

.pageRecruit .data {
	padding-top: 103px;
}

.pageRecruit .data-items {
	display: grid;
	gap: 20px 30px;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	justify-content: center;
	margin-top: 40px;
}

.pageRecruit .data-item {
	background: #f7f7f7;
	border-radius: 10px;
	display: grid;
	gap: 0;
	grid-row: span 3;
	grid-template-rows: subgrid;
	min-height: 216px;
	padding: 23px 30px 31px 30px;
	position: relative;
}

.pageRecruit .data-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.8181818182;
	position: relative;
}

.pageRecruit .data-item-title::after {
	background: #FF0000;
	bottom: -16px;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	width: 24px;
}

.pageRecruit .data-item-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.08em;
	margin-top: 44px;
}

.pageRecruit .data-item-text--large {
	font-size: 22px;
}

.pageRecruit .data-item-number {
	align-items: end;
	display: flex;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.08em;
	margin-left: -5px;
	margin-top: 8px;
}

.pageRecruit .data-item-number .num {
	font-family: "Jost", sans-serif;
	font-size: 65px;
	font-weight: 500;
	line-height: 0.7;
}

.pageRecruit .data-item-columns {
	display: grid;
	gap: 15px 20px;
	grid-row: 2/4;
	grid-template-columns: 1fr 1fr;
	margin-top: auto;
	margin-top: 24px;
}

.pageRecruit .data-item-columns .data-item-text,
.pageRecruit .data-item-columns .data-item-number {
	margin-top: initial;
}

.pageRecruit .data-item-column {
	align-items: baseline;
	border-bottom: 1px solid #BFBFBF;
	display: flex;
	height: -moz-fit-content;
	height: fit-content;
	justify-content: space-between;
	padding-bottom: 7px;
}

.pageRecruit .data-item::before {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
}

.pageRecruit .data-item:nth-of-type(1)::before {
	background-image: url(../img/recruit/data_01.svg);
	height: 71px;
	right: 33px;
	top: 29px;
	width: 85px;
}

.pageRecruit .data-item:nth-of-type(1) .num {
	font-size: 50px;
}

.pageRecruit .data-item:nth-of-type(2)::before {
	background-image: url(../img/recruit/data_02.png);
	bottom: 22px;
	height: 180px;
	right: 16px;
	width: 229px;
}

.pageRecruit .data-item:nth-of-type(3)::before {
	background-image: url(../img/recruit/data_03.svg);
	height: 50px;
	right: 28px;
	top: 29px;
	width: 80px;
}

.pageRecruit .data-item:nth-of-type(3) .num {
	font-size: 45px;
}

.pageRecruit .data-loop-text {
	margin-top: 82px;
}

.pageRecruit .job {
	padding-top: 79px;
}

.pageRecruit .job-flex {
	display: grid;
	gap: 30px;
	grid-template-columns: 200px 1fr;
	position: relative;
}

.pageRecruit .job-flex::before,
.pageRecruit .job-flex::after {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
}

.pageRecruit .job-flex::before {
	background-image: url(../img/recruit/faq_deco_01.svg);
	height: 203px;
	left: -75px;
	top: 284px;
	width: 174px;
}

.pageRecruit .job-flex::after {
	background-image: url(../img/recruit/faq_deco_02.svg);
	bottom: 53px;
	height: 279px;
	right: -155px;
	width: 213px;
}

.pageRecruit .job-title {
	margin-top: 5px;
}

.pageRecruit .job-content {
	margin-left: auto;
	max-width: 896px;
	width: 100%;
}

.pageRecruit .job-content.is-ready .job-items {
	display: block;
}

.pageRecruit .job-content.is-ready .job-item {
	display: none;
}

.pageRecruit .job-content.is-ready .job-item.is-active {
	display: block;
}

.pageRecruit .job-tab-items {
	border-bottom: 1px solid #eaeaea;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pageRecruit .job-tab-item {
	border-radius: 15px 15px 0 0;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.4444444444;
	overflow: hidden;
	position: relative;
	transition: background-color 0.35s ease, color 0.35s ease;
}

.pageRecruit .job-tab-item:not(.is-active):hover {
	background: #f7f7f7;
}

.pageRecruit .job-tab-item.is-active {
	background: #FF0000;
	color: #fff;
}

.pageRecruit .job-tab-button {
	-webkit-appearance: none;
	-moz-appearance: none;
	align-items: center;
	appearance: none;
	background: transparent;
	border: 0;
	color: inherit;
	cursor: pointer;
	display: flex;
	flex-direction: column;
	font: inherit;
	gap: 11px;
	justify-content: center;
	letter-spacing: inherit;
	line-height: inherit;
	min-height: 77px;
	padding: 20px 8px;
	text-align: center;
	width: 100%;
}

.pageRecruit .job-tab-button::after {
	background: #FF0000;
	bottom: 13px;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	content: "";
	height: 7px;
	left: 50%;
	position: absolute;
	transition: background-color 0.35s ease;
	translate: -50% 0;
	width: 8px;
}

.pageRecruit .job-tab-button:focus-visible {
	outline: 2px solid #000;
	outline-offset: -2px;
}

.pageRecruit .job-tab-item.is-active .job-tab-button::after {
	background: #fff;
}

.pageRecruit .job-items {
	margin-top: 53px;
}

.pageRecruit .job-item {
	padding-top: 0;
}

.pageRecruit .job-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.08em;
	padding-left: 17px;
	position: relative;
}

.pageRecruit .job-item-title::before {
	background: #FF0000;
	content: "";
	height: 26px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 2px;
}

.pageRecruit .job-info-items {
	margin-top: 43px;
}

.pageRecruit .job-info-item {
	border-top: 1px solid #eaeaea;
	display: grid;
	gap: 0 20px;
	grid-template-columns: 150px 1fr;
	position: relative;
}

.pageRecruit .job-info-item::before {
	background: #FF0000;
	content: "";
	height: 2px;
	left: 0;
	position: absolute;
	top: -1px;
	width: 24px;
}

.pageRecruit .job-info-item dt,
.pageRecruit .job-info-item dd {
	min-height: 92px;
	padding: 29px 0;
}

.pageRecruit .job-info-item dt {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.875;
}

.pageRecruit .job-info-item dd {
	align-items: center;
	display: flex;
	font-size: 16px;
	line-height: 1.875;
	margin-left: auto;
	max-width: 661px;
	width: 100%;
}

.pageRecruit .job-info-list {
	display: grid;
	gap: 7px;
	grid-template-columns: 1fr;
}

.pageRecruit .job-info-list li {
	line-height: 1.5;
	position: relative;
}

.pageRecruit .job-info-list li::before {
	content: "";
	left: 0;
	position: absolute;
}

.pageRecruit .job-info-list li .small {
	font-size: 14px;
	line-height: 2.1428571429;
}

.pageRecruit .job-info-list--num {
	counter-reset: job-info-num;
}

.pageRecruit .job-info-list--num li {
	counter-increment: job-info-num;
	padding-left: 1em;
}

.pageRecruit .job-info-list--num li::before {
	content: counter(job-info-num, recruit-circled-decimal) "";
	top: 0;
}

.pageRecruit .job-info-list--circle li {
	padding-left: 19px;
}

.pageRecruit .job-info-list--circle li::before {
	border: 3px solid #FF0000;
	border-radius: 50%;
	height: 5px;
	top: 8px;
	width: 5px;
}

.pageRecruit .entry {
	padding-top: 125px;
	position: relative;
}

.pageRecruit .entry-inner {
	max-width: 1360px;
	width: 95%;
}

.pageRecruit .entry-content {
	background: #FF0000;
	border-radius: 40px;
	padding: 84px 40px 80px;
	position: relative;
}

.pageRecruit .entry-content::before,
.pageRecruit .entry-content::after {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
}

.pageRecruit .entry-content::before {
	background-image: url(../img/recruit/entry_deco_01.svg);
	height: 104px;
	left: 16px;
	top: 34px;
	width: 102px;
}

.pageRecruit .entry-content::after {
	background-image: url(../img/recruit/entry_deco_02.svg);
	height: 164px;
	right: 25px;
	top: -64px;
	width: 118px;
}

.pageRecruit .entry-info {
	margin-inline: auto;
	max-width: 1000px;
	width: 100%;
}

.pageRecruit .entry-title .title-en,
.pageRecruit .entry-title .title-jp {
	color: #fff;
}

.pageRecruit .entry-text {
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 2;
	margin-top: 34px;
}

.pageRecruit .entry-btn {
	background: #fff;
	color: #FF0000;
	margin-top: 34px;
	padding: 0 19px 0 30px;
	width: 371px;
}

.pageRecruit .entry-btn::after {
	background-color: #FF0000;
	background-image: url(../img/common/arrow_right_white.png);
}

.pageRecruit .entry-img {
	position: absolute;
}

.pageRecruit .entry-img--01 {
	height: min(311px, 31.1rem);
	right: 180px;
	right: min(180px, 18rem);
	top: -48px;
	width: min(274px, 27.4rem);
}

.pageRecruit .entry-img--02 {
	bottom: -20px;
	height: min(232px, 23.2rem);
	right: min(386px, 38.6rem);
	width: min(179px, 17.9rem);
}

.pageRecruit .entry-img--03 {
	bottom: 47px;
	height: min(207px, 20.7rem);
	right: min(24px, 2.4rem);
	width: min(331px, 31.1rem);
}

.pageRecruit .recruit-float {
	bottom: 20px;
	height: 126px;
	opacity: 1;
	position: fixed;
	right: 20px;
	transition: all 0.3s ease;
	visibility: visible;
	width: 126px;
	z-index: 10;
}

.pageRecruit .recruit-float.is-hidden {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0s linear 0.3s;
	visibility: hidden;
}

.pageService .pageLow-head {
	background-image: url(../img/service/head_service.png);
}

.pageService .serviceCategory {
	margin-top: 100px;
	padding-bottom: 0;
}

.pageService .serviceCategory--outbound {
	padding-bottom: 105px;
}

.pageService .service-intro-lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 42px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.5714285714;
}

.pageService .service-intro-text {
	line-height: 1.875;
	margin-left: auto;
	margin-top: 33px;
	max-width: 685px;
}

.pageService .service-intro-items {
	display: flex;
	flex-wrap: wrap;
	gap: 44px 30px;
	justify-content: center;
	margin-top: 80px;
	position: relative;
}

.pageService .service-intro-items::before {
	background: url(../img/service/service_intro_deco.svg) no-repeat center center/cover;
	content: "";
	height: 203px;
	left: -90px;
	position: absolute;
	top: -247px;
	width: 174px;
}

.pageService .service-intro-item {
	position: relative;
	width: calc((100% - 60px) / 3);
}

.pageService .service-intro-item::before {
	background: #D8D8D8;
	content: "";
	height: 100%;
	left: 1px;
	position: absolute;
	top: 0;
	width: 1px;
	z-index: -1;
}

.pageService .service-intro-item-head {
	align-items: center;
	border-left: 3px solid #FF0000;
	display: grid;
	gap: 6%;
	grid-template-columns: 29% 65%;
	padding-left: 15px;
}

.pageService .service-intro-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.8;
}

.pageService .service-intro-item-text {
	letter-spacing: 0.03em;
	line-height: 1.75;
	margin-top: 17px;
	padding-left: 18px;
}

.pageService .quality-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-top: 40px;
	text-align: center;
}

.pageService .quality-items {
	display: grid;
	gap: 129px;
	grid-template-columns: 1fr;
	margin-top: 78px;
	position: relative;
}

.pageService .quality-item {
	display: grid;
	gap: 5.1%;
	grid-template-columns: 47.5% 47.5%;
	position: relative;
}

.pageService .quality-item:nth-of-type(1) .quality-item-img::before {
	background: url(../img/service/quality_deco_01.svg);
	height: 241px;
	right: -121px;
	top: -92px;
	width: 189px;
}

.pageService .quality-item:nth-of-type(2) .quality-item-img::before {
	background: url(../img/service/quality_deco_02.svg);
	bottom: -24px;
	height: 136px;
	left: -49px;
	width: 73px;
}

.pageService .quality-item:nth-of-type(3) .quality-item-img::before {
	background: url(../img/service/quality_deco_03.svg);
	bottom: -72px;
	height: 154px;
	right: -98px;
	width: 167px;
}

.pageService .quality-item-info {
	position: relative;
	z-index: 1;
}

.pageService .quality-item-title {
	margin-top: 6px;
}

.pageService .quality-item-title .title-en {
	color: #FF0000;
	font-family: "Jost", sans-serif;
	font-size: 50px;
	font-weight: 600;
	letter-spacing: 0.12em;
	line-height: 1.24;
}

.pageService .quality-item-title .title-jp {
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.7083333333;
	margin-top: 22px;
}

.pageService .quality-item-content {
	border-left: 1px solid #d8d8d8;
	margin-top: 35px;
}

.pageService .quality-item-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.8;
	padding-left: 20px;
	position: relative;
}

.pageService .quality-item-text::before {
	background: #FF0000;
	content: "";
	height: 100%;
	left: -1px;
	position: absolute;
	top: 0;
	width: 3px;
}

.pageService .quality-item-list {
	display: grid;
	gap: 19px;
	grid-template-columns: 1fr;
	margin-top: 17px;
	padding-left: 20px;
}

.pageService .quality-item-list li {
	font-size: 18px;
	letter-spacing: 0.08em;
	line-height: 1.5;
	padding-left: 19px;
	position: relative;
}

.pageService .quality-item-list li::before {
	border: 3px solid #FF0000;
	border-radius: 50%;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	top: 9px;
	width: 5px;
}

.pageService .quality-item-img {
	height: 700px;
	position: relative;
	z-index: 1;
}

.pageService .quality-item-img img {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
	-o-object-fit: cover;
	border-radius: 10px;
	object-fit: cover;
}

.pageService .quality-item-img::before {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
	z-index: 2;
}

.pageService .quality-item-deco {
	bottom: -54px;
	color: #FF0000;
	font-family: "Jost", sans-serif;
	font-size: 140px;
	font-weight: 600;
	left: -40px;
	letter-spacing: 0.06em;
	line-height: 0.8714285714;
	opacity: 0.02;
	position: absolute;
}

.pageService .security {
	background: url(../img/service/security_pc.png) no-repeat center center/cover;
	margin-bottom: 148px;
	margin-top: 173px;
	padding: 84px 0 80px;
	position: relative;
}

.pageService .security > * {
	position: relative;
	z-index: 1;
}

.pageService .security::before {
	background: rgba(0, 0, 0, 0.4);
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.pageService .security-title > * {
	color: #fff;
}

.pageService .security-text {
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.5;
	margin-top: 40px;
	text-align: center;
}

.pageService .security-content {
	border-radius: 40px;
	margin-top: 60px;
	overflow: hidden;
	padding: 70px 20px;
	position: relative;
}

.pageService .security-content::before {
	backdrop-filter: blur(6px);
	background: rgba(242, 242, 242, 0.25);
	content: "";
	inset: 0;
	position: absolute;
}

.pageService .security-content > * {
	position: relative;
	z-index: 1;
}

.pageService .security-items {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
	justify-content: center;
	margin-inline: auto;
	max-width: 1000px;
}

.pageService .security-item {
	background: #fff;
	border-radius: 6px;
	display: grid;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.5714285714;
	min-height: 80px;
	padding: 17px 10px;
	place-content: center;
	text-align: center;
}

.pageService .security-item .small {
	font-size: 12px;
	line-height: 1.8333333333;
}

.pageServiceChild .serviceChild-intro-lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 42px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.5714285714;
	text-align: center;
}

.pageServiceChild .serviceChild-intro-items {
	display: grid;
	gap: 30px 45px;
	grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
	justify-content: center;
	margin-top: 56px;
}

.pageServiceChild .serviceChild-intro-item {
	align-items: center;
	background: #F7F7F7;
	border-radius: 6px;
	display: grid;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: bold;
	gap: 20px;
	grid-template-columns: 59px 1fr;
	letter-spacing: 0.05em;
	line-height: 1.75;
	min-height: 118px;
	padding: 17px 18px 17px 21px;
}

.pageServiceChild .serviceDetail {
	margin-top: 100px;
	padding-bottom: 125px;
}

.pageServiceChild .serviceDetail-body {
	margin-top: 88px;
}

.pageServiceChild .serviceDetail-body-inner {
	width: 100%;
}

.pageServiceChild .serviceDetail-body-content {
	--service-detail-nav-top: 120px;
	display: grid;
	gap: 20px;
	grid-template-columns: 200px 1fr;
}

.pageServiceChild .serviceDetail-body-nav {
	align-self: start;
	height: -moz-fit-content;
	height: fit-content;
	margin-top: 5px;
	position: sticky;
	top: var(--service-detail-nav-top);
}

.pageServiceChild .serviceDetail-body-nav-items {
	counter-reset: service-detail-nav-item;
	display: grid;
	gap: 17px;
	grid-template-columns: 1fr;
	padding-bottom: 242px;
	position: relative;
}

.pageServiceChild .serviceDetail-body-nav-items::after {
	background: url(../img/service/service_child_nav_deco.svg) no-repeat center center/cover;
	bottom: 0;
	content: "";
	height: 203px;
	left: -84px;
	position: absolute;
	width: 174px;
}

.pageServiceChild .serviceDetail-body-nav-item {
	counter-increment: service-detail-nav-item;
}

.pageServiceChild .serviceDetail-body-nav-item-link {
	color: #d8d8d8;
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.125;
	padding-left: 42px;
	position: relative;
	transition: color 0.3s ease;
}

.pageServiceChild .serviceDetail-body-nav-item-link::before,
.pageServiceChild .serviceDetail-body-nav-item-link::after {
	position: absolute;
}

.pageServiceChild .serviceDetail-body-nav-item-link::before {
	color: #d8d8d8;
	content: counter(service-detail-nav-item, decimal-leading-zero);
	font-family: "Jost", sans-serif;
	font-size: 18px;
	font-style: italic;
	font-weight: 500;
	left: 0;
	letter-spacing: 0.04em;
	line-height: 1.6111111111;
	top: -3px;
	transition: color 0.3s ease;
}

.pageServiceChild .serviceDetail-body-nav-item-link::after {
	background: #FF0000;
	content: "";
	height: 15px;
	left: 31px;
	top: 3px;
	width: 1px;
}

.pageServiceChild .serviceDetail-body-nav-item-link.is-active {
	color: #000;
}

.pageServiceChild .serviceDetail-body-nav-item-link.is-active::before {
	color: #FF0000;
}

.pageServiceChild .serviceDetail-body-items {
	counter-reset: service-detail-item;
	margin-left: auto;
	max-width: 898px;
	width: 100%;
}

.pageServiceChild .serviceDetail-body-item {
	border-bottom: 1px solid #d1d1d1;
	counter-increment: service-detail-item;
	padding: 69px 0 62px;
	scroll-margin-top: calc(var(--service-detail-nav-top) + 24px);
}

.pageServiceChild .serviceDetail-body-item:first-of-type {
	padding-top: 0;
}

.pageServiceChild .serviceDetail-body-item:last-of-type {
	border-bottom: none;
	padding-bottom: 0;
}

.pageServiceChild .serviceDetail-body-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 34px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.2058823529;
	padding-left: 82px;
	position: relative;
}

.pageServiceChild .serviceDetail-body-item-title::before,
.pageServiceChild .serviceDetail-body-item-title::after {
	position: absolute;
}

.pageServiceChild .serviceDetail-body-item-title::before {
	color: #FF0000;
	content: counter(service-detail-item, decimal-leading-zero);
	font-family: "Jost", sans-serif;
	font-size: 43px;
	font-style: italic;
	font-weight: 500;
	left: -6px;
	letter-spacing: 0.04em;
	line-height: 1.511627907;
	top: -10px;
}

.pageServiceChild .serviceDetail-body-item-title::after {
	background: #FF0000;
	content: "";
	height: 33px;
	left: 61px;
	top: 6px;
	width: 2px;
}

.pageServiceChild .serviceDetail-body-item-content {
	display: grid;
	gap: 5.6%;
	grid-template-columns: 38.5% 55.9%;
	margin-top: 34px;
}

.pageServiceChild .serviceDetail-body-item-img {
	height: 347px;
	position: relative;
}

.pageServiceChild .serviceDetail-body-item-img img {
	height: 100%;
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
	-o-object-fit: cover;
	border-radius: 10px;
	object-fit: cover;
}

.pageServiceChild .serviceDetail-body-item-info-content {
	border-left: 2px solid #d8d8d8;
	margin-top: 41px;
}

.pageServiceChild .serviceDetail-body-item-info-text {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.08em;
	padding-left: 20px;
	position: relative;
}

.pageServiceChild .serviceDetail-body-item-info-text::before {
	background: #FF0000;
	content: "";
	height: 100%;
	left: -2px;
	position: absolute;
	width: 2px;
}

.pageServiceChild .serviceDetail-body-item-info-list {
	display: grid;
	gap: 11px;
	grid-template-columns: 1fr;
	margin-top: 13px;
	padding-left: 20px;
}

.pageServiceChild .serviceDetail-body-item-info-list li {
	font-size: 14px;
	letter-spacing: 0.08em;
	line-height: 1.7142857143;
	padding-left: 19px;
	position: relative;
	position: relative;
}

.pageServiceChild .serviceDetail-body-item-info-list li::before {
	border: 2px solid #FF0000;
	border-radius: 50%;
	content: "";
	height: 5px;
	left: 0;
	position: absolute;
	top: 8px;
	width: 5px;
}

.pageServiceChild .serviceDetail-body-item-lead {
	color: #FF0000;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.5;
}

.pageServiceChild .serviceDetail-body-item-text {
	line-height: 1.875;
	margin-top: 26px;
}

.pageServiceChild .serviceDetail-body-item-box {
	background: #f7f7f7;
	border-radius: 10px;
	display: grid;
	gap: 21px;
	grid-template-columns: 235px 1fr;
	margin-top: 40px;
	padding: 37px 40px;
}

.pageServiceChild .serviceDetail-body-item-box-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.7272727273;
	padding-left: 17px;
	position: relative;
}

.pageServiceChild .serviceDetail-body-item-box-title::before {
	background: #FF0000;
	content: "";
	height: 24px;
	left: 0;
	position: absolute;
	top: 9px;
	width: 2px;
}

.pageServiceChild .serviceDetail-body-item-box-text {
	line-height: 1.875;
}

.pageServiceChild .serviceDetail-body-item-box-table {
	background: #fff;
	border-radius: 6px;
	margin-top: 28px;
	padding: 14px 40px 19px;
	width: 100%;
}

.pageServiceChild .serviceDetail-body-item-box-table th,
.pageServiceChild .serviceDetail-body-item-box-table td {
	line-height: 2.1428571429;
	width: 50%;
}

.pageServiceChild .serviceDetail-body-item-box-table thead th {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 13px;
	text-align: left;
}

.pageServiceChild .serviceDetail-body-item-box-table tbody td {
	border-top: 1px solid #eaeaea;
	font-size: 14px;
	padding: 17px 0;
}

.pageServiceChild .serviceDetail-body-item-box-table tbody td:nth-of-type(2) {
	color: #FF0000;
}

.pageServiceChild .serviceDetail-body-item-box-table tbody tr:last-of-type td {
	padding-bottom: 0;
}

.pageServiceChild .serviceDetail-body-item-box-list {
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
	justify-content: center;
}

.pageServiceChild .serviceDetail-body-item-box-list li {
	background: #fff;
	border-radius: 6px;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.05em;
	line-height: 1.75;
	padding: 20px 23px;
}

.pageServiceChild .serviceDetail-body-item-box-list li .small {
	font-size: 12px;
}

.pageInbound .pageLow-head {
	background-image: url(../img/service/inbound/head_inbound.png);
}

.pageOutbound .pageLow-head {
	background-image: url(../img/service/outbound/head_outbound.png);
}

.pageOutbound .serviceCategory--outbound {
	margin-top: 52px;
}

.pageOutbound .serviceDetail-body-item-box-list li {
	align-items: center;
	display: flex;
}

.pageOutbound .serviceDetail-body-item-box--cards {
	grid-template-columns: repeat(3, 1fr);
}

.pageOutbound .serviceDetail-body-item-box--cards .serviceDetail-body-item-box-content,
.pageOutbound .serviceDetail-body-item-box--cards .serviceDetail-body-item-box-list {
	display: contents;
}

.pageTop {
	padding-top: 111px;
}

.pageTop .fv {
	overflow: hidden;
	padding-bottom: 100px;
	position: relative;
}

.pageTop .fv-inner {
	position: relative;
}

.pageTop .fv-inner::before,
.pageTop .fv-inner::after {
	content: "";
	position: absolute;
}

.pageTop .fv-inner::before {
	background: url(../img/top/fv_deco.svg) no-repeat center center/cover;
	bottom: -35px;
	height: 140px;
	left: -84px;
	width: 110px;
	z-index: 5;
}

.pageTop .fv-inner::after {
	background: url(../img/top/fv_satisfaction_pc.png) no-repeat center center/cover;
	bottom: -107px;
	height: 316px;
	right: -155px;
	right: max(-155px, -9.5rem);
	width: 261px;
	z-index: 5;
}

.pageTop .fv-slider {
	margin-inline: calc(50% - 50vw);
	position: absolute;
	width: 100vw;
}

.pageTop .fv-slider .swiper-wrapper {
	transition-timing-function: linear;
}

.pageTop .fv-slider .swiper-slide {
	border-radius: 40px;
	margin: 0 5px;
	overflow: hidden;
	position: relative;
	width: 957px;
}

.pageTop .fv-slider .swiper-slide::before {
	background: rgba(0, 0, 0, 0.1);
	content: "";
	height: 100%;
	position: absolute;
	width: 100%;
}

.pageTop .fv-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	max-width: 929px;
	min-height: 660px;
	padding-bottom: 28px;
	padding-left: 60px;
	position: relative;
	width: 100%;
	z-index: 5;
}

.pageTop .fv-content::before {
	background: url(../img/top/fv_en.png) no-repeat center center/cover;
	content: "";
	height: 329px;
	left: max(-75px, -2.5rem);
	position: absolute;
	top: -27px;
	width: 479px;
}

.pageTop .fv-copy,
.pageTop .fv-txt {
	color: #fff;
}

.pageTop .fv-copy {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 46px;
	font-weight: bold;
	line-height: 1.7;
	margin-top: auto;
}

.pageTop .fv-copy .deco {
	background: transparent linear-gradient(104deg, #ff0000 0%, #ffd2d2 100%) 0% 0% no-repeat padding-box;
	border-radius: 10px;
	margin-right: 12px;
	padding: 5px 20px 5px 15px;
}

.pageTop .fv-txt {
	display: flex;
	justify-content: space-between;
	margin-top: 37px;
}

.pageTop .fv-txt-jp {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.7272727273;
}

.pageTop .fv-txt-en {
	font-family: "Jost", sans-serif;
	font-size: 12px;
	font-style: italic;
	font-weight: 500;
	letter-spacing: 0.15em;
	line-height: 2.3333333333;
	margin-top: auto;
	text-align: right;
}

.pageTop .about {
	padding-bottom: 98px;
	position: relative;
}

.pageTop .about > * {
	position: relative;
	z-index: 5;
}

.pageTop .about::before {
	background: url(../img/top/about_bg_pc.svg) no-repeat center center/cover;
	content: "";
	height: 680px;
	left: 49%;
	position: absolute;
	top: 26px;
	translate: -50% 0;
	width: 1355px;
	z-index: 6;
}

.pageTop .about-inner {
	max-width: 1075px;
	position: relative;
}

.pageTop .about-inner::before {
	background: url(../img/top/about_deco.svg) no-repeat center center/cover;
	bottom: -160px;
	content: "";
	height: 299px;
	left: -163px;
	position: absolute;
	width: 200px;
	z-index: 6;
}

.pageTop .about-content {
	display: grid;
	gap: 96px;
	grid-template-columns: 390px 1fr;
	margin-top: 30px;
}

.pageTop .about-lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 46px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.652173913;
	margin-top: 11px;
}

.pageTop .about-dot {
	--about-lead-dot-offset: -0.42em;
	--about-lead-dot-size: 0.45em;
	display: inline-flex;
	vertical-align: baseline;
	white-space: nowrap;
}

.pageTop .about-dot-char {
	display: inline-block;
	position: relative;
}

.pageTop .about-dot-char::before {
	content: "・";
	font-size: var(--about-lead-dot-size);
	left: 50%;
	line-height: 1;
	position: absolute;
	top: var(--about-lead-dot-offset);
	translate: -50% 0;
}

.pageTop .about-text {
	display: grid;
	font-size: 18px;
	gap: 36px;
	grid-template-columns: 1fr;
	letter-spacing: 0.08em;
	line-height: 2;
}

.pageTop .strength {
	position: relative;
	z-index: 1;
}

.pageTop .strength > * {
	position: relative;
	z-index: 5;
}

.pageTop .strength-inner {
	max-width: 1360px;
	width: 95%;
}

.pageTop .strength-content {
	background: #F2F2F2;
	border-radius: 40px;
	padding: 157px 80px 120px;
	position: relative;
}

.pageTop .strength-content::after {
	background: url(../img/top/strength_deco.svg) no-repeat center center/cover;
	bottom: -129px;
	content: "";
	height: 165px;
	left: -20px;
	position: absolute;
	width: 179px;
}

.pageTop .strength-items {
	--strength-sticky-top: 151px;
	--strength-sticky-height: 625px;
	margin-top: 44px;
	position: relative;
}

.pageTop .strength-sticky {
	height: var(--strength-sticky-height);
	position: sticky;
	top: var(--strength-sticky-top);
	z-index: 2;
}

.pageTop .strength-steps {
	margin-top: calc(var(--strength-sticky-height) * -1);
	pointer-events: none;
}

.pageTop .strength-step {
	height: var(--strength-sticky-height);
}

.pageTop .strength-panel {
	align-items: start;
	display: grid;
	gap: 46px;
	grid-template-columns: 513px 1fr;
	min-height: var(--strength-sticky-height);
}

.pageTop .strength-list {
	align-content: start;
	counter-reset: strength-item strength-mobile-visual;
	display: grid;
	gap: 52px;
}

.pageTop .strength-item {
	color: rgba(0, 0, 0, 0.3);
	transition: color 0.35s ease;
}

.pageTop .strength-item.is-active {
	color: #000;
}

.pageTop .strength-item.is-active .strength-item-title::before {
	color: #FF0000;
}

.pageTop .strength-item.is-active .strength-item-copy {
	border-left-color: #FF0000;
}

.pageTop .strength-item.is-active .strength-item-text::after {
	background: #d8d8d8;
}

.pageTop .strength-item-copy {
	border-left: 1px solid currentColor;
	display: grid;
	gap: 14px;
	padding-left: 16px;
	transition: border-color 0.35s ease;
}

.pageTop .strength-item-title {
	color: currentColor;
	counter-increment: strength-item;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 28px;
	font-weight: bold;
	gap: 4px;
	letter-spacing: 0.08em;
	line-height: 1.7142857143;
	padding-left: 56px;
	position: relative;
}

.pageTop .strength-item-title::before {
	color: currentColor;
	content: "#" counter(strength-item);
	font-family: "Jost", sans-serif;
	font-size: 28px;
	font-style: italic;
	font-weight: 500;
	left: 0;
	letter-spacing: 0.2em;
	line-height: 1;
	position: absolute;
	top: 12px;
	transition: color 0.35s ease;
}

.pageTop .strength-item-text {
	color: currentColor;
	margin-left: 55px;
	position: relative;
	transition: color 0.35s ease;
}

.pageTop .strength-item-text::after {
	background: rgba(216, 216, 216, 0.3);
	bottom: -27px;
	content: "";
	height: 1px;
	position: absolute;
	right: 0;
	transition: background-color 0.35s ease;
	width: 100%;
}

.pageTop .strength-item:last-child .strength-item-text::after {
	content: none;
}

.pageTop .strength-item-mobile-visual {
	display: none;
}

.pageTop .strength-visuals {
	counter-reset: strength-visual;
	margin-top: -47px;
	min-height: var(--strength-sticky-height);
	position: relative;
}

.pageTop .strength-visual {
	clip-path: inset(0 100% 0 0);
	counter-increment: strength-visual;
	height: -moz-fit-content;
	height: fit-content;
	inset: 0;
	opacity: 0;
	position: absolute;
	transform: translateY(16px);
	transition: clip-path 0.8s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.35s ease, transform 0.35s ease;
	visibility: hidden;
}

.pageTop .strength-visual.is-active {
	clip-path: inset(0 0 0 0);
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
}

.pageTop .strength-visual-frame {
	height: 593px;
	height: min(593px, 59.3rem);
	width: 593px;
	width: min(593px, 59.3rem);
}

.pageTop .strength-visual-index {
	bottom: 128px;
	color: #FF0000;
	font-family: "Jost", sans-serif;
	font-size: 112px;
	font-style: italic;
	font-weight: 500;
	letter-spacing: 0.2em;
	line-height: 1;
	position: absolute;
	right: -55px;
	z-index: 3;
}

.pageTop .strength-visual-index::before {
	content: "#" counter(strength-visual);
}

.pageTop .strength-visual-caption {
	bottom: 16px;
	color: #FF0000;
	font-family: "Jost", sans-serif;
	font-size: 60px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: 1;
	position: absolute;
	right: -48px;
	text-align: right;
	text-transform: uppercase;
	z-index: 3;
}

.pageTop .strength-visual-caption span {
	display: block;
}

.pageTop .topService {
	padding: 180px 0 60px;
}

.pageTop .topService-inner {
	max-width: 1360px;
	position: relative;
	width: 100%;
}

.pageTop .topService-inner::before,
.pageTop .topService-inner::after {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	pointer-events: none;
	position: absolute;
}

.pageTop .topService-inner::before {
	background-image: url(../img/top/service_deco_01.svg);
	bottom: -11px;
	height: 140px;
	left: 15px;
	width: 110px;
}

.pageTop .topService-inner::after {
	background-image: url(../img/top/service_deco_02.svg);
	bottom: -48px;
	height: 236px;
	right: -83px;
	width: 164px;
}

.pageTop .topService-items {
	--top-service-card-height: 550px;
	--top-service-height: 952px;
	--top-service-strip-gap: 134px;
	--top-service-top: 140px;
	--top-service-step: 660px;
	counter-reset: top-service-item;
	margin-top: 50px;
	position: relative;
}

.pageTop .topService-btn {
	margin: 72px auto 0;
}

.pageTop .topService-sticky {
	border-radius: 30px;
	height: var(--top-service-height);
	position: sticky;
	top: var(--top-service-top);
	z-index: 2;
}

.pageTop .topService-sticky::before {
	background: url(../img/top/service_deco.svg) no-repeat center center/cover;
	content: "";
	height: 205px;
	pointer-events: none;
	position: absolute;
	right: -46px;
	top: -121px;
	width: 150px;
	z-index: 4;
}

.pageTop .topService-stage {
	border-radius: 30px;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.pageTop .topService-steps {
	margin-top: calc(var(--top-service-height) * -1);
	pointer-events: none;
}

.pageTop .topService-step {
	height: var(--top-service-step);
}

.pageTop .topService-item {
	border-radius: 30px;
	counter-increment: top-service-item;
	display: grid;
	gap: 0 30px;
	grid-template-columns: 465px 1fr;
	height: var(--top-service-card-height);
	left: 0;
	overflow: hidden;
	padding: 64px 80px 40px;
	position: absolute;
	top: 0;
	transform: translateY(0);
	width: 100%;
	z-index: var(--top-service-order);
}

.pageTop .topService-item > * {
	position: relative;
	z-index: 2;
}

.pageTop .topService-item-side,
.pageTop .topService-item-main {
	position: relative;
	z-index: 2;
}

.pageTop .topService-item-side > *,
.pageTop .topService-item-main > * {
	position: relative;
	z-index: 2;
}

.pageTop .topService-item::before,
.pageTop .topService-item::after {
	content: "";
	inset: 0;
	pointer-events: none;
	position: absolute;
}

.pageTop .topService-item::before {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.pageTop .topService-item::after {
	background: rgba(0, 0, 0, 0.2);
}

.pageTop .topService-item:nth-of-type(1)::before {
	background-image: url(../img/top/service_01_pc.png);
}

.pageTop .topService-item:nth-of-type(2)::before {
	background-image: url(../img/top/service_02_pc.png);
}

.pageTop .topService-item:nth-of-type(3)::before {
	background-image: url(../img/top/service_03_pc.png);
}

.pageTop .topService-item:nth-of-type(4)::before {
	background-image: url(../img/top/service_04_pc.png);
}

.pageTop .topService-item-side {
	align-self: start;
	display: flex;
	flex-direction: column;
	gap: 24px;
	grid-column: 1/2;
}

.pageTop .topService-item-main {
	align-self: start;
	display: flex;
	flex-direction: column;
	grid-column: 2/3;
	margin-left: auto;
	max-width: 660px;
	width: 100%;
}

.pageTop .topService-item-title {
	align-items: baseline;
	color: #fff;
	display: flex;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 34px;
	font-weight: bold;
	gap: 40px;
	letter-spacing: 0.08em;
	line-height: 1.2941176471;
	margin-top: 7px;
}

.pageTop .topService-item-title::before {
	color: #FF0000;
	content: counter(top-service-item, decimal-leading-zero);
	flex-shrink: 0;
	font-family: "Jost", sans-serif;
	font-size: 41px;
	font-style: italic;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1;
}

.pageTop .topService-item-title::after {
	background: #FF0000;
	content: "";
	height: 33px;
	left: 67px;
	position: absolute;
	top: 6px;
	width: 1px;
}

.pageTop .topService-item-lead {
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4666666667;
}

.pageTop .topService-item-text {
	color: #fff;
	line-height: 1.875;
	margin-top: 37px;
}

.pageTop .topService-item-btn {
	position: relative;
	z-index: 5;
}

.pageTop .topService-content {
	margin: 117px auto 0;
	max-width: 995px;
}

.pageTop .topService-content-title {
	position: relative;
	text-align: center;
}

.pageTop .topService-content-title::after {
	background: #FF0000;
	bottom: 7px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	translate: -50% 0;
	width: 68px;
}

.pageTop .topService-content-title .title-en {
	color: #FF0000;
	font-family: "Jost", sans-serif;
	font-size: 90px;
	font-weight: bold;
	letter-spacing: 0.2em;
	line-height: 1.4444444444;
	opacity: 0.05;
}

.pageTop .topService-content-title .title-jp {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 28px;
	font-weight: bold;
	left: 50%;
	letter-spacing: 0.12em;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
	width: 100%;
}

.pageTop .topService-content-items {
	counter-reset: top-service-content-item;
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(4, auto);
	margin-top: 40px;
}

.pageTop .topService-content-item {
	align-content: start;
	counter-increment: top-service-content-item;
	display: grid;
	grid-row: span 4;
	grid-template-rows: subgrid;
	width: 100%;
}

.pageTop .topService-content-item:first-of-type {
	border-right: 1px solid #d8d8d8;
	padding-right: 20px;
}

.pageTop .topService-content-item:first-of-type .topService-content-item-container {
	margin-right: auto;
}

.pageTop .topService-content-item:nth-of-type(2) {
	padding-left: 20px;
}

.pageTop .topService-content-item:nth-of-type(2) .topService-content-item-container {
	margin-left: auto;
}

.pageTop .topService-content-item-container {
	display: grid;
	grid-row: span 4;
	grid-template-rows: subgrid;
	max-width: 400px;
	position: relative;
	z-index: 1;
}

.pageTop .topService-content-item-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.3333333333;
	padding-left: 56px;
	position: relative;
}

.pageTop .topService-content-item-title::before {
	color: #FF0000;
	content: "#" counter(top-service-content-item);
	font-family: "Jost", sans-serif;
	font-size: 30px;
	font-style: italic;
	font-weight: 500;
	left: -1px;
	letter-spacing: 0.2em;
	line-height: 1.4333333333;
	position: absolute;
	top: -1px;
}

.pageTop .topService-content-item-img {
	aspect-ratio: 40/23;
	margin-top: 21px;
}

.pageTop .topService-content-item-lead {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.6363636364;
	margin-top: 23px;
}

.pageTop .topService-content-item-text {
	line-height: 1.875;
	margin-top: 26px;
}

.pageTop .topService-content-item .topService-content-item-container > * {
	align-self: start;
	justify-self: start;
	max-width: 400px;
	width: 100%;
}

.pageTop .topService-content-item:nth-of-type(2) .topService-content-item-container > * {
	justify-self: end;
}

.pageTop .case {
	overflow: hidden;
	padding: 49px 0 114px;
	position: relative;
}

.pageTop .case > * {
	position: relative;
	z-index: 5;
}

.pageTop .case-btn {
	margin: 11px auto 0;
	width: 396px;
}

.pageTop .case-inner {
	max-width: 1360px;
}

.pageTop .case-content {
	position: relative;
}

.pageTop .case-content > * {
	position: relative;
	z-index: 1;
}

.pageTop .case-content::before {
	background: #F2F2F2;
	border-radius: 40px;
	content: "";
	height: 90%;
	left: 50%;
	position: absolute;
	top: 63px;
	translate: -50% 0;
	width: 100%;
}

.pageTop .case-content::after {
	background: url(../img/top/case_deco.svg) no-repeat center center/cover;
	content: "";
	height: 445px;
	left: 50%;
	position: absolute;
	top: -69px;
	translate: -50% 0;
	width: 1329px;
}

.pageTop .case-slider {
	margin-top: 63px;
	overflow: visible;
}

.pageTop .case-slider .swiper-wrapper {
	align-items: stretch;
}

.pageTop .case-slider .swiper-slide {
	background: #fff;
	border-radius: 15px;
	display: flex;
	flex-direction: column;
	margin: 0 20px;
	overflow: hidden;
	width: 546px;
}

.pageTop .case-slider .swiper-button-wrapper {
	align-items: center;
	display: flex;
	justify-content: space-between;
	margin-top: 28px;
	padding: 0 50px;
}

.pageTop .case-slider .swiper-button-prev,
.pageTop .case-slider .swiper-button-next {
	align-items: center;
	color: #000;
	cursor: pointer;
	display: inline-flex;
	gap: 17px;
	height: auto;
	margin: 0;
	position: static;
	transition: all 0.3s ease;
	width: auto;
}

.pageTop .case-slider .swiper-button-prev .swiper-button-label,
.pageTop .case-slider .swiper-button-next .swiper-button-label {
	display: block;
	font-family: "Jost", sans-serif;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.2em;
	line-height: 1;
}

.pageTop .case-slider .swiper-button-prev::after,
.pageTop .case-slider .swiper-button-next::after {
	background: url(../img/common/arrow_right_red.png) no-repeat center center/12px 10px;
	border: 1px solid #FF0000;
	border-radius: 50%;
	content: "";
	flex-shrink: 0;
	font-size: 0;
	height: 42px;
	width: 42px;
}

.pageTop .case-slider .swiper-button-prev::after {
	order: -1;
	rotate: 180deg;
}

.pageTop .case-slider .swiper-button-next::after {
	order: 1;
}

.pageTop .case-slide-mid {
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	padding: 30px 40px 23px;
}

.pageTop .case-slide-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 30px;
	font-weight: bold;
	letter-spacing: 0.1em;
	line-height: 1.4;
	text-align: center;
}

.pageTop .case-slide-text {
	font-size: 18px;
	letter-spacing: 0.07em;
	line-height: 1.7777777778;
	margin-top: 20px;
}

.pageTop .case-slide-commit {
	align-items: center;
	background: #383838;
	display: flex;
	font-family: "Jost", sans-serif;
	margin-top: auto;
	min-height: 108px;
	padding: 20px;
	position: relative;
}

.pageTop .case-slide-commit::before {
	background: #fff;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	content: "";
	height: 15px;
	left: 50%;
	position: absolute;
	top: -2px;
	translate: -50% 0;
	width: 32px;
}

.pageTop .case-slide-commit-deco {
	color: #fff;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 0.04em;
	padding-right: 15px;
}

.pageTop .case-slide-commit-deco::first-letter {
	color: #FF0000;
}

.pageTop .case-slide-commit-text {
	color: #fff;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.02em;
	line-height: 1.3636363636;
	padding-left: 15px;
	position: relative;
}

.pageTop .case-slide-commit-text::before {
	background: #FF0000;
	content: "";
	height: 30px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 1px;
}

.pageThanks .thanks {
	padding: 63px 0 85px;
}

.pageThanks .thanks-inner {
	max-width: 1000px;
}

.pageThanks .thanks-box {
	border: 1px solid #BCBCBC;
	border-radius: 14px;
	padding: 46px 50px 37px;
}

.pageThanks .thanks-title {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.45;
	margin-bottom: 11px;
	padding-left: 21px;
	position: relative;
}

.pageThanks .thanks-title::before {
	background: #FF0000;
	content: "";
	height: 90%;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 4px;
}

.pageThanks .thanks-text {
	border-top: 1px solid #BCBCBC;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2.4285714286;
	padding-top: 14px;
}

.pageThanks .thanks-btn {
	margin: 42px auto 0;
	padding: 0 20px 0 29px;
	width: 280px;
}

:root {
	--layout-inner-pc: 1200px;
	--layout-inner-sp: 33.5rem;
	--layout-inner-sp-max: 33.5rem;
}

html {
	scrollbar-gutter: stable;
}

@media (width < 768px) {

.inner {
	max-width: initial;
	width: 33.5rem !important;
}

.text {
	font-size: 1.4rem;
	line-height: 2.1428571429;
}

br.is-pc {
	display: none;
}

br.is-sp {
	display: inline;
}

span.is-pc {
	display: none;
}

span.is-sp {
	display: inline;
}

.btn {
	font-size: 1.6rem;
	height: 5.4rem;
	padding: 0 2rem;
}

.btn::after {
	background-size: 1.2rem 1rem;
	height: 3.1rem;
	width: 3.1rem;
}

.btn--white {
	border-width: 0.2rem;
	padding: 0 1.4rem 0 1.8rem;
}

.sec-title .title-en {
	font-size: 1.6rem;
	line-height: 1.4375;
}

.sec-title .title-jp {
	font-size: 2.8rem;
	line-height: 1.3793103448;
	margin-top: 0.7rem;
}

.breadcrumb {
	border-width: 0.1rem;
	height: 8.8rem;
	padding-top: 2rem;
}

.breadcrumb-items {
	gap: 3.5rem;
}

.breadcrumb-items > span::after {
	height: 0.1rem;
	right: -2.5rem;
	width: 1.5rem;
}

.breadcrumb-items .home {
	font-size: 1.4rem;
}

.breadcrumb-items .post,
.breadcrumb-items .archive,
.breadcrumb-items .current-item {
	font-size: 1.2rem;
}

.loop-text-set {
	gap: var(--loop-text-gap-sp);
	padding-right: var(--loop-text-gap-sp);
}

.loop-text-item {
	font-size: var(--loop-text-font-size-sp);
	line-height: 1.22;
}

.message-modal {
	padding: 6rem 2rem;
}

.message-modal-content {
	padding: 1rem;
}

.message-modal-close {
	height: 4rem;
	top: -5rem;
	width: 4rem;
}

.message-modal-close::before,
.message-modal-close::after {
	height: 0.2rem;
	width: 2rem;
}

.pageLow-head {
	background-position: right -3.5rem top -10.2rem;
	background-size: 34.1rem 34.1rem;
}

.pageLow-head::before {
	height: 19rem;
	left: -28%;
	top: 5.7rem;
	translate: initial;
	width: 106.3rem;
}

.pageLow-title {
	height: 28.4rem;
	padding-top: 15.1rem;
}

.pageLow-title .title-en {
	font-size: 5.2rem;
	line-height: 1.4615384615;
}

.pageLow-title .title-jp {
	font-size: 1.8rem;
	line-height: 1.4444444444;
}

.header {
	border-radius: 0.8rem;
	box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.0509803922);
	height: 5.9rem;
	padding: 1rem;
	top: 1rem;
	width: 35.5rem;
}

.header-logo {
	height: 3.8rem;
	width: 14.4rem;
}

.header-logo-text {
	display: none;
}

.header-nav {
	display: none;
}

.header-btn {
	display: none;
}

.drawer-icon {
	height: 3.5rem;
	margin-left: auto;
	width: 3.5rem;
}

.drawer-bars {
	height: 1.4rem;
	width: 1.7rem;
}

.drawer-bar {
	border-radius: 1rem;
	height: 0.2rem;
	width: 1.7rem;
}

.drawer {
	border-radius: 0;
	border-radius: 0.8rem;
	box-shadow: 0 0.5rem 2.5rem rgba(0, 0, 0, 0.0509803922);
	height: -moz-fit-content;
	height: fit-content;
	left: 50%;
	max-height: calc(100dvh - 2rem);
	padding: 7rem 2rem 0;
	right: initial;
	top: 1rem;
	translate: -50% 0;
	width: 100%;
	width: 35.5rem;
	z-index: 11;
}

.drawer-header {
	align-items: center;
	display: flex;
	height: 5.9rem;
	justify-content: space-between;
	left: 0;
	padding: 1rem;
	position: absolute;
	top: 0;
	width: 100%;
}

.drawer-header-logo {
	height: 3.8rem;
	width: 14.4rem;
}

.drawer-header-logo-link {
	display: block;
	transition: opacity 0.3s ease;
}

.drawer-header-logo-text {
	color: #333;
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	line-height: 1.375;
	margin-top: 1rem;
	width: -moz-max-content;
	width: max-content;
}

.drawer-content {
	align-items: flex-start;
	padding: 2rem 0 4rem;
}

.drawer-container {
	display: block;
	margin-top: 0.9rem;
	max-width: none;
}

.drawer-img {
	display: none;
}

.drawer-items {
	flex-wrap: nowrap;
	gap: 0;
	height: auto;
}

.drawer-item {
	width: 100%;
}

.drawer-item-link {
	font-size: 1.6rem;
	letter-spacing: normal;
	padding: 1.8rem 4rem 1.8rem 1rem;
}

.drawer-mid {
	border: none;
	flex-direction: column;
	gap: 2.1rem;
	margin-top: 3.5rem;
	padding-bottom: 0;
}

.drawer-btn-items {
	flex-direction: column-reverse;
	gap: 1rem;
}

.drawer-btn {
	border-width: 0.1rem;
	height: 5.2rem;
	margin-inline: auto;
	width: 24.1rem;
}

.drawer-btn--mail {
	font-size: 1.6rem;
	justify-content: center;
}

.drawer-btn--mail::before {
	height: 1.9rem;
	margin-right: 0.4rem;
	width: 2.3rem;
}

.drawer-btn--tel {
	font-size: 1.8rem;
	justify-content: center;
	padding: 0 2rem;
}

.drawer-btn--tel::before {
	height: 1.8rem;
	margin-right: 0.4rem;
	width: 1.4rem;
}

.drawer-sns-items {
	gap: 1rem;
	justify-content: center;
}

.drawer-bottom {
	display: none;
}

.drawer-close {
	background: #FF0000;
	border: 0;
	border-radius: 50%;
	cursor: pointer;
	display: block;
	flex-shrink: 0;
	height: 3.5rem;
	padding: 0;
	position: relative;
	width: 3.5rem;
}

.drawer-close::before,
.drawer-close::after {
	background: #fff;
	border-radius: 1rem;
	content: "";
	height: 0.2rem;
	left: 50%;
	position: absolute;
	top: 50%;
	width: 1.7rem;
}

.drawer-close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.drawer-close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.js-drawer-details > .drawer-item-link {
	cursor: pointer;
	list-style: none;
	position: relative;
}

.js-drawer-details > .drawer-item-link::-webkit-details-marker {
	display: none;
}

.js-drawer-details > .drawer-item-link::before,
.js-drawer-details > .drawer-item-link::after {
	content: "";
	position: absolute;
	right: 2rem;
	top: 50%;
}

.js-drawer-details > .drawer-item-link::before {
	background: linear-gradient(#fff, #fff) center/0.8rem 0.2rem no-repeat, #FF0000;
	border-radius: 50%;
	height: 2rem;
	translate: 50% -50%;
	width: 2rem;
}

.js-drawer-details > .drawer-item-link::after {
	background: #fff;
	height: 0.2rem;
	rotate: 90deg;
	transition: rotate 0.3s ease;
	translate: 50% -50%;
	width: 0.8rem;
}

.js-drawer-details[open] > .drawer-item-link::after {
	rotate: 180deg;
}

.drawer-subitems-wrapper {
	overflow: hidden;
}

.drawer-subitems {
	display: grid;
	gap: 1rem;
	grid-template-columns: 1fr;
	padding-bottom: 1.8rem;
	padding-left: 0.9rem;
}

.drawer-subitem-link {
	color: #868686;
	display: block;
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 1.6rem;
	font-weight: bold;
	letter-spacing: normal;
	line-height: 1.5;
}

.drawer-subitem-link::before {
	content: "-";
	margin-right: 0.5rem;
}

.faq {
	padding: 6rem 0 0;
}

.faq-content {
	border-radius: 2rem;
	gap: 0;
	grid-template-columns: 1fr;
	padding: 3.8rem 2rem 4.9rem;
}

.faq-content::after {
	display: none;
}

.faq-title {
	padding-top: 0;
	text-align: center;
}

.faq-items {
	gap: 1.2rem 0;
	margin-top: 3.1rem;
	max-width: initial;
}

.faq-item-question {
	border-radius: 1rem;
	gap: 0 1.2rem;
	grid-template-columns: 1fr 1.8rem;
	min-height: 8.7rem;
	padding: 1.8rem 2rem 1.8rem 2rem;
}

.faq-item-title,
.faq-item-answer-container {
	padding-left: 3.3rem;
}

.faq-item-title::before,
.faq-item-answer-container::before {
	font-size: 2rem;
}

.faq-item-title {
	font-size: 1.6rem;
	margin-top: 0;
}

.faq-item-title::before {
	top: 0;
}

.faq-item-answer {
	border-radius: 0 0 1rem 1rem;
	padding: 0 3rem 0 2.1rem;
}

.faq-item-answer-container {
	font-size: 1.4rem;
	line-height: 1.8571428571;
	min-height: initial;
	padding: 1.2rem 0 1.6rem 3.1rem;
}

.faq-item-answer-container::before {
	top: 0.8rem;
}

.faq-item-answer-container::after {
	height: 0.2rem;
	top: -0.1rem;
	width: 2.4rem;
}

.faq-item-btn {
	height: 1.8rem;
	width: 1.8rem;
}

.faq-item-btn .btn-bar {
	height: 0.1rem;
	width: 0.7rem;
}

details[open] .faq-item-question {
	border-radius: 1rem 1rem 0 0;
}

.serviceCategory-head {
	border-radius: 2rem;
	padding: 5rem 2rem;
}

.serviceCategory-head::before {
	height: 12.6rem;
	right: -1.3rem;
	top: -4.3rem;
	width: 9.6rem;
}

.serviceCategory-head-items {
	border-radius: 2rem;
	grid-template-columns: 1fr;
	margin-top: 3rem;
}

.serviceCategory-head-item {
	gap: 2.2rem;
	min-height: 17.8rem;
	padding: 3rem 1.9rem 3.5rem 2rem;
}

.serviceCategory-head-item-title {
	font-size: 1.8rem;
	line-height: 1.4444444444;
	margin-top: 1.1rem;
	padding-left: 4.5rem;
}

.serviceCategory-head-item-title::before {
	font-size: 2.2rem;
	top: -0.2rem;
}

.serviceCategory-head-item-title::after {
	height: 85%;
	left: 3.3rem;
	top: 57%;
	translate: 0 -50%;
	width: 0.2rem;
}

.serviceCategory-head-item-text {
	line-height: 1.8571428571;
}

.serviceCategory-head-btn {
	margin-top: 3rem;
	padding: 0 1.5rem 0 1.9rem;
	width: 29.5rem;
}

.serviceCategory--inbound .serviceCategory-head-item:nth-of-type(1) {
	background-image: url(../img/service/inbound/inbound_01_sp.png);
}

.serviceCategory--inbound .serviceCategory-head-item:nth-of-type(2) {
	background-image: url(../img/service/inbound/inbound_02_sp.png);
}

.serviceCategory--inbound .serviceCategory-head-item:nth-of-type(3) {
	background-image: url(../img/service/inbound/inbound_03_sp.png);
}

.serviceCategory--inbound .serviceCategory-head-item:nth-of-type(4) {
	background-image: url(../img/service/inbound/inbound_04_sp.png);
}

.serviceCategory--outbound .serviceCategory-head-item:nth-of-type(1) {
	background-image: url(../img/service/outbound/outbound_01_sp.png);
}

.serviceCategory--outbound .serviceCategory-head-item:nth-of-type(2) {
	background-image: url(../img/service/outbound/outbound_02_sp.png);
}

.recruit {
	padding: 8rem 0 0;
}

.recruit-inner::before,
.recruit-inner::after {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	position: absolute;
	z-index: 2;
}

.recruit-inner::before {
	background-image: url(../img/common/recruit_deco_01.svg);
	height: 4.9rem;
	left: 2.8rem;
	top: 10.5rem;
	width: 4.6rem;
}

.recruit-inner::after {
	background-image: url(../img/common/recruit_deco_02.svg);
	height: 4.2rem;
	right: -3.4rem;
	top: 24rem;
	width: 7.8rem;
}

.recruit-content {
	border-radius: 2rem;
	padding: 5rem 0 34.2rem;
}

.recruit-content::before {
	height: 11rem;
	right: 1.9rem;
	top: -5.8rem;
	width: 7.9rem;
}

.recruit-lead {
	font-size: 2.4rem;
	line-height: 1.5;
	margin-top: 3rem;
	max-width: initial;
}

.recruit-text {
	font-size: 1.4rem;
	line-height: 2;
	margin-top: 1.5rem;
	max-width: 30rem;
}

.recruit-btn {
	margin-top: 3.6rem;
	width: 28rem;
}

.recruit-img.img01,
.recruit-img.img02,
.recruit-img.img03,
.recruit-img.img04 {
	display: none;
}

.recruit-img.img05 {
	bottom: 5rem;
	display: block;
	height: 27.9rem;
	left: 47%;
	translate: -50% 0;
	width: 43.9rem;
}

.instagram {
	margin-top: 6rem;
}

.instagram-banner {
	grid-template-columns: 20.1rem 9.4rem;
	height: 9.4rem;
	margin-inline: auto;
	width: 29.5rem;
}

.instagram-info {
	padding: 0 3rem;
}

.instagram-title {
	font-size: 1.6rem;
	gap: 1.4rem;
	line-height: 1.4375;
}

.instagram-title::before {
	height: 2.6rem;
	width: 2.6rem;
}

.instagram-text {
	font-size: 1.3rem;
	line-height: 1.4615384615;
}

.instagram-text::after {
	background-size: 0.8rem 0.7rem;
	height: 2.4rem;
	margin-left: initial;
	margin-right: 0.5rem;
	width: 2.4rem;
}

.instagram-img {
	height: 9.4rem;
}

.instagram-img img {
	height: auto;
	left: initial;
	position: static;
	top: initial;
	translate: initial;
}

.link {
	margin-top: 6rem;
}

.link-inner::before {
	height: 10.3rem;
	left: -5.1rem;
	top: -4rem;
	width: 11.2rem;
}

.link-inner::after {
	bottom: -5.7rem;
	height: 16.2rem;
	right: -4rem;
	width: 10.8rem;
}

.link-items {
	gap: 2rem;
	grid-template-columns: 1fr;
}

.link-item {
	border-radius: 1.5rem;
	height: 21.1rem;
}

.link-item--voice {
	background-image: url(../img/common/link_voice_sp.png);
}

.link-item--outline {
	background-image: url(../img/common/link_outline_sp.png);
}

.link-item-title .title-en {
	font-size: 1.6rem;
	line-height: 1.4375;
}

.link-item-title .title-jp {
	font-size: 2.8rem;
	line-height: 1.4285714286;
}

.link-item-title::after {
	background-size: 1.1rem 1rem;
	height: 3.3rem;
	margin-top: 1rem;
	width: 3.3rem;
}

.cta {
	border-radius: 2rem 2rem 0 0;
	margin-top: 6.1rem;
	padding-bottom: 6rem;
	padding-top: 4.1rem;
}

.cta-content {
	gap: 2.7rem;
	grid-template-columns: 1fr;
}

.cta-title .title-en {
	font-size: 1.6rem;
	line-height: 1.4375;
}

.cta-title .title-jp {
	font-size: 2.8rem;
	line-height: 1.4285714286;
	margin-top: 0.6rem;
}

.cta-text {
	line-height: 1.8571428571;
	margin-top: 3rem;
}

.cta-items {
	gap: 2.2rem;
	max-width: initial;
}

.cta-item {
	border-width: 0.2rem;
	grid-template-columns: 1fr;
	min-height: 18.5rem;
	padding: 2.8rem 1.8rem 2.6rem;
}

.cta-item dt {
	font-size: 1.8rem;
	gap: 1.3rem;
	justify-content: center;
}

.cta-item dd {
	padding-left: initial;
	text-align: center;
}

.cta-item dd::before {
	display: none;
}

.cta-item--mail {
	gap: 3rem;
}

.cta-item--mail dt::before {
	height: 2rem;
	width: 2.1rem;
}

.cta-item--tel {
	gap: 2rem;
}

.cta-item--tel dt::before {
	height: 2.2rem;
	width: 1.7rem;
}

.cta-tel {
	font-size: 3.4rem;
}

.cta-attention {
	font-size: 1.2rem;
}

.cta-btn {
	height: 7rem;
	max-width: initial;
	width: 29.5rem;
}

.footer {
	padding: 8rem 0 3.2rem;
}

.footer-content {
	grid-template-columns: 1fr;
	padding-bottom: 3.6rem;
}

.footer-logo {
	height: 5.3rem;
	width: 20.1rem;
}

.footer-nav {
	flex-direction: column;
	gap: 4.6rem;
	grid-column: 1/2;
	grid-row: 2/3;
	margin-top: 4.4rem;
	max-width: initial;
}

.footer-nav-items {
	gap: 2.6rem;
}

.footer-nav-item a {
	font-size: 1.4rem;
}

.footer-logo-items {
	gap: 1rem;
	grid-row: 4/5;
	margin-top: 3.7rem;
}

.footer-logo-item:nth-of-type(1) {
	height: 6.6rem;
	width: 6.6rem;
}

.footer-logo-item:nth-of-type(2) {
	height: 7.2rem;
	width: 5.5rem;
}

.footer-logo-item:nth-of-type(3) {
	height: 6.5rem;
	width: 5.7rem;
}

.footer-logo-item:nth-of-type(4) {
	height: 7.2rem;
	width: 8.3rem;
}

.footer-sns-items {
	gap: 1rem;
	grid-column: 1/2;
	grid-row: 3/4;
	margin-left: 0.8rem;
	margin-top: 2.3rem;
}

.footer-sns-item {
	height: 3.6rem;
	width: 3.6rem;
}

.footer-bottom {
	border-width: 0.1rem;
	flex-direction: column;
	gap: 6.5rem;
	padding-top: 4.3rem;
}

.footer-link-items {
	flex-direction: column;
	gap: 2.5rem;
}

.footer-link-item a {
	font-size: 1.2rem;
}

.footer-copyright {
	font-size: 1.2rem;
	margin-top: initial;
	text-align: right;
}

.pageInstall .case-intro-list {
	border-radius: 2rem;
	gap: 2.9rem;
	padding: 3rem 2rem 3.9rem;
}

.pageInstall .case-intro-list::after {
	display: none;
}

.pageInstall .case-intro-list-item {
	font-size: 1.8rem;
}

.pageInstall .case-intro-list-item span {
	padding-left: 1.2rem;
}

.pageInstall .case-intro-list-item span::before {
	height: 1.8rem;
	top: 0.5rem;
	width: 0.2rem;
}

.pageInstall .case-intro-sub-list {
	gap: 1rem;
	grid-template-columns: 1fr;
	margin-top: 1.7rem;
}

.pageInstall .case-intro-sub-list-item {
	border-radius: 0.6rem;
	font-size: 1.4rem;
	grid-column: span 1;
	justify-content: left;
	letter-spacing: 0.05em;
	line-height: 1.5714285714;
	min-height: 50px;
	padding: 1.4rem 1.9rem;
	text-align: left;
}

.pageInstall .case-intro-sub-list-item--large {
	grid-column: span 1;
}

.pageInstall .case-company {
	margin-top: 5.9rem;
	padding-bottom: 0;
}

.pageInstall .case-company#voice {
	scroll-margin-top: 9.3rem;
}

.pageInstall .case-company-list {
	gap: 4.1rem;
	grid-template-columns: 1fr;
}

.pageInstall .case-company-list::after {
	display: none;
}

.pageInstall .case-company-list-item {
	border-radius: 1.5rem;
	box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.1019607843);
}

.pageInstall .case-company-img figcaption {
	border-radius: 0.6rem;
	bottom: 1.6rem;
	font-size: 1.8rem;
	max-width: initial;
	min-height: 5.1rem;
	padding: 1.2rem 1.2rem 1.2rem 3.1rem;
	width: 30rem;
}

.pageInstall .case-company-img figcaption::before {
	border-width: 0.3rem;
	height: 0.5rem;
	left: 1.3rem;
	top: 2.1rem;
	width: 0.5rem;
}

.pageInstall .case-company-body {
	padding: 2.3rem 1.9rem 2.6rem;
}

.pageInstall .case-company-body-title .title-en {
	font-size: 2rem;
	margin-top: 0.3rem;
}

.pageInstall .case-company-body-title .title-jp {
	font-size: 1.8rem;
	line-height: 1.6111111111;
}

.pageInstall .case-company-body-title .title-jp::before {
	height: 1.6rem;
	left: -1.2rem;
	width: 0.1rem;
}

.pageInstall .case-company-body-text {
	line-height: 2;
	margin-top: 0.9rem;
}

.pageInstall .case-company-commit::before {
	height: 1.5rem;
	top: -0.2rem;
	width: 3.2rem;
}

.pageInstall .case-company-commit-title {
	gap: 2.1rem;
}

.pageInstall .case-company-commit-text {
	font-size: 1.6rem;
	line-height: 1.875;
	margin-top: 1.1rem;
}

.pageInstall .case-btn-items {
	gap: 1.5rem;
	grid-template-columns: 1fr;
	margin-top: 3.9rem;
	max-width: initial;
}

.pageInstall .case-btn {
	max-width: initial;
	padding: 0 1.5rem 0 1.9rem;
}

.pageForm .contact {
	margin-bottom: 0;
	margin-top: 1.5rem;
}

.pageForm .contact-inner::before {
	display: none;
}

.pageForm .contact-text {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 2;
	text-align: left;
}

.pageForm .contact-form {
	border-radius: 0.8rem;
	border-width: 0.1rem;
	margin-top: 3.6rem;
	padding: 4.8rem 1.9rem 5.8rem;
}

.pageForm .contact-form .contact-form-container {
	border-width: 0.1rem;
	margin-top: 1.9rem;
	padding-top: 2rem;
}

.pageForm .contact-form .contact-form-title {
	font-size: 2rem;
	letter-spacing: 0.04em;
	padding-left: 1.6rem;
}

.pageForm .contact-form .contact-form-title::before {
	height: 2.6rem;
	width: 0.3rem;
}

.pageForm .contact-form .form-group {
	display: block;
	margin-bottom: 2rem;
}

.pageForm .contact-form .form-group.text-multi {
	border-width: 0.1rem;
	padding-top: 2rem;
}

.pageForm .contact-form .form-label {
	font-size: 1.4rem;
	gap: 0 1rem;
	justify-content: left;
	line-height: 1.8571428571;
	margin-bottom: 0.8rem;
	padding-left: 0.3rem;
	padding-right: initial;
	width: 100%;
}

.pageForm .contact-form .form-label.required::after {
	font-size: 1.2rem;
	height: 2rem;
	letter-spacing: normal;
	position: static;
	width: 4.4rem;
}

.pageForm .contact-form .form-value {
	width: 100%;
}

.pageForm .contact-form .zip-fields {
	gap: 0 0.9rem;
}

.pageForm .contact-form .zip-fields .wpcf7-form-control-wrap {
	flex: 0 0 7.6rem;
}

.pageForm .contact-form .zip-fields .wpcf7-form-control-wrap:last-of-type {
	flex: 0 0 9.5rem;
}

.pageForm .contact-form .zip-fields > .wpcf7-not-valid-tip {
	margin-top: 0.4rem;
}

.pageForm .contact-form .zip-fields {
	gap: 0 1rem;
}

.pageForm .contact-form .zip-fields .wpcf7-form-control-wrap {
	flex: 0 1 10rem;
}

.pageForm .contact-form .zip-fields .wpcf7-form-control-wrap:last-of-type {
	flex-basis: 12rem;
}

.pageForm .contact-form .zip-separator {
	font-size: 1.8rem;
}

.pageForm .contact-form input,
.pageForm .contact-form select,
.pageForm .contact-form textarea {
	font-size: 1.2rem;
	letter-spacing: 0.02em;
	line-height: 2.1666666667;
	padding: 0 1.5rem;
}

.pageForm .contact-form input:not([type=radio]) {
	height: 4rem;
}

.pageForm .contact-form textarea {
	height: 12rem;
	padding: 1.4rem 1.5rem;
}

.pageForm .contact-form input[type=radio]:focus-visible + span::before {
	outline: auto 0.1rem;
}

.pageForm .contact-form input[type=radio] + span {
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	line-height: 1.3571428571;
	margin-left: 2.7rem;
}

.pageForm .contact-form input[type=radio] + span::before {
	border-width: 0.1rem;
	height: 1.8rem;
	left: -2.7rem;
	top: 0;
	transform: initial;
	width: 1.8rem;
}

.pageForm .contact-form input[type=radio] + span::after {
	border-width: 0.1rem;
	height: 0.8rem;
	left: -2.1rem;
	top: 0.6rem;
	transform: initial;
	width: 0.8rem;
}

.pageForm .contact-form .contact-btn {
	border-radius: 3.8rem;
	height: 5.4rem;
	margin-top: 3.2rem;
	width: 21.8rem;
}

.pageForm .contact-form .contact-btn::after {
	background-size: 1.2rem 1rem;
	height: 3.1rem;
	right: 1.5rem;
	width: 3.1rem;
}

.pageForm .contact-form .contact-btn input {
	font-size: 1.4rem !important;
	letter-spacing: normal;
	padding: 0 1.5rem 0 3rem;
}

.pageForm .contact-form .wpcf7-radio {
	gap: 1.1rem;
}

.pageForm .privacy-check {
	margin-top: 4.6rem;
}

.pageForm .privacy-check label {
	gap: 1rem;
}

.pageForm .privacy-check label input[type=checkbox] {
	border-radius: 0.3rem;
	height: 1.6rem;
	width: 1.6rem;
}

.pageForm .privacy-check label .wpcf7-list-item-label {
	font-size: 1.4rem;
}

.pageCompany .company-content {
	gap: 2.5rem;
	grid-template-columns: 1fr;
}

.pageCompany .company-content::before {
	height: 10.9rem;
	left: initial;
	right: 2rem;
	top: -4rem;
	width: 9.3rem;
}

.pageCompany .company-content::after {
	bottom: -20.9rem;
	height: 12.6rem;
	right: -1.1rem;
	width: 9.6rem;
}

.pageCompany .company-title {
	margin-top: initial;
}

.pageCompany .company-items {
	max-width: initial;
}

.pageCompany .company-item {
	border-width: 0.1rem;
	gap: initial;
	grid-template-columns: 10.9rem 1fr;
}

.pageCompany .company-item::before {
	height: 0.2rem;
	top: -0.1rem;
	width: 2.4rem;
}

.pageCompany .company-item dt,
.pageCompany .company-item dd {
	min-height: 7.7rem;
}

.pageCompany .company-item dt {
	font-size: 1.4rem;
	line-height: 1.9285714286;
	padding: 2.4rem 0;
}

.pageCompany .company-item dd {
	font-size: 1.3rem;
	line-height: 1.8461538462;
	max-width: initial;
	padding: 2.6rem 0;
}

.pageCompany .company-item-list li::before {
	height: 0.3rem;
	left: 0.5rem;
	top: 1.1rem;
	width: 0.3rem;
}

.pageCompany .company-item-list--address {
	gap: 2.3rem;
	padding: 0;
}

.pageCompany .company-item-list--address li {
	padding-left: 2rem;
}

.pageCompany .company-item-list--address li::before {
	border-width: 0.3rem;
	height: 0.5rem;
	top: 0.7rem;
	width: 0.5rem;
}

.pageCompany .company-item-list--address li .name {
	font-size: 1.4rem;
	line-height: 1.7142857143;
	margin-top: initial;
}

.pageCompany .company-loop-text {
	margin-top: -0.7rem;
}

.pageCompany .story {
	padding-top: 2.1rem;
}

.pageCompany .story-content {
	gap: 2.7rem;
	grid-template-columns: 1fr;
}

.pageCompany .story-title {
	margin-top: initial;
}

.pageCompany .story-items {
	max-width: initial;
}

.pageCompany .story-item {
	border-width: 0.1rem;
	gap: 0 3rem;
	grid-template-columns: 7.3rem 1fr;
}

.pageCompany .story-item::before {
	height: 0.2rem;
	top: -0.1rem;
	width: 2.4rem;
}

.pageCompany .story-item dt,
.pageCompany .story-item dd {
	min-height: 7.7rem;
}

.pageCompany .story-item dt {
	padding: 2.6rem 0;
}

.pageCompany .story-item dd {
	max-width: initial;
}

.pageCompany .story-year {
	font-size: 2.4rem;
}

.pageCompany .story-year-label {
	font-size: 1.2rem;
}

.pageCompany .story-event {
	border-width: 0.1rem;
	grid-template-columns: 4.1rem 1fr;
	padding: 2.5rem 0;
}

.pageCompany .story-month {
	font-size: 1.4rem;
}

.pageCompany .story-text {
	font-size: 1.3rem;
	line-height: 2;
	margin-top: initial;
	max-width: initial;
}

.pageCompany .locations {
	margin-top: 3.1rem;
}

.pageCompany .locations-content {
	border-radius: 2rem;
	padding: 4.1rem 2rem 4.6rem;
}

.pageCompany .locations-content::before {
	display: none;
}

.pageCompany .locations-items {
	gap: 3.7rem;
	grid-template-columns: 1fr;
	margin-top: 3.2rem;
}

.pageCompany .locations-item {
	grid-row: auto;
	grid-template-rows: auto;
}

.pageCompany .locations-item-title {
	margin-top: 2.8rem;
	padding-left: 1.1rem;
}

.pageCompany .locations-item-title::before {
	height: 80%;
	top: 56%;
	width: 0.2rem;
}

.pageCompany .locations-item-title span {
	font-size: 2.2rem;
	line-height: 1.5454545455;
	padding-left: 3.6rem;
}

.pageCompany .locations-item-title span::before {
	font-size: 2.2rem;
	line-height: 1.4545454545;
	top: 0.2rem;
}

.pageCompany .locations-item-body {
	display: block;
	margin-top: 1.4rem;
}

.pageCompany .locations-item-date {
	font-size: 1.4rem;
	line-height: 2.1428571429;
}

.pageCompany .locations-item-text {
	line-height: 2.1428571429;
}

.pageCompany .access {
	padding: 1.3rem;
	padding-top: 6rem;
}

.pageCompany .access-title {
	margin-top: initial;
}

.pageCompany .access-content {
	gap: 0;
	grid-template-columns: 1fr;
}

.pageCompany .access-content::before {
	height: 11.2rem;
	left: initial;
	right: 0;
	top: 0;
	width: 9.6rem;
}

.pageCompany .access-items {
	margin-top: 3rem;
}

.pageCompany .access-item {
	border-width: 0.1rem;
	flex-direction: column;
	gap: 0;
	padding: 2.9rem 0 4rem;
}

.pageCompany .access-item:last-of-type {
	padding-bottom: 0;
}

.pageCompany .access-item::before {
	height: 0.2rem;
	top: -0.1rem;
	width: 2.4rem;
}

.pageCompany .access-item-title {
	font-size: 1.6rem;
	line-height: 1.6875;
}

.pageCompany .access-item-img {
	margin: initial;
	width: 17rem;
}

.pageCompany .access-item-head {
	display: flex;
	justify-content: space-between;
}

.pageCompany .access-address {
	max-width: initial;
	padding-left: initial;
}

.pageCompany .access-address-text {
	font-size: 1.4rem;
	line-height: 1.8571428571;
	margin-top: 2rem;
	padding-left: 2.9rem;
}

.pageCompany .access-address-text::before {
	height: 2.4rem;
	top: 0.3rem;
	width: 1.8rem;
}

.pageCompany .access-address-items {
	margin-top: 0.4rem;
}

.pageCompany .access-address-item {
	border-width: 0.1rem;
	gap: 0 3.2rem;
	grid-template-columns: 7rem 1fr;
	padding: 1.6rem 0;
}

.pageCompany .access-address-item dt {
	font-size: 1.6rem;
}

.pageCompany .access-address-item dt::before {
	border-width: 0.3rem;
	height: 0.5rem;
	top: 0.4rem;
	width: 0.5rem;
}

.pageCompany .access-address-item dd {
	font-size: 1.4rem;
	line-height: 1.2857142857;
}

.pageCompany .access-map {
	aspect-ratio: 315/211;
	margin-top: 2rem;
	max-width: initial;
}

.pageFlow .flow {
	margin-bottom: 0;
}

.pageFlow .flow-items {
	margin-top: 2.7rem;
}

.pageFlow .flow-item {
	border-width: 0.1rem;
	gap: 1.1rem;
	grid-template-columns: 1fr;
	min-height: initial;
	padding: 2.3rem 2rem;
}

.pageFlow .flow-item::before {
	height: 0.3rem;
	top: -0.2rem;
	width: 2.4rem;
}

.pageFlow .flow-item:last-of-type {
	border-width: 0.1rem;
}

.pageFlow .flow-item:last-of-type::after {
	bottom: -0.2rem;
	height: 0.3rem;
	width: 2.4rem;
}

.pageFlow .flow-item-head {
	display: grid;
	gap: 1rem;
	grid-template-columns: 4.5rem 1fr;
	padding-left: 8.4rem;
}

.pageFlow .flow-item-head::before {
	font-size: 1.4rem;
	line-height: 1.4285714286;
}

.pageFlow .flow-item-icon {
	height: 4.5rem;
	margin-right: 0;
	width: 4.5rem;
}

.pageFlow .flow-item-title {
	font-size: 1.6rem;
	line-height: 1.375;
}

.pageFlow .flow-item-text {
	line-height: 2;
}

.pagePrivacy .privacy {
	background-image: none;
	margin-bottom: 0;
	margin-top: 3.9rem;
}

.pagePrivacy .privacy-intro {
	margin-top: 2.5rem;
}

.pagePrivacy .privacy-text,
.pagePrivacy .privacy-list li,
.pagePrivacy .privacy-box-item dt,
.pagePrivacy .privacy-box-item dd {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 2;
}

.pagePrivacy .privacy-text--small {
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	margin-top: 3.4rem;
}

.pagePrivacy .privacy-list {
	margin-top: 2.8rem;
}

.pagePrivacy .privacy-list li {
	padding-left: 1.5rem;
}

.pagePrivacy .privacy-list li::before {
	height: 0.3rem;
	left: 0.5rem;
	top: 1.3rem;
	width: 0.3rem;
}

.pagePrivacy .privacy-box {
	border-radius: 1rem;
	margin-top: 3.7rem;
	padding: 3.4rem 2rem;
}

.pagePrivacy .privacy-box-title {
	font-size: 2.1rem;
	margin-bottom: 1.3rem;
}

.pagePrivacy .privacy-box-title--circle {
	padding-left: 1.6rem;
}

.pagePrivacy .privacy-box-title--circle::before {
	border-width: 0.3rem;
	height: 0.5rem;
	top: 1.2rem;
	width: 0.5rem;
}

.pagePrivacy .privacy-box-items {
	display: flex;
	flex-direction: column;
}

.pagePrivacy .privacy-box-item {
	display: grid;
	grid-template-columns: max-content 1fr;
}

.pagePrivacy .privacy-box-body {
	margin-top: 0.8rem;
}

.pagePrivacy .privacy-box-section {
	margin-bottom: 2.4rem;
}

.pagePrivacy .privacy-boxes {
	gap: 3rem;
	margin-top: 5rem;
}

.pagePrivacy .privacy-boxes .privacy-box {
	padding: 3.4rem 2rem;
}

.pagePrivacy .privacy-content {
	margin-top: 6.3rem;
}

.pagePrivacy .privacy-content-title {
	font-size: 2.2rem;
	line-height: 1.4545454545;
	padding-bottom: 2.1rem;
}

.pagePrivacy .privacy-content-title::after {
	height: 1rem;
	width: 29.5rem;
}

.pagePrivacy .privacy-items {
	gap: 4.6rem;
	margin-top: 4.4rem;
}

.pagePrivacy .privacy-item-title {
	border-width: 0.1rem;
	font-size: 2rem;
	letter-spacing: 0.04em;
	margin-bottom: 2.5rem;
	min-height: 6.5rem;
	padding: 1rem 0;
}

.pagePrivacy .privacy-item-text {
	line-height: 2;
}

.pagePrivacy .privacy-item-text-wrapper {
	gap: 2.8rem;
}

.pagePrivacy .privacy-counter-list-text {
	line-height: 2;
}

.pagePrivacy .privacy-counter-list--parentheses {
	gap: 0.4rem;
	margin-top: 2.8rem;
}

.pagePrivacy .privacy-counter-list--parentheses > li {
	padding-left: 3.3rem;
}

.pagePrivacy .privacy-counter-list--parentheses > li:not(:first-child) {
	margin-top: 2.4rem;
}

.pagePrivacy .privacy-counter-list--compact {
	margin-top: 2.8rem;
}

.pagePrivacy .privacy-detail-box {
	border-radius: 1rem;
	gap: 3rem;
	padding: 3rem 2rem;
}

.pagePrivacy .privacy-detail-title {
	font-size: 1.6rem;
	line-height: 1.625;
}

.pagePrivacy .privacy-detail-text {
	font-size: 1.2rem;
	line-height: 1.8333333333;
}

.pageIsms .isms {
	background-image: none;
	margin-bottom: 0;
	margin-top: 3.9rem;
}

.pageIsms .isms-inner::before {
	display: none;
}

.pageIsms .isms-intro {
	margin-top: 2.5rem;
}

.pageIsms .isms-text {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 2;
}

.pageIsms .isms-text--small {
	font-size: 1.2rem;
	letter-spacing: 0.04em;
	margin-top: 5.4rem;
}

.pageIsms .isms-counter-list {
	gap: 2.8rem;
	margin-top: 2.8rem;
}

.pageIsms .isms-counter-list > li {
	line-height: 2;
	padding-left: 1.5rem;
}

.pageIsms .isms-counter-list-text {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 2;
}

.pageIsms .isms-counter-list--circled > li {
	padding-left: 1.5rem;
}

.pageRecruit .message {
	margin-top: 2.6rem;
}

.pageRecruit .message-movie {
	border-radius: 1.5rem;
	height: 20rem;
	max-width: initial;
}

.pageRecruit .message-movie::after {
	height: 5.5rem;
	width: 5.5rem;
}

.pageRecruit .message-loop-text {
	margin-top: -5.3rem;
}

.pageRecruit .support {
	margin-top: 2.2em;
}

.pageRecruit .support-items {
	gap: 3.6rem;
	grid-template-columns: 1fr;
	margin-top: 3.2rem;
	padding: 0 1rem;
}

.pageRecruit .support-item {
	border-width: 0.2rem;
	display: block;
	gap: 0;
	grid-row: auto;
}

.pageRecruit .support-item:last-of-type {
	border-right: none;
}

.pageRecruit .support-item-title {
	font-size: 2rem;
	letter-spacing: 0.08em;
	line-height: 1.75;
	padding: 0 0 0 2rem;
}

.pageRecruit .support-item-title::before {
	left: -0.2rem;
	width: 0.2rem;
}

.pageRecruit .support-item-title span {
	padding-left: 3.4rem;
}

.pageRecruit .support-item-title span::before {
	font-size: 2rem;
	line-height: 1.5;
	top: 0.3rem;
}

.pageRecruit .support-item-img {
	height: auto;
	margin: 1.9rem 0 0 1.7rem;
}

.pageRecruit .support-item-img img {
	border-radius: 1.5rem;
	height: auto;
	left: initial;
	position: static;
	top: initial;
	translate: initial;
}

.pageRecruit .support-item-text {
	line-height: 2;
	margin-top: 2.6rem;
	padding: 0 0 0 1.8rem;
}

.pageRecruit .member {
	margin-top: 7.9rem;
}

.pageRecruit .member-bg {
	border-radius: 2rem;
	padding: 3.7rem 2rem 4rem;
}

.pageRecruit .member-bg::before {
	height: 8.7rem;
	right: -4rem;
	top: -5rem;
	width: 9.5rem;
}

.pageRecruit .member-title {
	background: transparent;
	height: initial;
	width: initial;
}

.pageRecruit .member-slider {
	max-width: initial;
	width: 100%;
}

.pageRecruit .member-slider-container .swiper-pagination {
	gap: 0.9rem;
	top: 11.1rem;
}

.pageRecruit .member-slider-container .swiper-pagination .swiper-pagination-bullet {
	border-width: 0.1rem;
	height: 0.7rem;
	width: 0.7rem;
}

.pageRecruit .member-slider-container .swiper-button-wrapper {
	gap: 1.3rem;
	top: 13.8rem;
}

.pageRecruit .member-slider-container .swiper-button-prev,
.pageRecruit .member-slider-container .swiper-button-next {
	background-size: 1.1rem 1rem;
	height: 3.6rem;
	width: 3.6rem;
}

.pageRecruit .member-slider .swiper-slide {
	border-radius: 1.5rem;
	grid-template-columns: 1fr;
	max-width: initial;
	padding: 0;
	width: 100%;
}

.pageRecruit .member-slider-img {
	background: #f7f7f7;
	border-radius: 0 0 1.5rem 0;
	display: flex;
	justify-content: right;
	padding-bottom: 2.5rem;
}

.pageRecruit .member-slider-img img {
	background: #fff;
	height: 7rem;
	width: 7rem;
}

.pageRecruit .member-slider-img figure {
	margin-right: 4.7rem;
	margin-top: 1.2rem;
	width: 10rem;
}

.pageRecruit .member-slider-img figcaption {
	font-size: 1rem;
	margin-left: auto;
	margin-top: 1rem;
	width: 10rem;
}

.pageRecruit .member-slider-img figcaption .name {
	font-size: 1.6rem;
}

.pageRecruit .member-slider-img figcaption .age {
	font-size: 1.2rem;
	margin-top: 1.5rem;
}

.pageRecruit .member-slider-info {
	background: #f7f7f7;
}

.pageRecruit .member-slider-title {
	background: #fff;
	border-radius: 1.5rem 0 0 0;
	font-size: 1.6rem;
	line-height: 1.625;
	padding: 4rem 2rem 0;
	text-align: center;
}

.pageRecruit .member-slider-title::after {
	bottom: -2rem;
	height: 0.2rem;
	left: 50%;
	translate: -50% 0;
	width: 2.4rem;
}

.pageRecruit .member-slider-text {
	background: #fff;
	border-radius: 0 0 1.5rem 1.5rem;
	line-height: 2;
	padding: 3.7rem 2rem 3.5rem;
}

.pageRecruit .data {
	padding-top: 6.2rem;
}

.pageRecruit .data-items {
	gap: 1.7rem;
	grid-template-columns: 1fr;
	margin-top: 3.1rem;
}

.pageRecruit .data-item {
	border-radius: 1rem;
	min-height: 19rem;
	padding: 2.3rem 1.9rem 3.1rem 1.9rem;
}

.pageRecruit .data-item-title {
	font-size: 1.8rem;
	line-height: 1.9444444444;
}

.pageRecruit .data-item-title::after {
	bottom: -1.2rem;
	height: 0.2rem;
	width: 2.1rem;
}

.pageRecruit .data-item-text {
	font-size: 1.4rem;
	margin-top: 3.5rem;
}

.pageRecruit .data-item-text--large {
	font-size: 1.6rem;
}

.pageRecruit .data-item-number {
	font-size: 1.9rem;
	margin-left: -0.1rem;
	margin-top: 1.4rem;
}

.pageRecruit .data-item-number .num {
	font-size: 5.7rem;
}

.pageRecruit .data-item-columns {
	gap: 1rem 2rem;
	margin-top: 2.4rem;
}

.pageRecruit .data-item-column {
	border-width: 0.1rem;
	padding-bottom: 0.5rem;
}

.pageRecruit .data-item:nth-of-type(1)::before {
	height: 6.1rem;
	right: 2.5rem;
	top: 3.3rem;
	width: 7.4rem;
}

.pageRecruit .data-item:nth-of-type(1) .num {
	font-size: 4.4rem;
}

.pageRecruit .data-item:nth-of-type(2)::before {
	bottom: 2.7rem;
	height: 13.2rem;
	right: 2.2rem;
	width: 16.8rem;
}

.pageRecruit .data-item:nth-of-type(3)::before {
	height: 4.8rem;
	right: 2rem;
	top: 2.4rem;
	width: 7.6rem;
}

.pageRecruit .data-item:nth-of-type(3) .num {
	font-size: 3.6rem;
}

.pageRecruit .data-loop-text {
	margin-top: -1.2rem;
}

.pageRecruit .job {
	padding-top: 2rem;
}

.pageRecruit .job-flex {
	gap: 4.1rem;
	grid-template-columns: 1fr;
}

.pageRecruit .job-flex::before {
	display: none;
}

.pageRecruit .job-flex::after {
	bottom: -14.3rem;
	height: 12.6rem;
	right: -0.7rem;
	transform: scale(-1, 1);
	width: 9.6rem;
	z-index: 5;
}

.pageRecruit .job-title {
	margin-top: 0;
}

.pageRecruit .job-content {
	margin-left: initial;
	max-width: initial;
}

.pageRecruit .job-tab-items {
	border-width: 0.1rem;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pageRecruit .job-tab-item {
	border-radius: 1.5rem 1.5rem 0 0;
	font-size: 1.2rem;
	line-height: 1.1666666667;
}

.pageRecruit .job-tab-button {
	gap: 0.8rem;
	min-height: 6.4rem;
	padding: 0.9rem 0.8rem 2rem;
}

.pageRecruit .job-tab-button::after {
	bottom: 1.1rem;
	height: 0.7rem;
	width: 0.8rem;
}

.pageRecruit .job-items {
	margin-top: 3.7rem;
}

.pageRecruit .job-item {
	padding-top: 0;
}

.pageRecruit .job-item-title {
	font-size: 1.8rem;
	line-height: 1.6666666667;
	padding-left: 1.2rem;
}

.pageRecruit .job-item-title::before {
	height: 1.8rem;
	width: 0.2rem;
}

.pageRecruit .job-info-items {
	margin-top: 2.8rem;
}

.pageRecruit .job-info-item {
	gap: 1rem;
	grid-template-columns: 10rem 1fr;
}

.pageRecruit .job-info-item::before {
	height: 0.2rem;
	top: -0.1rem;
	width: 2.4rem;
}

.pageRecruit .job-info-item dt,
.pageRecruit .job-info-item dd {
	min-height: 6.4rem;
	padding: 2.2rem 0;
}

.pageRecruit .job-info-item dt {
	font-size: 1.4rem;
	line-height: 1.5714285714;
}

.pageRecruit .job-info-item dd {
	font-size: 1.3rem;
	line-height: 1.6923076923;
	max-width: none;
}

.pageRecruit .job-info-list {
	gap: 0.8rem;
}

.pageRecruit .job-info-list li {
	line-height: 1.5714285714;
}

.pageRecruit .job-info-list li .small {
	font-size: 1rem;
	line-height: 1.6;
}

.pageRecruit .job-info-list--circle li {
	padding-left: 1.9rem;
}

.pageRecruit .job-info-list--circle li::before {
	border-width: 0.2rem;
	height: 0.5rem;
	top: 0.7rem;
	width: 0.5rem;
}

.pageRecruit .entry {
	padding-top: 8.3rem;
}

.pageRecruit .entry-content {
	border-radius: 2rem;
	padding: 5rem 2rem 21.7rem;
}

.pageRecruit .entry-content::before {
	height: 6.9rem;
	left: -3.9rem;
	top: -0.3rem;
	width: 6.6rem;
}

.pageRecruit .entry-content::after {
	height: 11rem;
	right: 1rem;
	top: -4.2rem;
	width: 7.9rem;
}

.pageRecruit .entry-title .title-en {
	margin-left: 2.6rem;
}

.pageRecruit .entry-text {
	font-size: 1.8rem;
	line-height: 1.6666666667;
	margin-top: 2.7rem;
}

.pageRecruit .entry-btn {
	letter-spacing: normal;
	margin-top: 2.8rem;
	padding: 0 1.5rem 0 2rem;
	width: 29.5rem;
}

.pageRecruit .entry-img--01 {
	height: 14.4rem;
	right: 4rem;
	top: -1.8rem;
	width: 12.7rem;
}

.pageRecruit .entry-img--02 {
	bottom: -1.9rem;
	height: 11.5rem;
	left: -0.5rem;
	right: initial;
	width: 8.8rem;
}

.pageRecruit .entry-img--03 {
	bottom: 2.3rem;
	height: 16.3rem;
	right: 2rem;
	width: 21.9rem;
}

.pageRecruit .recruit-float {
	bottom: 2rem;
	height: 9.7rem;
	right: 2rem;
	width: 9.7rem;
}

.pageService .serviceCategory {
	margin-top: 5.9rem;
}

.pageService .serviceCategory--outbound {
	padding-bottom: 1rem;
}

.pageService .serviceCategory--outbound .serviceCategory-head-btn {
	letter-spacing: normal;
}

.pageService .serviceCategory-head {
	padding-bottom: 80px;
}

.pageService .serviceCategory-head::before {
	top: -142px;
}

.pageService .service-intro-lead {
	font-size: 3rem;
	line-height: 1.6;
	width: 107%;
}

.pageService .service-intro-text {
	line-height: 2;
	margin-top: 2.3rem;
	max-width: initial;
}

.pageService .service-intro-items::before {
	display: none;
}

.pageService .service-intro-items {
	flex-direction: column;
	gap: 3.6rem;
	margin-top: 3.6rem;
}

.pageService .service-intro-item {
	width: 100%;
}

.pageService .service-intro-item::before {
	left: 0.1rem;
	width: 0.1rem;
}

.pageService .service-intro-item-head {
	border-width: 0.3rem;
	gap: 1.6rem;
	grid-template-columns: 6.6rem 1fr;
	padding-left: 1.5rem;
}

.pageService .service-intro-item-title {
	font-size: 1.8rem;
	line-height: 1.4444444444;
}

.pageService .service-intro-item-text {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 2;
	margin-top: 1.2rem;
	padding-left: 1.8rem;
}

.pageService .quality {
	margin-top: 8rem;
}

.pageService .quality-text {
	font-size: 2.2rem;
	line-height: 1.6363636364;
	margin-top: 2.9rem;
}

.pageService .quality-items {
	gap: 5.3rem;
	margin-top: 3.1rem;
}

.pageService .quality-item {
	gap: 2.9rem;
	grid-template-columns: 1fr;
}

.pageService .quality-item-title .title-en {
	font-size: 1.4rem;
	line-height: 1.5714285714;
}

.pageService .quality-item-title .title-jp {
	font-size: 2.2rem;
	line-height: 1.8636363636;
	margin-top: -0.5rem;
}

.pageService .quality-item-content {
	border-width: 0.1rem;
	margin-top: 1.4rem;
}

.pageService .quality-item-text {
	font-size: 1.6rem;
	line-height: 1.625;
	padding-left: 2.1rem;
}

.pageService .quality-item-text::before {
	left: -0.2rem;
	width: 0.3rem;
}

.pageService .quality-item-list {
	gap: 2.2rem;
	margin-top: 0.9rem;
	padding-left: 2.1rem;
}

.pageService .quality-item-list li {
	font-size: 1.4rem;
	line-height: 1.5714285714;
	padding-left: 1.9rem;
}

.pageService .quality-item-list li::before {
	border-width: 0.2rem;
	height: 0.5rem;
	top: 0.7rem;
	width: 0.5rem;
}

.pageService .quality-item-img {
	height: auto;
}

.pageService .quality-item-img img {
	border-radius: 1rem;
	height: auto;
	left: initial;
	position: static;
	top: initial;
	translate: initial;
}

.pageService .quality-item-img::before {
	display: none;
}

.pageService .quality-item-deco {
	bottom: initial;
	font-size: 6rem;
	left: initial;
	line-height: 1.0333333333;
	right: -2.8rem;
	top: 0.8rem;
	writing-mode: vertical-rl;
}

.pageService .security {
	margin-bottom: 1.8rem;
	margin-top: 8rem;
	padding: 6rem 0;
}

.pageService .security {
	background-image: url(../img/service/security_sp.png);
}

.pageService .security-text {
	font-size: 2.2rem;
	line-height: 1.6363636364;
	margin-top: 3rem;
}

.pageService .security-content {
	border-radius: 2rem;
	margin-top: 3.8rem;
	padding: 3rem 2rem;
}

.pageService .security-content::before {
	backdrop-filter: blur(0.6rem);
}

.pageService .security-items {
	gap: 1rem;
	grid-template-columns: 1fr;
	max-width: initial;
}

.pageService .security-item {
	border-radius: 0.6rem;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	min-height: 7.2rem;
	padding: 1.4rem 1rem;
}

.pageService .security-item .small {
	font-size: 1.2rem;
}

.pageServiceChild .serviceChild-intro-lead {
	font-size: 2.4rem;
	line-height: 1.5833333333;
}

.pageServiceChild .serviceChild-intro-items {
	gap: 3.9rem 1.5rem;
	grid-template-columns: 1fr 1fr;
	margin-top: 5.6rem;
}

.pageServiceChild .serviceChild-intro-item {
	border-radius: 0.6rem;
	display: block;
	font-size: 1.2rem;
	line-height: 1.5;
	min-height: 11.3rem;
	padding: 4rem 1.5rem 2rem;
	position: relative;
	text-align: center;
}

.pageServiceChild .serviceChild-intro-item img {
	border: 0.3rem solid #F7F7F7;
	border-radius: 50%;
	height: 5.3rem;
	left: 50%;
	position: absolute;
	top: -2.7rem;
	translate: -50% 0;
	width: 5.3rem;
}

.pageServiceChild .serviceDetail {
	margin-top: 6.3rem;
	padding-bottom: 1rem;
}

.pageServiceChild .serviceDetail-body {
	margin-top: 6rem;
}

.pageServiceChild .serviceDetail-body-inner {
	width: 100% !important;
}

.pageServiceChild .serviceDetail-body-content {
	grid-template-columns: 1fr;
}

.pageServiceChild .serviceDetail-body-nav {
	display: none;
}

.pageServiceChild .serviceDetail-body-items {
	max-width: initial;
}

.pageServiceChild .serviceDetail-body-item {
	padding: 5rem 0 5.1rem;
	scroll-margin-top: calc(var(--service-detail-nav-top) + 2.4rem);
}

.pageServiceChild .serviceDetail-body-item-title {
	font-size: 2.6rem;
	grid-column: 1/2;
	grid-row: 1/2;
	line-height: 1.5;
	padding-left: 6.6rem;
}

.pageServiceChild .serviceDetail-body-item-title::before {
	font-size: 3rem;
	left: 0.2rem;
	line-height: 2.0666666667;
	top: -1rem;
}

.pageServiceChild .serviceDetail-body-item-title::after {
	height: 2.6rem;
	left: 4.9rem;
	top: 0.8rem;
	width: 0.2rem;
}

.pageServiceChild .serviceDetail-body-item-content {
	gap: 0;
	grid-template-columns: 1fr;
	margin-top: 2.3rem;
}

.pageServiceChild .serviceDetail-body-item-img {
	grid-column: 1/2;
	grid-row: 4/5;
	height: initial;
	margin-top: 2.5rem;
}

.pageServiceChild .serviceDetail-body-item-img img {
	border-radius: 1rem;
	height: auto;
	left: initial;
	position: static;
	top: initial;
	translate: initial;
}

.pageServiceChild .serviceDetail-body-item-info {
	display: contents;
}

.pageServiceChild .serviceDetail-body-item-info-content {
	border-width: 0.2rem;
	grid-column: 1/2;
	grid-row: 5/6;
	margin-top: 3rem;
}

.pageServiceChild .serviceDetail-body-item-info-text {
	font-size: 1.6rem;
	line-height: 1.625;
	padding-left: 2rem;
}

.pageServiceChild .serviceDetail-body-item-info-text::before {
	left: -0.2rem;
	width: 0.2rem;
}

.pageServiceChild .serviceDetail-body-item-info-list {
	gap: 1.1rem;
	margin-top: 0.7rem;
	padding-left: 2rem;
}

.pageServiceChild .serviceDetail-body-item-info-list li {
	font-size: 1.4rem;
	padding-left: 1.9rem;
}

.pageServiceChild .serviceDetail-body-item-info-list li::before {
	border-width: 0.2rem;
	height: 0.5rem;
	top: 0.8rem;
	width: 0.5rem;
}

.pageServiceChild .serviceDetail-body-item-lead {
	font-size: 2rem;
	grid-column: 1/2;
	grid-row: 2/3;
	line-height: 1.5;
}

.pageServiceChild .serviceDetail-body-item-text {
	grid-column: 1/2;
	grid-row: 3/4;
	line-height: 2;
	margin-top: 2.5rem;
}

.pageServiceChild .serviceDetail-body-item-box {
	border-radius: 1rem;
	gap: 1.3rem;
	grid-template-columns: 1fr;
	margin-top: 3.9rem;
	padding: 2.8rem 2rem;
}

.pageServiceChild .serviceDetail-body-item-box-title {
	font-size: 1.8rem;
	padding-left: 1.2rem;
}

.pageServiceChild .serviceDetail-body-item-box-title::before {
	height: 1.8rem;
	top: 0.8rem;
	width: 0.2rem;
}

.pageServiceChild .serviceDetail-body-item-box-text {
	line-height: 2;
}

.pageServiceChild .serviceDetail-body-item-box-table {
	border-radius: 0.6rem;
	margin-top: 1.6rem;
	padding: 1.6rem 2rem;
}

.pageServiceChild .serviceDetail-body-item-box-table th,
.pageServiceChild .serviceDetail-body-item-box-table td {
	line-height: 2.5;
}

.pageServiceChild .serviceDetail-body-item-box-table th:nth-of-type(2),
.pageServiceChild .serviceDetail-body-item-box-table td:nth-of-type(2) {
	padding-left: 2.2rem;
}

.pageServiceChild .serviceDetail-body-item-box-table thead th {
	font-size: 1.4rem;
	padding-bottom: 1.1rem;
}

.pageServiceChild .serviceDetail-body-item-box-table tbody td {
	border-width: 0.1rem;
	font-size: 1.2rem;
	padding: 1.5rem 0;
}

.pageServiceChild .serviceDetail-body-item-box-list {
	gap: 1rem;
	grid-template-columns: 1fr;
}

.pageServiceChild .serviceDetail-body-item-box-list li {
	align-items: center;
	border-radius: 0.6rem;
	display: flex;
	font-size: 1.4rem;
	line-height: 1.7142857143;
	min-height: 7.4rem;
	padding: 1.5rem 2rem;
}

.pageServiceChild .serviceDetail-body-item-box-list li .small {
	display: contents;
	font-size: 1.2rem;
}

.pageOutbound .serviceCategory--outbound {
	margin-top: 1.2rem;
}

.pageOutbound .serviceDetail-body-item-box-list li {
	padding: 20px;
}

.pageOutbound .serviceDetail-body-item-box--cards {
	grid-template-columns: 1fr;
}

.pageTop {
	padding-top: 10.1rem;
}

.pageTop .fv {
	overflow: visible;
	padding-bottom: 6.5rem;
}

.pageTop .fv-inner::before {
	bottom: -2.5rem;
	height: 9.3rem;
	left: -3.6rem;
	width: 7.3rem;
}

.pageTop .fv-inner::after {
	background-image: url(../img/top/fv_satisfaction_sp.png);
	bottom: -10.7rem;
	height: 24.9rem;
	right: -3.7rem;
	width: 16.8rem;
}

.pageTop .fv-slider .swiper-slide {
	border-radius: 2rem;
	margin: 0 0.5rem;
	width: 33.5rem;
}

.pageTop .fv-content {
	max-width: initial;
	min-height: 54rem;
	padding-bottom: 3.9rem;
	padding-left: 2rem;
}

.pageTop .fv-content::before {
	height: 13.5rem;
	left: -1.6rem;
	top: 1.6rem;
	width: 23.6rem;
}

.pageTop .fv-copy {
	font-size: 3rem;
	line-height: 1.52;
}

.pageTop .fv-copy .deco {
	border-radius: 0.5rem;
	margin-right: 0.7rem;
	padding: 0.3rem 0.9rem 0.3rem 1.1rem;
}

.pageTop .fv-txt {
	margin-top: 1.8rem;
}

.pageTop .fv-txt-jp {
	font-size: 1.4rem;
	line-height: 1.7142857143;
}

.pageTop .fv-txt-en {
	display: none;
}

.pageTop .about {
	padding-bottom: 7.6rem;
}

.pageTop .about::before {
	background-image: url(../img/top/about_bg_sp.svg);
	height: 22.4rem;
	left: initial;
	right: 2.6rem;
	top: 16rem;
	translate: initial;
	width: 16rem;
}

.pageTop .about-inner::before {
	bottom: -9.4rem;
	height: 14.4rem;
	left: initial;
	right: 1rem;
	width: 9.6rem;
}

.pageTop .about-title .title-jp {
	font-size: 36px;
	line-height: 1.4444444444;
	margin-top: 10px;
}

.pageTop .about-content {
	gap: 2.2rem;
	grid-template-columns: 1fr;
	margin-top: 1.7rem;
}

.pageTop .about-lead {
	font-size: 3.6rem;
	line-height: 1.5833333333;
}

.pageTop .about-text {
	font-size: 1.4rem;
	gap: 3rem;
	line-height: 2.1428571429;
}

.pageTop .strength-content {
	border-radius: 2rem;
	padding: 4.9rem 2rem 5rem;
}

.pageTop .strength-content::after {
	bottom: -5.2rem;
	height: 9rem;
	left: -1.1rem;
	width: 9.8rem;
}

.pageTop .strength-items {
	margin-top: 3.1rem;
}

.pageTop .strength-panel {
	grid-template-columns: 1fr;
}

.pageTop .strength-list {
	display: block;
	min-height: var(--strength-sticky-height);
	position: relative;
}

.pageTop .strength-item {
	cursor: pointer;
}

.pageTop .strength-item {
	align-content: start;
	color: #000;
	display: grid;
	gap: 1.6rem;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: absolute;
	right: 0;
	top: 0;
	transition: opacity 0.35s ease, visibility 0s linear 0.35s;
	visibility: hidden;
	will-change: opacity;
}

.pageTop .strength-item::before {
	background: transparent;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	transition: background-color 0.35s ease;
	width: 0.1rem;
}

.pageTop .strength-item.is-active {
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0s;
	visibility: visible;
}

.pageTop .strength-item.is-active::before {
	background: #FF0000;
}

.pageTop .strength-item-copy {
	border-left: 0;
	gap: 1.6rem;
	padding-left: 1.1rem;
}

.pageTop .strength-item-title {
	font-size: 2.2rem;
	line-height: 1.3636363636;
	padding-left: 3.8rem;
}

.pageTop .strength-item-title::before {
	font-size: 2.2rem;
	top: 0.6rem;
}

.pageTop .strength-item-text {
	margin-left: 3.8rem;
}

.pageTop .strength-item-text::after {
	display: none;
}

.pageTop .strength-item-mobile-visual {
	counter-increment: strength-mobile-visual;
	display: block;
	position: relative;
}

.pageTop .strength-item-mobile-visual .strength-visual-frame {
	aspect-ratio: 250/250;
	height: auto;
	height: 25rem;
	margin-left: 3.2rem;
	width: 100%;
	width: 25rem;
}

.pageTop .strength-item-mobile-visual .strength-visual-frame img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.pageTop .strength-item-mobile-visual .strength-visual-index {
	bottom: 8.9rem;
	font-size: 4.6rem;
	letter-spacing: normal;
	right: 0.1rem;
}

.pageTop .strength-item-mobile-visual .strength-visual-index::before {
	content: "#" counter(strength-mobile-visual);
}

.pageTop .strength-item-mobile-visual .strength-visual-caption {
	bottom: 4.3rem;
	font-size: 2.4rem;
	line-height: 1;
	right: -0.4rem;
}

.pageTop .strength-visuals {
	display: none;
	margin-top: 0;
	min-height: 0;
}

.pageTop .strength-visual-frame {
	height: auto;
	width: 100%;
}

.pageTop .topService-inner::before {
	bottom: -14.4rem;
	height: 9.3rem;
	left: -3.1rem;
	width: 7.3rem;
}

.pageTop .topService-inner::after {
	bottom: -9.3rem;
	height: 8.4rem;
	right: -3.7rem;
	width: 5.8rem;
}

.pageTop .topService-btn {
	letter-spacing: normal;
	margin-top: 3.6rem;
	padding-right: 1.5rem;
	width: 31.5rem;
}

.pageTop .topService-btn::after {
	margin-left: initial;
}

.pageTop .topService-sticky::before {
	height: 14.3rem;
	right: -2.5rem;
	top: -9rem;
	width: 10.5rem;
}

.pageTop .topService-item:nth-of-type(1)::before {
	background-image: url(../img/top/service_01_sp.png);
}

.pageTop .topService-item:nth-of-type(2)::before {
	background-image: url(../img/top/service_02_sp.png);
}

.pageTop .topService-item:nth-of-type(3)::before {
	background-image: url(../img/top/service_03_sp.png);
}

.pageTop .topService-item:nth-of-type(4)::before {
	background-image: url(../img/top/service_04_sp.png);
}

.pageTop .topService-item-btn {
	margin-top: 2.7rem;
	width: 20.2rem;
}

.pageTop .topService {
	padding: 8.2rem 0 4rem;
}

.pageTop .topService-items {
	--top-service-card-height: 66.3rem;
	--top-service-height: 83.2rem;
	--top-service-strip-gap: calc((83.2rem - 66.3rem) / 3);
	--top-service-step: 83.2rem;
	margin-top: 3.6rem;
}

.pageTop .topService-sticky {
	border-radius: 2rem;
	height: var(--top-service-height);
	position: sticky;
}

.pageTop .topService-stage {
	border-radius: 2rem;
	display: block;
	height: 100%;
	overflow: hidden;
	position: relative;
}

.pageTop .topService-steps {
	display: block;
}

.pageTop .topService-item {
	align-content: start;
	border-radius: 2rem;
	gap: initial;
	grid-template-columns: 1fr;
	height: var(--top-service-card-height);
	inset: auto;
	left: 0;
	padding: 2.4rem 2rem 4.5rem;
	pointer-events: auto;
	position: absolute;
	top: 0;
	transform: translateY(0);
}

.pageTop .topService-item-side,
.pageTop .topService-item-main {
	display: contents;
}

.pageTop .topService-item-title {
	font-size: 1.8rem;
	gap: 1.8rem;
	grid-column: 1/-1;
	grid-row: 1/2;
	line-height: 1.3636363636;
	margin-top: initial;
}

.pageTop .topService-item-title::before {
	font-size: 2.2rem;
}

.pageTop .topService-item-title::after {
	height: 2rem;
	left: 3.2rem;
	top: 0.3rem;
	width: 0.1rem;
}

.pageTop .topService-item-lead {
	align-self: start;
	font-feature-settings: "palt";
	font-size: 2.1rem;
	grid-column: 1/-1;
	grid-row: 2/3;
	line-height: 1.6363636364;
	margin-top: 2.2rem;
}

.pageTop .topService-item-text {
	grid-column: 1/-1;
	grid-row: 3/4;
	line-height: 1.8571428571;
	margin-top: 1.5rem;
}

.pageTop .topService-item-btn {
	grid-column: 1/-1;
	grid-row: 4/5;
	justify-self: start;
}

.pageTop .topService-item-btn::after {
	background-size: 7px 7px;
	height: 16px;
	margin-left: 14px;
	width: 16px;
}

.pageTop .topService-content {
	margin-top: 8.5rem;
}

.pageTop .topService-content-title::after {
	bottom: -1.7rem;
	height: 0.2rem;
	width: 6.8rem;
}

.pageTop .topService-content-title .title-en {
	font-size: 4.6rem;
	line-height: 1.2173913043;
}

.pageTop .topService-content-title .title-jp {
	font-size: 2.2rem;
	letter-spacing: 0.08em;
	line-height: 1.7272727273;
}

.pageTop .topService-content-items {
	gap: 4.6rem;
	grid-template-columns: 1fr;
	margin-top: 6.5rem;
}

.pageTop .topService-content-item {
	gap: 0;
	padding: 0 1rem;
}

.pageTop .topService-content-item:first-of-type {
	border-right: none;
	padding: 0 1rem;
}

.pageTop .topService-content-item:first-of-type .topService-content-item-container {
	margin-right: initial;
}

.pageTop .topService-content-item:nth-of-type(2) {
	padding: 0 1rem;
}

.pageTop .topService-content-item:nth-of-type(2) .topService-content-item-container {
	margin-left: initial;
}

.pageTop .topService-content-item-container {
	border-left: 0.1rem solid #D8D8D8;
	max-width: initial;
}

.pageTop .topService-content-item-title {
	border-left: 0.1rem solid #FF0000;
	font-size: 2.4rem;
	line-height: 1.5833333333;
	padding-left: 6.5rem;
}

.pageTop .topService-content-item-title::before {
	font-size: 2.8rem;
	left: 1.9rem;
	letter-spacing: 0.04em;
	top: 0;
}

.pageTop .topService-content-item-img {
	aspect-ratio: 571/362;
	margin-left: auto;
	margin-top: 3.5rem;
	width: 29.5rem !important;
}

.pageTop .topService-content-item-lead {
	font-size: 1.8rem;
	line-height: 1.7777777778;
	margin-left: auto;
	margin-top: 2.7rem;
	width: 29.5rem !important;
}

.pageTop .topService-content-item-text {
	line-height: 2;
	margin-left: auto;
	margin-top: 2.3rem;
	width: 29.5rem !important;
}

.pageTop .topService-content-item .topService-content-item-container > * {
	max-width: initial;
}

.pageTop .case {
	padding: 4rem 0 0;
}

.pageTop .case-btn {
	margin-top: 2.8rem;
	padding: 0 1.5rem 0 2rem;
	width: 27.5rem;
}

.pageTop .case-content {
	padding-bottom: 5.1rem;
}

.pageTop .case-content::before {
	border-radius: 2rem;
	height: calc(100% - 15rem);
	top: 15rem;
	width: 34.5rem;
}

.pageTop .case-content::after {
	height: 20.3rem;
	left: -4.6rem;
	top: 7.4rem;
	translate: initial;
	width: 60.5rem;
}

.pageTop .case-slider {
	margin-top: 4.5rem;
}

.pageTop .case-slider {
	border-radius: 1.5rem;
	padding: 4.7rem 0 0rem;
}

.pageTop .case-slider .swiper-slide {
	border-radius: 1.5rem;
	margin: 0 1rem;
	width: 27.5rem;
}

.pageTop .case-slider .swiper-button-wrapper {
	margin-top: 3rem;
	padding: 0 2.9rem;
}

.pageTop .case-slider .swiper-button-prev,
.pageTop .case-slider .swiper-button-next {
	gap: 0.9rem;
}

.pageTop .case-slider .swiper-button-prev .swiper-button-label,
.pageTop .case-slider .swiper-button-next .swiper-button-label {
	font-size: 1.6rem;
}

.pageTop .case-slider .swiper-button-prev::after,
.pageTop .case-slider .swiper-button-next::after {
	background-size: 1.1rem 1.1rem;
	border-width: 0.2rem;
	height: 2.9rem;
	width: 2.9rem;
}

.pageTop .case-slide-mid {
	padding: 2.2rem 2rem 2.6rem;
}

.pageTop .case-slide-title {
	font-size: 2.2rem;
	line-height: 1.5454545455;
}

.pageTop .case-slide-text {
	font-size: 1.4rem;
	letter-spacing: 0.08em;
	line-height: 2;
	margin-top: 1.5rem;
}

.pageTop .case-slide-commit {
	display: block;
	min-height: 14.7rem;
	padding: 3.4rem 1rem 2.4rem 2.1rem;
}

.pageTop .case-slide-commit::before {
	height: 1.5rem;
	top: -0.2rem;
	width: 3.2rem;
}

.pageTop .case-slide-commit-deco {
	font-size: 2rem;
	padding-right: initial;
}

.pageTop .case-slide-commit-text {
	font-size: 2rem;
	line-height: 1.5;
	margin-top: 0.8rem;
	padding-left: 1.5rem;
}

.pageTop .case-slide-commit-text::before {
	height: 100%;
	width: 0.1rem;
}

.pageThanks .thanks {
	padding: 0;
}

.pageThanks .thanks-box {
	border-radius: 1.2rem;
	border-width: 0.1rem;
	padding: 3rem 2.6rem;
}

.pageThanks .thanks-title {
	font-size: 1.8rem;
	letter-spacing: 0.02em;
	line-height: 1.5555555556;
	margin-bottom: 1.3rem;
	padding-left: 1.4rem;
	width: 104%;
}

.pageThanks .thanks-title::before {
	width: 0.4rem;
}

.pageThanks .thanks-text {
	border-width: 0.1rem;
	font-size: 1.4rem;
	line-height: 2.2857142857;
	padding-top: 1.4rem;
}

.pageThanks .thanks-btn {
	font-size: 1.4rem;
	margin-top: 3.8rem;
	padding: 0 1.5rem 0 2.9rem;
	width: 21.8rem;
}

html {
	font-size: calc(0.0069444444 * 100vw);
}

html {
	font-size: calc(0.0266666667 * 100vw);
}

}

@media (hover: hover) and (pointer: fine) {

.btn:hover {
	opacity: 0.5;
}

.message-modal-close:hover {
	opacity: 0.7;
}

.header-logo-link:hover {
	opacity: 0.5;
}

.header-nav-item-link:hover {
	opacity: 0.5;
}

.drawer-header-logo-link:hover {
	opacity: 0.5;
}

.drawer-item-link:hover {
	opacity: 0.5;
}

.drawer-sns-item:hover {
	opacity: 0.5;
}

.drawer-link-item a:hover {
	opacity: 0.5;
}

.instagram-banner:hover {
	opacity: 0.7;
}

.link-item:hover {
	opacity: 0.7;
}

.cta-tel:hover {
	opacity: 0.5;
}

.footer-logo:hover {
	opacity: 0.5;
}

.footer-nav-item a:hover {
	opacity: 0.5;
}

.footer-sns-item-link:hover {
	opacity: 0.5;
}

.footer-link-item a:hover {
	opacity: 0.5;
}

.pageForm .contact-text a:hover {
	opacity: 0.5;
}

.pageForm .contact-form .contact-btn:hover {
	opacity: 0.7;
}

.pageRecruit .message-movie:hover {
	opacity: 0.7;
}

.pageRecruit .member-slider-container .swiper-pagination .swiper-pagination-bullet:hover {
	opacity: 0.5;
}

.pageRecruit .member-slider-container .swiper-button-prev:hover,
.pageRecruit .member-slider-container .swiper-button-next:hover {
	opacity: 0.5;
}

.pageRecruit .recruit-float:hover {
	opacity: 0.5;
}

.pageTop .case-slider .swiper-button-prev:hover,
.pageTop .case-slider .swiper-button-next:hover {
	opacity: 0.5;
}

}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {

.btn:hover {
	opacity: 0.5;
}

.message-modal-close:hover {
	opacity: 0.7;
}

.header-logo-link:hover {
	opacity: 0.5;
}

.header-nav-item-link:hover {
	opacity: 0.5;
}

.drawer-header-logo-link:hover {
	opacity: 0.5;
}

.drawer-item-link:hover {
	opacity: 0.5;
}

.drawer-sns-item:hover {
	opacity: 0.5;
}

.drawer-link-item a:hover {
	opacity: 0.5;
}

.instagram-banner:hover {
	opacity: 0.7;
}

.link-item:hover {
	opacity: 0.7;
}

.cta-tel:hover {
	opacity: 0.5;
}

.footer-logo:hover {
	opacity: 0.5;
}

.footer-nav-item a:hover {
	opacity: 0.5;
}

.footer-sns-item-link:hover {
	opacity: 0.5;
}

.footer-link-item a:hover {
	opacity: 0.5;
}

.pageForm .contact-text a:hover {
	opacity: 0.5;
}

.pageForm .contact-form .contact-btn:hover {
	opacity: 0.7;
}

.pageRecruit .message-movie:hover {
	opacity: 0.7;
}

.pageRecruit .member-slider-container .swiper-pagination .swiper-pagination-bullet:hover {
	opacity: 0.5;
}

.pageRecruit .member-slider-container .swiper-button-prev:hover,
.pageRecruit .member-slider-container .swiper-button-next:hover {
	opacity: 0.5;
}

.pageRecruit .recruit-float:hover {
	opacity: 0.5;
}

.pageTop .case-slider .swiper-button-prev:hover,
.pageTop .case-slider .swiper-button-next:hover {
	opacity: 0.5;
}

}

@media (prefers-reduced-motion: reduce) {

.loop-text-track {
	animation: none;
}

.pageRecruit .job-tab-item,
.pageRecruit .job-tab-button::after,
.pageRecruit .job-content.is-ready .job-item {
	transition: none;
}

}

@media (width < 768px) and (width < 768px) {

.pageTop .topService-item-btn::after {
	background-size: 1.2rem 1rem;
	height: 3.1rem;
	margin-left: initial;
	width: 3.1rem;
}

}

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

.header-nav {
	display: none;
}

.cta-item {
	gap: 20px;
	grid-template-columns: 1fr;
}

.cta-item dt {
	justify-content: center;
}

.cta-item dd {
	padding-left: initial;
	text-align: center;
}

.cta-item dd::before {
	display: none;
}

.cta-btn {
	margin-inline: auto;
}

.pageTop .fv-txt-en {
	display: none;
}

.pageTop .strength-content {
	padding-left: 30px;
	padding-right: 30px;
}

.pageTop .strength-panel {
	grid-template-columns: 1fr 1fr;
}

.pageTop .strength-visuals {
	margin-top: 0;
}

.pageTop .strength-visual {
	margin-block: auto;
	width: -moz-fit-content;
	width: fit-content;
}

.pageTop .strength-visual-frame {
	height: 350px;
	width: 350px;
}

.pageTop .strength-visual-index {
	bottom: 92px;
	font-size: 70px;
	right: 10px;
}

.pageTop .strength-visual-caption {
	font-size: 40px;
	right: 10px;
}

.pageTop .topService-item {
	grid-template-columns: 1fr 1fr;
	padding: 30px;
}

.pageTop .topService-item-lead {
	font-size: 24px;
}

.pageTop .topService-item-text {
	font-size: 14px;
	margin-top: 20px;
}

}

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

.faq-content {
	padding: 80px 40px;
}

.serviceCategory-head {
	padding-left: 40px;
	padding-right: 40px;
}

.serviceCategory-head-item {
	padding-left: 20px;
	padding-right: 20px;
}

.serviceCategory-head-item-title {
	font-size: 28px;
}

.serviceCategory-head-item-title::before {
	font-size: 36px;
}

.serviceCategory-head-item-title::after {
	top: 2px;
}

.instagram-title {
	font-size: 26px;
	gap: 20px;
}

.instagram-title::before {
	height: 34px;
	width: 34px;
}

.cta-content {
	grid-template-columns: 300px 1fr;
}

.pageInstall .case-intro-list {
	padding: 78px 40px;
}

.pageCompany .access-item {
	flex-direction: column;
}

.pageCompany .access-address {
	margin-inline: initial;
}

.pageRecruit .member-bg {
	padding: 80px 20px;
}

.pageRecruit .member-slider .swiper-slide {
	padding: 42px 20px 39px;
}

.pageServiceChild .serviceDetail-body-item-box {
	grid-template-columns: 1fr;
}

.pageTop .about-content {
	gap: 30px;
}

}

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

.pageTop .topService-inner {
	width: 95%;
}

}

@keyframes loopTextMarquee {

from {
	transform: translate3d(0, 0, 0);
}

to {
	transform: translate3d(-50%, 0, 0);
}

}

