@charset "UTF-8";
:root {
	--maincolor_a_1: #3e9ef7;
	--maincolor_a_2: #7f60fc;
	--linear01: linear-gradient(
		to bottom,
		var(--maincolor_a_1),
		var(--maincolor_a_2)
	);
	--maincolor_b_1: #f591eb;
	--maincolor_b_2: #e049a3;
	--linear02: linear-gradient(
		to bottom,
		var(--maincolor_b_1),
		var(--maincolor_b_2)
	);
}

#wraper {
	width: 100vw;
	overflow-x: hidden;
}
a {
	text-decoration: none;
}
input[type="text"],
button,
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="submit"],
input[type="button"],
label,
button,
select {
	cursor: pointer;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	box-sizing: border-box;
}
body {
	font-family: YuGothic, "Yu Gothic medium", "Noto Sans JP", sans-serif;
	font-weight: 500;
	font-style: normal;
	line-height: 1.5;
	background: #f7faff;
}

ul {
	list-style: none;
}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}
/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}
del {
	text-decoration: line-through;
}
abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.mon,
.mon * {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
}

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}
input,
select {
	vertical-align: middle;
}
img {
	max-width: 100%;
}
* {
	box-sizing: border-box;
}

#wraper {
	width: 100vw;
	overflow-x: hidden;
}

.w1220 {
	max-width: 1220px;
	margin: auto;
	width: 82%;
}

@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}

	.header__burger {
		display: none !important;
	}

	#wraper {
		min-width: 1058px;
	}
}

.sp_cont {
	display: none;
}

.header {
	background-color: #ffffff;
	position: sticky;
	top: 0;
	z-index: 999;
}

.header.headFixed {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
}
@media screen and (min-width: 769px) {
	.header {
		padding: 12px 0;
	}
}
@media screen and (max-width: 768px) {
	.header {
		padding: 8px 0;
	}
}
.header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
@media screen and (min-width: 769px) {
	.header .container {
		gap: 40px;
	}
}
@media screen and (max-width: 768px) {
	.header .container {
		gap: 16px;
	}
}
.header h1 {
	display: block;
	width: 170px;
}
.header__burger {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition-property: gap;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}
.header__burger span {
	width: 40px;
	height: 4px;
	background-color: #000000;
	transition-property: opacity, transform;
	transition-duration: 0.3s;
	transition-timing-function: ease-in-out;
}
.header__burger.open {
	gap: 0;
}
.header__burger.open span:nth-child(1) {
	transform: rotate(-30deg) translateY(4px);
}
.header__burger.open span:nth-child(2) {
	opacity: 0;
}
.header__burger.open span:nth-child(3) {
	transform: rotate(30deg) translateY(-4px);
}

@media screen and (max-width: 1155px) {
	.header__nav ul li a {
		font-size: 12px;
	}
}

