*,
*::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 {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}

button {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	color: inherit;
	font-family: inherit;
}

html {
	line-height: 1;
}

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

ol,
ul {
	list-style: none;
}

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

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

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

*,
*::before,
*::after {
	box-sizing: border-box;
	--clamp-root-font-size: 16;
	--clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
	--clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
	--clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
	--clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
	font-size: var(--clamp);
}

body {
	--clamp-viewport-min: 375;
	--clamp-viewport-max: 1440;
	--clamp-min: 14;
	--clamp-max: 16;
	position: relative;
	overflow-x: clip;
	color: #333;
	font-weight: 400;
	line-height: 1.6;
	font-family: "Noto Serif JP", serif;
}

body.inactive {
	height: 100%;
	overflow: hidden;
}

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

a {
	color: inherit;
}

.l-header {
	z-index: 200;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
	background: #fff;
}

.l-header__contents {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	height: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
}

.l-header__logo {
	aspect-ratio: 628/79;
	width: clamp(9.875rem, 6.4198943662rem + 14.7417840376vw, 19.6875rem);
	height: auto;
	transition: opacity 0.3s ease 0s;
}

.l-header__logo:hover {
	opacity: 0.7;
}

.l-header__logo img {
	width: 100%;
	height: 100%;
}

.l-header__hamburger {
	position: relative;
	aspect-ratio: 25/17;
	width: 25px;
	height: auto;
	cursor: pointer;
	transition: opacity 0.3s ease 0s;
}

.l-header__hamburger:hover {
	opacity: 0.7;
}

.l-header__hamburger.is-close .l-header__bar {
	top: 50%;
	translate: 0 -50%;
}

.l-header__hamburger.is-close .l-header__bar.--1 {
	top: 50%;
	rotate: -45deg;
}

.l-header__hamburger.is-close .l-header__bar.--2 {
	display: none;
}

.l-header__hamburger.is-close .l-header__bar.--3 {
	rotate: 45deg;
}

.l-header__bar {
	position: absolute;
	width: 100%;
	height: 3px;
	border-radius: 999px;
	background: #333;
	transition: rotate 0.3s ease 0s, display 0.3s ease 0s, top 0.3s ease 0s;
}

.l-header__bar.--1 {
	top: 0;
}

.l-header__bar.--2 {
	top: 50%;
	translate: 0 -50%;
}

.l-header__bar.--3 {
	bottom: 0;
}

/*===================================
.l-header-nav
====================================*/

.l-header-nav__items {
	display: flex;
	align-items: center;
}

.l-header-nav__item:not(:first-child) {
	margin-left: 18px;
}

.l-header-nav__item a {
	display: block;
	position: relative;
	font-weight: 600;
	font-size: clamp(1rem, 0.7232142857rem + 0.4464285714vw, 1.125rem);
	transition: color 0.3s ease 0s;
}

.l-header-nav__item a:hover {
	color: #9E9E9E;
}

.l-header-nav__item a:hover::after {
	width: 100%;
}

.l-header-nav__item a::after {
	position: absolute;
	bottom: -0.1rem;
	left: 0;
	width: 0%;
	height: 1px;
	background: #9E9E9E;
	content: "";
	transition: width 0.3s ease 0s;
}

.l-header-nav__btn {
	margin-left: 18px;
}

.l-header-nav__btn a {
	display: inline-block;
	padding: 10px 18px;
	border: solid 1px #333;
	border-radius: 999px;
	background: #fff;
	box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.25);
	font-weight: 600;
	font-size: clamp(1rem, 0.7232142857rem + 0.4464285714vw, 1.125rem);
	transition: color 0.3s ease 0s, background-color 0.3s ease 0s, box-shadow 0.3s ease 0s, translate 0.3s ease 0s;
}

.l-header-nav__btn a:hover {
	translate: 0 4px;
	background: rgba(51, 51, 51, 0.6);
	box-shadow: none;
	color: #fff;
}

.l-inner {
	margin-inline: auto;
	padding-right: 5.3333333333%;
	padding-left: 5.3333333333%;
}

.l-drawer {
	z-index: 100;
	position: fixed;
	top: 0;
	right: -110%;
	width: 100%;
	height: 100%;
	padding-top: 76px;
	background: #9E9E9E;
	transition: right 0.3s ease 0s;
}

.l-drawer.is-active {
	right: 0;
}

.l-drawer__btn {
	display: block;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
	margin-inline: auto;
	padding: 10px 30px;
	border: solid 2px #333;
	border-radius: 999px;
	background: #FFF;
	font-weight: 700;
	font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
	line-height: 1.7; /* 23.8px */
	letter-spacing: 0.03em;
	transition: background-color 0.3s ease 0s, color 0.3s ease 0s;
}

.l-drawer__btn:hover {
	background: rgba(51, 51, 51, 0.6);
	color: #FFF;
}

/*===================================
.l-drawer-nav
====================================*/

.l-drawer-nav {
	text-align: center;
}

.l-drawer-nav__item:not(:first-child) {
	margin-top: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
}

.l-drawer-nav__item a {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	color: #FFF;
	font-style: normal;
	font-weight: 700;
	font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
	line-height: 1.7; /* 23.8px */
	letter-spacing: 0.03em;
	transition: color 0.3s ease 0s;
}

.l-drawer-nav__item a:hover {
	color: rgba(217, 217, 217, 0.62);
}

.l-drawer-nav__item a:hover::after {
	width: 100%;
}

.l-drawer-nav__item a::after {
	position: absolute;
	bottom: 0.2rem;
	left: 0;
	width: 0%;
	height: 1px;
	background: rgba(217, 217, 217, 0.62);
	content: "";
	transition: width 0.3s ease 0s;
}

