/*=======================
基本設定
=======================*/

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

/*=======================
共通パーツ
=======================*/

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

body.is-fixed {
	overflow: clip;
}

body.is-loading {
	opacity: 0;
	visibility: hidden;
}

.body-container {
	overflow: hidden;
}

.inner {
	margin: 0 auto;
	max-width: 1000px;
}

.sec-title {
	color: #fff;
}

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

.sec-title .title-jp {
	display: block;
	font-size: 16px;
	letter-spacing: 0.06em;
}

.sec-title .title-en {
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 50px;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-top: 14px;
}

.btn {
	border: 1px solid #fff;
	color: #fff;
	cursor: pointer;
	display: grid;
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	height: 46px;
	letter-spacing: 0.15em;
	margin-inline: auto;
	place-content: center;
	position: relative;
	transition: all 0.3s ease;
	width: 200px;
	z-index: 5;
}

.btn::after {
	background: url(../img/arrow_right_white.svg) no-repeat center center/cover;
	content: "";
	height: 4px;
	position: absolute;
	right: 21px;
	top: 50%;
	translate: 0 -50%;
	width: 15px;
}

br.is-pc {
	display: block;
}

br.is-sp {
	display: none;
}

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

.nav {
	height: inherit;
}

.nav-items {
	align-items: center;
	display: flex;
	gap: 30px;
	height: inherit;
}

.nav-item {
	height: inherit;
}

.nav-item-link {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	height: inherit;
	letter-spacing: 0.04em;
	line-height: 1.4285714286;
	position: relative;
	transition: all 0.3s ease;
}

.nav-item-link::after {
	background: currentColor;
	bottom: 20px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	transform: scaleX(0);
	transition: transform 0.3s ease;
	width: 100%;
}

.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;
}

/*=======================
ヘッダー
=======================*/

.header {
	align-items: center;
	background: #000;
	display: flex;
	height: 70px;
	padding-left: 32px;
}

.header-logo {
	margin-right: auto;
	width: 243px;
}

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

.header-nav {
	margin-left: auto;
	margin-right: 30px;
}

.header-nav-item {
	position: relative;
}

.header-nav-item-link {
	align-items: center;
	display: flex;
}

