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

	apply_block

-----------------------------------*/
#apply_block {
	color: #6E5658;
	padding-bottom: 160px;
}
#apply_block p {
	font: 500 1.7rem/1.88 var(--fJA);
}
#apply_block .apply_wrap {
	background: #FFF;
	padding: 65px 100px 100px;
	border-radius: 20px;
}
#apply_block .apply_wrap .required {
	color: #F05A67;
}
#apply_block .form_wrap .required {
	display: block;
	font-size: 14px;
	margin-top: 3px;
}
#apply_block .apply_wrap h2,
#apply_block .apply_wrap .intro {
	text-align: center;
}
#apply_block .apply_wrap h2 {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.44;
	color: #F05A67;
	margin-bottom: 23px;
}
#apply_block .apply_wrap .intro {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.86;
	margin-bottom: 48px;
}
#apply_block .form_wrap {
	max-width: 800px;
	margin: 0 auto;
}
#apply_block .form_wrap .att_txt {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 0.06em;
	margin-top: 3px;
}
/* form_wrap テーブル（contact準拠／product_box は下で上書き） */
#apply_block .form_wrap table {
	width: 100%;
}
#apply_block .form_wrap tr {
	border-bottom: 1px solid #E6DDDD;
}
#apply_block .form_wrap tr:first-of-type {
	border-top: 1px solid #E6DDDD;
}
#apply_block .form_wrap th,
#apply_block .form_wrap td {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-align: left;
	vertical-align: middle;
	padding: 11.5px 0;
}
#apply_block .form_wrap th label {
	cursor: pointer;
}
#apply_block .form_wrap th {
	width: 240px;
	padding-right: 10px;
}
#apply_block .form_wrap td {
	width: calc(100% - 240px);
}
#apply_block .question_box th {
	width: 360px;
}
#apply_block .form_wrap h3 {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.46;
	margin-bottom: 30px;
	color: #F05A67;
}
/* select用ラッパー（contact準拠） */
#apply_block .form_wrap .select_wrap {
	width: 100%;
	position: relative;
}
#apply_block .form_wrap .select_wrap::after {
	content: "";
	position: absolute;
	width: 15px;
	height: 11px;
	top: 17px;
	right: 10px;
	margin: auto;
	background: #DECBCC;
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	border-radius: 3px;
	cursor: pointer;
	pointer-events: none;
}
/* テキスト・選択系のみ（checkbox / radio / submit 等は除外）（contact準拠） */
#apply_block .form_wrap input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="image"]),
#apply_block .form_wrap textarea,
#apply_block .form_wrap select {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 15px;
	font-family: var(--fJA);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-align: left;
	color: #6E5658;
	background: #FFF6F7;
	padding: 10px;
	width: 100%;
	border: none;
	border-radius: 3px;
}

/* checkbox 専用（ベース） */
#apply_block .form_wrap input[type="checkbox"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin: 0;
	padding: 0;
	border: none;
	background: transparent;
	display: none;
	box-sizing: border-box;
}