.l-footer {
	position: relative;
	padding-top: 32px;
	padding-bottom: 18px;
	background: linear-gradient(180deg, #333 0%, #333 25%, rgba(51, 51, 51, 0.9) 60%, rgba(51, 51, 51, 0.75) 70%, rgba(51, 51, 51, 0.5) 100%);
}

.l-footer::after {
	z-index: -1;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 73%;
	background: url("./../img/footer-bg-sm.webp") no-repeat center center/cover;
	content: "";
}

.l-footer__contact {
	margin-top: clamp(3.4375rem, 2.6012323944rem + 3.5680751174vw, 5.8125rem);
}

.l-footer__nav {
	margin-top: clamp(1.625rem, 0.7887323944rem + 3.5680751174vw, 4rem);
	margin-inline: auto;
}

.l-footer__address {
	margin-top: clamp(2rem, 1.3617957746rem + 2.7230046948vw, 3.8125rem);
	margin-inline: auto;
}

.l-footer__copyright {
	margin-top: clamp(2.5rem, 2.0598591549rem + 1.8779342723vw, 3.75rem);
	color: rgba(255, 255, 255, 0.8);
	font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
	text-align: center;
}

/*===================================
.l-footer-youtube
====================================*/

.l-footer-youtube__top-text {
	color: #FFF;
	font-weight: 700;
	font-size: 16px;
	line-height: 1.4;
	letter-spacing: 0.1em;
	text-align: center;
}

.l-footer-youtube__flex {
	display: flex;
	-moz-column-gap: 3.125%;
	column-gap: 3.125%;
	justify-content: center;
}

.l-footer-youtube__logo {
	width: 140px;
}

.l-footer-youtube__textarea {
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 20px;
}

.l-footer-youtube__text {
	color: #FFF;
	font-weight: 700;
	font-size: clamp(1.25rem, 0.6964285714rem + 0.8928571429vw, 1.5rem);
	line-height: 1.6667; /* 166.667% */
	letter-spacing: 0.1em;
	text-align: center;
}

.l-footer-youtube__btn {
	margin-top: clamp(0.9375rem, 0.7472605519rem + 0.8116883117vw, 1.25rem);
	margin-inline: auto;
}

/*===================================
.l-footer-youtube-logo 
====================================*/

.l-footer-youtube-logo__img {
	z-index: 1;
	position: relative;
	width: 100%;
}

.l-footer-youtube-logo__img .fa-youtube {
	position: relative;
	width: 100%;
	color: #F24B3E;
}

.l-footer-youtube-logo__img .fa-youtube::before {
	font-size: 125px;
}

.l-footer-youtube-logo__img .fa-youtube::after {
	z-index: -1;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 80px;
	translate: -50% -50%;
	background: #fff;
	content: "";
}

.l-footer-youtube-logo__text {
	margin-top: -10px;
	color: #FFF;
	font-size: 40px;
	line-height: 1;
	font-family: "League Gothic";
	letter-spacing: 0.02em;
	text-align: center;
}

/*===================================
.l-footer-youtube-btn 
====================================*/

/*===================================
.l-footer-contact 
====================================*/

.l-footer-contact__text {
	margin-top: clamp(1rem, 0.6478873239rem + 1.5023474178vw, 2rem);
	color: #FFF;
	font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
	text-align: center;
}

.l-footer-contact__btn {
	margin-top: clamp(0.9375rem, 0.6294014085rem + 1.3145539906vw, 1.8125rem);
	margin-inline: auto;
}

.l-footer-contact__instagram {
	margin-top: clamp(2rem, 1.4278169014rem + 2.441314554vw, 3.625rem);
}

/*===================================
.l-footer-contact-instagram
====================================*/

.l-footer-contact-instagram {
	text-align: center;
}

.l-footer-contact-instagram__icon {
	display: inline-block;
	transition: opacity 0.3s ease 0s;
}

.l-footer-contact-instagram__icon:hover {
	opacity: 0.7;
}

.l-footer-contact-instagram__icon .fa-instagram {
	color: #fff;
}

.l-footer-contact-instagram__icon .fa-instagram::before {
	font-size: 40px;
}

.l-footer-contact-instagram__text {
	color: #FFF;
	font-size: 11px;
	line-height: 1;
	letter-spacing: 0.03em;
	text-transform: capitalize;
}

/*===================================
.l-footer-nav
====================================*/

.l-footer-nav {
	max-width: 774px;
}

.l-footer-nav__item {
	color: #fff;
	font-weight: 700;
}

.l-footer-nav__item:not(:first-child) {
	margin-top: 10px;
}

.l-footer-nav__item.--link a {
	position: relative;
	transition: opacity 0.3s ease 0s;
}

.l-footer-nav__item.--link a:hover {
	opacity: 0.7;
}

.l-footer-nav__item.--link a:hover::after {
	width: calc(100% - 30px);
}

.l-footer-nav__item.--link a::after {
	position: absolute;
	bottom: -0.1em;
	left: 32px;
	width: 0;
	height: 1px;
	background: #fff;
	content: "";
	transition: width 0.3s ease 0s;
}

.l-footer-nav__flex {
	display: flex;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

/*===================================
.l-footer-nav-item
====================================*/

.l-footer-nav-item__child {
	color: rgba(255, 255, 255, 0.8);
	font-weight: 400;
}

.l-footer-nav-item__child:not(:first-child) {
	margin-top: 10px;
}

.l-footer-nav-item__child a {
	position: relative;
	transition: opacity 0.3s ease 0s;
}

.l-footer-nav-item__child a:hover {
	opacity: 0.7;
}

.l-footer-nav-item__child a:hover::after {
	width: calc(100% - 30px);
}

.l-footer-nav-item__child a::after {
	position: absolute;
	bottom: -0.1em;
	left: 32px;
	width: 0;
	height: 1px;
	background: #fff;
	content: "";
	transition: width 0.3s ease 0s;
}

/*===================================
.l-footer-address
====================================*/

.l-footer-address {
	max-width: 774px;
}

.l-footer-address__text {
	color: #FFF;
	font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
	line-height: 1.2;
}

.l-footer-address__text.--2 {
	margin-top: 10px;
}

.c-footer-btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: -moz-fit-content;
	width: fit-content;
	background: #fff;
	-moz-column-gap: 10px;
	column-gap: 10px;
	padding: 10px 20px;
	border-radius: 999px;
}

.c-footer-btn:hover .c-footer-btn__icon {
	translate: 5px 0;
}

.c-footer-btn__text {
	font-weight: 700;
	font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
}

.c-footer-btn__icon {
	aspect-ratio: 24/16;
	width: 10px;
	height: auto;
	transition: translate 0.3s ease 0s;
}

.c-footer-btn__icon img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	display: block;
	object-fit: cover;
}

.c-section {
	position: relative;
	padding-top: clamp(1.3125rem, 0.4636627907rem + 3.7209302326vw, 3.8125rem);
}

.c-section::before,
.c-section::after {
	position: absolute;
	left: calc(50% - 50vw);
	width: 100vw;
	content: "";
}

.c-section__title {
	position: relative;
	padding-bottom: 20px;
	font-weight: 700;
	font-size: clamp(1.125rem, 0.9049295775rem + 0.9389671362vw, 1.75rem);
	line-height: normal;
	text-align: center;
}

.c-section__title.--white {
	color: #fff;
}

.c-section__title.--white::after {
	background: #fff;
}

.c-section__title::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 95%;
	max-width: 774px;
	height: 2px;
	translate: -50% 0;
	background: #333;
	content: "";
}

.c-section__contents {
	margin-top: clamp(1.875rem, 0.576584507rem + 5.5399061033vw, 5.5625rem);
}

.c-section__text {
	font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
	text-align: center;
}

