@charset "UTF-8";
/*----------------------------------------

	- progress_bar
	- create_mypage
		-registration_form
		- privacy
		- btn_box

-----------------------------------------*/

.mypage_header {
	margin-top: 48px;
}

/* sp */
@media screen and (max-width: 800px) {
	.mypage_header {
		margin-top: 32px;
	}
}

/*----------------------------------------
progress_bar
-----------------------------------------*/
.progress_bar {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	max-width: 800px;
	margin-inline: auto;
}

.progress_bar li {
	position: relative;
	display: flex;
	flex-direction: column;
}

.progress_bar li::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: 24px;
	height: 24px;
	background-color: var(--color_mist-500);
	border-radius: 10em;
	z-index: 1;
}

.progress_bar li:not(.current ~ li)::after {
	background-color: var(--color_aquamarine-500);
}

.progress_bar li:not(:first-of-type)::before {
	content: "";
	position: absolute;
	top: 10px;
	right: 50%;
	width: 100%;
	height: 4px;
	background-color: var(--color_mist-500);
}

.progress_bar li:not(.current ~ li)::before {
	background-color: var(--color_aquamarine-500);
}

.progress_bar p {
	display: block;
	margin-top: 40px;
	height: 100%;
	width: 100%;
	text-align: center;
	color: var(--color_cmn-text--inactive);
	padding-inline: 8px;
}

.progress_bar li.current:not(:has(~ .current)) p {
	color: var(--color_cmn-heading);
}

.progress_bar li:not(.current ~ li) p::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin-inline: auto;
	width: 24px;
	height: 24px;
	background-color: var(--color_white);
	mask-image: var(--ic_check-mark);
	mask-repeat: no-repeat;
	mask-size: auto;
	mask-position: center;
	z-index: 2;
}

/* sp */
@media screen and (max-width: 800px) {
	.progress_bar p {
		font-size: var(--font-size11);
		padding-inline: 4px;
	}
}

/*----------------------------------------
mypage_text
-----------------------------------------*/
.mypage_text {
	max-width: 800px;
	margin-top: 64px;
	margin-inline: auto;
}

/* sp */
@media screen and (max-width: 800px) {
	.mypage_text {
		margin-top: 50px;
	}
}

/*----------------------------------------
create_mypage
-----------------------------------------*/
.create_mypage {
	margin-top: 32px;
}

.registration_form {
	display: grid;
	grid-template-columns: 1fr;
	gap: 48px;
	padding-top: 47px;
	border-top: 1px solid var(--color_cmn-line);
}

.registration_form .fieldset {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 24px;
	padding-left: 32px;
}

.registration_form .fieldset>div:first-of-type {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-top: 10px;
}

/* sp */
@media screen and (max-width: 800px) {
	.create_mypage {
		margin-top: 32px;
	}

	.registration_form {
		gap: 32px;
        padding-top: 31px;
	}

	.registration_form .fieldset {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-left: 0;
	}

	.registration_form .fieldset>div:first-of-type {
		justify-content: flex-start;
		align-items: center;
		gap: 16px;
	}
}

/*----------------------------------------
name / kana
-----------------------------------------*/
.name .input_box {
	display: flex;
	flex-direction: column;
}

.name .input_box>div:nth-of-type(1) {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* sp */
@media screen and (max-width: 800px) {
	.name .input_box>div:nth-of-type(1) {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 375px) {
	.name .input_m {
		width: 150px;
	}
}

.kana .input_box {
	display: flex;
	flex-direction: column;
}

.kana .input_box>div:nth-of-type(1) {
	display: flex;
	align-items: center;
	gap: 8px;
}

/* sp */
@media screen and (max-width: 800px) {
	.kana .input_box>div:nth-of-type(1) {
		flex-wrap: wrap;
	}
}
@media screen and (max-width: 375px) {
	.kana .input_m {
		width: 150px;
	}
}

/*----------------------------------------
birthday
-----------------------------------------*/
.birthday .select_list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.birthday .select_list .items,
.birthday .select_list .item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.birthday .pulldown_m,
.birthday select {
	width: 120px;
}

.birthday .pulldown_m+span {
	margin-right: 8px;
}

/* sp */
@media screen and (max-width: 800px) {

	.birthday .pulldown_m,
	.birthday select {
		width: 120px;
	}
}

/*----------------------------------------
tel
-----------------------------------------*/
.tel.input_m {
	width: 100%;
}

/*----------------------------------------
mail / mail_check
-----------------------------------------*/
.mail .input_m {
	width: 100%;
}

.mail .indent {
	margin-top: 8px;
}

.mail_check .input_m {
	width: 100%;
}

.mail_check .indent {
	margin-top: 8px;
}

/*----------------------------------------
area
-----------------------------------------*/
.area .input_box {
	display: flex;
	flex-direction: column;
}

.area select option:first-child {
	color: var(--color_cmn-form-placeholder);
}

.area select:invalid {
	color: var(--color_cmn-form-placeholder);
}

.area select option {
	color: var(--color_cmn-text-1);
}

/*----------------------------------------
job
-----------------------------------------*/
.registration_form .job>div:first-of-type {
	margin-top: 0;
}

.job .legend {
	display: flex;
	flex-direction: column;
}

.job .tag_color_required {
	margin-top: 12px;
}

.job .category_list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(auto, 160px));
	gap: 8px 16px;
}