/* radio（contact準拠：inputは非表示、labelの::before/::afterで表示） */
#apply_block .form_wrap input[type="radio"] {
	display: none;
	background: none;
}
#apply_block .form_wrap .contract_status_wrap {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
#apply_block .form_wrap .contract_status_wrap label {
	display: inline-block;
	background: #FFF6F7;
	padding: 9px 37px 9px 10px;
	border-radius: 5px;
	position: relative;
	white-space: nowrap;
	cursor: pointer;
	min-width: 320px;
	box-sizing: border-box;
}
#apply_block .form_wrap .contract_status_wrap label::before,
#apply_block .form_wrap .contract_status_wrap label::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	border-radius: 50%;
	pointer-events: none;
}
#apply_block .form_wrap .contract_status_wrap label::before {
	background: #ffffff;
	border: 3px solid #ECBCC1;
	width: 20px;
	height: 20px;
	right: 8px;
	z-index: 0;
}
#apply_block .form_wrap .contract_status_wrap label::after {
	width: 8px;
	height: 8px;
	right: 14px;
	background-color: #ECBCC1;
	z-index: 1;
	opacity: 0;
}
#apply_block .form_wrap .contract_status_wrap label:has(input:checked)::after {
	opacity: 1;
}
#apply_block .question_box label {
	position: relative;
	display: inline-block;
	padding-left: 26px;
	margin: 0 16px 8px 0;
	cursor: pointer;
}
#apply_block .question_box input[type="checkbox"] {
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 16px;
	height: 16px;
	margin: 0;
	display: inline-block;
	-webkit-appearance: none;
	appearance: none;
	border: 1px solid #6E5658;
	border-radius: 2px;
	background: #FFFFFF;
	box-sizing: border-box;
}
#apply_block .question_box input[type="checkbox"]::after {
	content: "";
	position: absolute;
	left: 4px;
	top: 2px;
	width: 5px;
	height: 9px;
	border-right: 2px solid #FFFFFF;
	border-bottom: 2px solid #FFFFFF;
	transform: rotate(45deg);
	opacity: 0;
}
#apply_block .question_box input[type="checkbox"]:checked {
	background: #F05A67;
	border-color: #F05A67;
}
#apply_block .question_box input[type="checkbox"]:checked::after {
	opacity: 1;
}
#apply_block .form_wrap input::placeholder,
#apply_block .form_wrap textarea::placeholder,
#apply_block .form_wrap select.placeholder,
#apply_block .form_wrap select option[value=""] {
	color: #DECBCC;
}
#apply_block .form_wrap select:not(.placeholder),
#apply_block .form_wrap select option:not([value=""]) {
	color: #6E5658;
}
#apply_block .form_wrap .w_100 {
	width: 100%;
}
#apply_block .form_wrap .w_250 {
	width: 250px;
	max-width: 100%;
}
#apply_block .form_wrap .w_400 select {
	width: 100%;
}
#apply_block .privacy_check{
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin: 50px auto 70px;
}
#apply_block .privacy_check .wpcf7-list-item {
	margin: 0;
}
#apply_block .privacy_check .wpcf7-form-control-wrap {
	display: block;
	width: max-content;
	max-width: 100%;
	margin: 0 auto;
}
#apply_block .privacy_check .wpcf7-not-valid-tip {
	font-size: 16px;
}
#apply_block .privacy_check .privacy_txt{
	font-size: 14px;
	font-weight: 500;
	color: #000;
	opacity: 0.6;
	text-align: center;
	margin-top: 10px;
}
#apply_block .privacy_check .privacy_txt a{
	text-decoration: underline;
}

#apply_block .privacy_check label{
	position: relative;
	padding-left: 37px;
	cursor: pointer;
}
#apply_block .privacy_check label::before{
	content: "";
    width: 20px;
    height: 20px;
    left: 0;
    display: block;
    position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
    border: 1px solid #333333;
	pointer-events: none; 
}
#apply_block .privacy_check label::after{
	content: "";
    display: block;
    position: absolute;
    top: 49%;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 7px;
    width: 14px;
    transform: rotate(-45deg) translateY(-90%);
    left: 7px;
    margin: auto;
    opacity: 0;
	pointer-events: none; 
}
#apply_block .privacy_check label:has(input:checked)::before{
	background: #333333;
}
#apply_block .privacy_check label:has(input:checked)::after{
    opacity: 1;
}

