* {
	margin: 0;
	padding: 0;
	font-style: normal;
	list-style: none;
	vertical-align: top;
	box-sizing: border-box;
}

:root {
	--txt-color: #1A1E2F;
	--main-color: #FF9F21;
	--sub-color-y: #F9CF57;
	--sub-color-b: #16AEEF;
	--sub-color-p: #946BE1;
	--sub-color-g: #5DC264;
	--background: #FCF8F4;
	--l-margin: 4vw;
}

main {
	overflow: hidden;
}

body {
	margin: 0;
	padding: 0;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	font-size: 16px;
	font-weight: 300;
	line-height: 2em;
	background: var(--background);
	color: var(--txt-color)
}

a.link {
    text-decoration: underline;
}
.heading-en {
	font-family: 'Poppins', sans-serif;
}

.heading-ja {
	font-family: "fot-tsukuardgothic-std", sans-serif;
	font-weight: 600;
	font-style: normal;
}

h1,
h2,
h3,
h4,
h5 {
	font-feature-settings: "palt";
	font-weight: bold;
	font-size: 14px;
}

.js-fadein {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1s, transform 1s;
}

.is-visible {
	opacity: 1;
	transform: translateY(0);
}

a {
	display: inline-block;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}

img {
	width: 100%;
	max-width: 100%;
	object-fit: cover;
}

.alpha {
	font-family: "poppins", sans-serif;
	font-weight: 700;
	font-style: normal;
}


#message::before {
	content: "";
	background: radial-gradient(circle, var(--main-color) 0%, var(--main-color) 20%, transparent 70%);
	width: 70vw;
	height: 70vw;
	position: absolute;
	z-index: -999;
	opacity: .3;
	left: -25vw;
}

#recruitment::before {
	content: "";
	background: radial-gradient(circle, var(--sub-color-b) 0%, var(--sub-color-b) 20%, transparent 70%);
	width: 70vw;
	height: 70vw;
	position: absolute;
	z-index: -999;
	opacity: .3;
	right: -25vw;
}

#flow::before {
	content: "";
	background: radial-gradient(circle, var(--sub-color-y) 0%, var(--sub-color-y) 20%, transparent 70%);
	width: 70vw;
	height: 70vw;
	position: absolute;
	z-index: -999;
	opacity: .3;
	left: -25vw;
}

#award::before {
	content: "";
	background: radial-gradient(circle, var(--sub-color-g) 0%, var(--sub-color-g) 20%, transparent 70%);
	width: 70vw;
	height: 70vw;
	position: absolute;
	z-index: -999;
	opacity: .3;
	right: -25vw;
}

#whynow::before {
	content: "";
	background: radial-gradient(circle, var(--sub-color-p) 0%, var(--sub-color-p) 20%, transparent 70%);
	width: 70vw;
	height: 70vw;
	position: absolute;
	z-index: -999;
	opacity: .3;
	left: -25vw;
}

.overlay {
	display: block;
	position: fixed;
	background: #00000088;
	width: 100vw;
	height: 100vh;
	transition: .3s;
	opacity: 0;
	z-index: -999;
	top: 0;
	left: 0;
}

.overlay.is-active {
	opacity: 1;
	z-index: 99;
}

header {
	transition: .3s;
	border-radius: 20px;
	background: #fff;
	position: fixed;
	box-shadow: 0px 3px 26px rgba(255, 182, 136, 0.16);
	top: 1rem;
	left: var(--l-margin);
	right: var(--l-margin);
	height: clamp(64px, 12vh, 140px);
	z-index: 999;
	max-width: calc(100vw - 8vw);
}

header .l-header__inner {
	display: flex;
	align-items: center;
	padding: 0px 20px;
	height: 100%;
}

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

nav.l-header__nav .l-header__list {
	display: flex;
	gap: 1rem;
	align-items: center;
}

a.l-header__link:hover {
	opacity: .7;
	transition: .3s;
}

