:root {
	--rem-base: 16;
	--contents-inner: 1360;
	--inner-padding-pc: 25;
	--inner-padding-sp: 15;
	--font-weight-Regular: 400;
	--font-weight-Medium: 500;
	--font-weight-SemiBold: 600;
	--font-weight-Bold: 700;
	--font-weight-ExtraBold: 800;
	--font-weight-Black: 900;
	--primary-font-family: "IBM Plex Sans JP", sans-serif;
	--ibm-sans-font-family: "IBM Plex Sans", sans-serif;
	--montserrat-font-family: "Montserrat", sans-serif;
	--ibm-mono-font-family: "IBM Plex Mono", monospace;
	--inter-font-family: "Inter", sans-serif;
	--primary-font-color: #eee;
	--primary-bg-color: #3D23C6;
}

@font-face {
	font-display: swap;
	font-family: "GeneralSans-Regular";
	font-style: normal;
	font-weight: 400;
	src: url("../fonts/GeneralSans-Regular.woff2") format("woff2"), url("../fonts/GeneralSans-Regular.woff") format("woff"), url("../fonts/GeneralSans-Regular.ttf") format("truetype");
}

/* リキッドレイアウト対応 */

html {
	font-size: 16px;
}

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

/* Remove default padding */

ul,
ol {
	padding: 0;
}

/* Remove default margin */

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */

html {
	scroll-behavior: smooth;
}

/* Set core body defaults */

body {
	background-color: #3D23C6;
	background-color: var(--primary-bg-color);
	color: #eee;
	color: var(--primary-font-color);
	font-family: "IBM Plex Sans JP", sans-serif;
	font-family: var(--primary-font-family);
	line-height: 1.5;
	min-height: 100dvh;
	text-rendering: optimizeLegibility;
}