.header-btn {
	align-items: center;
	background: transparent linear-gradient(55deg, #272727 0%, #464646 100%) 0% 0% no-repeat padding-box;
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: 500;
	gap: 3px;
	height: inherit;
	justify-content: center;
	letter-spacing: 0.04em;
	max-width: 152px;
	padding: 0 10px;
	transition: all 0.3s ease;
	width: 100%;
}

.header-btn img {
	margin-top: 2px;
	width: 14px;
}

.header-sub-items {
	background: #121212;
	counter-reset: sub-item-counter;
	display: grid;
	grid-template-columns: 1fr 1fr;
	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 {
	align-items: center;
	counter-increment: sub-item-counter;
	display: flex;
	min-height: 41px;
	min-width: 177px;
	padding-left: 13px;
	position: relative;
	width: -moz-max-content;
	width: max-content;
}

.header-sub-item::before,
.header-sub-item::after {
	background: linear-gradient(to bottom, rgba(164, 216, 247, 0.4) 0%, rgba(70, 170, 231, 0.4) 100%);
	content: "";
	position: absolute;
}

.header-sub-item::before {
	height: 100%;
	right: 0;
	top: 0;
	width: 1px;
}

.header-sub-item::after {
	bottom: 0;
	height: 1px;
	left: 0;
	width: 100%;
}

.header-sub-item:nth-of-type(2n)::before {
	display: none;
}

.header-sub-item-link {
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding-left: 19px;
	position: relative;
	transition: all 0.3s ease;
}

.header-sub-item-link::before {
	color: currentColor;
	content: counter(sub-item-counter, decimal-leading-zero);
	font-family: "Oswald", sans-serif;
	font-size: 12px;
	left: 0;
	letter-spacing: 0.1em;
	position: absolute;
	top: 50%;
	translate: 0 -47%;
}

.drawer-icon {
	display: none;
}

.drawer {
	display: none;
}

.drawer-item-link-text {
	color: inherit;
}

/* details 行（＋／−アイコン） */

.js-drawer-details[open] > .drawer-item-link::before {
	transform: translateY(-50%) rotate(180deg);
}

/* パネル本体（heightアニメ前提） */

.drawer-cta-title {
	color: #e2e2e2;
}

/*=======================
FV
=======================*/

.fv {
	background: url(../img/fv_pc.png) no-repeat center center/cover;
	height: calc(100dvh - 70px);
	position: relative;
	width: 100%;
}

.fv .fv-copy {
	color: #fff;
	left: 72px;
	position: absolute;
	top: 76px;
}

.fv .fv-copy.js-fv-copy .copy-en,
.fv .fv-copy.js-fv-copy .copy-jp {
	opacity: 0;
	transition: opacity 1s ease, transform 1s ease;
}

.fv .fv-copy.js-fv-copy .copy-en {
	transform: translateY(30px);
}

.fv .fv-copy.js-fv-copy.is-animated .copy-en {
	opacity: 1;
	transform: translateY(0);
}

.fv .fv-copy.js-fv-copy.is-animated .copy-jp {
	opacity: 1;
	transition-delay: 1s;
}

.fv .fv-copy .copy-en {
	font-family: "Oswald", sans-serif;
	font-size: 57px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.1929824561;
}

.fv .fv-copy .copy-jp {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.6666666667;
	margin-top: 29px;
}

.fv-scroll {
	bottom: 6%;
	position: absolute;
	right: 46px;
	z-index: 1;
}

.fv-scroll-text {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Oswald", sans-serif;
	font-size: 12px;
	font-weight: 500;
	gap: 11px;
	height: -moz-max-content;
	height: max-content;
	letter-spacing: 0.2em;
	line-height: 1.4166666667;
	position: relative;
	text-transform: uppercase;
	width: 1px;
	writing-mode: vertical-lr;
}

.fv-scroll-text::before {
	animation: scroll-dot 2.5s cubic-bezier(0.77, 0, 0.175, 1) infinite;
	background-color: #fff;
	border-radius: 50%;
	content: "";
	display: block;
	height: 7px;
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 7px;
}

.fv-scroll-text::after {
	background: #fff;
	content: "";
	display: block;
	height: 95px;
	width: 1px;
}

/*=======================
私たちについて
=======================*/

.bg-black--type01 {
	background: transparent linear-gradient(45deg, #000000 0%, #393939 100%) 0% 0% no-repeat padding-box;
	z-index: 1;
}

.bg-black--type02 {
	background: transparent linear-gradient(31deg, #000000 0%, #191919 100%) 0% 0% no-repeat padding-box;
}

.about {
	padding: 97px 0 50px;
	position: relative;
}

.about::before {
	background: url(../img/bg_japan.svg) no-repeat center center/cover;
	content: "";
	height: 497px;
	position: absolute;
	right: 9%;
	top: 39px;
	width: 492px;
}

.about .loop-items {
	bottom: -31px;
}

.about-container {
	align-items: center;
	display: grid;
	gap: clamp(0px, 7vw, 96px);
	grid-template-columns: 1fr 524px;
	justify-content: space-between;
	margin-left: calc(50% - 50vw);
	position: relative;
	z-index: 5;
}

.about-img {
	height: 473px;
	position: relative;
}

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

.about-content {
	color: #fff;
	margin-top: 13px;
}

.about-title .title-jp {
	font-size: 16px;
	letter-spacing: 0.06em;
}

.about-title .title-en {
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 64px;
	letter-spacing: 0.08em;
	margin-top: 10px;
}

.about-lead {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.9090909091;
	margin-top: 23px;
}

.about-text {
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2.7142857143;
	margin-top: 17px;
}

.loop-items {
	display: flex;
	gap: 30px;
	overflow: hidden;
	position: absolute;
	width: 100%;
	z-index: 1;
}

.loop-item {
	animation: loop-slide 40s infinite linear both;
	color: #fff;
	flex-shrink: 0;
	font-family: "Oswald", sans-serif;
	font-size: 111px;
	font-weight: 500;
	letter-spacing: 0.09em;
	opacity: 0.07;
	white-space: nowrap;
}

/*=======================
トップ / 施工実績
=======================*/

.top-case {
	padding: 107px 0 101px;
}

.case-slider {
	margin-top: 32px;
}

.case-slider.is-single .swiper-wrapper {
	justify-content: center;
}

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

.case-slider .swiper-slide {
	background: #fff;
	display: flex;
	flex-direction: column;
	margin: 0 12.5px;
	width: 384px;
}

.case-slider .swiper-pagination {
	margin-top: 30px;
	position: static;
}

.case-slider .swiper-pagination-bullet {
	background: #000;
	border: 1px solid #fff;
	height: 12px;
	margin: 0 5px !important;
	opacity: 1;
	width: 12px;
}

.case-slider .swiper-pagination-bullet-active {
	background: #fff;
}

.case-slide-cat {
	background: #4a4a4a;
	color: #fff;
	display: grid;
	font-size: 13px;
	font-weight: 500;
	height: 30px;
	letter-spacing: 0.04em;
	padding: 0 10px;
	place-content: center;
	position: absolute;
	width: -moz-fit-content;
	width: fit-content;
}

.case-slide-head img {
	-o-object-fit: cover;
	height: 205px;
	object-fit: cover;
	overflow: hidden;
}

.case-slide-body {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	min-height: 145px;
	padding: 20px 22px;
}

.case-slide-title {
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.625;
	margin-bottom: 26px;
}

.case-slide-link {
	color: #939393;
	display: block;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.14em;
	line-height: 1.7142857143;
	margin-left: auto;
	margin-right: 4px;
	margin-top: auto;
	padding-right: 15px;
	position: relative;
	transition: all 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
}

.case-slide-link::before {
	background: currentColor;
	bottom: -3px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.case-slide-link::after {
	background: url(../img/arrow_right_grey.svg) no-repeat center center/cover;
	content: "";
	height: 12px;
	position: absolute;
	right: 2px;
	top: 54%;
	translate: 0 -50%;
	width: 5px;
}

.case-btn {
	margin-top: 40px;
}

/*=======================
トップ / 事業内容
=======================*/

.top-service {
	padding: 89px 0 63px;
	position: relative;
}

.top-service::after {
	background: url(../img/bg_logo.png) no-repeat center center/cover;
	bottom: -173px;
	content: "";
	height: 459px;
	position: absolute;
	right: -13px;
	width: 445px;
}

.top-service-inner {
	max-width: 1100px;
}

.top-service-items {
	counter-reset: service-counter;
	display: grid;
	gap: 10px 11px;
	grid-template-columns: repeat(auto-fit, minmax(359px, 1fr));
	justify-content: center;
	margin-top: 36px;
	position: relative;
	z-index: 1;
}

.top-service-item {
	counter-increment: service-counter;
}

.top-service-item-link {
	color: #fff;
	display: grid;
	place-content: center;
	position: relative;
	text-align: center;
	transition: all 0.3s ease;
}

.top-service-item-link::after {
	background: url(../img/arrow_circle_right.svg) no-repeat center center/cover;
	bottom: 11px;
	content: "";
	height: 28px;
	position: absolute;
	right: 14px;
	width: 28px;
}

.top-service-item-info {
	left: 50%;
	position: absolute;
	top: 50%;
	translate: -50% -50%;
}

.top-service-num {
	font-family: "Oswald", sans-serif;
	font-size: 28px;
	letter-spacing: 0.02em;
	position: relative;
}

.top-service-num::before {
	content: counter(service-counter, decimal-leading-zero);
}

.top-service-num::after {
	background: #fff;
	bottom: -5px;
	content: "";
	height: 2px;
	left: 50%;
	position: absolute;
	translate: -50% 0;
	width: 30px;
}

.top-service-item-title {
	color: #fff;
	font-size: 23px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4347826087;
	margin-top: 15px;
	position: relative;
	width: -moz-max-content;
	width: max-content;
}

.top-service-btn {
	margin-top: 60px;
}

/*=======================
私たちの強み
=======================*/

.strength {
	padding-bottom: 46px;
	position: relative;
	z-index: 1;
}

.strength-inner {
	border-top: 1px solid #e2e2e2;
	padding-top: 72px;
}

.strength-title .title-en {
	margin-left: -5px;
}

.sec-head {
	display: flex;
	gap: 0 40px;
	justify-content: space-between;
}

.strength-text {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2.7142857143;
	width: 440px;
}

.strength-items {
	counter-reset: strength-counter;
	display: flex;
	flex-wrap: wrap;
	gap: 49px;
	justify-content: center;
	margin-top: 83px;
}

.strength-item {
	background: #fff;
	counter-increment: strength-counter;
	min-height: 449px;
	padding: 42px 22px 32px;
	position: relative;
	width: 300px;
}

.strength-item::after {
	background: #121212;
	bottom: 5px;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	content: "";
	height: 28px;
	position: absolute;
	right: 6px;
	width: 28px;
}

.strength-item-num {
	background: #434343;
	border-radius: 50%;
	color: #fff;
	display: grid;
	font-family: "Oswald", sans-serif;
	font-size: 22px;
	height: 54px;
	left: 50%;
	letter-spacing: 0.05em;
	place-content: center;
	position: absolute;
	top: -34px;
	translate: -50% 0;
	width: 54px;
}

.strength-item-num::before {
	content: counter(strength-counter, decimal-leading-zero);
}

.strength-item-img {
	height: 120px;
	margin-inline: auto;
	width: 167px;
}

.strength-item-title {
	font-family: "Zen Kaku Gothic Antique", sans-serif;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.06em;
	line-height: 1.6;
	margin-top: 13px;
	text-align: center;
}

.strength-item-text {
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 2;
	margin: 8px auto 0;
	max-width: 220px;
	width: 100%;
}

/*=======================
よくある質問
=======================*/

.faq {
	padding: 46px 0 113px;
	position: relative;
}

.faq .loop-items {
	bottom: 26px;
}

.faq-items {
	display: grid;
	gap: 39px 0;
	grid-template-columns: 1fr;
	margin: 46px auto 0;
	position: relative;
	z-index: 5;
}

.faq-item-question {
	align-items: center;
	background: #454545;
	cursor: pointer;
	display: grid;
	gap: 0 40px;
	grid-template-columns: 1fr 40px;
	min-height: 82px;
	padding: 10px 34px 10px 26px;
}

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

.faq-item-title {
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.07em;
	line-height: 1.25;
}

.faq-item-title::before {
	color: #fff;
	content: "Q.";
	top: -7px;
}

.faq-item-answer-container {
	letter-spacing: 0.08em;
	line-height: 2;
}

.faq-item-answer-container::before {
	color: #121212;
	content: "A.";
	top: -2px;
}

.faq-item-title,
.faq-item-answer-container {
	font-size: 16px;
	padding-left: 44px;
	position: relative;
}

.faq-item-title::before,
.faq-item-answer-container::before {
	font-family: "Oswald", sans-serif;
	font-size: 26px;
	font-weight: 500;
	left: 0;
	letter-spacing: 0.08em;
	position: absolute;
}

.faq-item-btn {
	border-radius: 50%;
	height: 40px;
	position: relative;
	width: 40px;
}

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

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

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

.faq-item-answer {
	background: #fff;
	border: 1px solid #121212;
	overflow: hidden;
	padding: 0 25px;
}

.faq-item-answer-container {
	padding: 21px 18px 28px 43px;
}

.faq-item-answer-container::before {
	top: 14px;
}

/*=======================
会社概要
=======================*/

.page-bg {
	background: #000;
	height: 392px;
	position: relative;
}

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

.company {
	background: #000;
	padding: 65px 0 64px;
}

.company-items {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 0 50px;
	height: 180px;
	margin-top: 32px;
}

.company-item {
	align-items: center;
	display: grid;
	grid-template-columns: 75px 1fr;
	max-width: 475px;
	width: calc((100% - 50px) / 2);
}

.company-item dt,
.company-item dd {
	align-items: center;
	border-bottom: 1px solid;
	color: #fff;
	display: flex;
	font-size: 14px;
	height: 100%;
	padding-bottom: 17px;
	padding-top: 17px;
}

.company-item dt {
	border-color: #fff;
	font-weight: bold;
	padding-left: 5px;
	padding-right: 5px;
}

.company-item dd {
	border-color: #afafaf;
	letter-spacing: 0.04em;
	line-height: 1.4285714286;
	padding-left: 23px;
	padding-right: 23px;
}

.company-item dd a {
	color: #fff;
}

/*=======================
トップ / お問い合わせ
=======================*/

.cta {
	background: url(../img/cta_pc.png) no-repeat center center/cover;
	padding: 90px 0 83px;
}

.cta-text {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 2;
	margin-top: 25px;
	text-align: center;
}

.cta-btn-items {
	display: flex;
	gap: 37px;
	justify-content: center;
	margin: 40px auto 0;
}

.cta-btn {
	align-items: center;
	display: flex;
	gap: 3px;
	height: 75px;
	justify-content: center;
	margin: initial;
	max-width: 340px;
	width: 100%;
}

.cta-btn::after {
	background-image: url(../img/arrow_right_white_02.svg);
	height: 8px;
	right: 12%;
	width: 4px;
}

.cta-btn--tel {
	font-family: "Oswald", sans-serif;
	font-size: 16px;
	letter-spacing: 0.06em;
}

.cta-btn--tel img {
	height: 14px;
	margin-top: 2px;
	width: 14px;
}

.cta-btn--mail {
	font-size: 15px;
	letter-spacing: 0.04em;
}

.cta-btn--mail img {
	height: 12px;
	margin-top: 2px;
	width: 16px;
}

/*=======================
フッター
=======================*/

.top-scroll {
	position: absolute;
	right: 28px;
	top: 22px;
	transition: all 0.3s ease;
}

.footer {
	background: transparent linear-gradient(180deg, #000000 0%, #191919 100%) 0% 0% no-repeat padding-box;
	padding: 125px 0 88px;
	position: relative;
}

.footer-inner {
	max-width: 1200px;
}

.footer-container {
	border-bottom: 1px solid #f5f5f5;
	display: flex;
	gap: 40px;
	justify-content: space-between;
	padding-bottom: 111px;
}

.footer-content {
	color: #fff;
}

.footer-logo {
	height: 40px;
	width: 244px;
}

.footer-address {
	font-size: 14px;
	line-height: 1.8571428571;
	margin-top: 22px;
}

.footer-link {
	color: #fff;
	display: block;
	font-size: 14px;
	letter-spacing: 0.2em;
	margin-top: 72px;
	text-decoration: underline;
	transition: all 0.3s ease;
	width: -moz-fit-content;
	width: fit-content;
}

.copyright {
	font-size: 10px;
	letter-spacing: 0.07em;
	margin-top: 26px;
}

.footer-nav {
	margin-top: 20px;
}

.footer-nav-items {
	flex-wrap: wrap;
	gap: 28px;
}

.footer-nav-item-link::after {
	bottom: -5px;
}

/*=======================
下層ページ共通設定
=======================*/

.pageLow-head {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: grid;
	height: 291px;
	place-content: center;
}

.pageLow-title {
	color: #e2e2e2;
	margin-bottom: 3px;
	position: relative;
	text-align: center;
}

.pageLow-title .title-en {
	display: block;
	font-family: "Oswald", sans-serif;
	font-size: 50px;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-top: 14px;
}

.pageLow-title .title-jp {
	font-size: 16px;
	letter-spacing: 0.06em;
}

.pageLow-content {
	background: transparent linear-gradient(26deg, #000000 0%, #393939 100%) 0% 0% no-repeat padding-box;
}

.breadcrumb-items {
	align-items: center;
	display: flex;
	gap: 0 9px;
	padding: 28px 0;
}

.breadcrumb-items a {
	transition: all 0.3s ease;
}

.breadcrumb-bar {
	background: #e2e2e2;
	height: 1px;
	width: 14px;
}

.post,
.archive {
	color: #e2e2e2;
	font-size: 14px;
	letter-spacing: 0.06em;
}

.home {
	color: #e2e2e2;
	font-family: "Oswald", sans-serif;
	font-size: 14px;
	letter-spacing: 0.06em;
}

/*=======================
下層 / 事業内容
=======================*/

.pageService .pageLow-head,
.pageCase .pageLow-head {
	background-image: url(../img/head_service_pc.png);
}

/*=======================
下層 / 施工実績
=======================*/

.case-text-wrapper {
	padding: 34px 0;
	position: relative;
	text-align: center;
	z-index: 1;
}

.case-text-wrapper::before {
	background: url(../img/bg_logo.png) no-repeat center center/cover;
	content: "";
	height: 189px;
	left: 50%;
	position: absolute;
	top: 44%;
	translate: -50% -50%;
	width: 183px;
	z-index: -1;
}

.case-text {
	color: #e2e2e2;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 2.7142857143;
}

.case-items {
	margin-top: 28px;
}

.case-item {
	background: #fff;
	padding: 65px 0;
}

.case-item:nth-of-type(1) {
	background: transparent !important;
	padding-top: 0;
}

.case-item:nth-of-type(odd) {
	background: transparent linear-gradient(64deg, #000000 0%, #393939 100%) 0% 0% no-repeat padding-box;
}

.case-item:nth-of-type(odd) .case-item-title {
	border-color: #e2e2e2;
	color: #e2e2e2;
}

.case-item:nth-of-type(odd) .case-item-title::before {
	background: #e2e2e2;
}

.case-item:nth-of-type(odd) .case-item-cat {
	background: #e2e2e2;
	color: #141414;
}

.case-item:nth-of-type(odd) .case-item-text {
	background: #fff;
}

.case-item-title {
	border-bottom: 1px solid #121212;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.6666666667;
	padding-bottom: 6px;
	padding-left: 25px;
	position: relative;
}

.case-item-title::before {
	background: #121212;
	border-radius: 50%;
	content: "";
	height: 13px;
	left: 0;
	position: absolute;
	top: 16px;
	width: 13px;
}

.case-item-cat {
	background: #121212;
	color: #fff;
	display: grid;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.5;
	margin-top: 13px;
	padding: 5px 13px;
	place-content: center;
	width: -moz-fit-content;
	width: fit-content;
}

.case-img-wrapper {
	display: grid;
	gap: 29px;
	grid-template-columns: 1fr 1fr;
	margin-top: 23px;
}

.case-img {
	aspect-ratio: 1.675862069;
}

.case-img img {
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.case-item-text {
	background: #f8f8f8;
	color: #0f1a21;
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 2.2857142857;
	margin-top: 20px;
	padding: 36px 75px;
}

/*=======================
下層 / お問い合わせ
=======================*/

.pageContact .pageLow-head,
.pageConfirm .pageLow-head,
.pageThanks .pageLow-head {
	background: url(../img/head_contact_pc.png) no-repeat center center/cover;
}

.pageContact .btn-wrapper {
	align-items: center;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	margin-top: 35px;
}

.pageContact .contact-btn {
	background: #000;
	border-radius: 70px;
	height: 60px;
	position: relative;
	width: 239px;
}

.pageContact .contact-btn::after {
	background: url(../img/arrow_white_right.svg) no-repeat center center/cover;
	content: "";
	height: 10px;
	position: absolute;
	right: 30px;
	top: 50%;
	translate: 0 -50%;
	width: 5px;
}

.pageContact .contact-btn input {
	background: transparent;
	border-radius: inherit;
	color: #fff;
	font-size: 15px;
	font-weight: 500;
	height: inherit;
	letter-spacing: 0.04em;
	width: inherit;
}

.pageContact .contact-btn--back::after {
	left: 30px;
	right: initial;
	rotate: 180deg;
}

.contact-content {
	margin-top: -2px;
	padding-bottom: 82px;
	position: relative;
	z-index: 1;
}

.contact-txt {
	color: #e2e2e2;
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 2.2857142857;
	text-align: center;
}

.contact-items {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 40px;
	margin: 0 auto;
}

.contact-form-title {
	color: #000;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	padding-left: 13px;
	position: relative;
}

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

.contact-form {
	background: #fff;
	border: 1px solid #bcbcbc;
	margin-top: 30px;
	padding: 60px 50px 55px;
}

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

.contact-form dl {
	display: flex;
	gap: 0 44px;
	margin-bottom: 20px;
}

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

.contact-form dl.radio input {
	height: auto;
	width: auto;
}

.contact-form dt,
.contact-form dd {
	align-items: center;
	display: flex;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.625;
}

.contact-form dt {
	display: flex;
	justify-content: space-between;
	width: 190px;
}

.contact-form dd {
	width: calc(100% - 190px - 44px);
	word-break: break-all;
}

.contact-form .wpcf7-form-control-wrap {
	width: 100%;
}

.contact-form .contact-dt-txt {
	margin-right: auto;
	padding-left: 2px;
	width: 145px;
}

.contact-form .required {
	align-items: center;
	background: #121212;
	color: #fff;
	display: flex;
	font-size: 14px;
	font-weight: bold;
	height: 22px;
	justify-content: center;
	letter-spacing: 0.08em;
	width: 42px;
}

.contact-form .text-multi {
	align-items: flex-start;
	border-top: 1px solid #bcbcbc;
	padding-top: 30px;
}

.contact-form .text-multi dt {
	align-items: start;
}

.contact-form .text-multi dt .required {
	margin-top: 4px;
}

.contact-form input[type=radio] {
	margin: 0;
	opacity: 0;
	position: absolute;
}

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

.contact-form input[type=radio] + span {
	cursor: pointer;
	margin-left: 27px;
	position: relative;
}

.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: 50%;
	transform: translateY(-50%);
	width: 18px;
}

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

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

input,
select,
textarea {
	align-items: center;
	background: #f5f5f5;
	border: none;
	border-radius: initial;
	display: flex;
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 1.625;
	padding: 10px;
	width: 100%;
}

input,
select {
	height: 60px;
}

textarea {
	height: 178px;
}

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

span.wpcf7-form-control.wpcf7-radio {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 15px;
}

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

.wpcf7 form .wpcf7-response-output {
	display: none;
}

/*=======================
下層 / お問い合わせ確認
=======================*/

.pageConfirm .confirm-box,
.pageThanks .confirm-box {
	margin-top: 100px;
}

.pageConfirm .confirm-box dl,
.pageThanks .confirm-box dl {
	display: grid;
	grid-template-columns: 220px 1fr;
}

.pageConfirm .confirm-box dl:last-of-type dt,
.pageConfirm .confirm-box dl:last-of-type dd,
.pageThanks .confirm-box dl:last-of-type dt,
.pageThanks .confirm-box dl:last-of-type dd {
	border-bottom: none;
}

.pageConfirm .confirm-box dt,
.pageConfirm .confirm-box dd,
.pageThanks .confirm-box dt,
.pageThanks .confirm-box dd {
	align-items: center;
	display: flex;
	font-size: 16px;
	letter-spacing: 0.08em;
	min-height: 90px;
	padding: 30px;
	word-break: break-all;
}

.pageConfirm .confirm-box dt,
.pageThanks .confirm-box dt {
	background: #434343;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-weight: bold;
}

.pageConfirm .confirm-box dd,
.pageThanks .confirm-box dd {
	background: #fff;
	border-bottom: 1px solid #c6c6c6;
}

.pageConfirm .confirm-box .btn-wrapper,
.pageThanks .confirm-box .btn-wrapper {
	margin-top: 50px;
}

.pageConfirm .contact-btn {
	background: transparent;
	margin: initial;
}

.thanks-box {
	color: #e2e2e2;
	margin-top: 40px;
	text-align: center;
}

.thanks-title {
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.4;
}

.thanks-text {
	font-size: 16px;
	letter-spacing: 0.08em;
	line-height: 1.4;
	margin-top: 30px;
}

.thanks-btn {
	background: #fff !important;
	color: #fff;
	color: #000 !important;
	font-family: "Noto Sans JP", sans-serif !important;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 0.04em;
	margin-top: 20px;
}

/*=======================
プライバシーポリシー
=======================*/

.pagePrivacy .pageLow-head {
	background: url(../img/head_contact_pc.png) no-repeat center center/cover;
}

.privacy-content {
	margin-top: 18px;
}

.privacy-lead {
	margin-inline: auto;
	max-width: 760px;
	text-align: center;
}

.privacy-lead .privacy-text {
	color: #e2e2e2;
	font-size: 14px;
	line-height: 2.2857142857;
}

.privacy-text {
	font-size: 16px;
	letter-spacing: 0.06em;
	line-height: 2.125;
	margin-bottom: 20px;
}

.privacy-text:nth-of-type(1) {
	margin-top: 20px;
}

.privacy-text:last-of-type {
	margin-bottom: initial;
}

.privacy-sec-items {
	margin-top: 54px;
	padding: 50px 0 165px;
	position: relative;
	z-index: 1;
}

.privacy-sec-items::before {
	background: #fff;
	content: "";
	height: calc(100% - 90px);
	left: 50%;
	position: absolute;
	top: 0;
	translate: -50% 0;
	width: 1200px;
	z-index: 0;
}

.privacy-sec-item {
	background: #fff;
	margin-bottom: 50px;
	position: relative;
}

.privacy-sec-item:last-of-type {
	margin-bottom: 0;
}

.privacy-title {
	border-bottom: 1px solid #000;
	border-top: 1px solid #000;
	display: grid;
	font-size: 26px;
	font-weight: bold;
	letter-spacing: 0.08em;
	line-height: 1.2;
	margin-bottom: 34px;
	padding: 30px 0;
	place-content: center;
	width: 100%;
}

/*=======================
下層 / 事業内容
=======================*/

.service {
	counter-reset: service-counter;
	display: grid;
	gap: 60px;
	grid-template-columns: 1fr;
	margin: 45px auto 0;
	max-width: 1440px;
	padding-bottom: 125px;
	width: 100%;
}

.service-item {
	counter-increment: service-counter;
	position: relative;
}

.service-item::before {
	color: #363636;
	content: "Service " counter(service-counter, decimal-leading-zero);
	font-family: "Oswald", sans-serif;
	font-size: 60px;
	font-weight: 500;
	height: 100%;
	letter-spacing: 0.04em;
	position: absolute;
	right: 15px;
	text-align: center;
	top: 50%;
	translate: 0 -50%;
	writing-mode: vertical-lr;
}

.service-item:nth-of-type(even)::before {
	left: 15px;
	right: auto;
}

.service-item:nth-of-type(even) .service-item-container {
	direction: rtl;
}

.service-item:first-of-type {
	margin-bottom: 20px;
}

.service-item:first-of-type::before {
	display: none;
}

.service-item-container {
	align-items: center;
	display: grid;
	gap: clamp(20px, 7.1vw, 71px);
	grid-template-columns: 410fr 519fr;
	margin-inline: auto;
	max-width: 1000px;
	position: relative;
	z-index: 1;
}

.service-item-content {
	color: #e2e2e2;
	direction: ltr;
	margin-top: 11px;
}

.service-item-num {
	font-family: "Oswald", sans-serif;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.13em;
}

.service-item-num::before {
	content: "Service " counter(service-counter, decimal-leading-zero);
}

.service-item-title {
	border-bottom: 1px solid #e2e2e2;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.04em;
	line-height: 1.6666666667;
	margin-bottom: 11px;
	margin-top: 5px;
	padding-bottom: 4px;
}

.service-item-text {
	color: #e2e2e2;
	font-size: 14px;
	letter-spacing: 0.06em;
	line-height: 2.2857142857;
}

.service-item-question {
	margin: 34px auto 0;
	max-width: 1000px;
}

.service-item-question .service-item-text {
	text-align: center;
}

.service-item-question-title {
	background: #e2e2e2;
	color: #121212;
	display: grid;
	font-size: 20px;
	font-weight: bold;
	height: 54px;
	letter-spacing: 0.04em;
	margin-bottom: 14px;
	place-content: center;
}

.service-table-container {
	margin-top: 35px;
}

.service-table-container table {
	border-collapse: collapse;
}

.service-table-container th,
.service-table-container td {
	border: 1px solid #121212;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.04em;
	text-align: center;
	vertical-align: middle;
}

.service-table-container th {
	background: #767676;
	color: #e2e2e2;
	padding: 16px 12px;
}

.service-table-container th:not(:nth-of-type(3)) {
	min-width: 180px;
	width: 21.3%;
}

.service-table-container td {
	background: #e2e2e2;
	color: #121212;
	padding: 30px 20px;
}

.service-table-container td:last-of-type {
	font-weight: normal;
	padding: 25px 42px;
}

.service-table-container td .service-item-text {
	color: #121212;
	text-align: left;
}

.service-table--02 {
	position: relative;
	z-index: 1;
}

.service-table--02 .service-table-container th:first-of-type {
	max-width: 427px;
	width: 42.7%;
}

.service-table--02 .service-table-container th:last-of-type {
	max-width: 573px;
	width: 57.3%;
}

.service-table--02 .service-table-container td {
	height: 100px;
	padding: 18px 42px;
}

@media (hover: hover) and (pointer: fine) {

.btn:hover {
	opacity: 0.5;
}

.nav-item-link:hover::after {
	transform: scaleX(1);
}

.header-logo-link:hover {
	opacity: 0.5;
}

.header-btn:hover {
	opacity: 0.5;
}

.header-sub-item-link:hover {
	opacity: 0.5;
}

.case-slide-link:hover {
	opacity: 0.5;
}

.top-service-item-link:hover {
	opacity: 0.5;
}

.top-scroll:hover {
	opacity: 0.5;
}

.footer-link:hover {
	opacity: 0.5;
}

.breadcrumb-items a:hover {
	opacity: 0.5;
}

}

@media (-ms-high-contrast: none), (-ms-high-contrast: active) {

.btn:hover {
	opacity: 0.5;
}

.nav-item-link:hover::after {
	transform: scaleX(1);
}

.header-logo-link:hover {
	opacity: 0.5;
}

.header-btn:hover {
	opacity: 0.5;
}

.header-sub-item-link:hover {
	opacity: 0.5;
}

.case-slide-link:hover {
	opacity: 0.5;
}

.top-service-item-link:hover {
	opacity: 0.5;
}

.top-scroll:hover {
	opacity: 0.5;
}

.footer-link:hover {
	opacity: 0.5;
}

.breadcrumb-items a:hover {
	opacity: 0.5;
}

}

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

html { /* 1rem = 10px設定*/ /* 10px / カンプ幅(ex.1920px) × 100% = 0.515463vw*/
	font-size: 0.6944444444vw;
}

}

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

html { /* 1rem = 10px設定*/ /* 10px / 375 * 100% */
	font-size: 2.6666666667vw;
}

.inner {
	margin-inline: auto;
	max-width: initial;
	width: 34.5rem;
}

.sec-title .title-jp {
	font-size: 1.4rem;
}

.sec-title .title-en {
	font-size: 4.2rem;
	margin-top: 1.2rem;
}

.btn {
	border-width: 0.1rem;
	font-size: 1.4rem;
	height: 5.5rem;
	width: 23.8rem;
}

.btn::after {
	height: 0.5rem;
	right: 2.5rem;
	width: 1.8rem;
}

br.is-pc {
	display: none;
}

br.is-sp {
	display: inline;
}

.header {
	height: 7rem;
	padding-left: 1.5rem;
}

.header-logo {
	width: 17.2rem;
}

.header-nav {
	display: none;
}

.header-btn {
	height: 7rem;
	width: 7rem;
}

.header-btn img {
	height: 1.6rem;
	width: 2.2rem;
}

.header-btn span.is-pc {
	display: none;
}

.header-sub-items {
	display: none;
}

.drawer-icon {
	background: transparent linear-gradient(33deg, #818181 0%, #585858 100%) 0% 0% no-repeat padding-box;
	cursor: pointer;
	display: grid;
	height: 7rem;
	place-content: center;
	width: 7rem;
}

.drawer-bars {
	height: 1rem;
	position: relative;
	width: 3.2rem;
}

.drawer-bar {
	background: #fff;
	height: 0.1rem;
	position: absolute;
	transition: all 0.3s ease;
	width: 3.2rem;
}

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

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

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

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

.drawer {
	background: #000;
	display: block;
	height: calc(100dvh - 7rem);
	overflow-y: scroll;
	position: fixed;
	right: 0;
	top: 7rem;
	transform: translateX(100%);
	transition: all 0.3s ease;
	width: 100%;
	z-index: 20;
}

.drawer.is-active {
	transform: translateX(0);
}

.drawer-container {
	overflow: hidden;
	padding-bottom: 6.8rem;
	padding-top: 2.2rem;
	position: relative;
	z-index: 1;
}

.drawer-container::after {
	background: url(../img/bg_logo.png) no-repeat center center/cover;
	bottom: 8rem;
	content: "";
	height: 25.1rem;
	position: absolute;
	right: -1.3rem;
	width: 24.4rem;
}

.drawer-nav {
	margin-inline: auto;
	position: relative;
	width: 34.5rem;
	z-index: 1;
}

.drawer-item {
	border-bottom: 0.1rem solid #e2e2e2;
	padding: 2.1rem 0;
}

.drawer-item:first-of-type {
	padding-top: 0;
}

.drawer-item:has(.drawer-sub) {
	padding-bottom: 0;
}

.drawer-item-link {
	color: #e2e2e2;
	display: block;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 0.6923076923;
	padding: 1.5rem 0;
	position: relative;
}

.drawer-item-link::-webkit-details-marker {
	display: none;
}

.drawer-sub .drawer-item-link {
	margin-bottom: 2.2rem;
}

.js-drawer-details > .drawer-item-link {
	padding-right: 4rem;
}

.js-drawer-details > .drawer-item-link::before,
.js-drawer-details > .drawer-item-link::after {
	background: #fff;
	content: "";
	height: 0.2rem;
	position: absolute;
	right: 0;
	top: 50%;
	transition: transform 0.28s ease;
	width: 2rem;
}

.js-drawer-details > .drawer-item-link::before {
	transform: translateY(-50%) rotate(90deg);
}

.js-drawer-details > .drawer-item-link::after {
	transform: translateY(-50%) rotate(0deg);
}

.drawer-subitems-wrapper {
	background: #121212;
	margin-inline: calc(50% - 50vw);
	overflow: hidden;
	width: 100vw;
}

.drawer-subitems {
	contain: layout paint;
	counter-reset: drawer-subitem-counter;
	display: grid;
	grid-template-columns: 1fr;
	padding: 0 1.5rem 0 4.6rem;
}

.drawer-subitems li {
	border-bottom: 0.1rem solid #e2e2e2;
	counter-increment: drawer-subitem-counter;
	padding: 2.1rem 0 1.6rem 0.2rem;
}

.drawer-subitems li:last-of-type {
	border-bottom: none;
}

.drawer-subitem-link {
	color: #e2e2e2;
	display: block;
	font-size: 1.6rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	padding: 1.5rem 0 1.5rem 2.9rem;
	position: relative;
}

.drawer-subitem-link::before {
	color: currentColor;
	content: counter(drawer-subitem-counter, decimal-leading-zero);
	font-family: "Oswald", sans-serif;
	font-size: 1.6rem;
	left: 0;
	letter-spacing: 0.1em;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}

.drawer-cta {
	background: none !important;
	margin-top: 3.4rem;
	padding: 0 1.5rem !important;
	position: relative;
	z-index: 1;
}

.drawer-cta-title .title-jp {
	font-size: 1.2rem;
	letter-spacing: 0.06em;
}

.drawer-cta-title .title-en {
	font-size: 3rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	margin-top: 0.4rem;
}

.drawer-cta-btn-items {
	display: grid;
	gap: 0.9rem !important;
	grid-template-columns: 1fr 1fr;
}

.drawer-cta-btn {
	height: 5.1rem !important;
}

.drawer-cta-btn::after {
	right: 1rem !important;
}

.drawer-cta-btn.cta-btn--tel {
	font-size: 1.5rem;
	letter-spacing: 0.06em;
}

.drawer-cta-btn.cta-btn--tel img {
	height: 1.2rem;
	width: 1.2rem;
}

.drawer-cta-btn.cta-btn--mail {
	font-size: 1.3rem;
	letter-spacing: 0.04em;
}

.drawer-cta-btn.cta-btn--mail img {
	height: 0.9rem;
	width: 1.3rem;
}

.fv {
	background-image: url(../img/fv_sp.png);
	height: calc(100dvh - 7rem);
}

.fv .fv-copy {
	left: 15px;
	top: 89px;
}

.fv .fv-copy .copy-en {
	font-size: 4.8rem;
	line-height: 1.2083333333;
}

.fv .fv-copy .copy-jp {
	font-size: 1.8rem;
	margin-top: 2.1rem;
}

.fv-scroll {
	bottom: 1.9rem;
	right: 2.3rem;
}

.fv-scroll-text {
	color: #fff;
	font-size: 1rem;
	gap: 1.1rem;
	width: 0.1rem;
}

.fv-scroll-text::before {
	height: 0.5rem;
	width: 0.5rem;
}

.fv-scroll-text::after {
	height: 6.4rem;
	width: 0.1rem;
}

.about {
	padding: 6.7rem 0 6rem;
}

.about::before {
	height: 26.6rem;
	right: 1.5rem;
	top: 2.1rem;
	width: 26.3rem;
}

.about .loop-items {
	bottom: 0.7rem;
}

.about-container {
	gap: 4.2rem;
	grid-template-columns: 1fr;
	margin-left: initial;
}

.about-img {
	grid-row: 2/3;
	height: initial;
	margin-left: -5.2rem;
	width: 36.8rem;
}

.about-img img {
	height: auto;
	left: initial;
	position: static;
	top: initial;
	translate: initial;
}

.about-content {
	grid-row: 1/2;
}

.about-title .title-jp {
	font-size: 1.4rem;
}

.about-title .title-en {
	font-size: 5.4rem;
	margin-top: 1rem;
}

.about-lead {
	font-size: 2rem;
	line-height: 2.1;
	margin-top: 2.7rem;
}

.about-text {
	font-size: 1.4rem;
	line-height: 2.4285714286;
	margin-top: 1.7rem;
}

.loop-items {
	z-index: 0;
}

.loop-item {
	color: #ededed;
	font-size: 7.4rem;
	letter-spacing: 0.1em;
}

.top-case {
	padding: 5.2rem 0 6rem;
}

.case-slider {
	margin-top: 4rem;
}

.case-slider .swiper-slide {
	margin: 0 0.8rem;
	width: 31.5rem;
}

.case-slider .swiper-pagination {
	margin-top: 2rem;
}

.case-slider .swiper-pagination-bullet {
	border-width: 0.1rem;
	height: 0.8rem;
	margin: 0 0.4rem !important;
	width: 0.8rem;
}

.case-slide-cat {
	font-size: 1.1rem;
	height: 3rem;
	padding: 0 1rem;
}

.case-slide-head img {
	height: 20.5rem;
}

.case-slide-body {
	min-height: 11.8rem;
	padding: 1.3rem 1.8rem;
}

.case-slide-title {
	font-size: 1.4rem;
	line-height: 1.7142857143;
	margin-bottom: 1.5rem;
}

.case-slide-link {
	font-size: 1.2rem;
	line-height: 2;
	margin-right: -0.7rem;
	padding-right: 1.5rem;
}

.case-slide-link::before {
	bottom: -0.3rem;
	height: 0.1rem;
}

.case-slide-link::after {
	height: 1.2rem;
	right: 0.2rem;
	width: 0.5rem;
}

.case-btn {
	margin-top: 2.8rem;
}

.top-service {
	padding: 6.8rem 0 6rem;
}

.top-service::after {
	bottom: -8.5rem;
	height: 25.1rem;
	right: -2.4rem;
	width: 24.4rem;
}

.top-service-inner {
	max-width: initial;
}

.top-service-items {
	gap: 0.5rem;
	grid-template-columns: 1fr 1fr;
	margin-top: 4rem;
}

.top-service-item-link {
	height: 15rem;
	width: 17rem;
}

.top-service-item-link::after {
	bottom: 1rem;
	height: 2rem;
	right: 1rem;
	width: 2rem;
}

.top-service-num {
	font-size: 2rem;
	margin-top: 0.6rem;
}

.top-service-num::after {
	bottom: -0.5rem;
	height: 0.2rem;
	width: 1.6rem;
}

.top-service-item-title {
	font-size: 1.8rem;
	line-height: 1.4444444444;
	margin-top: 1.5rem;
}

.top-service-btn {
	margin-top: 4rem;
}

.strength {
	padding-bottom: initial;
}

.strength-inner {
	border-width: 0.1rem;
	padding-top: 6.2rem;
}

.strength-title .title-en {
	margin-left: -0.1rem;
}

.sec-head {
	display: block;
}

.strength-text {
	font-size: 1.4rem;
	line-height: 2.4285714286;
	margin-left: auto;
	margin-top: 2rem;
	width: 27.7rem;
}

.strength-items {
	gap: 6.2rem;
	margin-top: 5.3rem;
}

.strength-item {
	min-height: initial;
	padding: 2.8rem 2rem 4.4rem;
	width: 30rem;
}

.strength-item::after {
	bottom: 0.7rem;
	height: 2.8rem;
	right: 0.7rem;
	width: 2.8rem;
}

.strength-item-num {
	font-size: 2.2rem;
	height: 5.4rem;
	top: -3.2rem;
	width: 5.4rem;
}

.strength-item-img {
	height: auto;
	width: 16.4rem;
}

.strength-item-title {
	font-size: 1.8rem;
	line-height: 1.6666666667;
	margin-top: 0.4rem;
}

.strength-item-text {
	font-size: 1.4rem;
	margin-top: 1rem;
	max-width: 22rem;
}

.faq {
	padding: 6.4rem 0 7.3rem;
}

.faq .loop-items {
	bottom: 1.8rem;
}

.faq-items {
	gap: 1.9rem 0;
	margin-top: 4rem;
}

.faq-item-question {
	gap: 0 1.2rem;
	grid-template-columns: 1fr 3.2rem;
	min-height: 8rem;
	padding: 1.8rem 1.5rem 1.8rem 2rem;
}

.faq-item-title::before {
	top: -0.9rem;
}

.faq-item-answer-container::before {
	top: -0.2rem;
}

.faq-item-title::before,
.faq-item-answer-container::before {
	font-size: 2.2rem;
}

.faq-item-title,
.faq-item-answer-container {
	font-size: 1.4rem;
	line-height: 2;
	padding-left: 3.7rem;
}

.faq-item-btn {
	height: 3.2rem;
	width: 3.2rem;
}

.faq-item-btn .btn-bar {
	height: 0.1rem;
	width: 1.4rem;
}

.faq-item-answer {
	padding: 0 5rem 0 2.1rem;
}

.faq-item-answer-container::before {
	top: 0.6rem;
}

.faq-item-answer-container {
	padding: 1.5rem 0 1.4rem 4rem;
}

.page-bg {
	height: 20rem;
}

.page-bg img {
	left: initial;
	position: static;
	top: initial;
	translate: initial;
}

.company {
	padding: 6.5rem 0 5.8rem;
}

.company-items {
	gap: initial;
	height: initial;
	margin-top: 1.7rem;
}

.company-item {
	grid-template-columns: 7.5rem 1fr;
	max-width: initial;
	width: 100%;
}

.company-item dt,
.company-item dd {
	border-width: 0.1rem;
	font-size: 1.4rem;
	padding-bottom: 1.2rem;
	padding-top: 1.3rem;
}

.company-item dt {
	align-items: start;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
	padding-top: 2rem;
}

.company-item dd {
	line-height: 2;
	padding-left: 2.3rem;
	padding-right: 2.3rem;
}

.cta {
	background-image: url(../img/cta_sp.png);
	padding: 6.3rem 0 6rem;
}

.cta-text {
	font-size: 1.4rem;
	margin-top: 2rem;
}

.cta-btn-items {
	flex-wrap: wrap;
	gap: 2rem;
	margin-top: 2.7rem;
}

.cta-btn {
	gap: 0.3rem;
	height: 7.5rem;
	max-width: initial;
	width: 100% !important;
}

.cta-btn::after {
	height: 0.8rem;
	right: 3.5rem;
	width: 0.4rem;
}

.cta-btn--tel {
	font-size: 2rem;
}

.cta-btn--tel img {
	height: 1.5rem;
	margin-top: 0.2rem;
	width: 1.5rem;
}

.cta-btn--mail {
	font-size: 1.6rem;
}

.cta-btn--mail img {
	height: 1.4rem;
	margin-top: 0.2rem;
	width: 1.9rem;
}

.top-scroll {
	height: 10.8rem;
	right: 1.5rem;
	top: 2.1rem;
	width: 2.9rem;
}

.footer {
	padding: 6rem 0 5.9rem;
}

.footer-inner {
	max-width: initial;
}

.footer-container {
	border-width: 0.1rem;
	flex-direction: column-reverse;
	gap: 6rem;
	padding-bottom: 6.3rem;
}

.footer-logo {
	height: 4rem;
	width: 24rem;
}

.footer-address {
	font-size: 1.2rem;
	line-height: 2.1666666667;
	margin-top: 1.8rem;
}

.footer-link {
	font-size: 1.2rem;
	margin-top: 5.9rem;
}

.copyright {
	font-size: 1rem;
	margin-top: 2.5rem;
}

.footer-nav {
	margin-top: initial;
}

.footer-nav-items {
	align-items: start;
	flex-direction: column;
	gap: 2.6rem;
}

.footer-nav-item-link {
	font-size: 1.2rem;
}

.footer-nav-item-link::after {
	bottom: -0.5rem;
}

.pageLow-head {
	height: 22rem;
}

.pageLow-title {
	margin-bottom: 0.7rem;
}

.pageLow-title .title-en {
	font-size: 4.2rem;
	margin-top: 1.2rem;
}

.pageLow-title .title-jp {
	font-size: 1.4rem;
}

.breadcrumb-items {
	gap: 0 0.8rem;
	padding: 2.2rem 0;
}

.breadcrumb-bar {
	height: 0.1rem;
	width: 1.4rem;
}

.post,
.archive {
	font-size: 1.2rem;
}

.home {
	font-size: 1.2rem;
}

.pageService,
.pageCase {
	background-image: url(../img/head_service_sp.png);
}

.case-text-wrapper {
	padding: 3.2rem 0;
}

.case-text-wrapper::before {
	height: 18.9rem;
	top: -0.9rem;
	translate: -50% 0;
	width: 18.3rem;
}

.case-text {
	font-size: 1.3rem;
	line-height: 2.7692307692;
}

.case-items {
	margin-top: 1.8rem;
}

.case-item {
	padding: 6rem 0;
}

.case-item-title {
	border-width: 0.1rem;
	font-size: 2rem;
	line-height: 1.65;
	padding-bottom: 1.2rem;
	padding-left: 2.1rem;
}

.case-item-title::before {
	height: 1.1rem;
	left: 0.1rem;
	top: 1.2rem;
	width: 1.1rem;
}

.case-item-cat {
	font-size: 1.6rem;
	margin-top: 2rem;
	padding: 0.5rem 1.2rem;
}

.case-img-wrapper {
	gap: 1.5rem;
	grid-template-columns: 1fr;
	margin-top: 2rem;
}

.case-img {
	aspect-ratio: 1.6747572816;
}

.case-item-text {
	font-size: 1.3rem;
	line-height: 2.3076923077;
	margin-top: 1.4rem;
	padding: 2.5rem;
}

.pageContact .pageLow-head,
.pageConfirm .pageLow-head,
.pageThanks .pageLow-head {
	background-image: url(../img/head_contact_sp.png);
}

.pageContact .btn-wrapper {
	gap: 1rem;
	margin-top: 2.2rem;
}

.pageContact .contact-btn {
	border-radius: 7rem;
	height: 5.2rem;
	width: 23.9rem;
}

.pageContact .contact-btn::after {
	height: 1rem;
	right: 3rem;
	width: 0.5rem;
}

.pageContact .contact-btn input {
	font-size: 1.3rem;
}

.pageContact .contact-btn--back::after {
	left: 3rem;
}

.contact-content {
	margin-top: initial;
	padding-bottom: 5.6rem;
	padding-top: initial;
}

.contact-txt {
	font-size: 1.4rem;
	line-height: 2.2857142857;
}

.contact-items {
	gap: 1.6rem 0;
}

.contact-form-title {
	font-size: 2rem;
}

.contact-form-title::before {
	height: 2.6rem;
	width: 0.3rem;
}

.contact-form {
	margin-top: 5.7rem;
	padding: 3.6rem 1.9rem 4.9rem;
}

.contact-form form {
	margin-top: 1.9rem;
	padding-top: 2.2rem;
}

.contact-form dl {
	display: block;
	margin-bottom: 1.5rem;
}

.contact-form dt,
.contact-form dd {
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1.8571428571;
	width: 100%;
}

.contact-form dt {
	gap: 1rem;
	justify-content: initial;
	letter-spacing: 0.04em;
	margin-bottom: 0.6rem;
}

.contact-form dd {
	letter-spacing: 0.06em;
	width: 100%;
}

.contact-form .contact-dt-txt {
	margin-right: 0.9rem;
	padding-left: 0.4rem;
	width: -moz-fit-content;
	width: fit-content;
}

.contact-form .required {
	font-size: 1.2rem;
	font-weight: 500;
	height: 2rem;
	letter-spacing: normal;
	padding-bottom: 0.2rem;
	width: 4.4rem;
}

.contact-form .text-multi {
	padding-top: 1.7rem;
}

.contact-form .text-multi dt {
	align-items: center;
	width: 100%;
}

.contact-form .text-multi dt .required {
	margin-top: initial;
}

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

.contact-form input[type=radio] + span {
	margin-left: 2.7rem;
}

.contact-form input[type=radio] + span::before {
	border-width: 0.1rem;
	height: 1.8rem;
	left: -2.7rem;
	width: 1.8rem;
}

.contact-form input[type=radio] + span::after {
	border-width: 0.1rem;
	height: 0.8rem;
	left: -2.2rem;
	width: 0.8rem;
}

input,
select,
textarea {
	font-size: 1.4rem;
	letter-spacing: 0.04em;
	line-height: 1.2;
	padding: 1rem;
}

input,
select {
	height: 4rem;
}

textarea {
	height: 12rem;
}

span.wpcf7-form-control.wpcf7-radio {
	display: block;
}

span.wpcf7-form-control.wpcf7-radio label {
	display: block;
	margin-bottom: 1.4rem;
}

span.wpcf7-form-control.wpcf7-radio label:last-of-type {
	margin-bottom: 0;
}

.wpcf7-list-item {
	display: block;
	margin-bottom: 0.3rem;
}

.wpcf7-list-item:last-child {
	margin-bottom: 0;
}

.pageConfirm .confirm-box,
.pageThanks .confirm-box {
	margin-top: 8rem;
}

.pageConfirm .confirm-box dl,
.pageThanks .confirm-box dl {
	grid-template-columns: 11.5rem 1fr;
}

.pageConfirm .confirm-box dt,
.pageConfirm .confirm-box dd,
.pageThanks .confirm-box dt,
.pageThanks .confirm-box dd {
	font-size: 1.2rem;
	min-height: 6rem;
	padding: 1rem 0.5rem;
}

.pageConfirm .confirm-box .btn-wrapper,
.pageThanks .confirm-box .btn-wrapper {
	margin-top: 4rem;
}

.thanks-box {
	margin-top: 4rem;
}

.thanks-title {
	font-size: 2.2rem;
}

.thanks-text {
	font-size: 1.6rem;
	margin-top: 2.2rem;
}

.thanks-btn {
	font-size: 1.3rem;
	margin-top: 2rem;
}

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

.privacy-content {
	margin-top: 1.8rem;
}

.privacy-lead {
	max-width: initial;
	text-align: left;
}

.privacy-lead .privacy-text {
	font-size: 1.4rem;
}

.privacy-text {
	font-size: 1.4rem;
	margin-bottom: 2rem;
}

.privacy-text:nth-of-type(1) {
	margin-top: 2rem;
}

.privacy-sec-items {
	margin-top: 3rem;
	padding-bottom: 10rem;
}

.privacy-sec-items::before {
	height: 98%;
	width: 100%;
}

.privacy-sec-item {
	margin-bottom: 4rem;
}

.privacy-title {
	font-size: 2.2rem;
	margin-bottom: 2rem;
	padding: 2rem 0;
}

.service {
	gap: 4rem;
	margin-top: 5.4rem;
	max-width: initial;
	padding-bottom: 4.9rem;
}

.service-item::before {
	font-size: 4.4rem;
	font-weight: normal;
	height: -moz-fit-content;
	height: fit-content;
	right: 1.1rem;
	top: 0;
	translate: initial;
}

.service-item:nth-of-type(even)::before {
	left: 1.1rem;
}

.service-item:first-of-type {
	margin-bottom: initial;
}

.service-item:not(:first-of-type) {
	margin-bottom: 1rem;
}

.service-item-container {
	gap: 1.4rem;
	grid-template-columns: 1fr;
	max-width: initial;
	width: 34.5rem;
}

.service-item-content {
	direction: initial;
	grid-row: 1/2;
}

.service-item-num {
	font-size: 1.3rem;
}

.service-item-title {
	border-width: 0.1rem;
	font-size: 2.2rem;
	line-height: 1.8181818182;
	margin-bottom: 1rem;
	margin-top: 0.5rem;
	padding-bottom: 0.3rem;
}

.service-item-text {
	font-size: 1.4rem;
}

.service-item-img {
	grid-row: 2/3;
}

.service-item-question {
	margin-top: 3.2rem;
	width: 34.5rem;
}

.service-item-question-title {
	font-size: 1.8rem;
	height: 5.4rem;
	margin-bottom: 0.9rem;
}

.service-table-container {
	margin-right: calc(50% - 50vw);
	margin-top: 2.3rem;
	padding-right: 2rem;
}

.service-table-container table {
	width: 100%;
}

.service-table-container th,
.service-table-container td {
	border-width: 0.1rem;
	font-size: 1.4rem;
}

.service-table-container th {
	padding: 1.6rem 1.2rem;
}

.service-table-container th:nth-of-type(1) {
	min-width: 17.5rem;
	width: initial;
}

.service-table-container th:nth-of-type(2) {
	min-width: 16.3rem;
	width: initial;
}

.service-table-container th:nth-of-type(3) {
	min-width: 50.5rem;
	width: initial;
}

.service-table-container td {
	padding: 3rem 2rem;
}

.service-table-container td:last-of-type {
	padding: 1.5rem 5.5rem 1.6rem 1rem;
}

.service-table-container td .service-item-text {
	font-size: 1.2rem !important;
	line-height: 2.1666666667;
}

.service-table--02 .service-table-container {
	margin-right: initial;
	padding-right: initial;
}

.service-table--02 .service-table-container th:first-of-type {
	max-width: initial;
	min-width: initial;
	width: 46%;
}

.service-table--02 .service-table-container th:last-of-type {
	max-width: initial;
	min-width: initial;
	width: 54%;
}

.service-table--02 .service-table-container td {
	height: 10rem;
	padding: 2rem;
}

}

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

.inner {
	width: 95%;
}

.about-container {
	gap: 40px;
	grid-template-columns: 1fr 1fr;
}

.service-item::before {
	font-size: 40px;
}

.service-item-container {
	width: 95%;
}

.service-item-question {
	width: 95%;
}

}

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

.nav-items {
	gap: 20px;
}

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

.header {
	padding-left: 20px;
}

.header-logo {
	width: 180px;
}

.header-nav {
	margin-right: 20px;
}

}

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

.header-btn {
	max-width: 60px;
}

.header-btn img {
	width: 30px;
}

.header-btn span.is-pc {
	display: none;
}

}

@media screen and (min-width: 901px) and (max-width: 1100px) {

.header-btn {
	font-size: 12px;
	max-width: 130px;
}

}

@keyframes scroll-dot {

0% {
	top: 45%;
}

100% {
	top: 100%;
}

}

@keyframes loop-slide {

from {
	transform: translateX(0);
}

to {
	transform: translateX(-100%);
}

}