.c-section__text.--bottom {
	text-align: left;
}

.c-top {
	display: grid;
	position: relative;
	place-items: center;
	aspect-ratio: 375/200;
	width: 100%;
	height: auto;
	margin-top: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
}

.c-top::after {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
}

.c-top.--oem::after {
	background: url("./../img/top-oem-sm.webp") no-repeat center center/cover;
}

.c-top.--sns::after {
	background: url("./../img/top-sns-sm.webp") no-repeat center center/cover;
}

.c-top.--plan::after {
	background: url("./../img/top-plan-sm.webp") no-repeat center center/cover;
}

.c-top.--contact::after {
	background: url("./../img/top-contact-sm.webp") no-repeat center center/cover;
}

.c-top__text {
	color: #FFF;
	font-weight: 700;
	font-size: clamp(1rem, 0.2517605634rem + 3.1924882629vw, 3.125rem);
	letter-spacing: 0.08em;
}

.c-breadcrumbs {
	display: flex;
	-moz-column-gap: 10px;
	column-gap: 10px;
	align-items: center;
	margin-top: 4px;
}

.c-breadcrumbs__item {
	font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
}

.p-fv {
	position: relative;
	width: 100%;
	height: 100svh;
}

.p-fv__img {
	width: 100%;
	height: 100%;
}

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

.p-fv__textarea {
	position: absolute;
	top: 15%;
	left: 50%;
	width: 100%;
	translate: -50% 0;
	text-align: center;
}

.p-fv__text-img {
	z-index: 1;
	position: relative;
	width: 284px;
	margin-inline: auto;
}

.p-fv__text-img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-fv__text {
	margin-top: 27px;
	color: #D9D9D9;
	font-size: 10px;
	letter-spacing: 0.08em;
}

.p-service {
	position: relative;
	padding-top: clamp(1.25rem, -0.136443662rem + 5.9154929577vw, 5.1875rem);
	padding-bottom: clamp(5rem, 2.8653169014rem + 9.1079812207vw, 11.0625rem);
}

.p-service::before,
.p-service::after {
	position: absolute;
	width: 100%;
	height: 100%;
	content: "";
}

.p-service::before {
	z-index: -1;
	top: 0;
	left: 0;
	background: url("./../img/service-bg.webp") no-repeat top center/cover;
}

.p-service::after {
	z-index: -2;
	bottom: 0;
	left: 0;
	background: #D9D9D9;
}

.p-service__items {
	margin-top: clamp(100px, 40vw, 546px);
}

.p-service__item {
	display: block;
}

.p-service__item:not(:first-child) {
	margin-top: clamp(100px, 37vw, 1000px);
}

.p-service__bottom {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: linear-gradient(to bottom, transparent 0%, rgb(255, 255, 255));
}

/*===================================
.p-service-item
====================================*/

.p-service-item {
	display: block;
	z-index: 1;
	position: relative;
	width: 100%;
	padding-top: 90px;
	padding-bottom: 10px;
}

.p-service-item:hover .p-service-item__img img {
	scale: 1.05;
}

.p-service-item::before,
.p-service-item::after {
	position: absolute;
	content: "";
}

.p-service-item::before {
	z-index: 0;
	top: 50%;
	width: 100vw;
	height: 100%;
	transform: translateY(-50%);
	background: #fff;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-service-item.--odd {
	padding-right: 10px;
}

.p-service-item.--odd::before {
	right: 0;
}

.p-service-item.--even {
	padding-left: 10px;
}

.p-service-item.--even::before {
	left: 0;
}

.p-service-item__img {
	position: absolute;
	bottom: calc(100% - 85px);
	left: 50%;
	width: 59.7014925373%;
	height: auto;
	translate: -50% 0;
}

.p-service-item__img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	transition: scale 0.3s ease 0s;
}

.p-service-item__img.--odd {
	left: 50%;
}

.p-service-item__img.--even {
	left: 50%;
}

.p-service-item__img-wrapper {
	overflow: hidden;
}

.p-service-item__img-bg {
	z-index: -1;
	position: absolute;
	bottom: calc(100% - 85px);
	left: 50%;
	aspect-ratio: 600/500;
	width: 59.7014925373%;
	height: auto;
	translate: -50% 0;
	box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
}

.p-service-item__img-bg.--even {
	left: 50%;
}

.p-service-item__title {
	margin-top: 6px;
	font-weight: 700;
	font-size: clamp(1.125rem, 0.8782894737rem + 1.0526315789vw, 1.25rem);
	text-align: center;
}

.p-service-item__title.--odd {
	padding-left: 10px;
}

.p-service-item__title.--even {
	padding-right: 10px;
}

.p-service-item__textarea {
	z-index: 1;
	position: relative;
}

.p-service-item__text {
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.4;
}

.p-service-item__text.--non-top {
	margin-top: 0;
}

.p-service-item__detail {
	display: block;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: 4px;
	margin-right: 10px;
	margin-left: auto;
	font-size: clamp(0.875rem, 0.8309859155rem + 0.1877934272vw, 1rem);
}

.p-service-item__detail::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 1px;
	translate: -50% 0;
	background: #333;
	content: "";
}

.p-representative {
	padding-top: clamp(1.25rem, 0.6117957746rem + 2.7230046948vw, 3.0625rem);
	padding-bottom: clamp(3.125rem, 0.0660211268rem + 13.0516431925vw, 11.8125rem);
}

.p-representative__contents {
	margin-top: clamp(2.6875rem, 1.8292253521rem + 3.661971831vw, 5.125rem);
}

.p-representative__text {
	font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
	line-height: 1.75; /* 175% */
}

.p-representative__text:not(:first-child) {
	margin-top: 1.5em;
}

.p-representative__name {
	margin-top: 69px;
	margin-left: auto;
}

/*===================================
.p-representative-name
====================================*/

.p-representative-name {
	width: -moz-fit-content;
	width: fit-content;
}

.p-representative-name__title {
	font-size: 16px;
	line-height: 1.75; /* 175% */
}

.p-representative-name__name {
	font-size: clamp(1.875rem, 1.6549295775rem + 0.9389671362vw, 2.5rem);
	line-height: 1.2;
	font-family: "Yuji Boku";
}

.p-feature {
	position: relative;
	padding-top: clamp(1.3125rem, 0.4636627907rem + 3.7209302326vw, 3.8125rem);
	padding-bottom: clamp(6.875rem, 5.3345070423rem + 6.5727699531vw, 11.25rem);
}

.p-feature::before,
.p-feature::after {
	position: absolute;
	left: calc(50% - 50vw);
	width: 100vw;
	content: "";
}

