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

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

html {
	line-height: 1;
}

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

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

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

a {
	cursor: pointer;
	text-decoration: none;
}

/*
 * メディアクエリ用mixin
 */

/*=============== VARIABLES CSS ===============*/

:root { /*======= Colors ========*/
	--text-color: #2e3436;
	--first-color: #00392f;
	--second-color: #a3da00;
	--accent-color: #ef8c00;
	--white-color: #fffffc; /*======= Fonts and typography ========*/ /*.5rem = 8px | 1rem = 16px ...*/
	--body-font: "Noto Sans JP", sans-serif;
	--second-font: "Bebas Neue", sans-serif;
	--normal-font-size: 1rem; /*======= Fonts weight ========*/
	--font-regular: 400; /*======= Line height ========*/
	--font-light: 1.5; /*======= z index ========*/
}

body {
	background-color: var(--white-color);
	background-image: url(../img/common/bg.jpg);
	background-size: contain;
	color: var(--text-color);
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	line-height: var(--font-light);
	overflow-x: hidden;
}

body.no-scroll {
	overflow-y: hidden;
}

img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}

a {
	color: inherit;
}

body {
	overflow-y: scroll;
}

.l-header {
	height: 6.25rem;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 100;
}

.l-header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	padding: 0 1.25rem;
}

.l-main__page {
	margin-top: 6.25rem;
}

.l-inner {
	margin-inline: auto;
	max-width: 71.25rem;
	padding: 0 1.25rem;
	width: 100%;
}

.l-top-news {
	margin-right: auto;
	max-width: 62.5rem;
	width: 100%;
}

.l-top-service {
	margin-inline: auto;
	max-width: 62.5rem;
	width: 100%;
}

.l-footer {
	margin-left: 2.986vw;
	padding-top: 14.375rem;
}

.l-footer__inner {
	max-width: 100%;
	padding: 3.75rem;
	width: 75.625rem;
}

.l-contact {
	margin-left: 2.986vw;
}

.l-contact__inner {
	margin-inline: auto;
	max-width: 100%;
	padding: 0 1.875rem 3.75rem;
	width: 70.625rem;
}

.l-drawer {
	height: 100vh;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.4s linear, visibility 0.4s linear;
	visibility: hidden;
	width: 100%;
	z-index: 200;
}

.l-drawer.show-menu {
	opacity: 1;
	visibility: visible;
}

.l-drawer::after {
	background-image: url(../img/common/building.png);
	background-size: contain;
	bottom: 3dvh;
	content: "";
	height: 13vw;
	left: 0;
	position: absolute;
	width: 100%;
}

.l-drawer__inner {
	height: -moz-fit-content;
	height: fit-content;
	left: unset;
	margin-inline: auto;
	max-width: 100%;
	padding: 8.125rem 1.875rem 1.875rem;
	position: relative;
	top: unset;
	width: 75rem;
	z-index: 200;
}

.l-head {
	margin-inline: auto;
	max-width: 90rem;
	padding: 0.625rem 6.25rem;
	width: 100%;
}

.l-breadcrumb {
	background-color: var(--first-color);
}

.l-breadcrumb__inner {
	margin: 0 auto;
	margin-top: 0.625rem;
	max-width: 71.25rem;
	padding: 0 1.25rem;
	width: 100%;
}

.l-service {
	padding: 6.25rem 0 10rem;
}

.l-company {
	padding: 5rem 0 10rem;
}

.l-message {
	padding: 6.25rem 0 14.375rem;
}

.l-privacy {
	padding: 6.25rem 0;
}

.c-btn {
	background-color: var(--accent-color);
	border-radius: 1.875rem;
	color: #fff;
	display: inline-block;
	padding: 0.5625rem 1.25rem;
	transition: filter 0.3s ease;
}

.c-btn:hover {
	filter: brightness(1.1);
}

.c-btn__link {
	border: 1px solid var(--first-color);
	border-radius: 0.625rem;
	color: var(--first-color);
	display: inline-block;
	font-weight: bold;
	line-height: 1;
	padding: 1.25rem 7.5rem 1.25rem 1.25rem;
	position: relative;
	transition: all 0.3s ease;
}

