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

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

ol,
ul {
	list-style: none;
}

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

a {
	color: inherit;
	text-decoration: none;
}

button {
	background: transparent;
	border: none;
	box-shadow: none;
	cursor: pointer;
	font: inherit;
	margin: 0;
	padding: 0;
}

input,
select,
textarea {
	color: inherit;
	font: inherit;
	vertical-align: top;
}

html {
	scroll-behavior: smooth;
}

body {
	color: #333333;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
}

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

.l-header {
	background-color: #FFFFFF;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
	height: 60px;
	padding-block: 15px;
	position: sticky;
	top: 0;
	width: 100%;
	z-index: 20;
}

.l-header__container {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.l-header__logo {
	height: 30px;
	transition: 0.5s;
	width: 122px;
}

.l-drawer-icon {
	height: 32px;
	position: relative;
	width: 32px;
	z-index: 999;
}

.l-drawer-icon.is-checked .l-drawer-icon__bar:nth-child(1),
.l-drawer-icon.is-checked .l-drawer-icon__bar:nth-child(3) {
	left: 50%;
	top: 16px;
}

.l-drawer-icon.is-checked .l-drawer-icon__bar:nth-child(1) {
	transform: translateX(-50%) rotate(45deg);
}

.l-drawer-icon.is-checked .l-drawer-icon__bar:nth-child(2) {
	display: none;
}

.l-drawer-icon.is-checked .l-drawer-icon__bar:nth-child(3) {
	transform: translateX(-50%) rotate(-45deg);
}

.l-drawer-icon__bar {
	background-color: #FC7F39;
	height: 2px;
	left: 50%;
	position: absolute;
	right: 0;
	transform: translateX(-50%);
	transition: transform 0.4s;
	width: 24px;
}

.l-drawer-icon__bar:nth-child(1) {
	top: 6px;
}

.l-drawer-icon__bar:nth-child(2) {
	top: 14px;
}

.l-drawer-icon__bar:nth-child(3) {
	top: 22px;
}

.l-header__nav.is-checked {
	top: 60px;
}

.l-header__nav {
	background: linear-gradient(0deg, rgba(174, 205, 108, 0.2) 0%, rgba(174, 205, 108, 0.2) 100%), #FFF;
	display: flex;
	flex-direction: column;
	gap: 64px;
	height: 100vh;
	left: 0;
	max-height: 100vh; /* ビューポートの高さまでに制限 */
	overflow-y: auto; /* 垂直スクロールを許可 */
	padding: 80px 30px;
	position: fixed;
	top: -100vh;
	transition: 0.5s;
	width: 100%;
}

.l-header-nav__lists {
	align-items: center;
	display: flex;
	flex-direction: column;
	gap: 60px;
	justify-content: space-between;
	text-align: center;
}

.l-header__link {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5;
	padding: 10px 50px;
	white-space: nowrap;
}

.l-header__nav-picture {
	margin-inline: auto;
	width: 290px;
}

#js-drawer-backdrop {
	background-color: rgba(0, 0, 0, 0); /* 初期状態では透明 */
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	transition: background-color 0.5s; /* 背景色の変化に1秒かける */
	width: 100%;
	z-index: 1; /* ドロワーと重なるようにする */
}

.is-checked + #js-drawer-backdrop {
	display: none;
}

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

.l-inner.header,
.l-inner.footer {
	margin: 0 auto;
	padding-inline: 20px;
}

.l-footer {
	padding-block: 40px 20px;
}

.l-footer__container {
	display: flex;
	flex-direction: column;
	gap: 50px;
	text-align: center;
}