body.is-active {
	overflow: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */

ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */

img {
	-o-object-fit: cover;
	-o-object-position: center;
	display: block;
	height: 100%;
	max-width: 100%;
	object-fit: cover;
	object-position: center;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */

article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */

img:not([alt]) {
	filter: blur(10px);
}

/* フォームリセット */

input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type=checkbox],
input[type=radio] {
	display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* ホバー */

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

a:hover {
	opacity: 0.7;
}

.l-hamburger-contents {
	height: 100%;
	left: 101%;
	min-height: 100vh;
	overflow: auto;
	padding-top: 5rem;
	position: fixed;
	top: 0;
	transition: left 0.3s;
	width: 100%;
	z-index: 9980;
}

.l-hamburger-contents.is-active {
	left: 0;
}

.l-hamburger-contents__menu {
	display: block;
}

.l-hamburger {
	cursor: pointer;
	height: 1.25rem;
	position: relative;
	width: 1.875rem;
	z-index: 9999;
}

.l-hamburger__line {
	background-color: #fff;
	content: "";
	display: block;
	height: 1px;
	position: absolute;
	transition: translate 0.3s, top 0.3s, opacity 0.3s, visibility 0.3s, rotate 0.3s;
	width: 100%;
}

.l-hamburger__line:nth-of-type(1) {
	left: 0;
	top: 0;
}

.l-hamburger__line:nth-of-type(2) {
	top: 50%;
	translate: 0 -50%;
}

.l-hamburger__line:nth-of-type(3) {
	top: 100%;
	translate: 0 -100%;
}

.l-hamburger.is-active .l-hamburger__line:nth-of-type(1) {
	rotate: 45deg;
	top: 50%;
	translate: 0 -50%;
}

.l-hamburger.is-active .l-hamburger__line:nth-of-type(2) {
	opacity: 0;
	visibility: hidden;
}

.l-hamburger.is-active .l-hamburger__line:nth-of-type(3) {
	rotate: -45deg;
	top: 50%;
	translate: 0 -50%;
}

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

.l-header__inner {
	align-items: center;
	display: flex;
	height: inherit;
	justify-content: space-between;
	margin-left: auto;
	margin-right: auto;
	max-width: 1520px;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	width: 100%;
}

.l-header__logo {
	font-family: "Montserrat", sans-serif;
	font-family: var(--montserrat-font-family);
	font-size: 2rem;
	font-weight: 800;
	font-weight: var(--font-weight-ExtraBold);
	letter-spacing: 2%;
	line-height: calc(32 / 32);
}

.l-header__lists {
	display: flex;
	height: inherit;
}

.l-header__list {
	align-items: center;
	display: flex;
	height: inherit;
}

.l-inner {
	margin-left: auto;
	margin-right: auto;
	max-width: calc((1360 + 25 * 2) * 1px);
	max-width: calc((var(--contents-inner) + var(--inner-padding-pc) * 2) * 1px);
	padding-left: calc(25 * 1px);
	padding-left: calc(var(--inner-padding-pc) * 1px);
	padding-right: calc(25 * 1px);
	padding-right: calc(var(--inner-padding-pc) * 1px);
	width: 100%;
}

.p-contact {
	background-color: rgba(4, 11, 91, 0.7);
	height: 100%;
	left: 0;
	min-height: 100vh;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: opacity 0.3s, visibility 0.3s;
	visibility: hidden;
	width: 100%;
	z-index: 9999;
}

.p-contact.is-active {
	opacity: 1;
	visibility: visible;
}

.p-contact__wrap {
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	background-color: rgba(61, 35, 198, 0.5);
	border: 1px solid #7A77BC;
	border-radius: 0.8125rem;
	box-shadow: 10px 10px 49px 0 rgba(21, 14, 85, 0.5);
	left: 50%;
	max-height: 80vh;
	max-width: 600px;
	overflow-y: auto;
	padding: 1.5rem;
	position: absolute;
	scale: 0.6;
	top: 50%;
	transition: scale 0.3s;
	translate: -50% -50%;
	width: 100%;
}

.p-contact__wrap.is-active {
	scale: 1;
}

.p-contact-items {
	margin-top: 2rem;
}

.p-contact__title {
	align-items: center;
	color: #fff;
	display: flex;
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font-family);
	font-size: 15px;
	font-weight: 700;
	font-weight: var(--font-weight-Bold);
	justify-content: space-between;
	line-height: 150%;
}

.p-contact__close {
	cursor: pointer;
	display: block;
	height: 12px;
	position: relative;
	width: 12px;
}

.p-contact__close::before,
.p-contact__close::after {
	background-color: #eee;
	content: "";
	height: 2px; /* 線の太さ */
	left: 50%;
	position: absolute;
	top: 50%;
	transform-origin: center;
	width: 100%;
}

.p-contact__close::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.p-contact__close::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

.p-contact__wrap::-webkit-scrollbar {
	width: 8px;
}

.p-contact__wrap::-webkit-scrollbar-track {
	background: transparent;
}

.p-contact__wrap::-webkit-scrollbar-thumb {
	background: #7A77BC;
	border-radius: 10px;
}

.p-contact__wrap::-webkit-scrollbar-thumb:hover {
	background: #999;
}

.js-fade-in {
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition-delay: 0.3s;
}

.js-fade-in.is-active {
	opacity: 1;
	transform: translateY(0);
}

.cf-turnstile {
	opacity: 0;
	transform: translateY(-20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition-delay: 0.3s;
}

.cf-turnstile.is-active {
	opacity: 1;
	transform: translateY(0);
}

.js-fade-up {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.6s ease, transform 0.6s ease;
	transition-delay: 0.3s;
}

.js-fade-up.is-active {
	opacity: 1;
	transform: translateY(0);
}

.p-copyright {
	display: block;
	font-family: "GeneralSans-Regular";
	font-size: 0.75rem;
	letter-spacing: 0.2%;
	line-height: 120%;
	margin-top: 3rem;
}

.p-fv {
	height: 100dvh;
	overflow-x: hidden;
	padding-top: 2.2222222222vw;
	position: relative;
	width: 100%;
	z-index: 0;
}

.p-fv::before {
	aspect-ratio: 1458/820;
	background-image: url(../images/fv-bg-pc.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	content: "";
	height: 100%;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.p-fv__inner {
	margin-left: auto;
	margin-right: auto;
	max-width: 1520px;
	padding-left: 2.5rem;
	padding-right: 2.5rem;
	width: 100%;
}

.p-fv__logo {
	font-family: "Montserrat", sans-serif;
	font-family: var(--montserrat-font-family);
	font-size: 2rem;
	font-weight: 800;
	font-weight: var(--font-weight-ExtraBold);
	letter-spacing: 2%;
	line-height: calc(32 / 32);
}

.p-fv__contents {
	display: flex;
	flex-direction: column;
	height: 91.4666dvh;
	justify-content: space-around;
	padding-top: 2.9166666667vw;
}

.p-fv__jp-text {
	font-size: 0.75rem;
	line-height: 172%;
	max-width: 16.875rem;
	width: 100%;
}

.p-fv__title-box {
	margin-top: 2.0625rem;
	position: relative;
}

.p-fv__arrow {
	max-width: 28.125rem;
	position: absolute;
	right: 2.5rem;
	top: -1rem;
	translate: 0 -50%;
	width: 100%;
}

.p-fv__arrow img {
	-o-object-fit: contain;
	aspect-ratio: 450/347;
	object-fit: contain;
}

.p-fv__title {
	font-family: "IBM Plex Sans", sans-serif;
	font-family: var(--ibm-sans-font-family);
	font-size: 15rem;
	font-weight: 600;
	font-weight: var(--font-weight-SemiBold);
	letter-spacing: -2.2%;
	line-height: calc(198 / 240);
}

.p-fv__title-wrap {
	align-items: flex-end;
	display: flex;
	gap: 2.125rem;
}

.p-fv__contact-box {
	margin-bottom: 0.5rem;
}

.p-fv__subtitle {
	font-family: "IBM Plex Sans", sans-serif;
	font-family: var(--ibm-sans-font-family);
	font-size: 1.5rem;
	font-weight: 500;
	font-weight: var(--font-weight-Medium);
	letter-spacing: 0.8%;
	line-height: 134%;
}

.p-fv__contact-link {
	-webkit-text-decoration: underline;
	cursor: pointer;
	display: inline-block;
	font-family: "IBM Plex Mono", monospace;
	font-family: var(--ibm-mono-font-family);
	font-size: 1rem;
	font-weight: 500;
	font-weight: var(--font-weight-Medium);
	letter-spacing: 9%;
	line-height: 150%;
	margin-top: 1.25rem;
	position: relative;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.p-fv__contact-link::after {
	aspect-ratio: 1/1;
	background-image: url(../images/arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	position: absolute;
	right: -1.125rem;
	top: 50%;
	translate: 0 -50%;
	width: 0.5625rem;
}

.c-contact__text {
	width: 100%;
}

.c-contact__text:focus {
	box-shadow: none;
	outline: none;
}

.c-contact__checkbox input + span,
.c-contact__consentCheckbox + span {
	cursor: pointer;
	display: inline-block;
	position: relative;
}

.c-contact__checkbox input + span::before,
.c-contact__consentCheckbox + span::before {
	-webkit-transform: translateY(-50%);
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.c-contact__checkbox input + span::after,
.c-contact__consentCheckbox + span::after {
	content: "";
	display: block;
	opacity: 0;
	position: absolute;
}

.c-contact__checkbox input:checked + span::after,
.c-contact__consentCheckbox:checked + span::after {
	opacity: 1;
}

.c-contact__textarea {
	width: 100%;
}

.c-contact__textarea:focus {
	box-shadow: none;
	outline: none;
}

.c-contact + .c-contact {
	margin-top: 8px;
}

.c-contact__top,
.c-contact__top label {
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font-family);
	font-size: 12px;
	font-weight: 500;
	font-weight: var(--font-weight-Medium);
	letter-spacing: 0.8%;
	line-height: 150%;
}

.c-contact__bottom {
	margin-top: 10px;
}

.c-contact__text,
.c-contact__textarea,
.c-contact__tel,
.c-contact__mail,
.c-contact__checkbox input + span {
	color: #eee;
	font-size: 12px;
	font-weight: 500;
	font-weight: var(--font-weight-Medium);
	letter-spacing: 0.8%;
	line-height: 150%;
}

.c-contact__text,
.c-contact__textarea,
.c-contact__tel,
.c-contact__mail {
	background-color: rgba(238, 238, 238, 0.1);
	border: 1px solid rgba(238, 238, 238, 0.4);
	border-radius: 8px;
	padding: 0.6875rem 0.9375rem;
	width: 100%;
}

.c-contact__text:focus,
.c-contact__textarea:focus,
.c-contact__mail:focus {
	border: 1px solid rgba(238, 238, 238, 0.6);
}

.c-contact__checkbox input + span {
	margin: 0 0.625rem 0;
	padding: 0 0 0 2.125rem;
}

.c-contact__checkbox span {
	display: block;
}

.c-contact__checkbox span:not(:first-of-type) {
	margin-top: 0.5rem;
}

.c-contact__checkbox input + span::before,
.c-contact__consentCheckbox + span::before {
	background: rgba(#eee, 0.1);
	background: rgba(var(--primary-font-color), 0.1);
	height: 1em;
	width: 1em;
}

.c-contact__checkbox input + span::after,
.c-contact__consentCheckbox + span::after {
	-webkit-transform: translateY(-50%) rotate(-45deg);
	border-bottom: 3px solid rgba(#eee, 0.8);
	border-bottom: 3px solid rgba(var(--primary-font-color), 0.8);
	border-left: 3px solid rgba(#eee, 0.8);
	border-left: 3px solid rgba(var(--primary-font-color), 0.8);
	height: 0.6em;
	left: 0;
	margin-top: -0.2em;
	opacity: 0;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	transition: all 0.3s ease 0s;
	width: 1em;
}

.c-contact__radio .wpcf7-list-item {
	display: block;
}

.c-contact__radio .wpcf7-list-item {
	margin-top: 0.625rem;
}

.c-contact__radio .wpcf7-list-item.first {
	margin: 0;
}

.c-contact__radio .wpcf7-list-item-label {
	cursor: pointer;
	display: flex;
}

/* チェック前のボタン */

.c-contact__radio .wpcf7-list-item-label::before {
	background: #F7F7F7;
	border: 1px solid #DADADA;
	border-radius: 100%; /* ラジオボタンっぽく丸くする */
	content: "";
	height: 0.875rem;
	margin-bottom: auto;
	margin-right: 0.5em;
	margin-top: auto;
	width: 0.875rem;
}

/* チェック後のボタン */

.c-contact__radio input[type=radio]:checked + .wpcf7-list-item-label::before {
	background-color: #eee;
	background-color: var(--primary-font-color); /* チェック後の中心の色 */
	box-shadow: inset 0 0 0 2px #fff; /* 中心の色のスタイル */
}

.c-contact__textarea {
	height: 7.8125rem;
}

.c-contact__consentCheckbox + span::before {
	background: rgba(#eee, 0.1);
	background: rgba(var(--primary-font-color), 0.1);
	height: 1.125rem;
	width: 1.125rem;
}

.c-contact__consentCheckbox + span::after {
	width: 1rem;
}

.c-contact__consentCheckbox + span {
	margin: 0;
}

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

.c-contact__consent {
	-webkit-text-decoration: underline;
	font-size: 0.875rem;
	letter-spacing: 0.12em;
	line-height: calc(20 / 14);
	text-decoration: underline;
}

.c-contact__consent a {
	-webkit-text-decoration: underline;
	text-decoration: underline;
}

.c-contact__submit {
	background-color: #FE5D29;
	border-radius: 70px;
	color: #eee;
	display: block;
	font-family: "Inter", sans-serif;
	font-family: var(--inter-font-family);
	font-size: 15px;
	font-weight: 500;
	font-weight: var(--font-weight-Medium);
	line-height: 150%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	padding: 0.5rem 1.5rem;
	text-align: center;
}

.c-contact__thanks-text {
	margin-top: 1.5rem;
}

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

.wpcf7-spinner {
	display: none;
}

.c-contact__thanks-text {
	font-size: 1rem;
}

.cf-turnstile {
	margin-top: 2rem;
}

.u-sp {
	display: none;
}

.u-paginate-links {
	align-items: center;
	display: flex;
	justify-content: center;
}

.prev {
	background-image: url(../images/prev-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
}

.page-numbers {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-left: 0.25rem;
	margin-right: 0.25rem;
}

.next {
	background-image: url(../images/next-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: inline-block;
}

.u-svg-def {
	display: none;
}

@media (max-width: 1360px) {

html {
	font-size: calc(16 / 1360 * 100vw);
	font-size: calc(16 / var(--contents-inner) * 100vw);
}

}

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

html {
	font-size: 16px;
}

.l-header {
	height: 4.0625rem;
}

.l-header__inner {
	padding-left: 1.375rem;
	padding-right: 1.375rem;
}

.l-header__lists {
	display: none;
}

.l-inner {
	padding-left: calc(15 * 1px);
	padding-left: calc(var(--inner-padding-sp) * 1px);
	padding-right: calc(15 * 1px);
	padding-right: calc(var(--inner-padding-sp) * 1px);
}

.p-contact__wrap {
	width: calc(100% - 6.25rem);
}

.p-copyright {
	margin-top: 2.5rem;
}

.p-fv::before {
	aspect-ratio: 1017/572;
	background-image: url(../images/fv-bg.png);
	height: 35.75rem;
	left: auto;
	left: initial;
	right: -80px;
	top: -78px;
	width: 63.5625rem;
}

.p-fv__inner {
	max-width: 37.5rem;
	padding-left: 1.375rem;
	padding-right: 1.375rem;
}

.p-fv__contents {
	height: 100%;
	margin-top: 1.4375rem;
}

.p-fv__jp-text {
	display: block;
	font-size: 0.6875rem;
	margin-left: 0.25rem;
	margin-top: 1.4375rem;
}

.p-fv__title-box {
	margin-top: -1.25rem;
	max-width: 28.125rem;
	width: 100%;
}

.p-fv__arrow {
	margin-bottom: 1.25rem;
	margin-left: 2.8125rem;
	max-width: 25rem;
	position: static;
	position: initial;
	rotate: 340deg;
	translate: 0 0;
}

.p-fv__title {
	font-size: 5.625rem;
	line-height: calc(84 / 90);
}

.p-fv__title-wrap {
	display: block;
}

.p-fv__contact-box {
	margin-bottom: 0;
}

.p-fv__subtitle {
	font-size: 1.3125rem;
	margin-left: auto;
	margin-right: 0.9375rem;
	margin-top: 1.625rem;
	width: -moz-fit-content;
	width: fit-content;
}

.p-fv__contact-link {
	-moz-text-align-last: right;
	display: block;
	margin-right: 1rem;
	margin-top: 1.125rem;
	text-align-last: right;
}

.p-fv__arrow {
	max-width: 300px;
}

.p-fv__title-box {
	margin-top: -1.875rem;
}

.p-fv__title {
	font-size: 4.375rem;
}

.p-fv__subtitle {
	font-size: 1.125rem;
	margin-top: 1.25rem;
}

.p-fv__jp-text {
	margin-top: 1.125rem;
}

.p-fv__contact-link {
	margin-top: 0.3125rem;
}

.p-copyright {
	margin-top: 0.3125rem;
}

.c-contact__thanks-text {
	font-size: 0.75rem;
}

.u-pc {
	display: none;
}

}

@media (max-width: 375px) {

html {
	font-size: 4.2666666667vw;
}

}


/*# sourceMappingURL=style.css.map */