#apply_block .form_btn_box {
	margin-top: 45px;
}
#apply_block .form_btn {
	width: 100%;
	max-width: 290px;
	margin: 0 auto;
	position: relative;
}
/* 入力画面：送信ボタンは右矢印（contact準拠） */
#apply_block .form_btn::after {
	content: "";
	display: block;
	background: url(../img/common/icon_btn_arw_rt.svg) no-repeat center / contain;
	width: 8px;
	height: 14px;
	margin: auto;
	position: absolute;
	top: 3px;
	right: 27px;
	bottom: 0;
	z-index: 1;
}
#apply_block .form_btn.back::after {
	background: url(../img/common/icon_btn_arw_lt.svg) no-repeat center / contain;
	right: auto;
	left: 27px;
	transform: none;
}
/* type="submit"（contact準拠・ボーダーなし） */
#apply_block .form_btn input[type="submit"] {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-align: center;
	color: #FFFFFF;
	background: #F05A67;
	padding: 18px 0;
	width: 100%;
	border: none;
	border-radius: 5px;
	transition: 0.3s;
	cursor: pointer;
}
#apply_block .form_btn.back input[type="submit"] {
	color: #6E5658;
	background: #F0F3F3;
	padding-left: 0;
	padding-right: 101px;
	text-align: right;
	border: none;
}
#apply_block .form_btn input[type="submit"]:hover {
	opacity: 0.5;
}
/* 完了画面：お支払い方法登録リンク（確認画面の申し込むボタンと同じスタイル） */
#apply_block.complete .form_wrap p.note {
	color: #F05A67;
	margin-top: 25px;
	margin-bottom: 25px;
}
#apply_block.complete .form_btn_box {
	margin-top: 25px;
}
#apply_block .form_btn a.form_btn_link {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-align: center;
	color: #FFFFFF;
	background: #F05A67;
	padding: 18px 0;
	width: 100%;
	border: none;
	border-radius: 5px;
	transition: 0.3s;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
}
#apply_block .form_btn a.form_btn_link:hover {
	opacity: 0.5;
}
#apply_block .form_btn .wpcf7-spinner {
	display: none;
}
#apply_block .form_btn br {
	display: none;
}
#apply_block .wpcf7-response-output {
	font-weight: 500;
    text-align: center;
    padding: 2em 1em;
}
#apply_block .form_wrap .form_box {
	margin-bottom: 60px;
}
#apply_block .form_wrap .form_box:last-of-type {
	margin-bottom: 0;
}
#apply_block .form_wrap .form_box .att_txt {
	margin-bottom: 20px;
}

/* 購入製品の選択 */
#apply_block .product_box .product_error_wrap {
	text-align: center;
}
#apply_block .product_box .product_error_wrap:not(:empty) {
	margin-bottom: 16px;
}
#apply_block .product_box table {
	table-layout: fixed;
}
#apply_block .product_box tbody tr:first-of-type th,
#apply_block .product_box tbody tr:first-of-type td {
	text-align: center;
	background: #FFF6F7;
}
#apply_block .product_box th,
#apply_block .product_box td {
	padding: 18px 10px;
}
#apply_block .product_box th:nth-child(1),
#apply_block .product_box td:nth-child(1) {
	width: 20%;
}
#apply_block .product_box th:nth-child(2),
#apply_block .product_box td:nth-child(2) {
	width: 15%;
}
#apply_block .product_box th:nth-child(3),
#apply_block .product_box td:nth-child(3) {
	width: 40%;
}
#apply_block .product_box th:nth-child(4),
#apply_block .product_box td:nth-child(4) {
	width: 10%;
}
#apply_block .product_box tr.option_note td {
	padding: 12px 16px;
	background: #FFFAFB;
	font-size: 13px;
	line-height: 1.7;
	color: #6E5658;
	border-top: 1px solid #F05A67;
}
#apply_block .product_box tr.option_note .option_note_label {
	font-weight: 700;
	margin: 0 0 4px;
	white-space: nowrap;
}
#apply_block .product_box tr.option_note .option_note_desc {
	margin: 0;
	font-size: 14px;
}
/* 確認画面ではオプション注意文（説明テキスト）は非表示 */
#apply_block.confirm .product_box tr.option_note .option_note_desc {
	display: none;
}
/* オプション品行（本体以外4つ） */
#apply_block .product_box table tbody tr:nth-child(n+4):not(.option_note) td {
	background: #FFFAFB;
}
/* 入力画面：製品名セルに「オプション」バッジ（テキストは回り込まず右側に揃える） */
#apply_block:not(.confirm) .product_box table tbody tr:nth-child(n+4):not(.option_note) td:nth-child(2)::before {
	content: "オプション";
	display: block;
	width: 77px;
    text-align: center;
    margin-bottom: 10px;
    padding: 2px 8px;
    font-size: 11px;
	color: #F05A67;
	border: 1px solid #F05A67;
	border-radius: 999px;
	background: #fff;
	white-space: nowrap;
}
/* 確認画面：製品名（2列目）に「オプション」バッジ（4列構成のため2列目） */
#apply_block.confirm .product_box table tbody tr:nth-child(n+4):not(.option_note) td:nth-child(2)::before {
	content: "オプション";
	display: block;
	width: 77px;
	text-align: center;
	margin-bottom: 10px;
	padding: 2px 8px;
	font-size: 11px;
	color: #F05A67;
	border: 1px solid #F05A67;
	border-radius: 999px;
	background: #fff;
	white-space: nowrap;
}
#apply_block .product_box .image {
	width: 160px;
	margin: 0 auto;
}
#apply_block .product_box .image img {
	display: block;
	width: 100%;
	height: auto;
}
#apply_block .product_box .ttl {
	font-size: 16px;
	line-height: 1.7;
}
#apply_block .product_box .price {
	font-size: 14px;
	line-height: 1.7;
}
#apply_block .product_box .select_wrap {
	margin: 0 auto;
}