a.l-header__link[href="#recruitment"]:hover {
	color: var(--sub-color-b);
}

a.l-header__link[href="#flow"]:hover {
	color: var(--sub-color-y);
}


.l-header__hamburger {
	display: none;
	border: none;
	background: transparent;
	cursor: pointer;
	z-index: 100;
	width: 2.5rem;
	height: 2.5rem;
	background: var(--main-color);
	border-radius: 50px;
}

.l-header__hamburger-line {
	display: block;
	width: 20px;
	height: 3px;
	background-color: #ffffff;
	margin: 2px 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	border-radius: 50px;
}

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

	a.l-header__link.btn.btn-primary {
		min-height: initial;
		max-width: fit-content;
		margin: 0 auto;
	}

	nav.l-header__nav .l-header__list {
		justify-content: start;
		gap: 0;
		height: 100%;
	}

	.l-header__item:last-child {
		border-bottom: none;
		padding: 1rem;
	}



	header:has(.is-active) {
		border-radius: 20px 20px 0px 0px;
	}


	.l-header__hamburger {
		display: flex;
		margin-left: auto;
		flex-direction: column;
		align-items: center;
		justify-content: center;
	}



	header{
	height: 80px;
}

	.l-header__nav {
		position: absolute;
		top: 80px;
		width: 100%;
		height: 0;

		overflow: hidden;

		background-color: #fff;
		transition: height 0.3s ease;

		z-index: 999;
		right: 0;
		border-radius: 0px 0px 20px 20px;
	}

	.l-header__nav.is-active {
		height: calc(100vh - 130px);
	}

	.l-header__list {
		flex-direction: column;
		align-items: center;
	}

	.l-header__item {
		width: 100%;
		text-align: center;
		margin: 0;
		border-bottom: 1px solid #eee;
	}

	.l-header__item:first-child {
		border-top: 1px solid #eee;
	}

	.l-header__link {
		display: block;
		padding: 1rem;
		font-size: 1.2rem;
	}
}


.l-header__hamburger.is-active .l-header__hamburger-line:nth-of-type(1) {
	transform: translateY(7px) rotate(45deg);
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-of-type(2) {
	opacity: 0;
}

.l-header__hamburger.is-active .l-header__hamburger-line:nth-of-type(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.p-scroll-down {
	position: absolute;
	bottom: -6rem;

	left: 5%;
	transform: translateX(-50%);
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	font-family: "Poppins", sans-serif;
	color: var(--txt-color);

	font-size: 12px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
}

.p-scroll-down span {
	transform: rotate(90deg);
}

.p-scroll-down::before {
	content: "";
	display: block;
	width: 1px;
	height: 60px;
	background-color: var(--txt-color);
	margin-bottom: 10px;
}

.p-scroll-down::after {
	content: "";
	position: absolute;
	top: -10px;
	display: block;
	width: 1px;
	height: 0;
	background-color: #fff;
	animation: scroll-down-line 1.5s ease-in-out infinite;
}


@keyframes scroll-down-line {
	0% {
		height: 0;
		opacity: 0;
		transform: translateY(0);
	}

	50% {
		height: 60px;
		opacity: 1;
	}

	100% {
		height: 0;
		opacity: 0;
		transform: translateY(60px);
	}
}

a.l-header__link[href="#award"]:hover {
	color: var(--sub-color-g);
}

a.l-header__link[href="#whynow"]:hover {
	color: var(--sub-color-p);
}

.l-header__link {
	padding: 1rem 0rem;
	font-size: clamp(15px, 1.2vw, 32px);
}

.l-header__link:hover {}

a.l-header__link.btn.btn-primary {
	min-height: auto;
}

header .l-header__logo {
	max-width: clamp(160px, 25%, 350px);
	display: flex;
}

section.p-fv {
	gap: 4rem;
	display: flex;
	min-height: 45vh;
}

.p-fv__image-wrapper img {
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	max-width: 65vw;
	z-index: -9;
	height: 100vh;
	border-radius: 0px 0px 0px 80px;
}

.p-fv__100th-logo {
	max-width: 80px;
}

.p-fv .color-primary {
	color: var(--main-color);
}

.btn {
	border-radius: 80px;
	background: #ddd;
	padding: 0.5rem 2rem;
	min-height: 11vh;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: clamp(17px, 1.5vw, 37px);
}

.p-fv__content .btn {
	max-width: 36vw;
}

.btn.btn-primary {
	background: linear-gradient(-90deg, #ff9f21, #f9cf57);
	color: #fff;
	font-weight: bold;
}

p.p-fv__sub-heading.heading-ja {
	color: #382C29;
	font-weight: bold;
	font-size: clamp(1.2rem, 1.8vw, 32px);
	line-height: 1.7;
}

.p-fv__logo-group {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.p-fv__content {
	margin-top: 1rem;
	margin-left: var(--l-margin);
	max-width: 45vw;
	position: relative;
}

h1.p-fv__heading {
	font-size: clamp(24px, 3.3vw, 120px);
	line-height: 1.7;
	margin: 3vh 0px;
	letter-spacing: 0.05em;
}

section.p-section {
	padding: 4vw 0px;
	position: relative;
}

h2.p-section__heading {
	text-align: center;
	display: flex;
	flex-direction: column;
	font-size: 6vw;
	line-height: 1.4;
	margin-bottom: 4rem;
}

span.p-section__sub-heading.heading-ja {
	font-size: 0.4em;
}

.content {
	max-width: 120rem;
	margin: 0px var(--l-margin);
	margin-inline: auto;
}

#message h2 {
	color: var(--main-color);
	text-align: left;
}

#recruitment h2 {
	color: var(--sub-color-b);
}

#flow h2 {
	color: var(--sub-color-y);
}

#award h2 {
	color: var(--sub-color-g);
}