@media screen and (min-width: 769px) {
	.header__nav {
		margin-left: auto;
	}
	.header__nav ul {
		display: flex;
		gap: 24px;
	}
	.header__nav ul li a {
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 700;
		padding-bottom: 0.2em;
		display: block;
		position: relative;
		color: #000000;
		line-height: 44px;
	}
	.header__nav ul li:last-child a {
		display: inline-block;
		background-color: #ededed;
		padding: 0px 30px;
		border-radius: 44px;
		transition: opacity 0.3s;
	}
	.header__nav ul li:last-child a:hover {
		opacity: 0.6;
	}
	.header__nav ul li:not(:last-child) a::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		width: 0;
		height: 2px;
		background-color: #e049a3;
		transition-property: width;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
	}

	.header__nav ul li:not(:last-child) a:hover::after {
		width: 100%;
	}
}
@media screen and (max-width: 768px) {
	.header__nav {
		z-index: 100;
		position: fixed;
		width: 100%;
		top: var(--header-height);
		transition-property: height;
		transition-duration: 0.3s;
		transition-timing-function: ease-in-out;
		left: 0;
		right: 0;
		height: 0;
		overflow: hidden;
	}
	.header__nav:not(.open) + .header__nav__cover {
		opacity: 0;
		pointer-events: none;
	}
	.header__nav ul {
		display: flex;
		flex-direction: column;
		padding: 0 16px 10px;
		background-color: #ffffff;
	}
	.header__nav ul li:not(:first-child) {
		border-top: 1px solid #e8e8e8;
	}
	.header__nav ul li a {
		display: block;
		font-family: "Noto Sans JP", sans-serif;
		font-weight: 700;
		padding: 0.9em 0;
		color: #000000;
		font-size: 16px;
	}
}
@media screen and (min-width: 769px) {
	.header__nav__form {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.header__nav__form {
		background: var(--linear02);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
}
@media screen and (min-width: 769px) {
	.header__nav__cover {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.header__nav__cover {
		z-index: 50;
		position: fixed;
		inset: var(--header-height) 0 0;
		width: 100%;
		height: calc(100vh - var(--header-height));
		height: calc(100dvh - var(--header-height));
		background-color: rgba(0, 0, 0, 0.3);
		transition-property: opacity;
		transition-duration: 0.3s;
	}
}

@media screen and (min-width: 1155px) and (max-width: 1252px) {
	.header__nav li {
		font-size: 14px;
	}
}

.topBtn02.none {
	opacity: 0;
}
.topBtn02 {
	opacity: 1;
	position: fixed;
	bottom: 34px;
	right: 30px;
	z-index: 10;
}
.topBtn02 a {
	padding: 20px 10px;
	background: #fff;
	border-radius: 50%;
	border: 1px solid #5F7FF9;
	color: #ffffff;
	font-size: 20px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	display: block;
	font-weight: bold;
	width: 60px;
    height: 60px;
}
.topBtn02 a::before {
    content: "";
    width: 12px;
    height: 12px;
    border-top: 2px solid #5F7FF9;
    border-right: 2px solid #5F7FF9;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%) rotate(-45deg);
}
.topBtn02 a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 768px) {
	.topBtn02 {
		bottom: 80px;
        right: 15px;
	}
	.topBtn02 a {
		width: 50px;
		height: 50px;
	}
	.topBtn02 a::before {
        width: 9px;
        height: 9px;
        border-width: 1px;
    }
}

.mainImage {
	width: 100%;
	background: url("../img/mainImage_2506.png") center;
	background-size: cover;
	height: auto;
	aspect-ratio: 1/0.446;
	position: relative;
	/* margin-bottom: 80px; */
}

.mainText {
	background: #ffffff;
	position: absolute;
	display: flex;
	padding: 35px;
	font-weight: bold;
	font-size: 20px;
	text-align: center;
	justify-content: space-between;
	left: 4%;
	bottom: -60px;
	width: 65%;
	line-height: 1.3;
}

.mainText li {
	background: var(--linear01);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: calc(100% / 3);
	position: relative;
}

.mainText li:not(:last-child):after {
	content: " ";
	width: 60px;
	height: 2px;
	position: absolute;
	right: -30px;
	transform: rotate(-65deg);
	top: 35px;
	background: var(--linear01);
	opacity: 20%;
}

.mainText li span {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 28px;
}

.mainText li span.pink_grad-1 {
	background-image: url("../img/pink_grad-1.jpg");
	background-size: cover;
	background-position: top;
	-webkit-text-stroke: 0.2px #ec71cb;
}

.mainText li span.pink_grad-2 {
	background-image: url("../img/pink_grad-2.jpg");
	background-size: cover;
	background-position: top;
}

.mainForm {
	position: absolute;
	width: 19.5%;
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	top: 0;
	right: 7.5%;
	padding: 20px;
}

.fotmTitleInput01 .textBox {
	width: 100%;
	border: 1px #d3d3d3 solid;
	background: #ffffff;
	display: block;
	height: 30px;
	border-radius: 4px;
	padding: 8px;
}

.formMainTitle {
	text-align: center;
	padding-bottom: 8px;
	border-bottom: 1px solid #ffffff;
	font-size: min(1.5vw, 22px);
	color: #ffffff;
	font-weight: bold;
	margin-bottom: 10px;
}

.formMainTitle small {
	display: block;
	font-size: min(3.8vw, 16px);
}

.fotmTitle {
	padding-top: 15px;
	font-size: min(1vw, 12px);
	color: #ffffff;
	margin-bottom: 4px;
}

.fotmTitle .req {
	color: #d90303;
	display: inline-block;
	margin-left: 8px;
}

.fotmTitleInput02 {
	font-size: min(0.8vw, 10px);
	color: #ffffff;
	margin-top: 10px;
}

.fotmTitleInput02 a {
	text-decoration: underline;
	color: #ffffff;
}

.fotmTitleInput02 a {
	text-decoration: underline;
	color: #ffffff;
	transition: 0.5s;
}

@media screen and (min-width: 769px) {
	.fotmTitleInput02 a:hover {
		opacity: 0.8;
	}
}

#portal_signup_form {
	width: 100%;
	padding-top: 50%;
}
@media screen and (max-width: 768px) {
	#portal_signup_form {
		width: 100%;
		padding-top: 0%;
	}
}

.mainFormCont {
	width: 100%;
}

.btn .btnCont {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--linear02);
	height: 50px;
	font-weight: bold;
	color: #ffffff;
	border-radius: 100px;
	position: relative;
	font-size: min(1.25vw, 16px);
	width: 100%;
	max-width: 450px;
	text-align: center;
	padding-left: 20px;
	transition: 0.5s;
	margin-top: 20px;
}