/* アコーディオン */
#apply_block .product_box .accordion {
	margin-top: 30px;
	border-top: 1px solid #E6DDDD;
}
#apply_block .product_box .accordion_ttl {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	padding: 16px 20px;
	background: #FFF6F7;
	cursor: pointer;
	position: relative;
}
#apply_block .product_box .accordion_ttl::before,
#apply_block .product_box .accordion_ttl::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	background: #6E5658;
	transition: transform 0.25s ease;
}
#apply_block .product_box .accordion_ttl::before {
	width: 10px;
	height: 2px;
	right: 20px;
	left: auto;
}
#apply_block .product_box .accordion_ttl::after {
	width: 2px;
	height: 10px;
	right: 24px;
	left: auto;
	transform-origin: center center;
}
#apply_block .product_box .accordion.is-open .accordion_ttl::after {
	transform: rotate(90deg);
}
#apply_block .product_box .accordion_contents {
	max-height: 0;
	overflow: hidden;
	padding-top: 0;
	transition: max-height 0.35s ease;
}
#apply_block .product_box .accordion.is-open .accordion_contents {
	max-height: 3000px;
	/* padding-top: 5px; */
}
/* #apply_block .product_box .accordion_contents table {
	margin-top: 5px;
} */

/* 金額集計エリア */
#apply_block .product_box .result_wrap {
	margin-top: 40px;
	padding-top: 30px;
	border-top: 1px solid #E6DDDD;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}
#apply_block .product_box .first_box,
#apply_block .product_box .monthly_box {
	flex: 0 0 100%;
	width: 100%;
	background: #FFF6F7;
	border-radius: 10px;
	padding: 20px 24px;
}
#apply_block .product_box .first_box h4,
#apply_block .product_box .monthly_box h4 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
	color: #F05A67;
	margin-bottom: 12px;
}
#apply_block .product_box .result_wrap .row_box.contents_item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	padding: 6px 0;
}
#apply_block .product_box .result_wrap .contents_name {
	font-size: 14px;
	font-weight: 700;
}
#apply_block .product_box .result_wrap .contents_price .price {
	font-size: 18px;
	font-weight: 700;
}
#apply_block .product_box .first_box_contents_total,
#apply_block .product_box .monthly_box_contents_total {
	margin-top: 12px;
	padding-top: 12px;
	border-top: 1px solid #E6DDDD;
}
/* 初期費用・月々のお支払いの合計金額を強調（フォントサイズアップ・赤・円/月も同様） */
#apply_block .product_box .result_wrap .first_box_contents_total .contents_price,
#apply_block .product_box .result_wrap .monthly_box_contents_total .contents_price {
	font-size: 22px;
	font-weight: 700;
	color: #F05A67;
}
#apply_block .product_box .result_wrap .first_box_contents_total .contents_price .price,
#apply_block .product_box .result_wrap .monthly_box_contents_total .contents_price .price {
	font-size: 22px;
	font-weight: 700;
	color: #F05A67;
}
#apply_block .confirm_box {
	margin-bottom: 50px;
}
#apply_block .pdf_box {
	border: 1px solid #E6DDDD;
	padding: 30px 40px;
	margin-bottom: 30px;
}
#apply_block .pdf_item:not(:last-of-type) {
	margin-bottom: 20px;
}
#apply_block .pdf_box a {
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	text-decoration: underline;
	color: #6E5658;
	margin-right: 5px;
}
#apply_block .pdf_box .pdf {
	color: #F05A67;
}
#apply_block .privacy_check{
	font-size: 20px;
	font-weight: 700;
	color: #000;
	margin: 50px auto 70px;
}
#apply_block .privacy_check .wpcf7-list-item {
	margin: 0;
}
#apply_block .privacy_check .wpcf7-form-control-wrap {
	display: block;
	width: max-content;
	max-width: 100%;
	margin: 0 auto;
}
#apply_block .privacy_check .wpcf7-not-valid-tip {
	font-size: 16px;
}
#apply_block .privacy_check .privacy_txt{
	font-size: 14px;
	font-weight: 500;
	color: #000;
	opacity: 0.6;
	text-align: center;
	margin-top: 10px;
}
#apply_block .privacy_check .privacy_txt a{
	text-decoration: underline;
}