#award .p-award__gr {
	color: var(--sub-color-g);
}

#whynow h2 {
	color: var(--sub-color-p);
}

.panel {
	border-radius: 30px;
	background: #fff;
	padding: 3vw;
}

dl.list-item {
	display: flex;
	align-items: center;
}

article.p-lp {
	margin-top: 16vh;
}

dl.list-item dt {
	font-weight: bold;
	color: var(--sub-color-b);
	width: 20%;
}

dl.list-item dd {
	width: 80%;
}

dl.list-item+dl.list-item {
	border-top: 1px solid var(--sub-color-b);
}

dl.list-item dt,
dl.list-item dd {
	padding: 2rem 0px;
	font-size: clamp(16px, 1.2vw, 32px);
	line-height: 1.7;
}

.container {
	margin: 20vh 0px;
}

.p-lead__txt {
	line-height: 2;
	font-size: clamp(16px, 1.5vw, 48px);
}

.l-flx__layout {
	display: flex;
	gap: 2rem;
}

.l-flx__layout.column2>* {
	width: calc(100% / 2);
}

.l-flx__layout.column4>div {
	width: calc(100% / 4);
	text-align: center;
}

#message .l-flx__layout__content {
	width: 55%;
	margin-left: var(--l-margin);
}

#message .l-flx__layout__img {
	width: 45%;
	border-radius: 30px 0px 0px 30px;
}

ul.p-list {
	padding-left: 1rem;
}

.p-list li {
	font-size: clamp(16px, 1.2vw, 32px);
	line-height: 1.7;
	padding: 2px 0px;
	list-style: disc;
}

#flow .l-flx__layout__content {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#flow .l-flx__layout .panel {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: auto;
	padding: 2vw;

}

#flow .l-flx__layout .panel img {
	width: clamp(50px, 6vw, 70px);
	height: auto;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	margin: 1rem 0px;
}

#flow .l-flx__layout .panel strong {
	font-size: clamp(20px, 2vw, 36px);
	line-height: 1.5;
	margin-bottom: 0.5rem;
	font-family: "poppins", sans-serif;
	font-weight: 700;
	color: var(--sub-color-y);
}