.btn .sub {
	display: block;
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

.btn .btnCont:hover {
	opacity: 0.8;
}

.btn .btnCont span {
	font-size: min(1vw, 12px);
	display: block;
	padding: 8px 10px;
	border-radius: 100px;
	background: #ffffff;
	position: absolute;
	left: 5px;
	top: 5px;
	width: 40px;
	height: 40px;
	line-height: 1em;
}

.btn .btnCont span small {
	background: var(--linear02);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.formUd {
	text-align: center;
	margin-top: 15px;
	font-size: min(1vw, 12px);
	color: #ffffff;
	text-decoration: underline;
}

.formUd a {
	color: #ffffff;
	transition: 0.5s;
}

@media screen and (min-width: 769px) {
	.formUd a:hover {
		opacity: 0.8;
	}
}

@media screen and (max-width: 1050px) {
	.formMainTitle {
		margin-bottom: 0;
	}

	.fotmTitle {
		padding-top: 5px;
	}

	.formBtn .btnCont {
		height: 40px;
		margin-top: 10px;
	}

	.formBtn .btnCont span {
		font-size: min(0.7vw, 10px);
		padding: 7px 5px;
		left: 5px;
		top: 5px;
		width: 30px;
		height: 30px;
	}

	.mainText li span {
		font-size: 2vw;
	}

	.mainText li {
		font-size: 1.5vw;
	}
}
.spMain {
	display: none;
}

.sec {
	padding: 100px 0;
}

.topBtn.none {
	opacity: 0;
}

.topBtn {
	opacity: 1;
	position: fixed;
	top: calc(50% - 90px);
	right: 0;
	z-index: 10;
}

.topBtn a {
	padding: 20px 10px;
	background: var(--linear02);
	border-radius: 20px 0 0 20px;
	color: #ffffff;
	font-size: 20px;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	display: block;
	font-weight: bold;
}

.topBtn a:hover {
	opacity: 0.8;
}

@media screen and (max-width: 850px) {
	.spMain {
		display: block;
	}

	.spMain img {
		width: 100%;
	}

	.mainImage {
		width: 100%;
		background: none;
		background-size: cover;
		height: auto;
		aspect-ratio: inherit;
		position: relative;
		margin-bottom: 30px;
	}

	.mainText {
		position: initial;
		display: flex;
		padding: 10px;
		font-weight: bold;
		text-align: center;
		justify-content: space-between;
		left: inherit;
		bottom: inherit;
		width: 100%;
		margin-top: 30px;
	}

	.mainForm {
		position: initial;
		width: 82%;
		display: block;
		align-items: center;
		height: 100%;
		top: initial;
		right: initial;
		padding: 20px 5%;
		background: var(--linear01);
		margin: auto;
		/* margin-top: 20px; */
	}

	.formMainTitle {
		font-size: 20px;
	}

	.fotmTitle {
		font-size: 12px;
	}

	.fotmTitleInput02 {
		font-size: 10px;
	}

	.formBtn .btnCont span {
		font-size: 12px;
		padding: 7px 5px;
		left: 5px;
		top: 5px;
		width: 40px;
		height: 40px;
	}

	.formBtn .btnCont {
		height: 50px;
		margin-top: 10px;
		font-size: 16px;
		max-width: 100%;
	}

	.formUd {
		font-size: 12px;
	}

	.mainText li span {
		font-size: 14px;
	}

	.mainText li {
		font-size: 12px;
		line-height: 1.2;
	}

	.mainText li:not(:last-child):after {
		width: 30px;
		right: -15px;
		top: 21px;
	}

	.sec {
		padding: 40px 0;
	}

	.topBtn {
		width: 100%;
		left: 0;
		bottom: 0;
		top: inherit;
		right: inherit;
	}

	.topBtn a {
		-ms-writing-mode: initial;
		writing-mode: initial;
		justify-content: center;
		display: flex;
		font-size: 24px;
		align-items: center;
		border-radius: 0;
		height: 75px;
		width: 100%;
	}

	.spMainCont {
		background: url("../img/spBg_2506.png") top center/cover;
		background-repeat: no-repeat;
	}
}

.sec01 {
	background: url("../img/bg01.png") left;
	background-repeat: no-repeat;
	position: relative;
}

.sec01_box01 {
	width: 595px;
}

.sec01_box02 {
	width: calc(100% - 640px);
}

.p_rel {
	position: relative;
}

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

.secTitle {
	position: relative;
	padding-left: 60px;
	font-weight: bold;
	font-size: 40px;
	line-height: 1.45em;
	margin-bottom: 50px;
}

.secTitle small {
	font-size: 12px;
	display: block;
	line-height: 1em;
}

.secTitle small span {
	font-size: 16px;
	display: inline-block;
	margin-right: 10px;
	background: var(--linear01);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: normal;
	line-height: 1em;
	font-style: italic;
}

.secTitle_img {
	position: absolute;
	top: 0;
	left: 0;
}

.baseText {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.8em;
}

.sec01TextWrap {
	position: absolute;
	left: 40px;
	bottom: -35%;
}

.sec01Text {
	font-weight: normal;
	position: relative;
}

.sec01Text span {
	opacity: 0.16;
	font-size: 80px;
	font-style: italic;
	background: var(--linear02);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sec01obj_a {
	position: absolute;
	left: -140px;
	top: 0;
}

.sec01Text:after {
	content: " ";
	clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
	position: absolute;
	display: block;
	height: 110px;
	width: 50vw;
	top: 0;
	left: -48vw;
	background: var(--linear01);
}

.sec01obj_b {
	position: absolute;
	right: -100px;
	top: 0;
}

.secTitle .text {
	font-size: 16px;
	position: absolute;
	bottom: -10px;
	left: 400px;
}

.subText {
	font-size: 12px;
	color: #979797;
	font-weight: bold;
}

.spImg01 {
	display: none;
}

@media screen and (max-width: 1029px) {
	.sec01Text span {
		font-size: 7.5vw;
	}
}

@media screen and (max-width: 950px) {
	.spImg01 {
		display: block;
		margin: 30px 0;
	}

	.sec01_box02 {
		display: none;
	}

	.sec01_box01 {
		width: 100%;
	}

	.sec01Content {
		display: block;
	}

	.secTitle {
		padding-left: 50px;
		font-size: 32px;
		margin-bottom: 30px;
	}

	.secTitle small span,
	.secTitle small {
		font-size: 12px;
	}

	.secTitle_img {
		width: 40px;
	}

	.baseText {
		font-size: 14px;
	}

	.sec01obj_b {
		position: absolute;
		right: inherit;
		top: 70px;
		left: -180px;
	}

	.sec01TextWrap {
		position: initial;
		margin-top: 30px;
	}

	.sec01Text:after {
		height: 55px;
		left: -49.5vw;
	}

	.sec01obj_a {
		left: -80px;
		top: 10px;
		width: 160px;
	}
}

.sec02 {
	position: relative;
	overflow: hidden;
}

.sec02List li {
	height: 340px;
	position: relative;
}

.sec02List li:after {
	content: " ";
	position: absolute;
	height: 90%;
	width: 97vw;
	top: -30px;
	background: #ffffff;
	z-index: 0;
	display: block;
}

.sec02List li:nth-child(odd):after {
	right: 0;
	clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.sec02List li:nth-child(even):after {
	left: 0;
	clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
}

.sec02List--cont {
	position: relative;
	padding-left: 450px;
	z-index: 3;
	height: 100%;
	display: flex;
	align-items: center;
}

.sec02List--cont_Img {
	position: absolute;
	left: 0;
	top: 0;
	line-height: 0;
}

.pt02 .sec02List--cont_Img {
	position: absolute;
	left: 10px;
}

.sec02List--cont_title {
	position: relative;
	margin-bottom: 20px;
}

.sec02List--cont_title .textWrap .w1371 {
	@media screen and (min-width: 1372px) {
		display: none;
	}
}

.sec02List--cont_title .eng {
	position: absolute;
	left: -100px;
	top: -60px;
	background: var(--linear02);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 72px;
	font-style: italic;
	opacity: 0.16;
	font-weight: normal;
}

.textWrap {
	font-size: 32px;
}

.textWrap small {
	font-size: 24px;
	display: inline-block;
	margin-left: 30px;
	background: var(--linear02);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.sec02obj_a {
	position: absolute;
	right: -100px;
	top: 40px;
	transform: rotateY(180deg);
	z-index: 1;
}

.sec02obj_b {
	position: absolute;
	right: 100px;
	bottom: 40px;
	transform: rotateY(180deg);
	z-index: 1;
}

.sec02obj_c {
	position: absolute;
	right: 200px;
	bottom: 0;
	transform: rotateY(180deg);
	z-index: 1;
}

.baseText.mb0 {
	margin-bottom: 0;
}

.baseText .check {
	display: inline-block;
	margin-right: 10px;
}

.sec02List--cont .list p {
	position: relative;
	padding-left: 1.5em;
}

.sec02List--cont .list .num {
	position: absolute;
	top: 0;
	left: 0;
}

@media screen and (max-width: 950px) {
	.sec02 .secTitle {
		margin: auto;
		width: 100%;
	}

	.secTitle .text {
		font-size: 14px;
		position: initial;
		display: block;
		text-align: center;
		line-height: 1.5em;
		margin-top: 30px;
		margin-bottom: 30px;
		margin-left: -50px;
	}

	.sec02List--cont {
		position: relative;
		padding: 0;
		z-index: 3;
		height: 100%;
		display: block;
	}

	.sec02List--cont_Img {
		position: inherit;
		left: 0;
		top: 0;
		line-height: 0;
		text-align: center;
		margin-bottom: 30px;
	}

	.sec02List li {
		height: auto;
		position: relative;
		padding: 30px 0;
	}

	.sec02List--cont_title .eng {
		left: -5%;
		top: -30px;
		font-size: 48px;
	}

	.textWrap {
		font-size: 24px;
	}

	.textWrap small {
		font-size: 18px;
		display: block;
		margin-left: 0;
	}

	.sec02List li:after {
		content: " ";
		position: absolute;
		height: 30%;
		width: 97vw;
		top: initial;
		background: #ffffff;
		z-index: 0;
		display: block;
		bottom: 10%;
	}

	.pt02 .sec02List--cont_Img,
	.pt03 .sec02List--cont_Img {
		position: initial;
	}

	.sec02obj_a {
		right: -180px;
		top: 30%;
	}

	.sec02obj_b {
		position: absolute;
		right: initial;
		bottom: 70%;
		transform: rotateX(180deg);
		left: -120px;
	}

	.sec02obj_c {
		position: absolute;
		right: initial;
		bottom: 65%;
		transform: rotateY(0);
		z-index: 1;
		left: -160px;
	}
}

.cvSec {
	background: var(--linear01);
	color: #ffffff;
	text-align: center;
	padding: 60px 0;
}

.btn.pt02 .btnCont {
	height: 80px;
	font-size: 32px;
	padding-left: 40px;
	display: inline-flex;
}

.btn.pt02 .sub {
	display: block;
	position: absolute;
	z-index: 3;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
}

.btn.pt02 .btnCont span {
	font-size: 18px;
	display: block;
	padding: 8px 10px;
	border-radius: 100px;
	background: #ffffff;
	position: absolute;
	left: 10px;
	top: 10px;
	width: 60px;
	height: 60px;
	line-height: 1em;
}

.cvTitle {
	margin-bottom: 30px;
	font-size: 48px;
	padding-bottom: 10px;
	border-bottom: 1px solid #ffffff;
	width: 940px;
	margin: 0 auto;
}

.cvText01 {
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 1px solid #ffffff;
	margin-bottom: 20px;
	font-size: 32px;
	font-weight: bold;
}

.cvText02 {
	width: 920px;
	margin: 0 auto 20px;
	margin-bottom: 20px;
	font-size: 20px;
	font-weight: bold;
	text-align: left;
	text-indent: -1em;
    padding-left: 1em;
	padding-top: 20px;
}

@media screen and (max-width: 900px) {
	.cvTitle {
		margin-bottom: 20px;
		font-size: 32px;
		width: auto;
	}

	.cvText01 {
		display: inline;
		font-size: 20px;
		line-height: 2em;
	}

	.cvText02 {
		font-size: 14px;
		width: auto;
		padding-top: 0;
	}

	.btn.pt02 .btnCont {
		font-size: 24px;
	}

	.cvSec .w1220 {
		width: 90%;
	}
}

@media screen and (min-width: 769px) {
	.f_table .sp {
		display: flex !important;
	}
}

@media screen and (min-width: 901px) {
	.f_table .sp {
		display: none !important;
	}
}

.f_table {
	text-align: center;
	padding-top: 30px;
	position: relative;
	z-index: 3;
	text-align: -webkit-center;
}

.f_table_box {
	display: flex;
	justify-content: center;
	width: 810px;
}

.f_table_box .table_right img,
.f_table_box .table_left img {
	width: 100%;
}

.sec03 {
	position: relative;
	background-image: url(../img/bg02.png);
	background-size: 100%;
	background-position: center 100px;
	background-repeat: no-repeat;
	overflow: hidden;
}

.sec03_obj01 {
	position: absolute;
	left: -150px;
	top: 250px;
}

.sec03_obj02 {
	position: absolute;
	right: -100px;
	top: 350px;
	transform: rotateY(180deg);
}

.sec03_obj03 {
	position: absolute;
	left: 80px;
	top: 800px;
}

.sec03Cont {
	background-image: url("../img/bg03.png");
	background-position: left center;
	background-repeat: no-repeat;
	position: relative;
}

.sec03List li {
	position: relative;
	padding-left: 530px;
	display: flex;
	align-items: center;
	height: 300px;
}

.sec03List li:not(:last-child) {
	margin-bottom: 110px;
}

.sec03List li.pt02 {
	padding-left: 580px;
}

.sec03List li.pt03 {
	padding-left: 630px;
}

.sec03List__Title {
	font-size: 32px;
	margin-bottom: 30px;
}

.baseText .textObj {
	background: var(--linear02);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 20px;
}

.sec03List__ImgWrap {
	position: absolute;
	left: 0;
	top: 0;
}

.pt02 .sec03List__ImgWrap {
	left: 50px;
}

.pt03 .sec03List__ImgWrap {
	left: 100px;
}

.sec03List__Img {
	position: relative;
}

.sec03_img01_b {
	position: absolute;
	bottom: -120px;
	right: -60px;
}

.sec03_img02_b {
	position: absolute;
	bottom: -120px;
	right: -60px;
}

.sec03_img03_b {
	position: absolute;
	bottom: -120px;
	left: -100px;
}

.sec03List__Title .eng {
	font-size: 64px;
	opacity: 0.2;
	position: absolute;
	left: 330px;
	top: -50px;
	background: var(--linear02);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight: normal;
	z-index: 3;
	font-style: italic;
}

.pt02 .sec03List__Title .eng {
	left: 390px;
}

.pt03 .sec03List__Title .eng {
	left: 500px;
}

.sec03Cont:after {
	content: " ";
	clip-path: polygon(0 0, 90% 0, 100% 100%, 0 100%);
	position: absolute;
	display: block;
	height: 150px;
	width: 50vw;
	bottom: 0;
	left: -40vw;
	background: var(--linear01);
}

.sec03Cont:before {
	content: " ";
	clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%);
	position: absolute;
	display: block;
	height: 150px;
	width: 50vw;
	top: 0;
	right: -40vw;
	background: var(--linear01);
}

@media screen and (max-width: 900px) {
	.f_table .pc {
		display: none !important;
	}

	.f_table_box {
		width: 100%;
	}

	.f_table_box .table_left {
		overflow: scroll;
		width: 100%;
	}

	.f_table img {
		max-width: inherit;
		height: 340px;
		width: auto !important;
	}

	.sec03_obj01,
	.sec03_obj02,
	.sec03_obj03 {
		display: none;
	}

	.sec03 {
		background-image: none;
	}

	.sec03List li {
		position: relative;
		padding-left: 0 !important;
		display: block;
		align-items: center;
		height: auto;
	}

	.sec03List li:not(:last-child) {
		margin-bottom: 60px;
	}

	.sec03List__ImgWrap {
		position: inherit !important;
		margin-bottom: 40px;
		padding: 0 20px;
		text-align: center;
	}

	.sec03List__Img {
		display: inline-block;
	}

	.sec03List__Title .eng {
		font-size: 48px;
		left: -5% !important;
		top: -40px;
	}

	.sec03List__Title {
		font-size: 24px;
	}

	.sec03_img01_b {
		position: absolute;
		bottom: -70px;
		right: -30px;
		width: 200px;
	}

	.sec03Cont:before,
	.sec03Cont:after {
		display: none;
	}

	.sec03_img02_b {
		position: absolute;
		bottom: -60px;
		right: -30px;
		width: 200px;
	}

	.sec03_img03_b {
		position: absolute;
		bottom: -50px;
		left: initial;
		right: -20px;
		width: 200px;
	}
}

.sec04 {
	position: relative;
	padding-top: 120px;
	padding-bottom: 30px;
	overflow: hidden;
}

.sec04List {
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 3;
}

.sec04List li {
	background: #ffffff;
	width: calc((100% - 60px) / 3);
}

.sec04List--Img {
	overflow: hidden;
	width: 100%;
	height: auto;
	aspect-ratio: 1/0.673;
}

.sec04List--Img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.sec04List--Box {
	padding: 30px;
}

.sec04List--Box .text01 {
	background: var(--linear01);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 20px;
	margin-bottom: 10px;
	display: flex;
	font-weight: bold;
	align-items: center;
}

.sec04List--Box .text01:before {
	content: " ";
	background: var(--linear01);
	height: 10px;
	width: 10px;
	display: inline-block;
	margin-right: 10px;
	border-radius: 100px;
}

.sec04List--Box .text02 {
	font-size: 14px;
	line-height: 1.8em;
	font-weight: bold;
}

.sec04_obj01 {
	position: absolute;
	transform: rotateY(-180deg);
	right: -100px;
	top: 100px;
}

.sec04_obj02 {
	position: absolute;
	left: calc(50% - 380px);
	top: 200px;
}

.slider-button.prev,
.slider-button.next {
	display: none;
}

@media screen and (max-width: 850px) {
	.sec04 .w1220 {
		position: relative;
		width: 100% !important;
	}

	.sec04 .secTitle {
		width: 82%;
		margin: 0 auto;
		padding: 0px 40px 40px 40px;
	}

	.slider-container {
		position: relative;
		overflow: visible; /* ボタンを表示するために変更 */
	}

	.sec04List {
		display: flex;
		transition: transform 0.3s ease;
	}

	.sec04List li {
		flex: 0 0 100%;
		width: 100%;
		padding: 0px 40px;
		background-color: transparent !important;
	}

	.sec04List li .sec04List--Box {
		background: #fff;
	}

	.slider-button {
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		z-index: 10;
		background: var(--linear01);
		border: none;
		cursor: pointer;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0 16px;
		opacity: 0.7;
	}

	.slider-button img {
		display: block;
	}

	.slider-button.prev {
		left: 0px;
		display: block;
	}

	.slider-button.next {
		right: 0px;
		display: block;
	}

	.slider-dots {
		display: flex;
		justify-content: center;
		margin-top: 20px;
	}

	.slider-dot {
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #ccc;
		margin: 0 5px;
		cursor: pointer;
	}

	.slider-dot.active {
		background: #333;
	}
}

.sec05 {
	background-image: url("../img/bg04_a.png");
	background-repeat: no-repeat;
	background-position: bottom left;
	margin-bottom: 80px;
	overflow: hidden;
}

.sec05 .sec05Cont {
	background-image: url("../img/bg04_b.png");
	background-repeat: no-repeat;
	background-position: top right;
}

.faqCont {
	max-width: 800px;
	margin: auto;
	width: 100%;
}

dl.aco {
	padding-bottom: 10px;
	padding-top: 10px;
}
dl.aco dt {
	cursor: pointer;
	position: relative;
	padding: 15px;
	padding-right: 30px;
	font-weight: bold;
	font-size: 20px;
	display: flex;
	align-items: center;
	background: #ffffff;
}

dl.aco dt span {
	background: var(--linear01);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
dl.aco dt:after {
	content: url("../img/arrow01.svg");
	position: absolute;
	top: calc(50% - 17px);
	right: 10px;
	transform: rotate(180deg);
}
dl.aco dt.open:after {
	transform: rotate(0);
}

dl.aco dd {
	height: 0;
	overflow: hidden;
	transition: 0.7s;
	box-sizing: border-box;
	position: relative;
	line-height: 1.8em;
}
dl.aco dd.open {
	height: auto;
}
dl.aco dd span {
	display: block;
	padding: 20px;
	min-height: 65px;
	font-size: 16px;
	margin-bottom: 20px;
	font-weight: bold;
}

.w500 {
	max-width: 500px;
	width: 82%;
	margin: auto;
}

.lastTitle {
	padding: 0;
	text-align: center;
}

.lastTitle .box {
	padding-left: 60px;
	display: inline-block;
	position: relative;
}

@media screen and (max-width: 767px) {
	dl.aco dt {
		font-size: 14px;
	}

	.sec05 {
		background-image: none;
		margin-bottom: 40px;
	}

	.sec05 .sec05Cont {
		background-image: none;
	}

	dl.aco dd span {
		padding: 10px;
		min-height: 65px;
		font-size: 14px;
		margin-bottom: 0;
		padding-bottom: 0;
	}
}

.sec06Logo {
	text-align: center;
}

.sec06Table {
	width: 100%;
}

.sec06Table th {
	padding-top: 25px;
	padding-bottom: 25px;
	border-bottom: #aed8ff 1px solid;
	width: 100px;
	font-weight: 14px;
	vertical-align: middle;
	text-align: left;
}

.sec06Table td {
	padding-top: 25px;
	padding-bottom: 25px;
	border-bottom: #aed8ff 1px solid;
	width: calc(100% - 100px);
	font-size: 16px;
	vertical-align: middle;
	font-weight: bold;
}

footer {
	font-size: 10px;
	color: #ffffff;
	height: 100px;
	justify-content: center;
	align-items: center;
	background: #000000;
	display: flex;
}

@media screen and (max-width: 900px) {
	.pc_cont {
		display: none;
	}

	.sp_cont {
		display: block !important;
	}

	.sec02 {
		position: relative;
	}

	.sp_obj {
		position: absolute;
		top: 150px;
		left: -190px;
	}
}

.lastTitle span {
	display: block;
	text-align: left;
}

@media screen and (max-width: 499px) {
	.sec06Table td,
	.sec06Table th {
		padding-top: 15px;
		padding-bottom: 15px;
		font-size: 12px;
		text-align: left;
	}

	.sec06Table td {
		width: calc(100% - 70px);
	}

	.sec06Table th {
		width: 70px;
	}

	.lastTitle {
		padding: 0;
		text-align: left;
	}
}

.tel {
	color: #000000;

	@media screen and (min-width: 769px) {
		pointer-events: none;
	}
}

/**************ファクタリングとは***************/

.about_ttl {
	background: var(--linear02);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-size: 30px;
	font-weight: bold;
	line-height: 1.4em;
	margin-bottom: 20px;
}

.f_table_ttl {
	margin-bottom: 30px;
	font-weight: bold;
	font-size: 24px;
}

/**************パスワード表示非表示***************/

.password-container {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
}
.password-container label {
	width: 100%;
}
.password-container input[type="text"],
.password-container input[type="password"] {
	padding-right: 40px;
}

.password-toggle {
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	background: none !important;
	border: none !important;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	width: 24px !important;
	height: 24px !important;
	z-index: 10;
	margin: 0 !important;
	color: inherit !important;
	font-size: inherit !important;
	line-height: 1 !important;
	text-align: center !important;
	border-radius: 0 !important;
	min-width: 0 !important;
	max-width: none !important;
	box-shadow: none !important;
}
.password-toggle:hover {
	opacity: 0.7;
	background: none !important;
	color: inherit !important;
}
.password-toggle:focus {
	outline: none;
	box-shadow: none !important;
}

.eye-icon {
	width: 20px !important;
	height: 20px !important;
	stroke: #777;
	fill: none !important;
	display: inline-block !important;
	vertical-align: middle !important;
}
.eye-icon path,
.eye-icon circle {
	stroke-width: 2;
	stroke: currentColor;
	fill: none;
}

fieldset {
	position: relative;
}
fieldset .password-container {
	width: 100%;
}
fieldset .password-toggle {
	all: unset;
	position: absolute;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	z-index: 10;
}

.main__cta__form .password-toggle {
	background-color: transparent !important;
	color: #777 !important;
	font-size: 12px !important;
	padding: 0 !important;
	margin-top: 0 !important;
	width: 24px !important;
	height: 24px !important;
}

/**************ステップフォーム***************/

.form-container {
	position: relative;
	overflow: hidden;
}

.form-steps {
	display: flex;
	transition: transform 0.3s ease;
	width: 300%;
}

.form-step {
	width: 33.333%;
}

.form-step.active {
	display: block;
}

.fotmTitle {
	font-weight: bold;
	margin-bottom: 5px;
}

.req {
	color: #e74c3c;
}

.fotmTitleInput01,
.fotmTitleInput02 {
}

.textBox {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 4px;
	font-size: 16px;
}

.form-navigation {
	text-align: center;
}

.form-dots {
	display: flex;
	justify-content: center;
	margin-bottom: 15px;
	margin-top: 20px;
}

.dot {
	width: 6px;
	height: 6px;
	border: 1px solid #ffffff;
	border-radius: 50%;
	margin: 0 3px;
}

.dot.active {
	background-color: #ffffff;
}

.form-buttons {
	display: flex;
	justify-content: space-between;
}

.btn {
	border: none;
	border-radius: 20px;
	cursor: pointer;
	font-weight: bold;
	display: inline-block;
}

.btn-prev {
	color: white;
	font-size: 14px;
	line-height: 30px;
	padding-left: 16px;
	position: relative;
}

.btn-prev:before {
	display: block;
	content: "";
	width: 5px;
	height: 10px;
	background-image: url(../img/arrow_prev.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 10px;
	left: 0px;
}

.btn-next {
	padding: 0px 16px;
	background: linear-gradient(to bottom, #f591eb, #e049a3);
	color: white;
	font-size: 14px;
	border: 2px solid #ffffff;
	line-height: 30px;
	padding-right: 30px;
	position: relative;
}

.btn-next:after {
	display: block;
	content: "";
	width: 5px;
	height: 10px;
	background-image: url(../img/arrow_next.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 10px;
	right: 16px;
}

.btn-submit {
	padding: 0px 16px;
	background: linear-gradient(to bottom, #f591eb, #e049a3);
	color: white;
	display: flex;
	align-items: center;
	padding: 0px 16px;
	line-height: 30px;
	font-size: 14px;
	border: 2px solid #ffffff;
	padding-right: 30px;
	position: relative;
}

.btn-submit:after {
	display: block;
	content: "";
	width: 5px;
	height: 10px;
	background-image: url(../img/arrow_next.svg);
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 10px;
	right: 16px;
}

.btn-submit small {
	margin-right: 10px;
	text-align: center;
	line-height: 1.2;
}

.hidden {
	display: none;
}

/* オリジナルフォームの申し込みボタンスタイル */
.formBtn {
	margin-top: 30px;
}

.btnCont {
	display: flex;
	align-items: center;
	justify-content: center;
}

.btnCont span {
	margin-right: 10px;
}

@media screen and (min-width: 851px) {
.mainForm {
	height: 25vw;
	width: 19.5%;
	top: 22%;
	right: 8.2%;
	padding: 1.6vw 1.4vw;
}
#portal_signup_form {
	padding-top: 0;
}
.formMainTitle {
	font-size: 1.5vw;
	padding-bottom: 0.5vw;
    border-bottom: 1px solid #ffffff;
	margin-bottom: 0;
}
.formMainTitle small {
	font-size: 1.2vw;
}
.fotmTitleInput01 .textBox {
	height: 3vw;
	padding: 0.5vw;
	font-size: 1vw;
}
.fotmTitle {
	margin-bottom: 0.5vw;
	padding-top: 1vw;
	font-size: 0.9vw;
}
.form-dots {
	margin-top: 0;
	margin-bottom: 1vw;
}
.dot {
	width: 0.4vw;
	height: 0.4vw;
	margin: 0 0.2vw;
}
.btn-next {
	font-size: 1vw;
	line-height: 0;
	padding: 1.5vw 2.5vw 1.5vw 1.7vw;
	border-radius: 100vmax;
}
.btn-next:after {
	width: 0.7vw;
    height: 1.2vw;
	top: 1vw;
    right: 1vw;
}
.formUd {
	font-size: 0.85vw;
	margin-top: 1.25vw;
}
.btn-prev {
	font-size: 1vw;
	line-height: 1;
	margin-top: 1.5vw;
}
.btn-prev:before {
	width: 0.7vw;
    height: 1.4vw;
	top: 0vw;
}
.fotmTitleInput02 {
	margin-top: 1vw;
	font-size: 0.7vw;
	margin-bottom: 1vw;
}
.btn-submit {
	font-size: 1vw;
	line-height: 0;
	padding: 1.5vw 2.5vw 1.5vw 1.7vw;
	border-radius: 100vmax;
}
.btn-submit:after {
	width: 0.7vw;
    height: 1.4vw;
	top: 1vw;
    right: 1vw;
}
}

@media screen and (max-width: 850px) {
.mainForm {
	padding: 1.4rem 1rem;
}
.formMainTitle small {
	font-size: 1.1rem;
}
.formMainTitle span {
	display: none;
}
.fotmTitle {
	padding-top: 1rem;
	margin-bottom: 0.4rem;
	font-size: 0.8rem;
}
.fotmTitleInput01 .textBox {
	height: 2.8rem;
	padding: 1rem 0.5rem;
}
.textBox {
	font-size: 0.8rem;
}
.form-note01 {
	font-size: 0.65rem;
	line-height: 1.8;
	color: #FFF600;
}
.form-dots {
	margin-top: 1.5rem;
	margin-bottom: 1rem;
}
.dot {
	width: 0.4rem;
	height: 0.4rem;
	margin: 0 0.2rem;
}
.btn-next {
	padding: 0.8rem 2rem 0.8rem 1.5rem;
	font-size: 1rem;
	line-height: 1;
	border-radius: 100vmax;
}
.btn-next:after {
	width: 0.5rem;
	height: 1rem;
	top: 0.9rem;
	right: 1rem;
}
.formUd {
	font-size: 0.75rem;
	margin-top: 1rem;
}
.btn-prev {
	font-size: 1rem;
	line-height: 1;
	margin-top: 1.2rem;
}
.btn-prev:before {
	width: 0.5rem;
	height: 1rem;
	top: 0rem;
	left: 0;
}
.btn-submit {
	padding: 0.8rem 2rem 0.8rem 1.5rem;
	font-size: 1rem;
	line-height: 1;
	border-radius: 100vmax;
}
.btn-submit:after {
	width: 0.5rem;
	height: 1rem;
	top: 0.9rem;
	right: 1rem;
}
}