@charset "UTF-8";


.step_bar {
	display: flex;
	position: relative;
	z-index: 1;
	max-width: 335px;
	width: 100%;
	margin: 0 auto 10px;
	font-weight: 500;
	font-size: 16px;
	justify-content: space-between;
	counter-reset: number;
}
@media screen and (min-width: 768px) {
	.title_container {
		margin-bottom: 40px;
	}
	.step_bar {
		width: 95%;
		margin-top: 40px;
		margin-bottom: 35px;
	}
}
@media screen and (max-width: 767px) {
	.title_container {
		margin-bottom: 30px;
	}
	.step_bar {
		width: calc(100% - 40px);
		margin-top: 35px;
		margin-bottom: 30px;
	}
}
.complete .step_bar {
	margin-bottom: 30px;
}

.step_item {
	display: flex;
	position: relative;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.step_item::before , .step_item:not(:last-child):after {
	display: block;
	background: #cbcbcb;
	content: "";
}

.step_item::before {
	width: 10px;
	margin-bottom: 5px;

/*border: 0px solid #eff8f1;*/
	border-radius: 100%;

	aspect-ratio: 1/1;
}

.coach .step_item::before , .coach-confirm .step_item::before , .coach-complete .step_item::before {
	border-color: #ffffff;
}

.step_item::after {
	position: absolute;
	top: 4.5px;
	left: calc(27.5px + 10px);
	z-index: -1;
	width: 120px;
	height: 1px;
}

[data-screen="input"] .step_item:nth-of-type(1)::after , [data-screen="confirm"] .step_item:nth-of-type(2)::after {
	background: linear-gradient(90deg, #1c425d 0%, #1c425d 50%, #cbcbcb 50%, #cbcbcb 100%);
}

.step_item.step_current::before , .step_item.step_complete::after , [data-screen="confirm"] .step_item:nth-of-type(1)::before , [data-screen="confirm"] .step_item:nth-of-type(1)::after , [data-screen="confirm"] .step_item:nth-of-type(2)::before , [data-screen="complete"] .step_item::before , [data-screen="complete"] .step_item::after {
	background: #1c425d;
}

.step_item span::before {
	content: counter(number, decimal-leading-zero) ".";
	counter-increment: number;
}

[data-name="permission"] {
	display: flex;
	max-width: 1000px;
	width: 95%;
	margin: 40px auto 0;
	margin-top: 40px;
	column-gap: 15px;
	flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
	[data-name="permission"] {
		width: 95%;
	}
}
@media screen and (max-width: 767px) {
	[data-name="permission"] {
		width: calc(100% - 40px);
	}
}
[data-name="permission"] a {
	padding-bottom: 1px;
	border-bottom: 1px solid;
	color: #4687d6;
	line-height: 1.45;
	transition: all 0.3s;
}
[data-name="permission"] .smf-checkboxes-control {
	width: 20px;
	padding-top: clamp(0.125rem, -0.38rem + 1.05vw, 0.313rem);
	line-height: 1;
}
[data-name="permission"] .smf-control-description {
	width: calc(100% - 35px);
	margin-top: 0 !important;
	font-weight: 500;
	font-size: clamp(1rem, 0.663rem + 0.7vw, 1.125rem);
}
[data-name="permission"] .smf-checkbox-control__label {
	display: flex;
	position: relative;
	white-space: nowrap;
	align-items: center;
}
[data-name="permission"] .smf-checkbox-control__label::before {
	width: 20px;
	margin: auto;
	border-width: 1px;
	border-style: solid;
	border-color: #707070;
	background-color: #ffffff;
	content: "";

	aspect-ratio: 1 / 1;
}
[data-name="permission"] .smf-error-messages {
	display: block;
	width: 100%;
}
[data-name="permission"] .smf-checkbox-control__label::after {
	display: block;
	position: absolute;
	top: 50%;
	bottom: 4px;
	left: 7px;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 14px;
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
	opacity: 0;
	content: "";
	transition: all 0.4s;
}
[data-name="permission"] input[type=checkbox] {
	display: none;
}

[data-name="permission"] input[type=checkbox]:checked + .smf-checkbox-control__label::after {
	opacity: 1;
}

[data-screen="confirm"] .g-recaptcha , [data-screen="confirm"] [data-name="permission"] {
	display: none;
}

.g-recaptcha {
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
	margin-top: 30px;
}
@media screen and (min-width: 768px) {
	.g-recaptcha {
		width: 95%;
	}
}
@media screen and (max-width: 767px) {
	.g-recaptcha {
		width: calc(100% - 40px);
	}
}
.smf-form--business + .smf-action {
	margin: 50px 0 0 !important;
}

[data-screen="complete"] .smf-form--business + .smf-action {
	margin-top: 0 !important;
}


.smf-complete-content p , .smf-complete-content .contact_profile {
	display: block;
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
}
.smf-complete-content p:not(:nth-of-type(1)) {
	margin-top: 20px;
}
@media screen and (min-width: 768px) {
	.smf-complete-content p , .smf-complete-content .contact_profile {
		width: 95%;
	}
}
@media screen and (max-width: 767px) {
	.smf-complete-content p {
		width: calc(100% - 60px);
	}.smf-complete-content .contact_profile {
		width: calc(100% - 40px);
		padding: 50px 10px 0;
	}
}

.form_template {
	width: 100%;
	margin: 0 auto 50px;
	border-collapse: collapse;
	border-spacing: 0;
}

.separator_line {
	max-width: 1000px;
	margin: 0 auto;
	border-top: 2px solid #cccccc;
}

.form_template th {
	width: 195px;
	font-size: 18px;
	vertical-align: middle;
	text-align: left;
}

.mw_wp_form_input .common_large-item th {
	vertical-align: top;
}

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

.mark-required {
	display: inline-block;
	color: #d5301d;
	font-weight: bold;
	font-size: 13px;
	text-align: center;
}

.agreement_item td {
	padding-bottom: 0;
}
.contact_caution , .apply_policy {
	display: block;
	width: 100%;
	font-size: 14px;
}
.contact_caution {
	margin-top: 5px;
	padding-left: 10px;
}

.apply_policy {
	text-align: right;
}

.agreement_content {
	display: flex;
	position: relative;
}

.agreement_content .mwform-checkbox-field-text p {
	display: none;
}

.agreement_text {
	display: inline-block;
	font-weight: 500;
}

.agreement_text a {
	padding-bottom: 1px;
	border-bottom: 1px solid;
	color: #4687d6;
	line-height: 1.45;
	transition: all 0.3s;
}


.contact_btn-container {
	display: flex;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	font-size: 18px;
	align-items: center;
}

/*******************************************************************************
	共通フォーム
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
.p-country-name {
	display: none;
}

input:not([type="radio"] , [type="checkbox"]) , select , textarea {
	border-radius: 5px;
	background-color: #efefef;
}

select {
	height: 50px;
}

input:not([type="radio"] , [type="checkbox"] , [type="submit"]) {
	height: 60px;
}

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

textarea {
	min-height: 300px;
	height: 300px;
	line-height: 1.5em;
	resize: vertical;
}


/*******************************************************************************
	遷移系ボタン
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
.common_form-btn {
	max-width: 385px;
	height: 55px;
	padding: 0 !important;
	border: 2px solid #8d8d8d;
	border-radius: 3px !important;

/*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);*/
	background-color: #8d8d8d !important;
	color: #ffffff;
	font-weight: 900;
	transition: all 0.5s;
}

.send_btn:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

.common_form-btn:hover {
	opacity: 0.5;
}

/*******************************************************************************
	ファイルフォーム
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
.common_file-list {
	display: flex;
	flex-direction: column;
	counter-reset: number;
}

.common_file-item {
	display: flex;
	font-size: 16px;
}

.common_file-item label {
	display: flex;
	justify-content: center;
	align-items: center;
}

.file-selected {
	opacity: 0.3;
	pointer-events: none;
}

.common_file-item input[type="file"] {
	visibility: hidden;
	position: absolute;
	opacity: 0;
}

.mwform-file-delete {
	display: none;
}

.common_file-contents {
	display: flex;
	font-weight: 500;
}

.file_delete {
	display: none;
	height: fit-content;
	cursor: pointer;
}

/*******************************************************************************
	ラジオ･チェックボックス系フォーム
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
/* 共通 */
.mw_wp_form .horizontal-item + .horizontal-item {
	margin-left: 0 !important;
}

.mwform-radio-field-text , .mwform-checkbox-field-text {
	display: flex;
	position: relative;
	white-space: nowrap;
	align-items: center;
}

.mwform-radio-field-text {
	column-gap: 10px;
}

.mwform-checkbox-field-text {
	column-gap: 15px;
}

.mwform-radio-field-text::before , .mwform-radio-field-text::after , .mwform-checkbox-field-text::before , .mwform-checkbox-field-text::after {
	display: block;
	content: "";
	/*transition: all 0.4s;*/
}

.mwform-radio-field-text::before , .mwform-checkbox-field-text::before {
	width: 20px;
	margin: auto;
	border-style: solid;
	border-color: #707070;

	aspect-ratio: 1/1;
}

.mwform-radio-field-text::after , .mwform-checkbox-field-text::after {
	position: absolute;
	top: 50%;
	opacity: 0;
}

input[type=radio]:checked + .mwform-radio-field-text::after , input[type=checkbox]:checked + .mwform-checkbox-field-text::after {
	opacity: 1;
}

input[type=checkbox]:checked + .mwform-checkbox-field-text::before {
	border-color: #000000;
}

/* ラジオボタン */
.mwform_radio-list {
	display: flex;
	flex-wrap: wrap;
}

.mwform-radio-field-text::before , .mwform-radio-field-text::after {
	border-radius: 100%;
}

.mwform-radio-field-text::before {
	border-width: 1.5px;
}

.mwform-radio-field-text::after {
	left: 3px;
	transform: translateY(-50%);
	width: calc(20px - 6px);
	background-color: #ad2717;

	aspect-ratio: 1/1;
}

/* チェックボックス */
.mwform-checkbox-field-text::before {
	border-width: 1px;
	background-color: #ffffff;
}

.mwform-checkbox-field-text::after {
	bottom: 4px;
	left: 7px;
	transform: translateY(-50%) rotate(45deg);
	width: 6px;
	height: 14px;
	border-right: 2px solid #000000;
	border-bottom: 2px solid #000000;
}

.mw_wp_form .error {
	color: #e82736 !important;
	font-size: 14px;
}
.agreement_content .error {
	position: absolute;
	top: 100%;
	line-height: 1.4;
}

/*******************************************************************************
	セレクトボックスフォーム
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
.mwform_select-container {
	display: block;
	position: relative;
}

.mwform_select-container::after {
	position: absolute;
	top: 50%;
	right: 9.2308%;
	transform: translateY(-50%);
	color: #252a3e;
	font-family: "icomoon" !important;
	font-size: 12px;
	content: "\e906";
	pointer-events: none;
	cursor: default;
}

@media screen and (min-width: 768px) {
	.form_template {
		margin-bottom: 50px;
	}
	.form_template th {
		font-weight: 500;
		font-size: 18px;
	}
	.mw_wp_form_input .common_large-item th {
		padding-top: 38px;
	}
	.form_template tr:not(.agreement_item) td {
		padding-left: 10%;
	}
	.form_template td {
		padding: 20px 0;
		padding-right: 10px;
	}
	.apply_policy {
		margin-top: 10px;
	}
	.agreement_content {
		margin-bottom: 35px;
		column-gap: 15px;
	}

	.agreement_content .mwform-checkbox-field-text::before {
		margin-top: 3.5px;
	}

	.agreement_text {
		font-size: 18px;
	}
	.common_file-list {
		row-gap: 15px;
	}
}
@media screen and (max-width: 767px) {
	.form_template {
		margin-bottom: 30px;
	}
	.form_template th , .form_template td {
		display: block;
	}
	.form_template th {
		padding-top: 10px;
		font-weight: bold;
		font-size: 16px;
	}
	.form_template  tr:not(.agreement_item) td {
		padding: 5px 0 10px;
	}
	.form_template  tr.agreement_item td {
		padding-top: 10px;
	}
	.apply_policy {
		margin-top: 5px;
	}
	.agreement_content {
		margin-bottom: 20px;
		column-gap: 10px;
	}

	.agreement_content .mwform-checkbox-field-text::before {
		margin-top: 2px;
	}

	.agreement_text {
		font-size: 16px;
	}
	.common_file-list {
		row-gap: 10px;
	}
}








/*******************************************************************************
	入力画面
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
.mw_wp_form_input .common_file-item label {
	position: relative;
	width: 170px;
	padding: 12.5px 0;
	border: 1px solid #707070;
	border-radius: 3px;
	background-color: #f5f5f5;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s;
}
.mw_wp_form_input .common_file-item label:hover {
	border: 1px solid #000000;
	font-weight: bold;
}
.mw_wp_form_input .common_file-item {
	column-gap: 15px;
	flex-wrap: wrap;
	align-items: center;

	row-gap: 5px;
}
.mw_wp_form_input .contact_btn-container {
	justify-content: center;
}


/*******************************************************************************
	確認画面
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
.mw_wp_form_preview .contact_caution , .mw_wp_form_preview .apply_policy , .mw_wp_form_preview .label_file-notes , .mw_wp_form_preview .common_file-contents , .mw_wp_form_preview .agreement_item {
	display: none;
}
.mw_wp_form_preview .contact_btn-container {
	justify-content: space-between;
}

.mw_wp_form_preview .common_file-item::before {
	content: counter(number)".";
	counter-increment: number;
}

@media screen and (min-width: 768px) {
	.mw_wp_form_preview .form_template th {
		padding: 18.5px 0;
	}

	.mw_wp_form_preview .form_template td {
		font-size: 16px;
	}
	.mw_wp_form_preview .common_form-btn {
		width: 47% !important;
	}
}
@media screen and (max-width: 767px) {
	.mw_wp_form_preview .form_template td {
		font-size: 14px;
	}
	.mw_wp_form_preview .contact_btn-container {
		flex-direction: column;

		row-gap: 20px;
	}
}


/*******************************************************************************
	完了画面
--------------------------------------------------------------------------------
	適応：全部
*******************************************************************************/
.mw_wp_form_complete p:not(:first-child) {
	margin-top: 20px;
}

.contact_profile {
	margin-top: 50px !important;
	padding-top: 50px;
	border-top: 1px dashed;
}

.contact_profile h4 {
	margin-bottom: 20px;
	font-size: 23px;
}

.contact_profile dl {
	line-height: 2;
}

.contact_profile dl dt {
	display: flex;
	float: left;
	clear: both;
	width: fit-content;
	justify-content: space-between;
}

.contact_profile dl dt::after {
	content: ":";
}




.separator_line {
	display: flex !important;
	border: none !important;
	border-bottom: 1px solid rgba(0,0,0,0.5) !important;

	row-gap: 10px;
}
.separator_line:nth-of-type(1) {
	border-top: 1px solid rgba(0,0,0,0.5) !important;
}

.separator_line .smf-item__col {
	border: none;
}

.separator_line .smf-item__col--label {
	max-width: 200px;
	width: 100%;
	background-color: transparent;
	white-space: nowrap;
	flex: none;
}
.separator_line .smf-item__label {
	width: 100%;
}
.separator_line .smf-item__col--controls {
	width: 100%;
	flex: none;
}
@media screen and (min-width: 768px) {
	.separator_line {
		width: 95%;
	}

	.separator_line .smf-item__col {
		padding: 20px 0;
	}
	.separator_line .smf-item__col--label {
		padding-left: 10px;
	}
	[data-screen="input"] .common_large-item .smf-item__label {
		padding-top: 15px;
	}
	.separator_line .smf-item__col--controls {
		max-width: calc(100% - 200px);
		padding-left: 10% !important;
	}
}
@media screen and (max-width: 767px) {
	.separator_line {
		width: calc(100% - 40px);
		padding: 10px 10px 25px;
		flex-direction: column;
	}
	.separator_line .smf-item__col--label {
		padding: 0 !important;
	}
	.separator_line .smf-item__col--controls {
		max-width: none !important;
		padding: 0 !important;
	}
}



.common_small-item .smf-item__col--label {
	display: flex;
	align-items: center;
}

.smf-item__label__text {
	display: flex;
	font-weight: 500;
	font-size: 18px;
	justify-content: space-between;
	align-items: center;
}
.smf-item:has([data-validations~="required"]) .smf-item__label__text::after {
	display: inline-block;
	color: #ff0000;
	font-weight: bold;
	font-size: 13px;
	content: "※必須";
}
.smf-item__description {
	margin-top: 0 !important;
}