#flow .l-flx__layout .panel p {
	text-align: center;
	font-size: clamp(14px, 1.2vw, 24px);
	line-height: 1.7;
	font-weight: bold;
	margin-top: 0.5rem;
}


#flow .l-flx__layout .panel {
	position: relative;
}

#flow .l-flx__layout .panel+.panel {
	position: relative;
}

#flow .l-flx__layout .panel+.panel::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -7%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 0 16px 14px;
	border-color: transparent transparent transparent var(--sub-color-y);
}

#award .panel {
	display: flex;
	width: calc((100% / 2) - 0.5rem);
	gap: 2rem;
	align-items: center;
	padding: 2rem;
}

#award .panel img {
	max-width: 32px;
	object-fit: contain;
}

#award .l-flx__layout {
	flex-wrap: wrap;
	gap: 1rem;
	max-width: 80vw;
	margin: 0 auto;
}

#award .award-inner {
	display: flex;
	flex-direction: column;
	line-height: 1.7;
}

#award .award-benefits {
	margin-left: auto;
	display: flex;
	align-items: baseline;
	line-height: 1;
}

#award .award-benefits .price {
	font-size: clamp(38px, 4vw, 56px);
	font-weight: bold;
	font-family: 'Poppins', sans-serif;
}

#award .award-benefits .unit {
	margin-left: 0.5rem;
	font-weight: bold;
	font-size: 1.2em;
}

#award .award-title {
	font-weight: bold;
	font-size: 1.3rem;
}

#award .panel.gold .award-title {
	color: #DBA714;
}

#award .panel.silver.award-title {
	color: #9F9F9F;
}

#award .panel.silver.award-title {
	color: #ddd;
}

#award .panel.silver .award-title {
	color: #9F9F9F;
}

#award .panel.bronze .award-title {
	color: #C2805D;
}

#award .l-flx__layout.column3 {
	margin-bottom: 2rem;
}

#award .content {
	max-width: 60rem;
	margin: 0 auto;
}

#award .panel-heading {
	font-size: clamp(20px, 2vw, 36px);
	font-weight: bold;
	color: var(--sub-color-g);
	margin-bottom: 1rem;
}

#award .panel-txt {
	font-size: clamp(30px, 3.6vw, 64px);
	font-weight: bold;
	line-height: 1;
}

#award .panel-txt span {
	font-size: clamp(14px, 1.2vw, 24px);
	font-weight: bold;
}

section .p-sub__txt {
	text-align: center;
	font-size: clamp(16px, 1.2vw, 32px);
	line-height: 2;
	margin: 2rem 0px;
}

section .p-sub__txt.bld {
	font-weight: bold;
	display: flex;
	justify-content: center;
	gap: 2em;
}

#whynow strong.why-catch_txt {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	display: block;
}

#whynow .l-flx__layout__content {
	font-size: clamp(16px, 1.2vw, 48px);
	width: 50%;
	order: 2;
	line-height: 2;
}

#whynow .l-flx__layout.l-type-left .l-flx__layout__img {
	border-radius: 50px 0px 0px 50px;
}

#whynow .l-flx__layout.l-type-right .l-flx__layout__img {
	border-radius: 0px 50px 50px 0px;
}

#whynow .l-flx__layout.l-type-right .l-flx__layout__content {
	margin-right: var(--l-margin);
	max-width: 50vw;
}

#whynow .l-flx__layout.l-type-left .l-flx__layout__content {
	margin-left: var(--l-margin);
	max-width: 50vw;
}

#whynow .l-flx__layout__img {
	width: 50%;
	order: 1;
}

#whynow .l-flx__layout {
	align-items: center;
	gap: 6vw;
}

#whynow h4.heading-ja {
	font-weight: bold;
	font-size: clamp(18px, 3vw, 56px);
	position: relative;
	padding-left: 4%;
}