#apply_block .privacy_check label{
	position: relative;
	padding-left: 37px;
	cursor: pointer;
}
#apply_block .privacy_check label::before{
	content: "";
    width: 20px;
    height: 20px;
    left: 0;
    display: block;
    position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
    border: 1px solid #6E5658;
	pointer-events: none; 
}
#apply_block .privacy_check label::after{
	content: "";
    display: block;
    position: absolute;
    top: 49%;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    height: 7px;
    width: 14px;
    transform: rotate(-45deg) translateY(-90%);
    left: 7px;
    margin: auto;
    opacity: 0;
	pointer-events: none; 
}
#apply_block .privacy_check label:has(input:checked)::before{
	background: #6E5658;
}
#apply_block .privacy_check label:has(input:checked)::after{
    opacity: 1;
}
#apply_block .form_wrap .check_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
#apply_block .form_wrap .check_wrap label {
	font-size: 16px;
	font-weight: 700;
	color: #F05A67;
	text-decoration: underline;
	padding-left: 44px;
	position: relative;
}
#apply_block .form_wrap .check_wrap label::before,
#apply_block .form_wrap .check_wrap label::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
}
#apply_block .form_wrap .check_wrap label::before {
	background: #FFF6F7;
	border: 2px solid #F05A67;
	width: 31px;
	height: 31px;
	top: 3px;
	left: 0;
	border-radius: 5px;
}
#apply_block .form_wrap .check_wrap label::after {
	border-bottom: 3px solid #F05A67;
	border-left: 3px solid #F05A67;
	border-radius: 3px;
	height: 12px;
	width: 20px;
	transform: rotate(-45deg) translateY(-90%);
	top: 14px;
	left: 13px;
	opacity: 0;
}
#apply_block .form_wrap .check_wrap label:has(input:checked)::after {
	opacity: 1;
}
#apply_block .form_wrap .check_wrap label {
	cursor: pointer;
}
#apply_block .form_btn_box {
	margin-top: 45px;
}
#apply_block.confirm .form_btn_box {
	max-width: 600px;
	margin: 45px auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px 20px;
}
/* 確認画面：戻る・送信ボタン（contact準拠） */
#apply_block.confirm .form_btn::after {
	background: url(../img/common/icon_btn_arw_rt.svg) no-repeat center / contain;
	right: 27px;
	left: auto;
	transform: none;
}
#apply_block.confirm .form_btn.back::after {
	background: url(../img/common/icon_btn_arw_lt.svg) no-repeat center / contain;
	right: auto;
	left: 27px;
	transform: none;
}
#apply_block.confirm .form_btn.back input {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-align: center;
	color: #6E5658;
	background: #F0F3F3;
	padding: 18px 0;
	width: 100%;
	border: none;
	border-radius: 5px;
	transition: 0.3s;
	cursor: pointer;
}
/* 確認画面：戻るボタンの文字を中央寄せ（後続の .form_btn.back ルールより優先） */
#apply_block.confirm .form_btn.back input[type="submit"] {
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}
#apply_block.confirm .form_btn.back input:hover {
	opacity: 0.5;
}
/* 確認画面：購入製品は4列（入力画面と同じ：製品画像・製品名・金額・個数） */
#apply_block.confirm .product_box table {
	table-layout: fixed;
}
#apply_block.confirm .product_box th:nth-child(1),
#apply_block.confirm .product_box td:nth-child(1) {
	/* width: 20%; */
	width: 10%;
}
#apply_block.confirm .product_box th:nth-child(2),
#apply_block.confirm .product_box td:nth-child(2) {
	/* width: 15%; */
	width: 10%;
}
#apply_block.confirm .product_box th:nth-child(3),
#apply_block.confirm .product_box td:nth-child(3) {
	/* width: 25%; */
	width: 15%;
}
#apply_block.confirm .product_box th:nth-child(4),
#apply_block.confirm .product_box td:nth-child(4) {
	/* width: 25%; */
	/* width: 10%; */
	width: 5%;
	text-align: center;
}
/* 確認画面：2台目・3台目・4台目ブロックは常に表示（入力画面と同じブロック分け） */
#apply_block.confirm .product_box .accordion.confirm_product_block .accordion_contents {
	display: block;
	max-height: none;
	overflow: visible;
}
#apply_block.confirm .product_box .accordion.confirm_product_block .accordion_ttl {
	cursor: default;
}
#apply_block.confirm .product_box .accordion.confirm_product_block .accordion_ttl::before,
#apply_block.confirm .product_box .accordion.confirm_product_block .accordion_ttl::after {
	display: none;
}
#apply_block.confirm .product_box .accordion.confirm_product_block .accordion_contents table {

}
#apply_block .form_btn {
	width: 100%;
	max-width: 290px;
	margin: 0 auto;
	position: relative;
}
#apply_block .form_btn::after {
	content: "";
	display: block;
	background: url(../img/common/icon_btn_arw_rt.svg) no-repeat center / contain;
	width: 8px;
	height: 14px;
	margin: auto;
	position: absolute;
	top: 3px;
	right: 27px;
	bottom: 0;
	z-index: 1;
}
#apply_block .form_btn.back::after {
	background: url(../img/common/icon_btn_arw_lt.svg) no-repeat center / contain;
	right: auto;
	left: 27px;
	transform: none;
}
#apply_block .form_btn input[type="submit"] {
	display: block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.06em;
	text-align: center;
	color: #FFFFFF;
	background: #F05A67;
	padding: 18px 0;
	width: 100%;
	border: none;
	border-radius: 5px;
	transition: 0.3s;
	cursor: pointer;
}
#apply_block .form_btn.back input[type="submit"] {
	color: #6E5658;
	background: #F0F3F3;
	padding-left: 0;
	padding-right: 101px;
	text-align: right;
	border: none;
}
#apply_block .form_btn input[type="submit"]:hover {
	opacity: 0.5;
}
#apply_block .form_btn .wpcf7-spinner {
	display: none;
}
#apply_block .form_btn br {
	display: none;
}