.p-feature::before {
	z-index: -1;
	top: 0;
	height: 100%;
	background: url("./../img/oem-feature-bg-sm.webp") no-repeat top center/cover;
}

.p-feature::after {
	bottom: 0;
	height: 50px;
	background: linear-gradient(to bottom, transparent 0%, #fff);
}

.p-feature__contents {
	margin-top: clamp(1.875rem, 0.576584507rem + 5.5399061033vw, 5.5625rem);
}

.p-feature__text {
	font-size: clamp(1rem, 0.823943662rem + 0.7511737089vw, 1.5rem);
	text-align: center;
}

.p-feature__items {
	margin-top: clamp(50px, 24vw, 500px);
}

.p-feature__item {
	margin-top: 29.8507462687%;
}

/*===================================
.p-feature-item
====================================*/

.p-feature-item {
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 200px;
	padding-right: 18px;
	padding-bottom: 20px;
	padding-left: 10px;
	background: #fff;
	box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-feature-item__img {
	position: absolute;
	bottom: calc(100% - 191px);
	aspect-ratio: 1;
	width: 73.1707317073%;
	height: auto;
	box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-feature-item__img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-feature-item__title {
	font-weight: 700;
	font-size: clamp(1.25rem, 1.2059859155rem + 0.1877934272vw, 1.375rem);
	text-align: center;
}

.p-feature-item__title.--small {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	font-size: clamp(1.125rem, 1.036971831rem + 0.3755868545vw, 1.375rem);
}

.p-feature-item__text {
	margin-top: 30px;
	font-size: 16px;
}

.p-flow {
	padding-top: clamp(1.25rem, 0.1716549296rem + 4.6009389671vw, 4.3125rem);
	padding-bottom: 83px;
}

.p-flow__contents {
	margin-top: 21px;
	margin-top: clamp(1.3125rem, 0.7843309859rem + 2.2535211268vw, 2.8125rem);
}

.p-flow__text {
	max-width: 767px;
	margin-inline: auto;
	font-weight: 600;
	font-size: clamp(1rem, 0.8679577465rem + 0.5633802817vw, 1.375rem);
}

.p-flow__text:not(:first-child) {
	margin-top: 0.6em;
}

.p-flow__items-wrapper {
	overflow-x: auto;
}

.p-flow__items {
	max-width: 500px;
	margin-top: 18px;
	margin-top: clamp(1.125rem, 0.5528169014rem + 2.441314554vw, 2.75rem);
	margin-inline: auto;
}

.p-flow__item:not(:first-child) {
	margin-top: 48px;
}

/*===================================
.p-flow-item
====================================*/

.p-flow-item {
	position: relative;
	width: 100%;
	padding-top: 5px;
	padding-bottom: 22px;
	border: solid 1px #333;
}

.p-flow-item:not(:last-child)::after {
	position: absolute;
	bottom: -33px;
	left: 50%;
	aspect-ratio: 35/15;
	width: 35px;
	height: auto;
	translate: -50% 0;
	background: #9E9E9E;
	content: "";
	-webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
	clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.p-flow-item__img {
	position: relative;
	aspect-ratio: 240/160;
	width: 71.6417910448%;
	height: auto;
	margin-inline: auto;
}

.p-flow-item__img::after {
	position: absolute;
	bottom: -6px;
	left: 50%;
	width: 105%;
	height: 3px;
	translate: -50% 0;
	border-radius: 999px;
	background: #D9D9D9;
	content: "";
}

.p-flow-item__img img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
}

.p-flow-item__title {
	margin-top: 18px;
	font-weight: 700;
	font-size: 20px;
	text-align: center;
}

.p-plan {
	position: relative;
	padding-top: clamp(1.3125rem, 0.4636627907rem + 3.7209302326vw, 3.8125rem);
	padding-bottom: clamp(1.375rem, 0.4727112676rem + 3.8497652582vw, 3.9375rem);
}

.p-plan::before,
.p-plan::after {
	z-index: -1;
	position: absolute;
	left: calc(50% - 50vw);
	width: 100vw;
	content: "";
}

.p-plan::before {
	top: 0;
	height: 100%;
	background: url("./../img/plan-bg-sm.webp") no-repeat top center/cover;
}

.p-plan::after {
	bottom: 0;
	height: 300px;
	background: linear-gradient(to top, #fff 0%, #fff 50%, transparent 100%);
}

.p-plan__text.--bottom {
	width: -moz-fit-content;
	width: fit-content;
	margin-top: clamp(4.25rem, 3.7218309859rem + 2.2535211268vw, 5.75rem);
	text-align: left;
}

.p-plan__items {
	margin-top: clamp(1.25rem, 0.3036971831rem + 4.0375586854vw, 3.9375rem);
}

.p-plan__item {
	background: #fff;
}

.p-plan__item:not(:first-child) {
	margin-top: 20px;
}

.p-plan__lists {
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: clamp(1.6875rem, 0.8072183099rem + 3.7558685446vw, 4.1875rem);
}

.p-plan__list {
	color: #000;
	font-weight: 600;
	font-size: clamp(1.125rem, 0.9049295775rem + 0.9389671362vw, 1.75rem);
	line-height: 2; /* 200% */
}

/*===================================
.p-plan-item
====================================*/

.p-plan-item {
	position: relative;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 12px;
	padding-left: 6px;
}

.p-plan-item::after {
	z-index: -1;
	position: absolute;
	top: 50%;
	width: 100vw;
	height: 100%;
	translate: 0 -50%;
	background: #fff;
	box-shadow: 4px 4px 2px 0px rgba(0, 0, 0, 0.25);
	content: "";
}

.p-plan-item.--odd::after {
	right: 0;
}

.p-plan-item.--even {
	margin-left: auto;
}

.p-plan-item.--even::after {
	left: 0;
}

.p-plan-item__head {
	display: inline-block;
	position: relative;
	padding-right: 4px;
	padding-left: 4px;
	font-weight: 700;
	font-size: 18px;
}

.p-plan-item__head::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100%;
	height: 1px;
	translate: -50% 0;
	background: #9E9E9E;
	content: "";
}

.p-plan-item__textarea {
	margin-top: 18px;
	padding-left: 12px;
	font-size: 18px;
}

/*===================================
.p-plan-item-textarea
====================================*/

.p-plan-item-textarea__brock {
	position: relative;
}

.p-plan-item__price span {
	font-weight: 700;
}

.p-contact {
	position: relative;
	padding-bottom: 27px;
}

.p-contact::after {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 50%;
	width: 100vw;
	height: 100%;
	translate: -50% 0;
	background: url("./../img/form-bg-sm.webp") no-repeat top center/cover;
	content: "";
}

.p-contact__form {
	margin-top: clamp(1.6875rem, 1.3353873239rem + 1.5023474178vw, 2.6875rem);
}

.wpcf7 {
	margin-top: clamp(1.6875rem, 1.3353873239rem + 1.5023474178vw, 2.6875rem);
}

/*===================================
.p-contact-form
====================================*/

.p-contact-form {
	width: 100%;
}

.p-contact-form__contents {
	padding: 0 15px 30px;
	background: #fff;
	box-shadow: 6px 6px 4px 0px rgba(0, 0, 0, 0.25);
}

.p-contact-form__row {
	display: block;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
}

.p-contact-form__row.--candidate {
	display: flex;
	justify-content: flex-start;
}

.p-contact-form__row.--candidate:nth-child(1) {
	margin-top: 20px;
}

.p-contact-form__label {
	width: 100%;
}

.p-contact-form__label label {
	width: 100%;
	font-weight: 700;
	font-size: 16px;
}

.p-contact-form__label .--required {
	margin-left: 12px;
	padding: 1px 6px;
	border-radius: 4px;
	background: #F24B3E;
	color: #fff;
	font-weight: 700;
	font-size: 12px;
}

.p-contact-form__label.--candidate {
	width: 40px;
}

.p-contact-form__label.--candidate label {
	font-size: 12px;
}

.p-contact-form__input {
	width: 100%;
	margin-top: 4px;
}

.p-contact-form__input [type=text],
.p-contact-form__input [type=email],
.p-contact-form__input [type=tel],
.p-contact-form__input [type=date] {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: 40px;
	border: solid 1px #333;
	border-radius: 4px;
	color: inherit;
	font-size: 16px;
	font-family: inherit;
}

.p-contact-form__input [type=text]:focus,
.p-contact-form__input [type=email]:focus,
.p-contact-form__input [type=tel]:focus,
.p-contact-form__input [type=date]:focus {
	outline: none;
	box-shadow: none;
}

.p-contact-form__input [type=text]::-moz-placeholder,
.p-contact-form__input [type=email]::-moz-placeholder,
.p-contact-form__input [type=tel]::-moz-placeholder,
.p-contact-form__input [type=date]::-moz-placeholder {
	opacity: 0.6;
}

.p-contact-form__input [type=text]::placeholder,
.p-contact-form__input [type=email]::placeholder,
.p-contact-form__input [type=tel]::placeholder,
.p-contact-form__input [type=date]::placeholder {
	opacity: 0.6;
}

.p-contact-form__input [type=text].wpcf7-validates-as-required,
.p-contact-form__input [type=email].wpcf7-validates-as-required,
.p-contact-form__input [type=tel].wpcf7-validates-as-required,
.p-contact-form__input [type=date].wpcf7-validates-as-required {
	background: rgba(217, 217, 217, 0.5);
}

.p-contact-form__input [type=text].wpcf7-validates-as-required.--valid,
.p-contact-form__input [type=email].wpcf7-validates-as-required.--valid,
.p-contact-form__input [type=tel].wpcf7-validates-as-required.--valid,
.p-contact-form__input [type=date].wpcf7-validates-as-required.--valid {
	background: #fff;
}

.p-contact-form__input [type=text],
.p-contact-form__input [type=email],
.p-contact-form__input [type=tel] {
	padding: 13px 16px;
}

.p-contact-form__input [type=date] {
	position: relative;
	justify-content: center;
	background: #fff;
	color: rgba(51, 51, 51, 0.6);
	font-weight: 400;
	font-size: 14px;
	text-align: center;
}

.p-contact-form__input [type=date].is-active {
	color: #333;
}

.p-contact-form__input [type=date]::-webkit-date-and-time-value {
	text-align: center;
}

.p-contact-form__input [type=date]::-webkit-calendar-picker-indicator {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	height: auto;
	background: transparent;
	color: #C2C2C2;
	opacity: 0;
}

.p-contact-form__input [type=date]::-moz-calendar-picker-indicator {
	z-index: 1;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: auto;
	height: auto;
	background: transparent;
	color: #C2C2C2;
	opacity: 0;
}

.p-contact-form__input [type=date]::-webkit-datetime-edit-year-field { /* 年の部分のスタイルを設定 */ /* 例えばフォントサイズの変更やテキストの位置調整など */
	padding-right: 0px;
	padding-left: 0px;
}

.p-contact-form__input [type=date]::-webkit-datetime-edit-month-field { /* 月の部分のスタイルを設定 */ /* 例えばフォントサイズの変更やテキストの位置調整など */
	padding-right: 2px;
	padding-left: 2px;
}

.p-contact-form__input [type=date]::-webkit-datetime-edit-day-field { /* 日の部分のスタイルを設定 */ /* 例えばフォントサイズの変更やテキストの位置調整など */
	padding-right: 2px;
	padding-left: 2px;
}

.p-contact-form__input.--candidate {
	width: calc(100% - 40px);
	min-width: auto;
	max-width: 282px;
}

.p-contact-form__flex {
	display: flex;
	-moz-column-gap: 2.641509434%;
	column-gap: 2.641509434%;
}

.p-contact-form__flex input {
	width: 50%;
}

.p-contact-form__flex.--candidate {
	justify-content: space-between;
	width: 100%;
}

.p-contact-form__flex.--candidate .p-contact-form__flex-child {
	color: #333;
	font-size: 14px;
}

.p-contact-form__flex.--candidate .p-contact-form__flex-child select.wpcf7-select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 100%;
	height: 40px;
	border: solid 1px #333;
	border-radius: 4px;
	background: #fff;
	color: rgba(51, 51, 51, 0.6);
	font-size: 14px;
	font-family: inherit;
	-moz-text-align-last: center;
	padding-top: 4px;
	padding-bottom: 4px;
	font-weight: 400;
	text-align-last: center;
}

.p-contact-form__flex.--candidate .p-contact-form__flex-child select.wpcf7-select:focus {
	outline: none;
	box-shadow: none;
}

.p-contact-form__flex.--candidate .--date {
	width: 40%;
}

.p-contact-form__flex.--candidate .--start {
	width: 25%;
}

.p-contact-form__flex.--candidate .--end {
	position: relative;
	width: 25%;
}

.p-contact-form__flex.--candidate .--end::after {
	position: absolute;
	top: 50%;
	left: -18%;
	translate: 0 -50%;
	content: "〜";
	font-weight: 700;
	font-size: 10px;
}

.p-contact-form__flex.--candidate .--top {
	position: relative;
}

.p-contact-form__flex.--candidate .--top::before {
	position: absolute;
	top: -20px;
	left: 50%;
	translate: -50% 0;
	content: "時間";
	font-weight: 700;
	font-size: 12px;
}

.p-contact-form__flex.--candidate .--top.--date::before {
	content: "年/月/日";
}

.p-contact-form__online {
	margin-top: 20px;
	font-weight: 700;
	font-size: 16px;
}

.p-contact-form__date {
	display: block;
}

.p-contact-form__date:not(:first-child) {
	margin-top: 20px;
}

.p-contact-form__text {
	margin-top: 35px;
	color: rgba(51, 51, 51, 0.6);
	font-style: normal;
	font-weight: 700;
	font-size: 16px;
	line-height: normal;
	font-family: "Noto Serif JP";
	text-align: center;
}

.p-contact-form__textarea {
	z-index: 1;
	position: relative;
	width: 100%;
	height: auto;
	margin-top: clamp(0.625rem, 0.0968309859rem + 2.2535211268vw, 2.125rem);
}

.p-contact-form__textarea textarea {
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	width: 100%;
	height: auto;
	min-height: 100px;
	padding: 13px 16px;
	border: solid 1px #333;
	border-radius: 4px;
	background-image: none;
	background-color: transparent;
	color: inherit;
	font-size: 14px;
	line-height: 1.75;
	font-family: inherit;
	resize: vertical;
}

.p-contact-form__textarea textarea:focus {
	outline: none;
	box-shadow: none;
}

.p-contact-form__textarea textarea::-moz-placeholder {
	color: #C2C2C2;
}

.p-contact-form__textarea textarea::placeholder {
	color: #C2C2C2;
}

.p-contact-form__textarea .u-placeholder {
	z-index: -1;
	position: absolute;
	top: 0;
	left: 0;
	padding: 13px 16px;
	color: rgba(51, 51, 51, 0.6);
	font-weight: 700;
	font-size: 14px;
}

.p-contact-form__textarea .u-placeholder .--small {
	display: inline-block;
	padding-left: 1em;
	font-weight: 400;
	text-indent: -1em;
}

.p-contact-form__textarea .u-placeholder.--hidden {
	display: none;
}

.p-contact-form__submit {
	margin-top: 20px;
	text-align: center;
}

.p-contact-form__submit [type=submit] {
	padding: 6px 23px;
	border: solid 1px #333;
	border-radius: 999px;
	background-color: #D9D9D9;
	box-shadow: 4px 4px 2px 0px rgba(0, 0, 0, 0.25);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	font-family: "Noto Serif JP", serif;
	text-align: center;
	pointer-events: none;
	transition: all 0.3s ease 0s;
	transition: background-color 0.3s ease 0s, translate 0.3s ease 0s, box-shadow 0.3s ease 0s;
}

.p-contact-form__submit [type=submit].is-active {
	background-color: #333;
	cursor: pointer;
	pointer-events: all;
}

.p-contact-form__submit [type=submit].is-active:hover {
	translate: 0 5px;
	background-color: #9E9E9E;
	box-shadow: none;
}

.p-contact-form__submit span {
	display: none;
}

.p-contact-form__submit button {
	padding: 6px 23px;
	border: solid 1px #333;
	border-radius: 999px;
	background-color: #D9D9D9;
	box-shadow: 4px 4px 2px 0px rgba(0, 0, 0, 0.25);
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	text-align: center;
	transition: all 0.3s ease 0s;
	transition: background-color 0.3s ease 0s, translate 0.3s ease 0s, box-shadow 0.3s ease 0s;
}

.p-contact-form__submit button.is-active {
	background-color: #333;
	cursor: pointer;
}

.p-contact-form__submit button.is-active:hover {
	translate: 0 5px;
	background-color: #9E9E9E;
	box-shadow: none;
}

/*===================================
.p-contact-thanks
====================================*/

.p-contact-thanks::before {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 100vw;
	height: 100px;
	translate: -50% 0;
	background: linear-gradient(to bottom, transparent 0%, #fff 100%);
	content: "";
}

.p-contact-thanks__box {
	padding-top: 108px;
	padding-bottom: 108px;
	background: rgba(255, 255, 255, 0.6);
}

.p-contact-thanks__text {
	font-size: clamp(1.125rem, 0.860915493rem + 1.1267605634vw, 1.875rem);
	line-height: 2.222;
	text-align: center;
}

.p-privacy {
	padding-bottom: clamp(3.125rem, 0.0660211268rem + 13.0516431925vw, 11.8125rem);
}

.p-privacy__top-text {
	font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
}

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

/*===================================
.p-privacy-item
====================================*/

.p-privacy-item__title {
	padding-left: 1em;
	font-size: clamp(1.25rem, 1.073943662rem + 0.7511737089vw, 1.75rem);
	text-indent: -1em;
}

.p-privacy-item__textarea {
	margin-top: 1em;
}

.p-privacy-item__text {
	font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
}

.p-privacy-item__list {
	margin-top: 1em;
}

.p-privacy-item__list.--child {
	margin-left: 1em;
}

.p-privacy-item__list-item {
	margin-left: 1em;
	font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
	list-style-type: decimal;
}

.p-privacy-item__list-item:not(:first-child) {
	margin-top: 0.6em;
}

.p-privacy-item__list-item.--disc {
	list-style-type: disc;
}

.p-privacy-item__address {
	margin-top: 1em;
	font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
	line-height: 2;
}

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

.u-md {
	display: none;
}

.u-lg {
	display: none;
}

.u-dots {
	padding-top: 0.03em; /* 縦方向の位置調整 */
	background-image: radial-gradient(circle at center, #fff 13%, transparent 13%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-size: 1em 0.4em; /* 点の間隔とサイズ調整 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
}

.u-dots--black {
	padding-top: 0.3em; /* 縦方向の位置調整 */
	background-image: radial-gradient(circle at center, #000 15%, transparent 15%); /* 点の色とサイズ調整 */
	background-position: top right; /* 点の位置 */
	background-size: 0.97em 0.3em; /* 点の間隔とサイズ調整 */
	background-repeat: repeat-x; /* 横方向に繰り返し */
}

.u-orange {
	color: #DC9305;
}

.u-shake {
	animation: u-shake 2s infinite;
}

.u-shake-2 {
	animation: u-shake-2 1.9s infinite;
}

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

.p-feature__items {
	margin-top: clamp(50px, 35vw, 500px);
}

.p-feature__item {
	margin-top: 44.776119403%;
}

.p-feature-item__title.--small {
	font-size: clamp(1.25rem, 1.2059859155rem + 0.1877934272vw, 1.375rem);
}

}

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

.l-drawer {
	padding-top: 90px;
}

.p-service-item {
	padding-top: 116px;
}

.p-service-item__img {
	bottom: calc(100% - 100px);
}

.p-service-item__img-bg {
	bottom: calc(100% - 100px);
}

.p-feature__items {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: clamp(10px, 18vw, 200px);
	-moz-column-gap: 4%;
	column-gap: 4%;
	row-gap: clamp(10px, 16vw, 200px);
}

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

.p-feature-item {
	width: 48%;
	padding-top: 150px;
}

.p-feature-item__img {
	bottom: calc(100% - 141px);
}

.p-plan::after {
	height: 400px;
}

.p-plan-item {
	width: 75%;
}

.u-sm2 {
	display: none;
}

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

}

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

.l-footer::after {
	background: url("./../img/footer-bg-lg.webp") no-repeat center center/cover;
}

.c-top {
	aspect-ratio: 1440/518;
}

.c-top.--oem::after {
	background: url("./../img/top-oem-lg.webp") no-repeat center center/cover;
}

.c-top.--sns::after {
	background: url("./../img/top-sns-lg.webp") no-repeat center center/cover;
}

.c-top.--plan::after {
	background: url("./../img/top-plan-lg.webp") no-repeat center center/cover;
}

.c-top.--contact::after {
	background: url("./../img/top-contact-lg.webp") no-repeat center center/cover;
}

.c-breadcrumbs {
	margin-top: 6px;
}

.p-service::before {
	background: url("./../img/service-bg-lg.webp") no-repeat top center/cover;
}

.p-service__items {
	margin-top: clamp(100px, 44vw, 546px);
}

.p-service__item:not(:first-child) {
	margin-top: clamp(100px, 42vw, 1000px);
}

.p-service-item {
	width: 75%;
	max-width: 800px;
	padding-top: 116px;
	padding-bottom: 20px;
}

.p-service-item.--odd {
	padding-right: 20px;
}

.p-service-item.--even {
	margin-left: auto;
	padding-left: 20px;
}

.p-service-item__img {
	bottom: calc(100% - 84px);
	width: 80%;
	translate: 0;
}

.p-service-item__img.--odd {
	left: 0;
	translate: 0;
}

.p-service-item__img.--even {
	right: 0;
	left: auto;
	translate: 0;
}

.p-service-item__img-bg {
	bottom: calc(100% - 84px);
	left: 0;
	aspect-ratio: 600/500;
	width: 80%;
	translate: 0;
}

.p-service-item__img-bg.--even {
	right: 0;
	left: auto;
	translate: 0;
}

.p-service-item__title {
	margin-top: 0;
	font-size: clamp(1.125rem, 0.6393020595rem + 1.3729977117vw, 1.875rem);
	text-align: left;
}

.p-service-item__title.--odd {
	padding-left: 0;
}

.p-service-item__title.--even {
	padding-right: 0;
}

.p-service-item__text {
	margin-top: clamp(1.25rem, 0.8452517162rem + 1.1441647597vw, 1.875rem);
	font-size: clamp(1rem, 0.8381006865rem + 0.4576659039vw, 1.25rem);
}

.p-representative__text {
	line-height: 1.4;
}

.p-representative__name {
	margin-top: 51px;
}

.p-feature-item {
	padding-top: 200px;
}

.p-feature-item__img {
	bottom: calc(100% - 191px);
}

.p-flow__items {
	display: flex;
	width: 1140px;
	max-width: none;
	-moz-column-gap: 60px;
	column-gap: 60px;
}

.p-flow__item:not(:first-child) {
	margin-top: 0;
}

.p-flow-item {
	width: 240px;
	height: auto;
	padding-top: 0;
}

.p-flow-item:not(:last-child)::after {
	right: -20.8333333333%;
	bottom: 50px;
	left: auto;
	aspect-ratio: 30/70;
	width: 12.5%;
	height: auto;
	translate: 0;
	-webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.p-flow-item__img {
	width: 100%;
	margin-top: 17px;
}

.p-flow-item__img::after {
	bottom: -16px;
	width: 80%;
}

.p-flow-item__title {
	margin-top: 40px;
}

.p-plan::before {
	height: 70%;
	background: url("./../img/plan-bg-lg.webp") no-repeat top center/cover;
}

.p-plan__text.--bottom {
	margin-inline: auto;
}

.p-plan__flex {
	display: flex;
}

.p-plan__item:not(:first-child) {
	margin-top: 0;
}

.p-plan__item.--last {
	margin-top: 40px;
	margin-inline: auto;
}

.p-plan__lists {
	margin-inline: auto;
}

.p-plan-item {
	width: 48%;
	max-width: 457px;
	padding-top: 30px;
	padding-bottom: 40px;
}

.p-plan-item.--odd {
	padding-left: 0;
}

.p-plan-item.--even {
	padding-left: 12px;
}

.p-plan-item.--last {
	width: -moz-fit-content;
	width: fit-content;
	max-width: none;
	margin-inline: auto;
	padding-top: 27px;
	padding-right: 38px;
	padding-bottom: 63px;
	padding-left: 32px;
}

.p-plan-item.--last::after {
	width: 100%;
}

.p-plan-item__head {
	font-size: 24px;
}

.p-plan-item__textarea {
	margin-top: 30px;
	padding-left: 0;
}

.p-plan-item-textarea {
	display: flex;
	-moz-column-gap: 80px;
	column-gap: 80px;
}

.p-plan-item-textarea__brock:not(:first-child)::after {
	position: absolute;
	top: 50%;
	left: -40px;
	width: 2px;
	height: 100%;
	translate: 0 -50%;
	background: #D9D9D9;
	content: "";
}

.p-contact {
	padding-bottom: 60px;
}

.p-contact-form__contents {
	padding: 16px 30px 40px;
}

.p-contact-form__row {
	display: flex;
}

.p-contact-form__row.--candidate {
	justify-content: space-between;
}

.p-contact-form__label {
	width: 175px;
}

.p-contact-form__label.--candidate {
	width: 175px;
	text-align: right;
}

.p-contact-form__label.--candidate label {
	font-size: 14px;
}

.p-contact-form__input {
	width: 66.3316582915%;
}

.p-contact-form__input.--candidate {
	width: 66.3316582915%;
	max-width: none;
}

.p-contact-form__flex.--candidate {
	max-width: 300px;
}

.p-contact-form__flex.--candidate .p-contact-form__flex-child {
	font-size: 18px;
}

.p-contact-form__flex.--candidate .--end::after {
	font-size: 14px;
}

.p-contact-form__text {
	text-align: left;
}

.p-contact-form__textarea textarea {
	min-height: 148px;
	font-size: 18px;
}

.p-contact-form__textarea .u-placeholder {
	font-size: 16px;
}

.p-contact-form__submit {
	margin-top: 40px;
}

.p-contact-form__submit [type=submit] {
	padding: 14px 52px;
	font-size: 20px;
}

.p-contact-form__submit button {
	padding: 14px 52px;
	font-size: 20px;
}

.u-sm3 {
	display: none;
}

.u-md {
	display: block;
}

}

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

.l-inner {
	max-width: 1440px;
	margin-inline: auto;
	padding-right: clamp(2.5rem, -12.7232142857rem + 24.5535714286vw, 9.375rem);
	padding-left: clamp(2.5rem, -12.7232142857rem + 24.5535714286vw, 9.375rem);
}

.l-footer-youtube__btn {
	margin-top: clamp(1.75rem, 0.3660714286rem + 2.2321428571vw, 2.375rem);
	margin-left: 40%;
}

.l-footer-nav {
	display: flex;
	justify-content: space-between;
	max-width: 929px;
}

.l-footer-nav__item:not(:first-child) {
	margin-top: 0;
}

.l-footer-address {
	max-width: 929px;
}

.l-footer-address__text {
	padding-left: 90px;
	line-height: 1.6;
}

.l-footer-address__text.--2 {
	margin-top: 0;
}

.p-fv__text-img {
	width: 787px;
	height: auto;
}

.p-fv__text {
	font-size: 28px;
}

.p-service__items {
	margin-top: clamp(100px, 40vw, 546px);
}

.p-service__item:not(:first-child) {
	margin-top: clamp(100px, 18vw, 259.2px);
}

.p-service__bottom {
	height: clamp(3.125rem, -10.7142857143rem + 22.3214285714vw, 9.375rem);
}

.p-service-item {
	width: 45%;
	max-width: 520px;
}

.p-service-item::before {
	box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.25);
}

.p-service-item__img {
	bottom: calc(100% - 84px);
	width: 116.9590643275%;
	translate: 0;
}

.p-service-item__img-bg {
	bottom: calc(100% - 84px);
	left: 0;
	width: 116.9590643275%;
	translate: 0;
	box-shadow: 6px 6px 4px rgba(0, 0, 0, 0.25);
}

.p-service-item__title {
	text-align: center;
}

.p-feature::before {
	background: url("./../img/oem-feature-bg-lg.webp") no-repeat top center/cover;
}

.p-feature::after {
	height: clamp(5rem, -4.6875rem + 15.625vw, 9.375rem);
}

.p-feature__items {
	justify-content: space-between;
	-moz-column-gap: 3%;
	column-gap: 3%;
	flex-wrap: nowrap;
	margin-top: clamp(10px, 10vw, 144px);
}

.p-feature-item {
	width: 33.3333%;
	max-width: 328px;
}

.p-feature-item__img {
	bottom: calc(100% - 180px);
}

.p-feature-item__title.--small {
	font-size: 18px;
}

.p-flow__items {
	width: 100%;
	-moz-column-gap: 5.2631578947%;
	column-gap: 5.2631578947%;
}

.p-flow-item {
	width: 21.0526315789%;
}

.p-plan__item.--last {
	margin-top: 60px;
}

.p-plan-item.--even {
	padding-left: 21px;
}

.p-plan-item__head {
	letter-spacing: 0.08em;
}

.p-plan-item__textarea {
	margin-top: 40px;
	font-size: 20px;
	letter-spacing: 0.08em;
}

.p-contact {
	padding-bottom: 86px;
}

.p-contact::after {
	background: url("./../img/form-bg-lg.webp") no-repeat top center/cover;
}

.p-contact-form__contents {
	padding: 40px 70px 40px;
}

.p-contact-form__row {
	padding-top: 15px;
	padding-bottom: 15px;
}

.p-contact-form__input [type=text],
.p-contact-form__input [type=email],
.p-contact-form__input [type=tel],
.p-contact-form__input [type=date] {
	height: 50px;
}

.p-contact-form__input [type=date] {
	font-size: 16px;
}

.p-contact-form__flex.--candidate {
	max-width: 400px;
}

.p-contact-form__flex.--candidate .p-contact-form__flex-child select.wpcf7-select {
	height: 50px;
	font-size: 16px;
}

.p-contact-form__submit {
	margin-top: 70px;
}

.p-contact-form__submit [type=submit] {
	font-size: 22px;
}

.p-contact-form__submit button {
	font-size: 22px;
}

.u-sm {
	display: none;
}

.u-lg {
	display: block;
}

}

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

.l-header-nav__btn a {
	padding: 12px 18px;
}

.p-plan::before {
	aspect-ratio: 2878/2174;
	height: auto;
}

.p-plan__item.--last {
	margin-top: 80px;
}

.p-plan-item__head {
	font-size: 28px;
}

.p-plan-item__textarea {
	margin-top: 50px;
	font-size: 22px;
}

.p-contact-form__label {
	width: 198px;
}

.p-contact-form__label label {
	font-size: 18px;
}

.p-contact-form__label .--required {
	font-size: 16px;
}

.p-contact-form__label.--candidate {
	width: 198px;
}

.p-contact-form__label.--candidate label {
	font-size: 16px;
}

.p-contact-form__input [type=text],
.p-contact-form__input [type=email],
.p-contact-form__input [type=tel],
.p-contact-form__input [type=date] {
	height: 60px;
	font-size: 18px;
}

.p-contact-form__input [type=date] {
	font-size: 18px;
}

.p-contact-form__flex.--candidate .p-contact-form__flex-child select.wpcf7-select {
	height: 60px;
	font-size: 18px;
}

.p-contact-form__flex.--candidate .--top::before {
	top: -30px;
	font-size: 14px;
}

.p-contact-form__online {
	margin-top: 30px;
	font-size: 18px;
}

.p-contact-form__textarea .u-placeholder {
	font-size: 18px;
}

.p-contact-form__textarea .u-placeholder .--small {
	font-size: 16px;
}

.p-contact-form__submit [type=submit] {
	font-size: 24px;
}

.p-contact-form__submit button {
	font-size: 24px;
}

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

}

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

.p-service-item {
	width: 45%;
	max-width: 520px;
}

.p-feature-item__title.--small {
	font-size: 19px;
}

.p-plan::after {
	height: 600px;
}

}

@keyframes u-shake {

0% {
	transform: translate(0px, 2px);
}

5% {
	transform: translate(0px, -2px);
}

10% {
	transform: translate(0px, 2px);
}

15% {
	transform: translate(0px, -2px);
}

20% {
	transform: translate(0px, 2px);
}

25% {
	transform: translate(0px, -2px);
}

30% {
	transform: translate(0px, 0px);
}

}

@keyframes u-shake-2 {

0% {
	transform: translate(0px, 2px);
}

5% {
	transform: translate(0px, -2px);
}

10% {
	transform: translate(0px, 2px);
}

15% {
	transform: translate(0px, -2px);
}

20% {
	transform: translate(0px, 2px);
}

25% {
	transform: translate(0px, -2px);
}

30% {
	transform: translate(0px, 0px);
}

}