#whynow h4.heading-ja::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1%;
	height: 100%;
	background: var(--sub-color-p);
	border-radius: 4px;
}

#whynow strong.inner_ttl {
	font-weight: bold;
	font-size: clamp(18px, 2.8vw, 56px);
	text-align: left;
	color: #946be1;
	margin: 0.5rem 0px;
	display: block;
	line-height: 1.7;
}

#whynow .l-flx__layout:nth-child(even) {
	flex-direction: row-reverse;
}


#format h2 {
	color: #655B58;
}

.checklist {
	margin: 1rem 0px;
}

.checklist li {
	line-height: 2;
	position: relative;
	padding: 4px 0px;
	padding-left: 2rem;
}

.checklist li::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background-image: url('images/check.svg');
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#whynow .panel {
	border-radius: 0px 30px 30px 0px;
	padding: 3vw;
}

#whynow .panel h3 {
	font-size: clamp(24px, 2.5vw, 48px);
	margin-bottom: 2rem;
	color: var(--sub-color-p);
}

#whynow .panel p {
	font-size: clamp(16px, 1.5vw, 48px);
	line-height: 2;
}

#whynow .l-flx__layout {
	margin-top: 8rem;
}

.p-btn__wrapper {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-top: 4rem;
	max-width: 80%;
	margin: 0 auto;
	margin-top: 4rem;
}

.p-btn__wrapper .btn {
	max-width: 50%;
	width: 100%;
}

.btn.btn-download {
	border: 2px solid var(--main-color);
	background: #fff;
	color: var(--main-color);
	font-weight: bold;
}

.l-footer {
	background: var(--txt-color);
	color: #fff;
	padding: 4vw var(--l-margin) 2vw;
	font-size: clamp(14px, 1vw, 20px);
}

.l-footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 120rem;
	margin: 0 auto;
	gap: 2rem;
	margin-bottom: 2rem;
}

.l-footer__info {
	display: flex;
	flex-direction: column;
}

.l-footer__logo {
	max-width: 250px;
	margin-bottom: 1rem;
}

.l-footer__address {
	line-height: 1.7;
	font-size: clamp(14px, 1vw, 20px);
}

.l-footer__list {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	line-height: 1.5;
	text-align: left;
	flex-wrap: wrap;
	height: 120px;
	gap: 0.7rem 3rem;
}

.l-footer__list a {
	transition: all 0.3s ease;
}

.l-footer__list a:hover {
	text-decoration: underline;
}

.l-footer__copyright {
	text-align: center;
	margin-top: 2rem;
	font-size: clamp(12px, 0.8vw, 18px);
}

@media screen and (min-width: 1920px) {
a.l-header__link.btn.btn-primary {
    min-height: 6vh;
}
nav.l-header__nav .l-header__list{
	    gap: 2rem;
}
}
@media screen and (max-width: 1920px) {
	#whynow .panel {
		padding: 3vw;
	}
}