.alert {
	color: #F05A67;
	font-weight: bold;
	text-align: center;
}
.error {
	color: #F05A67;
	font-weight: bold;
	line-height: 1.6 !important;
}

/* レスポンシブ（contact準拠のブレイクポイント：1024 / 840 / 640） */
@media screen and (max-width: 1024px) {
	#apply_block .apply_wrap {
		padding: 40px 50px 60px;
	}
	#apply_block .apply_wrap h2 {
		font-size: 28px;
		margin-bottom: 20px;
	}
	#apply_block .apply_wrap .intro {
		font-size: 14px;
		margin-bottom: 40px;
	}
	#apply_block .form_wrap h3 {
		font-size: 22px;
		margin-bottom: 24px;
	}
}
@media screen and (max-width: 840px) {
	#apply_block .apply_wrap h2 {
		font-size: 24px;
		margin-bottom: 18px;
	}
	#apply_block .apply_wrap .intro {
		font-size: 14px;
		margin-bottom: 36px;
	}
	#apply_block .form_wrap h3 {
		font-size: 20px;
		margin-bottom: 20px;
	}
	#apply_block .product_box .accordion_ttl {
		font-size: 15px;
		padding: 14px 16px;
	}
	#apply_block .product_box .accordion_ttl::before {
		right: 16px;
	}
	#apply_block .product_box .accordion_ttl::after {
		right: 20px;
	}
	#apply_block .product_box .first_box h4,
	#apply_block .product_box .monthly_box h4 {
		font-size: 16px;
		margin-bottom: 10px;
	}
	/* product_box 以外のフォームテーブルのみ縦積み（contact準拠） */
	#apply_block .form_wrap .form_box:not(.product_box) th,
	#apply_block .form_wrap .form_box:not(.product_box) td {
		display: block;
		width: 100%;
	}
}