.c-btn__link::after {
	background-image: url(../img/common/arrow-green.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 6px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 19px;
}

.c-btn__link:hover {
	background: var(--first-color);
	color: var(--white-color);
}

.c-btn__link:hover::after {
	background-image: url(../img/common/arrow-white.png);
}

.c-btn__link.--white {
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
	color: var(--white-color);
	padding: 1.3125rem 12.5rem 1.3125rem 1.3125rem;
	white-space: nowrap;
}

.c-btn__link.--white::after {
	background-image: url(../img/common/arrow-white.png);
}

.c-title__en {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-family: var(--second-font);
	font-size: 9.375rem;
	line-height: 0.9;
	text-transform: uppercase;
}

.c-title__en.service {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #35b48b 0%, #42d799 70%, #c4e870 100%);
	background-clip: text;
	color: transparent;
}

.c-title__jp {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-family: var(--second-font);
	font-size: 1.875rem;
	font-weight: bold;
}

.c-title__jp.jp-adjust {
	padding-left: 1.4375rem;
}

.c-title__jp.ideology {
	left: 16.875rem;
	position: absolute;
	top: 4.8125rem;
}

.c-title__jp.service {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #35b48b 0%, #42d799 70%, #c4e870 100%);
	background-clip: text;
	color: transparent;
}

.p-main {
	position: relative;
}

.p-header__logo {
	width: 3.9375rem;
}

.p-header__logo a {
	display: inline-block;
}

.p-header__content {
	-moz-column-gap: 3.125rem;
	align-items: center;
	column-gap: 3.125rem;
	display: flex;
}

.p-header__list {
	-moz-column-gap: 2.1875rem;
	column-gap: 2.1875rem;
	display: flex;
}

.p-header__link {
	color: var(--first-color);
	display: inline-block;
	font-weight: 500;
	padding: 0.3125rem 0.4375rem;
}

.p-header__link.top {
	color: var(--white-color);
}

.p-top-fv__content {
	height: 100vh;
	margin-inline: auto;
	max-width: 100%;
	position: relative;
	width: 90rem;
}

.p-top-fv__title {
	color: var(--white-color);
	font-size: 2.875rem;
	font-weight: bold;
	left: 6.944vw;
	position: absolute;
	top: 40vh;
}

.p-top-fv__lux {
	bottom: 0;
	position: absolute;
	right: 0;
}

.p-top-fv__lux .gradation-text {
	color: var(--white-color);
	font-family: var(--second-font);
	font-size: 8.75rem;
	font-weight: 400;
	line-height: 1;
}

.p-top-title {
	position: relative;
}

.p-top-ideology {
	padding: 9.375rem 0 5rem;
}

.p-top-ideology__content {
	-moz-column-gap: 4.6875rem;
	align-items: center;
	column-gap: 4.6875rem;
	display: flex;
	position: relative;
}

.p-top-ideology__content::after {
	background-image: url(../img/common/point1.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 6.125rem;
	position: absolute;
	right: 0;
	top: -4.0625rem;
	width: 6.0625rem;
}

.p-top-ideology__lead {
	color: var(--first-color);
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.6;
}

.p-top-ideology__text {
	line-height: 2.2;
	margin-top: 1.25rem;
}

.p-top-building {
	height: 100%;
	position: relative;
	width: 100%;
	z-index: 10;
}

.p-top-building > img {
	-o-object-fit: cover;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.p-top-news {
	padding: 9.375rem 0 5rem;
	position: relative;
	z-index: 10;
}

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

.p-top-news__wrap {
	border-top: 1px solid var(--first-color);
}

.p-top-news__wrap:last-of-type {
	border-bottom: 1px solid var(--first-color);
}

.p-top-news__summary {
	color: var(--first-color);
	cursor: pointer;
	display: flex;
	padding: 1.6875rem 1.25rem;
	position: relative;
}

.p-top-news__summary::before {
	background: var(--first-color);
	content: "";
	height: 20px;
	position: absolute;
	right: 28px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease;
	width: 2px;
}

.p-top-news__summary::after {
	background: var(--first-color);
	content: "";
	height: 2px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 20px;
}

.p-top-news__summary.js-open::before {
	transform: translateY(-50%) rotate(90deg);
}

.p-top-news__summary::-webkit-details-marker { /* Safari-デフォルトの三角形を削除*/
	display: none;
}

.p-top-news__date {
	width: 9.375rem;
}

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

.p-top-news__text {
	color: var(--first-color);
	margin-left: 9.375rem;
	padding: 0 1.25rem 1.25rem;
}

.p-top-company {
	padding-top: 5rem;
	position: relative;
}

.p-top-company__inner {
	-moz-column-gap: 5rem;
	column-gap: 5rem;
	display: flex;
	padding-top: 4.375rem;
}

.p-top-company__content {
	flex: 0 0 17.8125rem;
	position: relative;
}

.p-top-company__content::after {
	background-image: url(../img/common/point2.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 1.875rem;
	content: "";
	height: clamp(3.75rem, -12.426rem + 23.53vw, 8.75rem);
	left: 0;
	position: absolute;
	width: clamp(3.75rem, -12.426rem + 23.53vw, 8.75rem);
}

.p-top-company__lead {
	color: var(--first-color);
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.6;
}

.p-top-company__text {
	color: var(--first-color);
	line-height: 2.2;
	margin-top: 1.875rem;
}

.p-top-company__btn {
	margin-top: 1.875rem;
}

.p-top-company__img {
	flex: 1 1 0;
	margin-right: calc(50% - 50vw);
	max-height: 800px;
	position: relative;
	width: 100vw;
	z-index: 1;
}

.p-top-company__img picture,
.p-top-company__img img {
	-o-object-fit: cover;
	-o-object-position: left top;
	display: block;
	height: 100%;
	max-height: 800px;
	object-fit: cover;
	object-position: left top;
	width: 100%;
}

.p-top-company__img::after {
	background-image: url(../img/top/company-point.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 52.5rem;
	position: absolute;
	right: 0;
	top: -50.9375rem;
	width: 30rem;
	z-index: -1;
}

.p-tpo-value {
	color: var(--white-color);
}

.p-tpo-value__content {
	padding: 15.625rem 0 9.375rem;
	text-align: center;
}

.p-tpo-value__lead {
	font-size: 2.125rem;
	font-weight: bold;
}

.p-tpo-value__text {
	font-size: 1.125rem;
	line-height: 2.6;
	margin-top: 2.5rem;
}

.p-tpo-value__text span {
	display: block;
	height: 2.5rem;
	width: 100%;
}

.p-bg {
	background-image: url(../img/common/bg.jpg);
	background-size: contain;
}

.p-bg__glass {
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	position: relative;
}

.p-bg__glass::before {
	background: rgba(0, 57, 47, 0.03);
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-top-service {
	height: auto;
	padding-top: 6.25rem;
}

.p-top-service__bottom {
	height: 8.9583vw;
	position: relative;
	width: 100%;
}

.p-top-service__bottom::after {
	background-image: url(../img/top/bg-point.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: inherit;
	left: 50%;
	position: absolute;
	top: 1px;
	transform: translateX(-50%);
	width: inherit;
}

.p-top-service__swiper {
	padding-bottom: 6.25rem;
	padding-top: 4.0625rem;
	position: relative;
}

.p-top-service__swiper .swiper-scrollbar {
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.3);
	height: 0.5625rem !important;
}

.p-top-service__swiper .swiper-scrollbar-drag {
	background: #4bccbe;
}

.p-top-service__swiper .swiper-horizontal > .swiper-scrollbar,
.p-top-service__swiper .swiper-scrollbar.swiper-scrollbar-horizontal {
	bottom: 0.9375rem;
	left: 0;
	width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 8%));
}

.p-top-service__slider {
	padding-bottom: 4.375rem;
	position: relative;
}

.p-top-service__slide {
	position: relative;
}

.p-top-service__custom {
	position: relative;
}

.p-top-service__custom .swiper-button-next,
.p-top-service__custom .swiper-button-prev {
	position: absolute;
	top: auto;
}

.p-top-service__custom {
	bottom: 0;
	height: 2.75rem;
	position: absolute;
	right: 0;
	width: 6.125rem;
	z-index: 10;
}

.p-top-service__custom .swiper-button-next,
.p-top-service__custom .swiper-button-prev {
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 0.625rem;
	height: 2.75rem;
	transition: background-color 0.3s ease;
	width: 2.5625rem;
}

.p-top-service__custom .swiper-button-next:hover,
.p-top-service__custom .swiper-button-prev:hover {
	background-color: rgba(0, 57, 47, 0.7);
}

.p-top-service__custom .swiper-button-next {
	bottom: 0;
	right: 0;
}

.p-top-service__custom .swiper-button-prev {
	bottom: 0;
	left: 0;
}

.p-top-service__custom .swiper-button-next::after,
.p-top-service__custom .swiper-button-prev::after {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 0.375rem;
	width: 1.1875rem;
}

.p-top-service__custom .swiper-button-next::after {
	background-image: url(../img/common/arrow-white.png);
	transform: scaleX(1);
}

.p-top-service__custom .swiper-button-prev::after {
	background-image: url(../img/common/arrow-white.png);
	transform: scaleX(-1);
}

.p-card {
	-moz-column-gap: 3.75rem;
	column-gap: 3.75rem;
	cursor: pointer;
	display: flex;
}

.p-card:hover .c-btn__link {
	background-color: rgba(0, 57, 47, 0.7);
}

.p-card__content {
	color: var(--white-color);
	width: 38%;
}

.p-card__title {
	font-size: 1.5rem;
	font-weight: bold;
}

.p-card__text {
	line-height: 2.2;
	margin-top: 2.1875rem;
}

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

.p-card__img {
	position: relative;
	width: 56%;
}

.p-card__img picture,
.p-card__img img {
	display: block;
	width: 100%;
}

.p-card__img.card-num::after {
	color: var(--white-color);
	content: "";
	font-family: "Oswald", sans-serif;
	font-size: 3.75rem;
	font-weight: bold;
	left: 0.9375rem;
	line-height: 1;
	position: absolute;
	top: 0.9375rem;
}

.p-card__img.card-num.card-1::after {
	content: "01";
}

.p-card__img.card-num.card-2::after {
	content: "02";
}

.p-card__img.card-num.card-3::after {
	content: "03";
}

.p-card__img.card-num.card-4::after {
	content: "04";
}

.p-card__img.card-num.card-5::after {
	content: "05";
}

.p-card__img-content {
	display: block;
	height: auto;
	position: relative;
	width: 100%;
}

.p-card__img-content::before {
	background: rgba(0, 0, 0, 0.3);
	border-radius: 0.625rem;
	content: "";
	display: block;
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}

.p-card__head {
	background: var(--white-color);
	color: var(--first-color);
	font-weight: bold;
	padding: 0.0625rem 0.3125rem;
	position: absolute;
	right: 0;
	top: 1.875rem;
	z-index: 1;
}

.p-card__head-title {
	font-size: 1.5rem;
}

.p-card__subtitle-wrap {
	bottom: 0;
	display: flex;
	flex-direction: column;
	left: 0;
	position: absolute;
	row-gap: 0.3125rem;
	z-index: 1;
}

.p-card__subtitle {
	background: var(--white-color);
	color: var(--first-color);
	display: inline-block;
	font-size: 1.125rem;
	font-weight: bold;
	padding: 0.125rem 0.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-footer__bg {
	background-image: url(../img/common/bg.jpg);
	background-size: contain;
}

.p-footer {
	background: var(--first-color);
	position: relative;
}

.p-footer__list {
	-moz-column-gap: 3.125rem;
	column-gap: 3.125rem;
	display: flex;
}

.p-footer__link {
	display: inline-block;
	padding: 0.3125rem;
	text-align: center;
}

.p-footer__text--en {
	color: var(--second-color);
	font-family: var(--second-font);
	padding: 0 0.5625rem;
	position: relative;
	text-align: center;
}

.p-footer__text--en::before {
	background-color: var(--second-color);
	content: "";
	height: 0.0625rem;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0.3125rem;
}

.p-footer__text--en::after {
	background-color: var(--second-color);
	content: "";
	height: 0.0625rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0.3125rem;
}

.p-footer__text--jp {
	color: var(--white-color);
	display: block;
}

.p-footer__company {
	align-items: flex-end;
	display: flex;
	justify-content: space-between;
	padding-top: 10rem;
}

.p-footer__company-inc {
	color: var(--white-color);
	font-family: "Inter", sans-serif;
	font-size: 3.75rem;
	font-weight: 900;
}

.p-footer__company-lux {
	font-family: var(--second-font);
}

.p-footer__company-lux .text {
	color: var(--white-color);
	font-size: 7.5rem;
	line-height: 0.8;
}

.p-footer__company-lux .text--jp {
	position: relative;
}

.p-footer__company-lux .text--jp::after {
	bottom: 0.625rem;
	color: var(--white-color);
	content: "最高の顧客体験を";
	font-size: 1.25rem;
	position: absolute;
	right: 2.5rem;
}

.p-footer__company-lux .color-gradation {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
}

.p-footer__company-lux .text--adjust {
	margin-left: -2.75rem;
}

.p-footer__copyright {
	color: var(--first-color);
	display: none;
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 900;
	mix-blend-mode: hard-light;
	padding-top: 0.5rem;
	text-align: right;
}

.p-contact {
	background: var(--first-color);
	border-radius: 12.5rem 0 0 0;
	padding-top: 8.75rem;
}

.p-contact__wrap {
	-moz-column-gap: 2.5rem;
	column-gap: 2.5rem;
	display: flex;
	justify-content: space-between;
	margin-top: 3.75rem;
}

.p-contact__content {
	color: var(--white-color);
	flex: 0 1 31.25rem;
}

.p-contact__lead {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.6;
}

.p-contact__text {
	line-height: 2;
	margin-top: 1.25rem;
}

.p-contact__text span {
	display: block;
	height: 1.25rem;
	width: 100%;
}

.p-contact__img {
	margin-top: 2.8125rem;
}

/*=============== CONTACTフォーム  ===============*/

.p-contact__form {
	flex: 0 0 29.375rem;
}

.p-contact__form-list {
	display: flex;
	flex-direction: column;
	row-gap: 0.625rem;
}

.p-contact__form-item {
	display: flex;
	flex-direction: column;
	row-gap: 0.3125rem;
}

.p-contact__form-label {
	color: var(--white-color);
}

.p-contact__form-required {
	background: #c21c6c;
	border-radius: 0.25rem;
	color: var(--white-color);
	display: inline-block;
	font-size: 0.75rem;
	line-height: 1;
	margin-left: 0.625rem;
	padding: 0.1875rem 0.25rem;
}

.p-contact__form-input {
	width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: var(--white-color);
	border: none;
	border-radius: 6px;
	font-family: inherit;
	font-size: 1rem;
	height: auto;
	line-height: 1.5;
	outline: none;
	padding: 0.75rem 1.125rem;
	width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
	outline: 3px solid #a3da00;
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
textarea::-moz-placeholder {
	color: #c2c2c2;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
	color: #c2c2c2;
}

input[type=text]:hover,
input[type=email]:hover,
input[type=tel]:hover,
textarea:hover {
	cursor: pointer;
}

textarea {
	height: 7.5rem;
	resize: none;
}

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

.p-contact__form__checkbox label input[type=checkbox] {
	opacity: 0;
	position: absolute;
}

.p-contact__form__checkbox label span {
	color: var(--white-color);
	display: inline-block;
	padding-left: 32px;
	position: relative;
}

.p-contact__form__checkbox label span a {
	color: #a3da00;
	text-decoration: underline;
	text-decoration-color: #a3da00;
	text-underline-offset: 3px;
}

.p-contact__form__checkbox label span::before {
	background-color: var(--white-color);
	border: none;
	border-radius: 4px;
	content: "";
	height: 1.1875rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1.1875rem;
}

.p-contact__form__checkbox label span::after {
	border-bottom: 2px solid var(--text-color);
	border-right: 2px solid var(--text-color);
	content: "";
	height: 17px;
	left: 6px;
	opacity: 0;
	position: absolute;
	top: calc(50% - 2px);
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
}

.p-contact__form__checkbox label input[type=checkbox]:checked + span::after {
	opacity: 1;
}

.p-contact__form__checkbox label:hover {
	cursor: pointer;
}

.p-contact__form-submit-wrap {
	display: flex;
	justify-content: center;
}

.p-contact__form-submit {
	margin-top: 1.875rem;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.p-contact__form-submit::after {
	background-image: url(../img/common/arrow-white.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 6px;
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	width: 19px;
}

input[type=submit] {
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	-moz-appearance: button;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: button;
	appearance: none;
	background-color: var(--accent-color);
	border: none;
	border-radius: 0.625rem;
	box-sizing: border-box;
	color: var(--white-color);
	cursor: pointer;
	font-size: 1.125rem;
	font-weight: bold;
	padding: 1.125rem 8.75rem 1.125rem 1.25rem;
	position: relative;
	transition: background-color 0.3s, color 0.3s;
}

input[type=submit]::-webkit-search-decoration {
	display: none;
}

input[type=submit]:disabled {
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.5) 100%), var(--first-color);
	border: 1px solid rgba(255, 255, 255, 0.3);
	cursor: not-allowed;
}

.wpcf7-response-output {
	color: var(--white-color) !important;
}

.p-top-bg::before {
	background-image: url(../img/top/fv.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	display: block;
	height: 100vh;
	left: 0px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: -1;
}

.p-drawer__logo {
	left: 1.875rem;
	position: absolute;
	top: 1.25rem;
	z-index: 300;
}

.p-drawer__logo a {
	display: inline-block;
	width: 4rem;
}

.p-drawer__button {
	background-color: #222222;
	border-radius: 6.1875rem;
	color: var(--white-color);
	cursor: pointer;
	font-size: 0.875rem;
	height: 2.25rem;
	opacity: 0;
	position: fixed;
	right: 1.875rem;
	top: 1.25rem;
	visibility: hidden;
	width: 5.25rem;
	z-index: 300;
}

.p-drawer__button::after {
	color: #fff;
	content: "MENU";
	font-size: 0.875rem;
	left: 50%;
	position: absolute;
	text-align: center;
	top: 50%;
	transform: translate(-50%, -50%);
	white-space: nowrap;
}

.p-drawer__button.js-open::after {
	content: "CLOSE";
}

.p-drawer {
	background-color: var(--white-color);
}

.p-drawer__list {
	-moz-column-gap: 0.9375rem;
	column-gap: 0.9375rem;
	display: flex;
	justify-content: space-between;
}

.p-drawer__item {
	color: var(--first-color);
	font-size: 1.25rem;
	font-weight: bold;
	height: -moz-fit-content;
	height: fit-content;
	padding-left: 2rem;
	position: relative;
	transition: color 0.3s;
}

.p-drawer__item::after {
	background-image: url(../img/common/point1.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.375rem;
	left: 0;
	position: absolute;
	top: 0.3125rem;
	transition: background-image 0.3s;
	width: 1.375rem;
}

.p-drawer__item:hover.p-drawer__item::after {
	background-image: url(../img/common/point3.png);
}

.p-drawer__item.point-none {
	padding-left: 0;
}

.p-drawer__item.point-none::after {
	background-image: none;
}

.p-drawer__item.point-none:hover::after {
	background-image: none;
}

.p-drawer__submenu {
	display: flex;
	flex-direction: column;
	margin-top: 0.9375rem;
	row-gap: 0.9375rem;
}

.p-drawer__submenu-link {
	color: var(--first-color);
	font-size: 1rem;
	font-weight: bold;
	padding: 0.3125rem 0.3125rem 0.3125rem 0;
	transition: color 0.3s;
}

.p-drawer__submenu-link:hover {
	color: #4bccbe;
}

.p-drawer__submenu-link:hover .p-drawer__item::after {
	background-image: url(../img/common/point3.png);
}

.p-drawer__item-wrap {
	display: flex;
	flex-direction: column;
	font-size: 1.25rem;
	font-weight: bold;
	row-gap: 1.25rem;
}

.p-drawer__item-navLink {
	color: var(--first-color);
	padding-left: 2rem;
	position: relative;
	transition: color 0.3s;
}

.p-drawer__item-navLink::after {
	background-image: url(../img/common/point1.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.375rem;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: background-image 0.3s;
	width: 1.375rem;
}

.p-drawer__item-navLink:hover::after {
	background-image: url(../img/common/point3.png);
}

.breadcrumb {
	color: var(--white-color);
	font-size: 0.875rem;
	overflow-x: auto;
	padding: 0.625rem 0;
	white-space: nowrap;
}

.breadcrumb .home {
	color: var(--white-color);
}

.breadcrumb a {
	color: var(--white-color);
}

.p-service {
	align-items: flex-start;
	display: flex;
	position: relative;
}

.p-service::after {
	background-image: url(../img/common/point2.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	height: 9.6875rem;
	left: 3.125rem;
	position: absolute;
	width: 9.6875rem;
}

.p-service__sidebar {
	height: 100%;
	padding-left: 6.944vw;
	position: sticky;
	top: 0;
	width: 30%;
}

.p-service__sidebar ul {
	display: flex;
	flex-direction: column;
	padding: 12.5rem 0;
	row-gap: 0.625rem;
}

.p-service__sidebar a {
	color: var(--first-color);
	display: block;
	font-weight: bold;
	padding: 0.25rem 0;
}

.p-service__content {
	display: flex;
	flex-direction: column;
	row-gap: 6.25rem;
	width: 70%;
}

.p-service__item-head {
	align-items: center;
	display: flex;
	position: relative;
}

.p-service__item-title {
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	bottom: 2.5rem;
	color: var(--white-color);
	font-size: 1.75rem;
	font-weight: bold;
	left: 0;
	line-height: 1;
	padding: 0.625rem 0.8125rem;
	position: absolute;
	width: -moz-fit-content;
	width: fit-content;
	z-index: 1;
}

.p-service__item-num {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	flex: 0 0 11.25rem;
	font-family: "Oswald", sans-serif;
	font-size: clamp(5rem, 2.917rem + 3.7vw, 6.25rem);
	font-weight: 500;
	line-height: 1;
	position: relative;
}

.p-service__item-img {
	margin-right: calc(50% - 50vw);
	max-height: 360px;
	position: relative;
	width: 100vw;
}

.p-service__item-img img {
	-o-object-fit: cover;
	-o-object-position: left top;
	display: block;
	height: 100%;
	max-height: 360px;
	object-fit: cover;
	object-position: left top;
	width: 100%;
}

.p-service__item-body {
	line-height: 1.9;
	max-width: 100%;
	padding: 1.25rem 1.25rem 1.25rem 0;
	width: 39.375rem;
}

.p-service__item-body h3 {
	color: var(--first-color);
	font-size: 1.375rem;
	font-weight: bold;
}

.p-service__item-body .site {
	font-size: 0.875rem;
	margin-top: 0.9375rem;
}

.p-service__item-body .link {
	color: #4bccbe;
	display: inline-block;
	font-size: 0.875rem;
}

.p-service__item-detail {
	border-top: 2px solid #696969;
	margin-top: 0.625rem;
	padding: 1.875rem 1.25rem 0 1.25rem;
}

.p-service__item-detail p {
	color: var(--first-color);
	font-size: 1.375rem;
	font-weight: bold;
}

.p-service__item-detail ul {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	margin-top: 1.25rem;
}

.p-service__item-detail .circle {
	border: 3px solid #4bccbe;
	border-radius: 50%;
	font-size: 0.9375rem;
	font-weight: 500;
	height: 11.25rem;
	text-align: center;
	width: 11.25rem;
}

.p-service__item-detail .icon {
	display: inline-block;
	padding-top: 2.5rem;
	position: relative;
	top: calc(50% - 2px);
	transform: translateY(-50%);
}

.p-service__item-detail .icon::after {
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 1.875rem;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 2.25rem;
}

.p-service__item-detail .icon.icon1::after {
	background-image: url(../img/service/icon1.svg);
}

.p-service__item-detail .icon.icon2::after {
	background-image: url(../img/service/icon2.svg);
}

.p-service__item-detail .icon.icon3::after {
	background-image: url(../img/service/icon3.svg);
}

.p-service__item-detail .icon.icon4::after {
	background-image: url(../img/service/icon4.svg);
}

.p-service__item-detail .icon.icon5::after {
	background-image: url(../img/service/icon5.svg);
}

.p-service__item-detail .icon.icon6::after {
	background-image: url(../img/service/icon6.svg);
}

.p-service__item-detail .icon.icon7::after {
	background-image: url(../img/service/icon7.svg);
}

.p-service__item-detail .icon.icon8::after {
	background-image: url(../img/service/icon8.svg);
}

.p-service__item-detail .icon.icon9::after {
	background-image: url(../img/service/icon9.svg);
}

.p-service__item-detail .icon.icon10::after {
	background-image: url(../img/service/icon10.svg);
}

.p-service__item-detail .icon.icon11::after {
	background-image: url(../img/service/icon11.svg);
}

.p-service__item-detail .icon.icon12::after {
	background-image: url(../img/service/icon12.svg);
}

.p-service__item-detail .icon.icon13::after {
	background-image: url(../img/service/icon13.svg);
}

.p-copyright {
	bottom: 1.25rem;
	color: var(--first-color);
	display: block;
	font-family: "Inter", sans-serif;
	font-size: 0.75rem;
	font-weight: 900;
	left: 0.625rem;
	mix-blend-mode: hard-light;
	position: fixed;
	writing-mode: vertical-rl;
	z-index: 100;
}

.p-head__title {
	position: relative;
}

.p-company__img {
	height: 34.93vw;
	position: relative;
	width: 100%;
}

.p-company__img::after {
	background-image: url(../img/company/company-img.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: inherit;
	left: 50%;
	position: absolute;
	top: 1px;
	transform: translateX(-50%);
	width: inherit;
}

.p-company {
	position: relative;
}

.p-company::after {
	background-image: url(../img/common/point2.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	height: 9.6875rem;
	left: 3.125rem;
	position: absolute;
	width: 9.6875rem;
}

.p-company__inner {
	-moz-column-gap: 1.875rem;
	column-gap: 1.875rem;
	display: flex;
}

.p-company__title-en {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-family: var(--second-font);
	font-size: 5rem;
	line-height: 0.9;
	padding-right: 1.25rem;
}

.p-company__title-jp {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-family: var(--second-font);
	font-size: 1.5rem;
	font-weight: bold;
}

.p-company__title-wrap {
	flex: 0 1 23.75rem;
}

.p-company__content {
	flex: 0 1 37.1875rem;
}

.p-company__table {
	background: var(--white-color);
	border-bottom: 1px solid var(--text-color);
	border-collapse: collapse;
	border-top: 1px solid var(--text-color);
	font-weight: 500;
	table-layout: fixed;
	width: 100%;
}

.p-company__table th {
	-moz-text-align-last: justify;
	border-top: 1px solid var(--text-color);
	padding: 1.25rem 3.125rem;
	text-align-last: justify;
	width: 11.25rem;
}

.p-company__table td {
	border-top: 1px solid var(--text-color);
	padding: 1.25rem 0;
}

.p-message__content {
	padding: 1.875rem;
}

.p-message__title-en {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(65deg, #005842 0%, #478b21 70%, #7ba500 100%);
	background-clip: text;
	color: transparent;
	display: inline-block;
	font-family: var(--second-font);
	font-size: 5rem;
	line-height: 0.9;
}

.p-message__title-jp {
	color: var(--first-color);
	font-size: 1.25rem;
	font-weight: bold;
	margin-top: 0.625rem;
}

.p-message__text {
	line-height: 2;
	margin-top: 1.875rem;
	padding-bottom: 2.5rem;
	position: relative;
}

.p-message__text::after {
	background-image: url(../img/company/name1.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0;
	content: "";
	height: 1rem;
	position: absolute;
	right: 0;
	width: 12rem;
}

.p-toTop {
	bottom: 18.75rem;
	color: var(--white-color);
	display: inline-block;
	position: absolute;
	right: 0.625rem;
	writing-mode: vertical-rl;
	z-index: 50;
}

.p-toTop span {
	display: inline-block;
	padding-top: 3.75rem;
	position: relative;
}

.p-toTop span::after {
	background-image: url(../img/common/page-top.png);
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	height: 48.2px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 6.7px;
}

.p-privacy__content {
	line-height: 1.8;
}

.p-privacy__head {
	border-bottom: 1px solid #dcdcdc;
	padding-bottom: 1.875rem;
}

.p-privacy__body {
	padding: 1.875rem 0 0;
}

.p-privacy__list {
	display: flex;
	flex-direction: column;
	row-gap: 1.875rem;
}

.p-privacy__item ul {
	margin-top: 0.625rem;
	padding-left: 1.25rem;
}

.p-privacy__item li {
	list-style-type: disc;
}

.p-privacy__title {
	font-size: 1.25rem;
	font-weight: bold;
	padding-bottom: 0.625rem;
}

.p-privacy__text span {
	display: block;
	margin-top: 1.25rem;
}

.test-inner {
	text-align: center;
}

@media (min-width: 768px) {

.u-sp {
	display: none;
}

}

@media (min-width: 769px) {

.p-drawer__button.is-show {
	opacity: 1;
	position: fixed;
	transition: opacity 0.5s ease;
	visibility: visible;
}

}

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

.l-footer__inner {
	padding: 0 6.875rem ren(60);
}

.l-drawer::after {
	height: 19.09vw;
}

.l-drawer__inner {
	padding: 13.75rem 1.25rem 3.75rem;
}

.p-top-fv__lux .gradation-text {
	font-size: 9.375rem;
}

.p-top-company__content::after {
	left: -3.68vw;
}

}

@media (min-width: 1440px) {

.p-service__item-title {
	bottom: 3.5rem;
}

}

@media (min-width: 1500px) {

.l-footer__inner {
	margin-inline: auto;
}

}

@media (max-width: 1200px) {

.l-footer__inner {
	padding: 0 1.25rem 1.25rem;
}

.p-top-company__img::after {
	height: 40rem;
	top: -28.125rem;
	width: 17.5rem;
}

}

@media (max-width: 1100px) {

.p-top-fv__lux .gradation-text {
	font-size: 6.25rem;
}

.p-top-company__content::after {
	bottom: -3.125rem;
}

}

@media (max-width: 1050px) {

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

.p-drawer__list {
	flex-direction: column;
	row-gap: 1.25rem;
}

.p-drawer__submenu {
	margin-top: 0.5rem;
	row-gap: 0.625rem;
}

}

@media (max-width: 1000px) {

.l-footer {
	padding-top: 0;
}

.p-footer__nav {
	display: none;
}

.p-footer__company {
	padding-top: 6.25rem;
}

.p-contact__wrap {
	flex-direction: column;
}

}

@media (max-width: 900px) {

.l-contact__inner {
	padding: 0 1.25rem 3.75rem;
}

.l-head {
	padding: 0.625rem 1rem;
}

.l-service {
	padding: 1.875rem 0 8.75rem;
}

.l-message {
	padding: 3.75rem 0 8.75rem;
}

.l-privacy {
	padding: 4.375rem 0;
}

.c-title__en {
	font-size: 5.5rem;
}

.c-title__jp {
	font-size: 1.25rem;
}

.c-title__jp.ideology {
	left: 10.5rem;
	top: 2.625rem;
}

.p-top-ideology__content {
	align-items: flex-start;
	flex-direction: column;
}

.p-top-ideology__content::after {
	right: 5vw;
}

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

.p-top-company__content {
	padding-bottom: 6.25rem;
	width: 100%;
}

.p-top-company__content::after {
	display: none;
}

.p-top-company__img {
	margin-left: auto;
	width: 70vw;
}

.p-top-company__img::before {
	background-image: url(../img/common/point2.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: 0.9375rem;
	content: "";
	height: clamp(3.75rem, -12.426rem + 23.53vw, 8.75rem);
	left: -25vw;
	position: absolute;
	width: clamp(3.75rem, -12.426rem + 23.53vw, 8.75rem);
}

.p-top-company__img::after {
	height: 17.5rem;
	top: -270px;
	width: 9.9375rem;
}

.p-footer__company-inc {
	font-size: 2.6875rem;
}

.p-contact {
	border-radius: 6.25rem 0 0 0;
	padding-top: 4.375rem;
}

.p-service {
	align-items: stretch;
	display: block;
}

.p-service::after {
	bottom: 0;
	height: 4.375rem;
	left: 1.25rem;
	width: 4.375rem;
}

.p-service__sidebar {
	padding: 0 1rem 0;
	position: static;
	top: auto;
	width: 100%;
}

.p-service__sidebar ul {
	padding: 0;
	row-gap: 0.4375rem;
}

.p-service__sidebar a {
	font-size: 0.875rem;
}

.p-service__content {
	margin-top: 2.5rem;
	padding: 0rem 1rem;
	row-gap: 3.75rem;
	width: 100%;
}

.p-service__item-title {
	bottom: 3.125rem;
	font-size: 1.375rem;
}

.p-service__item-num {
	flex: 0 0 5.3125rem;
	font-size: 4rem;
}

.p-service__item-body {
	padding: 1.25rem 0 0;
	width: 100%;
}

.p-service__item-detail {
	border-top: 2px solid #696969;
	margin-top: 1.875rem;
	margin-top: 0.625rem;
	padding: 1.25rem 0 0;
}

.p-service__item-detail p {
	font-size: 1.125rem;
}

.p-service__item-detail .circle {
	font-size: 0.875rem;
	height: 10rem;
	width: 10rem;
}

.p-copyright.page {
	display: none;
}

.p-company::after {
	bottom: 0;
	height: 4.375rem;
	left: 1.25rem;
	width: 4.375rem;
}

}

@media (max-width: 767px) {

.u-pc {
	display: none;
}

}

@media screen and (max-width: 767px) {

.l-contact__inner {
	padding: 0 0.9375rem 3.75rem;
}

.l-drawer__inner {
	padding: 6.875rem 1.875rem 1.875rem;
}

.l-head {
	padding: 0.625rem 1rem 0.9375rem;
}

.c-title__en.privacy {
	font-size: 4.375rem;
}

.c-title__jp.jp-adjust {
	bottom: 0;
	left: 0.1875rem;
	padding-left: 0;
	position: absolute;
}

.p-header__content {
	display: none;
}

.p-top-fv__title {
	font-size: 1.625rem;
}

.p-top-fv__lux .gradation-text {
	bottom: 3.75rem;
	font-size: 5.5rem;
}

.p-top-title {
	padding-bottom: 1.8125rem;
}

.p-top-ideology__lead {
	font-size: 1.375rem;
}

.p-top-ideology__text {
	font-size: 0.875rem;
	margin-top: 0.75rem;
}

.p-top-news {
	padding: 6.25rem 0 3.125rem;
}

.p-top-news__summary {
	flex-direction: column;
	font-size: 0.875rem;
	padding: 1.25rem 0.625rem;
	row-gap: 0.3125rem;
}

.p-top-news__text {
	font-size: 0.875rem;
	margin-left: 0;
	padding: 0 0.625rem 1.25rem;
}

.p-top-company {
	padding-top: 3.125rem;
}

.p-top-company__inner {
	padding-top: 2.1875rem;
}

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

.p-tpo-value__lead {
	font-size: 1.375rem;
}

.p-tpo-value__text {
	font-size: 1rem;
}

.p-top-service__swiper {
	padding-top: 4.375rem;
}

.p-top-service__swiper .swiper-horizontal > .swiper-scrollbar,
.p-top-service__swiper .swiper-scrollbar.swiper-scrollbar-horizontal {
	width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 14%));
}

.p-card {
	flex-direction: column-reverse;
}

.p-card__content {
	margin-top: 1.25rem;
	width: 100%;
}

.p-card__title {
	font-size: 1.375rem;
}

.p-card__text {
	font-size: 0.875rem;
	margin-top: 0.9375rem;
}

.p-card__btn {
	margin-top: 2.5rem;
	text-align: center;
}

.p-card__img {
	width: 100%;
}

.p-card__head-title {
	font-size: 1.25rem;
}

.p-card__subtitle {
	font-size: 0.875rem;
}

.p-footer__company-inc {
	font-size: 1.5rem;
}

.p-footer__company-lux .text {
	font-size: 3rem;
}

.p-footer__company-lux .text--jp::after {
	bottom: 0.375rem;
	font-size: 0.625rem;
	right: 0;
}

.p-footer__company-lux .text--adjust {
	margin-left: -1.125rem;
}

.p-footer__copyright {
	display: block;
}

.p-contact__wrap {
	margin-top: 1.875rem;
}

.p-contact__lead {
	font-size: 1.375rem;
}

.p-contact__text {
	font-size: 0.875rem;
}

.p-contact__form-label {
	font-size: 0.875rem;
}

.p-contact__form-required {
	font-size: 0.75rem;
}

.p-drawer__logo a {
	width: 3.3125rem;
}

.p-drawer__button {
	opacity: 1;
	visibility: visible;
}

.p-drawer__item {
	font-size: 1.125rem;
}

.p-service__item-body h3 {
	font-size: 1.25rem;
}

.p-service__item-body p {
	font-size: 0.9375rem;
}

.p-copyright {
	display: none;
}

.p-head__title {
	padding-bottom: 1.5625rem;
}

.p-company__inner {
	display: block;
}

.p-company__title-en {
	font-size: 3.75rem;
}

.p-company__title-jp {
	font-size: 1.125rem;
}

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

.p-company__table th {
	padding: 1.25rem;
	width: 8.125rem;
}

.p-message__content {
	padding: 0;
}

.p-message__title-en {
	font-size: 3.75rem;
}

.p-message__title-jp {
	font-size: 1.125rem;
	margin-top: 0.375rem;
}

.p-toTop {
	bottom: 11.25rem;
}

}

@media (max-width: 450px) {

.p-top-service__swiper .swiper-horizontal > .swiper-scrollbar,
.p-top-service__swiper .swiper-scrollbar.swiper-scrollbar-horizontal {
	width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 18%));
}

.p-top-service__custom .swiper-button-next,
.p-top-service__custom .swiper-button-prev {
	height: 2.375rem;
	width: 2.1875rem;
}

.p-top-service__custom {
	width: 5.3125rem;
}

}

@media (max-width: 400px) {

.p-service__item-detail .circle {
	font-size: 0.8125rem;
	height: 8.75rem;
	width: 8.75rem;
}

}