@media screen and (max-width: 1920px) {
	.content {
		margin-inline: initial;
		margin: 0px var(--l-margin)
	}
}

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



	a.l-header__link.btn.btn-primary {
        max-width: 540px;
        margin: 0 auto;
        min-height: min(9vh, 64px);
	}
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
	.btn {
		min-height: clamp(48px, 6rem, 64px);
	}

	article.p-lp {
		margin-top: 15vh;
	}

	.container {
		margin: 6rem 0px;
	}

	.p-fv__image-wrapper img {
		max-height: 50rem;
	}



}

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

	.p-list li {
		font-size: 14px;
	}

	#format .panel {
		padding: 2rem;
	}

	#flow .l-flx__layout .panel+.panel::before {
		top: -14%;

		left: 50%;
		transform: translateX(-50%) rotate(90deg);
		;
		-ms-transform: translateX(-50%);

	}

	#flow .l-flx__layout .panel img {
		margin: 0.5rem;
	}

	#award .l-flx__layout {
		max-width: 100%;
	}

	h2.p-section__heading {
		margin-bottom: 1rem;
		font-size: 44px;
	}

	#whynow .l-flx__layout {
		margin-top: 2rem;
	}

	#whynow .l-flx__layout.l-type-right .l-flx__layout__img,
	#whynow .l-flx__layout.l-type-left .l-flx__layout__img {
		border-radius: 30px;
	}

	#whynow .l-flx__layout:nth-child(even) {
		flex-direction: column;
		margin-top: 2rem;
	}

	#whynow .l-flx__layout.l-type-right .l-flx__layout__content,
	#whynow .l-flx__layout.l-type-left .l-flx__layout__content {
		margin: 0px var(--l-margin);
	}

	.pc {
		display: none;
	}

	dl.list-item {
		flex-direction: column;
	}

	dl.list-item dt,
	dl.list-item dd {
		width: 100%;
		padding: 1rem;
	}

	dl.list-item dd {
		padding-top: 0;
	}

	.l-flx__layout {
		flex-direction: column;
		gap: 1.3rem;
		margin: 0px var(--l-margin);
	}

	#message .l-flx__layout__content {
		width: 100%;
		margin: 0;
	}

	.container {
		margin: 10vh 0px;
	}

	#message .l-flx__layout__img {
		width: 100%;
		border-radius: 30px;
		margin-top: 2rem;
	}

	.l-flx__layout.column4>div {
		width: 100%;
	}

	#flow .l-flx__layout .panel {
		padding: 1rem;
	}

	#award .panel {
		width: 100%;
	}

	#whynow .l-flx__layout__img {
		width: 100%;
		border-radius: 30px;
	}

	#whynow .l-flx__layout.l-type-right .l-flx__layout__content {
		max-width: 100%;
		width: 100%;
	}

	#whynow .l-flx__layout.l-type-left .l-flx__layout__content {
		max-width: 100%;
		width: 100%;
	}

	.p-btn__wrapper .btn {
		width: 100%;
		max-width: fit-content;
	}

	.p-btn__wrapper {
		flex-direction: column-reverse;
		align-items: center;
	}

	.p-fv__content {
		max-width: 100%;
		margin: 1rem var(--l-margin) 2rem;
	}

	section.p-fv {
		flex-direction: column;
		gap: 0;
	}

	article.p-lp {
		margin-top: 84px;
	}

	.p-fv__image-wrapper img {
		position: relative;
		max-width: 80vw;
		margin-left: auto;
		display: block;
		max-height: 50vh;
		border-radius: 50px 0px 0px 50px;
	}

	.p-fv__content .btn {
		max-width: 100%;
	}

	p.p-fv__sub-heading.heading-ja {
		font-size: 15px;
	}


}

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


	header{
	height: 64px;
}
	.l-header__nav {
		top: 64px;
	}

	.l-header__nav.is-active {
		height: calc(100vh - 100px);
	}
		.btn {
		min-height: 9vh;
		}
		.l-header__nav {
			width: 100%;
		}

		#award .content {
			margin: 0 var(--l-margin);
		}

		.l-footer__list {
			display: none;
		}

		#award .award-benefits .unit {
			font-size: .8em;

		}

		#award .award-title {
			font-size: 1rem;
		}

		#award .award-inner em {
			font-size: 14px;
		}

		#award .panel img {
			max-width: 24px;
		}

		#award .panel {
			gap: 0.5rem;
			padding: 1rem;
		}

		#whynow strong.why-catch_txt {
			line-height: 1.7;
			font-size: 24px;
		}

		section.p-section {
			padding: 6vw 0px;
		}

		.p-btn__wrapper .btn {
			max-width: 100%;
			font-size: 16px;
		}

		section .p-sub__txt {
			text-align: left;
		}

		.p-btn__wrapper {
			margin: 0;
			max-width: 100%;
			gap: 1rem;
			margin-top: 2rem;
		}
	}