.job .category_list label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	width: fit-content;
}

.job .category02 {
	margin-top: 32px;
}

.job .category02 .input_m {
	margin-top: 8px;
	width: 100%;
}

/* sp */
@media screen and (max-width: 800px) {
	.registration_form .fieldset>div:first-of-type {
		margin-top: 0;
	}

	.job .legend {
		align-items: center;
		flex-direction: row;
		gap: 16px;
	}

	.job .tag_color_required {
		margin-top: 0;
	}

	.job .category02 {
		margin-top: 34px;
	}

	.job .category_list {
		grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
	}
}

/*----------------------------------------
privacy
-----------------------------------------*/
.privacy {
	margin-top: 80px;
}

.privacy label {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	width: fit-content;
}

.privacy .detail {
	margin-top: 24px;
	width: 100%;
	height: 160px;
	padding: 24px;
	background-color: var(--color_mist-300);
	overflow-y: scroll;
}

.privacy > div:last-of-type {
	margin-top: 32px;
	display: flex;
	justify-content: center;
}

/* sp */
@media screen and (max-width: 800px) {
	.privacy {
		margin-top: 64px;
	}

	.privacy .detail {
		height: 140px;
	}
}

/*----------------------------------------
detail txt
-----------------------------------------*/
.privacy .detail > div p {
	text-align: right;
}

.privacy .detail > div + p {
	margin-top: 24px;
}

.privacy .detail dl {
	padding-left: 28px;
	position: relative;
}

.privacy .detail dt {
	margin-top: 24px;
}

.privacy .detail dt::before {
	position: absolute;
	left: 0;
	display: inline-block;
}

.privacy .detail dt:nth-of-type(1)::before { content: "１"; }
.privacy .detail dt:nth-of-type(2)::before { content: "２"; }
.privacy .detail dt:nth-of-type(3)::before { content: "３"; }
.privacy .detail dt:nth-of-type(4)::before { content: "４"; }
.privacy .detail dt:nth-of-type(5)::before { content: "５"; }
.privacy .detail dt:nth-of-type(6)::before { content: "６"; }
.privacy .detail dt:nth-of-type(7)::before { content: "７"; }
.privacy .detail dt:nth-of-type(8)::before { content: "８"; }
.privacy .detail dt:nth-of-type(9)::before { content: "９"; }

.privacy .detail .indent {
	display: block;
}

.privacy .detail .list > li {
	padding-left: 1rem;
	text-indent: -1rem;
}

.privacy .detail a {
	word-break: break-all;
	text-decoration: underline;
}

.privacy .detail table {
	margin-block: 8px;
}

.privacy .detail dt:nth-of-type(1) + dd span {
	display: block;
}

.privacy .detail dt:nth-of-type(1) + dd span:nth-of-type(2) {
	margin-top: 16px;
}

.privacy .detail dt:nth-of-type(3) + dd {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}

.privacy .detail > div:last-of-type {
	margin-top: 48px;
	display: grid;
	grid-template-columns: 1fr;
}

/*----------------------------------------
btn_box
-----------------------------------------*/
.btn_box {
	margin-top: 80px;
	display: flex;
	justify-content: center;
}

/* sp */
@media screen and (max-width: 800px) {
	.btn_box {
		margin-top: 64px;
	}

	.btn_box p:has([class*="btn_"]) {
		width: 100%;
		max-width: 315px;
	}

	.btn_box .btn_m4 {
		width: 100%;
	}
}