@media screen and (max-width: 900px) {
	/* 入力画面のみ：製品名が画像に重ならないように最小幅を確保（確認画面には当てない） */
	#apply_block:not(.confirm) .product_box th:nth-child(1),
	#apply_block:not(.confirm) .product_box td:nth-child(1) {
		min-width: 140px;
	}
	#apply_block:not(.confirm) .product_box .image {
		max-width: 100%;
		max-width: 160px;
		width: auto;
		height: auto;
	}
	#apply_block:not(.confirm) .product_box th:nth-child(2),
	#apply_block:not(.confirm) .product_box td:nth-child(2) {
		min-width: 100px;
		overflow-wrap: break-word;
		word-break: break-word;
	}
	#apply_block:not(.confirm) .product_box th:nth-child(4),
	#apply_block:not(.confirm) .product_box td:nth-child(4) {
		min-width: 90px;
	}
	#apply_block:not(.confirm) .product_box .select_wrap {
		min-width: 70px;
	}
	#apply_block:not(.confirm) .product_box .select_wrap select {
		min-width: 70px;
	}
}

#apply_block complete .form_wrap h3,
#apply_block complete .form_wrap p {
	text-align: center;
}
#apply_block complete .form_wrap h3 {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 32px;
}
#apply_block complete .form_wrap p {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.06em;
	margin-bottom: 48px;
}
#apply_block complete .form_wrap .btn {
	width: 218px;
}
#apply_block .form_wrap .confirm_box .error {
	text-align: center;
	margin-top: 10px;
}
@media screen and (max-width: 840px) {
	/* contact準拠（640px 共通） */
	#apply_block {
		padding-bottom: 80px;
	}
	#apply_block .apply_wrap {
		padding: 30px 20px 40px;
	}
	#apply_block p {
		font: 500 1.4rem/1.88 var(--fJA);
	}
	#apply_block .form_wrap .required {
		display: inline-block;
		font-size: 13px;
		margin-top: 0;
		margin-left: 3px;
	}
	#apply_block .apply_wrap h2 {
		font-size: 24px;
		margin-bottom: 18px;
	}
	#apply_block .apply_wrap .intro {
		font-size: 14px;
		margin-bottom: 28px;
	}
	#apply_block .form_wrap .att_txt {
		font-size: 12px;
	}
	#apply_block .form_wrap th,
	#apply_block .form_wrap td {
		font-size: 14px;
		padding: 15px 0;
	}
	#apply_block .form_wrap input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]):not([type="button"]):not([type="image"]),
	#apply_block .form_wrap textarea,
	#apply_block .form_wrap select {
		font-size: 13px;
	}
	#apply_block .form_wrap .check_wrap label {
		font-size: 13px;
		line-height: 1.6;
		padding-left: 38px;
	}
	#apply_block .form_wrap .check_wrap label::before {
		width: 26px;
		height: 26px;
		top: 0;
	}
	#apply_block .form_wrap .check_wrap label::after {
		height: 10px;
		width: 17px;
		top: 11px;
		left: 11px;
	}
	#apply_block .form_wrap .contract_status_wrap label {
		font-size: 13px;
		padding: 9px 33px 9px 10px;
		min-width: 100%;
	}
	#apply_block .form_wrap .contract_status_wrap label::before {
		width: 18px;
		height: 18px;
		right: 7px;
	}
	#apply_block .form_wrap .contract_status_wrap label::after {
		width: 6px;
		height: 6px;
		right: 13px;
	}
	#apply_block .form_wrap .select_wrap::after {
		width: 13px;
		height: 9px;
	}
	#apply_block .pdf_box {
		padding: 25px 20px;
		margin-bottom: 25px;
	}
	#apply_block .pdf_box a,
	#apply_block .pdf_box .pdf {
		font-size: 13px;
	}
	#apply_block .confirm_box {
		margin-bottom: 40px;
	}
	#apply_block .form_btn input[type="submit"] {
		padding: 16px 0;
		border: none;
	}
	#apply_block .form_btn a.form_btn_link {
		padding: 16px 0;
	}
	#apply_block .form_btn.back input {
		padding: 16px 0;
	}
	#apply_block .form_btn::after {
		width: 7px;
		height: 12px;
		top: 0;
		right: 22px;
	}
	#apply_block .form_btn.back::after {
		width: 7px;
		height: 12px;
		top: 0;
		left: 22px;
	}
	/* form_wrap・form_box */
	#apply_block .form_wrap {
		max-width: 100%;
	}
	#apply_block .form_wrap .form_box {
		margin-bottom: 40px;
	}
	#apply_block .form_wrap h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}
	#apply_block .privacy_check {
		font-size: 18px;
		margin: 40px auto 50px;
	}
	/* product_box など apply 独自 */
	#apply_block .product_box .accordion_ttl {
		font-size: 14px;
		padding: 12px 14px;
		text-align: center;
	}
	#apply_block .product_box .accordion_ttl::before {
		right: 14px;
	}
	#apply_block .product_box .accordion_ttl::after {
		right: 18px;
	}
	#apply_block .product_box .first_box h4,
	#apply_block .product_box .monthly_box h4 {
		font-size: 16px;
		margin-bottom: 8px;
	}
	/* SP: 入力・確認とも購入製品テーブルを同じカードスタイル（4列：製品画像・製品名・金額・個数） */
	#apply_block .product_box table {
		display: block;
		width: 100%;
	}
	#apply_block .product_box table tbody {
		display: block;
		width: 100%;
	}
	#apply_block .product_box table tbody tr:first-of-type {
		display: none;
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) {
		display: block;
		border: 1px solid #E6DDDD;
		border-radius: 4px;
		margin-bottom: 12px;
		padding: 12px;
        background: #FFFAFB;
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) td {
		display: flex;
		align-items: flex-start;
		gap: 10px;
		padding: 10px 0;
		border: none;
		width: 100%;
		min-width: 0;
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) td:not(:last-child) {
		border-bottom: 1px solid #E6DDDD;
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) td::before {
		font-weight: 700;
		flex: 0 0 72px;
		font-size: 13px;
		padding-top: 2px;
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) td:nth-child(1)::before {
		content: "製品画像";
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) td:nth-child(2)::before {
		content: "製品名";
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) td:nth-child(3)::before {
		content: "金額";
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) td:nth-child(4)::before {
		content: "個数";
		text-align: left;
	}
	#apply_block .product_box table tbody tr:not(:first-of-type):not(.option_note) td:nth-child(1) {
		align-items: center;
	}
	/* SP時はオプション品行も「製品名」ラベルを表示（オプションバッジで上書きしない） */
	#apply_block:not(.confirm) .product_box table tbody tr:nth-child(n+4):not(.option_note) td:nth-child(2)::before,
	#apply_block.confirm .product_box table tbody tr:nth-child(n+4):not(.option_note) td:nth-child(2)::before {
		content: "製品名";
		font-weight: 700;
		flex: 0 0 72px;
		font-size: 13px;
		padding: 2px 0 0 0;
		width: auto;
		text-align: left;
		margin-bottom: 0;
		color: inherit;
		border: none;
		border-radius: 0;
		background: transparent;
		white-space: normal;
	}
	#apply_block .product_box table tbody tr.option_note {
		display: block;
		margin-bottom: 12px;
	}
	#apply_block .product_box table tbody tr.option_note td {
		display: block;
		width: 100% !important;
		padding: 12px;
	}
	#apply_block .product_box table tbody tr.option_note td::before {
		display: none;
	}
	/* SP時は確認画面の4列目もカード幅100%・左揃えで上書き（PC用 width:25%; text-align:center に負けない） */
	#apply_block.confirm .product_box table tbody tr:not(:first-of-type):not(.option_note) td:nth-child(4) {
		width: 100%;
		text-align: left;
	}
	#apply_block .product_box th,
	#apply_block .product_box td {
		font-size: 14px;
		padding: 12px 8px;
	}
	#apply_block .product_box .select_wrap,
	#apply_block .product_box .select_wrap select {
		min-width: 70px;
		max-width: 90px;
		margin: 0;
	}
	#apply_block .product_box .image {
        width: 120px;
		margin: 0;
	}
	#apply_block .product_box .result_wrap {
		flex-direction: column;
	}
	#apply_block .product_box .result_wrap .row_box.contents_item {
		align-items: flex-start;
		flex-direction: column;
	}
}