.l-footer__top {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.l-footer-nav__lists {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.l-footer__link {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
	padding: 20px 70px;
}

.l-footer__logo {
	margin-inline: auto;
	transition: 0.5s;
	width: 230px;
}

.l-footer__copyrights {
	display: inline-block;
	margin-inline: auto;
	text-decoration: underline;
}

.c-button__header-nav {
	align-items: center;
	background: #FC7F39;
	border-radius: 20px;
	box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
	color: #FFFFFF;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	gap: 8px;
	justify-content: center;
	line-height: 1.4;
	margin: 0 auto;
	margin-left: 16px;
	min-height: 38px;
	padding: 8px 10px;
	width: 144px;
}

.c-button__cta {
	border-radius: 20px;
	box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25);
	display: inline-block;
	display: grid;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	max-width: 196px;
	padding: 6px 14px;
	place-items: center;
	transition: 0.5s;
}

.c-button__cta--bgWhite {
	background: #FC7F39;
	border: 2px solid #FC7F39;
	color: #FFFFFF;
}

.c-button__cta--bgOrange {
	background: #FFFFFF;
	border: 2px solid currentColor;
	color: #FC7F39;
}

.c-title {
	color: #FC7F39;
	font-family: "M PLUS Rounded 1c", sans-serif;
	text-align: center;
	text-align: center;
}

.c-title .main {
	font-size: clamp(1.75rem, 1.4859rem + 1.1268vw, 2.5rem);
	font-weight: 800;
	white-space: nowrap;
}

.c-title .sub {
	font-size: clamp(1rem, 0.8239rem + 0.7512vw, 1.5rem);
	font-weight: 800;
}

.p-about {
	background: linear-gradient(0deg, rgba(174, 205, 108, 0.05) 0%, rgba(174, 205, 108, 0.05) 100%), #FFF;
}

.p-about__container {
	display: flex;
	flex-direction: column;
	gap: 60px;
}

.p-about__container .textarea {
	font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
	text-align: center;
}

.p-requirements {
	background: linear-gradient(0deg, rgba(174, 205, 108, 0.05) 0%, rgba(174, 205, 108, 0.05) 100%), #FFF;
}

.p-requirements__message {
	font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
	text-align: center;
}

.p-requirements__container {
	display: flex;
	flex-direction: column;
	gap: 40px;
	margin-inline: auto;
	margin-top: clamp(1.875rem, 1.2148rem + 2.8169vw, 3.75rem);
	width: 89.552238806%;
}

.p-requiremetns__box {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.p-requirements__img {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 8px;
	text-align: center;
}

.p-requirements__img .img__title {
	color: #AECD6C;
	font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
	font-weight: 700;
	margin-inline: auto;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.p-requirements__img .img__title::before,
.p-requirements__img .img__title::after {
	bottom: 0;
	content: "";
	height: 24px;
	position: absolute;
	width: 24px;
}

.p-requirements__img .img__title::before {
	background: url(../img/icon-requirementsLeft.webp) no-repeat center center/cover;
	left: -32px;
}

.p-requirements__img .img__title::after {
	background: url(../img/icon-requirementsRight.webp) no-repeat center center/cover;
	right: -32px;
}

.p-requirements__img .img {
	background: url(<path-to-image>) lightgray -16.75px -0.879px/113.415% 100.826% no-repeat;
	border-radius: 20px;
	box-shadow: 15px 15px 0px 0px rgba(174, 205, 108, 0.5);
	margin-top: 0;
}

.p-requirements__img .img img {
	border-radius: 20px;
}

.p-requirements__textarea {
	display: flex;
	flex-direction: column;
	gap: clamp(1.25rem, 0.8099rem + 1.8779vw, 2.5rem);
}

.p-requirements__textarea li {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.p-requirements__textarea li .main {
	border-left: 5px solid #AECD6C;
	font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
	padding-left: 5px;
}

.p-requirements__textarea li .main p {
	font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
}

.p-requirements__textarea li .sub {
	font-size: 16px;
}

.p-flow__container {
	display: flex;
	flex-direction: column;
	gap: 72px;
	margin-inline: auto;
	width: 89.552238806%;
}

.p-flow__box {
	display: flex;
	position: relative;
}

.p-flow__box::after {
	background: #AECD6C;
	bottom: -50px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	content: "";
	height: 24.96px; /* 新しい高さ */
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 33.33px; /* 新しい上辺の幅 */
}

.p-flow__box:last-child::after {
	display: none;
}

.p-flow__head {
	background: #AECD6C;
	border-radius: 10px 0px 0px 10px;
	color: #FFFFFF;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px;
	text-align: center;
	width: 73px;
}

.p-flow__head .head {
	font-size: 16px;
	font-weight: 700;
}

.p-flow__head .number {
	font-size: 32px;
	font-weight: 700;
}

.p-flow__body {
	background: linear-gradient(0deg, rgba(174, 205, 108, 0.2) 0%, rgba(174, 205, 108, 0.2) 100%), #FFF;
	border-radius: 0 10px 10px 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	padding: 16px 16px 16px 24px;
	width: 100%;
}

.p-flow__body .main {
	font-size: 20px;
	font-weight: 700;
}

.p-flow__body .sub {
	font-size: 16px;
	font-weight: 400;
}

.p-flow__body .sub p {
	font-size: 16px;
	font-weight: 400;
}

.p-fv {
	align-items: center;
	background: radial-gradient(50% 50% at 50% 50%, rgba(174, 205, 108, 0) 0%, rgba(174, 205, 108, 0.15) 50.32%, rgba(174, 205, 108, 0.5) 100%), #FFF;
	display: flex;
	height: 653px;
	justify-content: center;
	overflow: hidden;
	position: relative;
	text-align: center;
	width: 100%;
}

.p-fv__center {
	display: flex;
	flex-direction: column;
}

.p-fv__logo {
	margin-inline: auto;
	width: 200px;
}

.p-fv__message {
	font-family: "Kiwi Maru", serif;
	margin-top: 12px;
}

.p-fv__message .top {
	font-size: clamp(1.75rem, 1.5739rem + 0.7512vw, 2.25rem);
	font-weight: 500;
}

.p-fv__message .top .orange {
	color: #FC7F39;
	font-size: clamp(2.25rem, 2.0739rem + 0.7512vw, 2.75rem);
}

.p-fv__message .bottom {
	font-size: clamp(2rem, 1.8239rem + 0.7512vw, 2.5rem);
	font-weight: 500;
	line-height: 2; /* 64px */
}

.p-fv__message .bottom img {
	width: clamp(4.0625rem, 3.6224rem + 1.8779vw, 5.3125rem);
}

.p-fv__button {
	display: flex;
	flex-direction: column;
	gap: 16px;
	justify-content: center;
	margin-inline: auto;
	margin-top: 28px;
}

.p-fv__slide1 {
	animation: loop-sp1 50s linear infinite;
	background: url(../img/fv1-sp.webp) repeat-x 0 0;
	background-size: 632px 112px;
	height: 112px;
	left: 0;
	position: absolute;
	right: auto;
	top: 0;
	width: 100%;
	z-index: 1;
}

.p-fv__slide2 {
	animation: loop-sp2 50s linear infinite;
	background: url(../img/fv2-sp.webp) repeat-x 0 0;
	background-size: 632px 112px;
	bottom: 0;
	height: 112px;
	position: absolute;
	right: 0;
	width: 100%;
	z-index: 1;
}

.p-vision__message {
	font-size: clamp(1.25rem, 1.162rem + 0.3756vw, 1.5rem);
	text-align: center;
}

.p-vision__img {
	display: block;
	margin-inline: auto;
	margin-top: 80px;
	max-width: 450px;
	padding-bottom: 80px;
}

.p-vision__bottomBG {
	display: block;
	height: 283px;
	overflow-y: hidden;
}

.p-vision__bottom {
	margin-top: -25px;
	position: relative;
}

.p-vision__bottom::before {
	aspect-ratio: 78/80;
	background: url(../img/vision-left.webp) no-repeat center center/cover;
	content: "";
	position: absolute;
	right: 75%;
	top: 52px;
	width: 20.8%;
	z-index: 1;
}

.p-vision__bottom::after {
	aspect-ratio: 80/100;
	background: url(../img/vision-right.webp) no-repeat center center/cover;
	bottom: 0;
	content: "";
	left: 77%;
	position: absolute;
	width: 21.3333333333%;
}

.p-vision__message2 {
	bottom: 20%;
	font-size: 20px;
	font-weight: 500;
	left: 50%;
	position: absolute;
	text-align: center;
	transform: translateX(-50%);
	width: 100%;
}

.p-privacy__container {
	font-size: 14px;
	line-height: 180%; /* 25.2px */
}

.p-privacy__container span {
	text-decoration-line: underline;
}

.p-cta {
	background: url(../img/cta-bgSP.webp) no-repeat center center/cover;
	padding-block: 17px 38px;
}

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

.p-cta__title p {
	font-size: clamp(1rem, 0.8239rem + 0.7512vw, 1.5rem);
	position: relative;
}

.p-cta__title p::before {
	background: rgba(252, 127, 57, 0.5);
	border-radius: 4px;
	bottom: 2px;
	content: "";
	height: 6px;
	left: -20px;
	position: absolute;
	width: calc(100% + 40px);
}

.p-cta__container {
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.p-cta__box {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 1.0379rem + 1.9718vw, 2.8125rem);
	margin-inline: auto;
}

.p-cta__lists {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	gap: 16px;
}

.p-cta__list {
	display: flex;
	font-size: clamp(0.75rem, 0.662rem + 0.3756vw, 1rem);
	font-weight: 700;
	gap: clamp(0.875rem, 0.831rem + 0.1878vw, 1rem);
}

.p-cta__list .icon {
	flex-shrink: 0;
	width: clamp(0.875rem, 0.5669rem + 1.3146vw, 1.75rem);
}

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

.p-faq__container {
	display: flex;
	flex-direction: column;
	gap: clamp(1.5rem, 1.1479rem + 1.5023vw, 2.5rem);
	margin: 0 auto;
	max-width: 900px;
	width: 89.552238806%;
}

.p-faq__box {
	width: 100%;
}

.p-faq-box__head,
.p-faq-box__body {
	align-items: center;
	display: flex;
	font-size: 16px;
	gap: 32px;
}

.p-faq-box__head .qa-icon,
.p-faq-box__body .qa-icon {
	background: #FFFFFF;
	border-radius: 50%;
	color: #333333;
	display: inline-block;
	flex-shrink: 0;
	font-size: 20px;
	font-weight: 700;
	height: 44px;
	line-height: 40px;
	text-align: center;
	width: 44px;
}

.p-faq-box__head .qa-icon.q,
.p-faq-box__body .qa-icon.q {
	border: 2px solid #FFFFFF;
}

.p-faq-box__head .qa-icon.a,
.p-faq-box__body .qa-icon.a {
	border: 2px solid #AECD6C;
}

.p-faq-box__head {
	background: #AECD6C;
	border-radius: 10px 10px 0px 0px;
	color: #FFFFFF;
	font-weight: 500;
	padding: 16px 32px 16px 16px;
}

.p-faq-box__head .question {
	color: #FFFFFF;
	font-size: clamp(1rem, 0.912rem + 0.3756vw, 1.25rem);
	font-weight: 500;
}

.p-faq-box__body {
	background: #FFFFFF;
	border: 4px solid #AECD6C;
	border-radius: 0px 0px 10px 10px;
	padding: 12px;
}

.p-faq-box__body .answer {
	color: #333333;
	font-size: 16px;
	font-weight: 400;
}

.p-message {
	background: linear-gradient(0deg, rgba(174, 205, 108, 0.05) 0%, rgba(174, 205, 108, 0.05) 100%), #FFF;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.p-message__textarea {
	font-size: 14px;
	margin-inline: auto;
	width: 89.552238806%;
}

.p-message__textarea .main {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
}

.p-message__textarea .sub {
	margin-top: 25px;
}

.p-message__textarea .sub .team {
	font-weight: 500;
	line-height: 1.8;
}

.p-message__textarea .sub .name {
	font-weight: 700;
	line-height: 1.8;
}

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

.p-message__img .img {
	aspect-ratio: 355/293;
	border-radius: 20px;
	box-shadow: 15px 15px 0px 0px rgba(174, 205, 108, 0.5);
	display: inline-block;
	flex-shrink: 0;
	overflow: hidden;
	width: 335px;
}

.p-message__img img {
	border-radius: 20px;
}

.u-padding-section {
	padding-block: clamp(3.125rem, 2.0246rem + 4.6948vw, 6.25rem);
}

.u-padding-section.p-vision {
	padding-block: clamp(3.125rem, 2.0246rem + 4.6948vw, 6.25rem);
}

.u-margin__container {
	margin-top: clamp(2.5rem, 1.6197rem + 3.7559vw, 5rem);
}

.u-margin__container--cta {
	margin-top: clamp(2.5rem, 2.0599rem + 1.8779vw, 3.75rem);
}

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

.u-visible-md {
	display: none;
}

.u-visible-lg {
	display: none;
}

@media (hover: hover) {

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

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

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

.c-button__header-nav:hover {
	box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.c-button__cta:hover {
	box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

}

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

.p-vision__message2 {
	bottom: 14%;
	font-size: 16px;
}

}

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

.p-vision__bottomBG {
	display: inline;
}

.p-vision__message2 {
	bottom: 15%;
	font-size: clamp(1.125rem, 0.8571rem + 0.7143vw, 1.5rem);
}

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

}

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

.l-inner {
	max-width: 1440px;
	padding-inline: 11.1111111111%;
}

.l-inner.header,
.l-inner.footer {
	max-width: 1440px;
	padding-inline: 50px;
}

.p-requirements__container {
	gap: 60px;
	width: auto;
}

.p-requiremetns__box {
	flex-direction: row;
	gap: 5.3571428571%;
}

.p-requiremetns__box.agriculture {
	flex-direction: row-reverse;
}

.p-requiremetns__box.partner .p-requirements__textarea {
	margin-top: 80px;
}

.p-requirements__img {
	width: 50%;
}

.p-requirements__textarea {
	justify-content: center;
	margin-top: 40px;
}

.p-flow__container {
	max-width: 900px;
	width: auto;
}

.p-fv {
	height: 550px;
}

.p-fv__slide1 {
	animation: loop-pc1 50s linear infinite;
	background: url(../img/fv1-pc.webp) repeat-y 0 0;
	background-size: cover;
	height: 100%;
	width: 27.7777777778%;
}

.p-fv__slide2 {
	animation: loop-pc2 50s linear infinite;
	background: url(../img/fv2-pc.webp) repeat-y 0 0;
	background-size: cover;
	height: 100%;
	width: 27.7777777778%;
}

.p-vision__img {
	margin-top: 30px;
	max-width: 1440px;
	padding-bottom: 0;
	padding-inline: 5%;
	scale: 1;
	width: 100%;
}

.p-vision__bottom {
	margin-top: 10px;
}

.p-cta {
	background: url(../img/cta-bgPC.webp) no-repeat center center/cover;
	padding-block: 40px 40px;
}

.p-cta__title {
	flex-direction: row;
	margin-inline: auto;
	position: relative;
	width: -moz-fit-content;
	width: fit-content;
}

.p-cta__title::before {
	background: rgba(252, 127, 57, 0.5);
	border-radius: 4px;
	bottom: 2px;
	content: "";
	height: 6px;
	left: -20px;
	position: absolute;
	width: calc(100% + 40px);
}

.p-cta__title p::before {
	display: none;
}

.p-cta__container {
	flex-direction: row;
	gap: 14.6341463415%;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 820px;
}

.p-cta__box {
	flex: 1 1 0;
	justify-content: space-between;
	margin-inline: 0;
	width: 85.3658536585%;
}

.agriculture .p-cta__button {
	margin-top: 5px;
}

.p-faq__container {
	width: auto;
}

.p-message__textarea {
	width: auto;
}

.u-padding-section.p-vision {
	padding-bottom: 0;
}

.u-hidden-md {
	display: none;
}

.u-visible-md {
	display: block;
}

}

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

.l-footer {
	padding-block: 80px 20px;
}

.l-footer__top {
	flex-direction: column-reverse;
	gap: 60px;
}

.l-footer-nav__lists {
	flex-direction: row;
	gap: clamp(1.625rem, 0.875rem + 1.25vw, 2rem);
	justify-content: center;
}

.l-footer__link {
	display: inline-block;
	padding: 0;
	position: relative;
	text-decoration: none;
}

.l-footer__link::after {
	background: #FC7F39; /*下線の色*/
	bottom: 0px; /*テキストからの距離*/
	content: "";
	height: 2px; /*下線の高さ*/
	left: -4px;
	position: absolute;
	transform: scale(0, 1); /*トランス前の下線*/
	transform-origin: left top; /*トランスフォーム開始位置*/
	transition: transform 0.3s; /*アニメーション速度*/
	width: calc(100% + 8px); /*hover時に表示*/
}

.c-button__cta {
	border-radius: 40px;
	font-size: clamp(1rem, 0.5rem + 0.8333vw, 1.25rem);
	line-height: 1.4;
	max-width: none;
	min-height: 60px;
	width: 264px;
}

.p-vision__img {
	padding-inline: 11.1111111111%;
}

.p-vision__bottom::before {
	bottom: 60px;
	max-width: 212px;
	right: 73%;
	top: auto;
}

.p-vision__bottom::after {
	bottom: 30px;
	left: 73%;
	max-width: 212px;
}

.p-vision__message2 {
	bottom: 27%;
	line-height: 2;
}

.p-message {
	flex-direction: row;
	gap: 40px;
}

.p-message__img .img {
	aspect-ratio: 400/350;
	width: clamp(20.9375rem, 12.8125rem + 13.5417vw, 25rem);
}

.u-hidden-lg {
	display: none;
}

.u-visible-lg {
	display: block;
}

}

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

.l-footer__link:hover::after {
	transform: scale(1, 1); /*トランス後の下線*/
}

}

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

.l-header {
	height: 70px;
}

.l-header__container {
	align-items: start;
}

.l-header__logo {
	width: 191px;
}

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

.l-header__nav {
	background: none;
	height: 50px;
	margin-top: 0;
	overflow: hidden;
	padding: 0;
	position: static;
	right: 0;
	top: 0;
	width: 851px;
}

.l-header-nav__lists {
	flex-direction: row;
	gap: 32px;
}

.l-header__link {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	padding-inline: 0;
	position: relative;
	text-decoration: none;
}

.l-header__link::after {
	background: #FC7F39; /*下線の色*/
	bottom: 10px; /*テキストからの距離*/
	content: "";
	height: 2px; /*下線の高さ*/
	left: -4px;
	position: absolute;
	transform: scale(0, 1); /*トランス前の下線*/
	transform-origin: left top; /*トランスフォーム開始位置*/
	transition: transform 0.3s; /*アニメーション速度*/
	width: calc(100% + 8px); /*hover時に表示*/
}

.p-requiremetns__box.partner .p-requirements__textarea {
	margin-top: 0;
}

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

.p-fv {
	align-items: start;
	height: 700px;
	padding-top: 100px;
}

.p-fv__logo {
	width: 400px;
}

.p-fv__message {
	margin-top: 50px;
}

.p-fv__message .top .orange {
	line-height: 2;
}

.p-fv__message .top .dot {
	letter-spacing: -14.76px;
	line-height: 2;
}

.p-fv__button {
	flex-direction: row;
	margin-top: 126px;
}

.p-fv__slide1 {
	width: clamp(20rem, -9.2857rem + 38.0952vw, 25rem);
}

.p-fv__slide2 {
	width: clamp(20rem, -9.2857rem + 38.0952vw, 25rem);
}

.p-vision__bottom {
	margin-top: -25px;
}

.u-hidden-xl {
	display: none;
}

}

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

.l-header__link:hover::after {
	transform: scale(1, 1); /*トランス後の下線*/
}

}

@keyframes loop-sp1 {

0% {
	background-position: 0 0;
}

100% {
	background-position: -624px;
}

}

@keyframes loop-pc1 {

0% {
	background-position: 0 0;
}

100% {
	background-position: 0 -1274px;
}

}

@keyframes loop-sp2 {

0% {
	background-position: -624px 0;
}

100% {
	background-position: 0 0;
}

}

@keyframes loop-pc2 {

0% {
	background-position: 0 -1274px;
}

100% {
	background-position: 0 0;
}

}

