/* フォーム内の単位表示用スタイル */

/* 万円を表示するコンテナ */
.input-with-unit {
	position: relative;
	/*display: inline-block;*/
	display: flex;
	width: 100%;
}

/* 単位を右側に表示 */
.input-unit {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #767676;
	pointer-events: none;
	font-size: 14px;
	line-height: 1;
}

/* 単位が表示される入力フィールドの右パディング調整 */
.input-with-unit .input-control {
	padding-right: 50px !important;
}

/* 総額ラベル付きの入力フィールド用 */
.login-wrap__plan-total .input-with-unit {
	/*width: calc(100% - 60px);*/
	/*display: inline-block;*/
	display: flex;
	vertical-align: middle;
}

/* 金融資産内訳のラベル幅統一（内訳項目のみ対象） */
.login-wrap__plan-item--02 .login-wrap__plan-total {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.login-wrap__plan-item--02 .login-wrap__plan-total-ttl {
	flex: 0 0 140px; /* デフォルト幅 */
	margin-right: 15px;
	text-align: left;
}

.login-wrap__plan-item--02 .input-with-unit {
	flex: 1;
}

/* 中サイズPC画面用のラベル幅調整 (1025px～1700px) */
@media (min-width: 1025px) and (max-width: 1700px) {
	.login-wrap__plan-item--02 .login-wrap__plan-total-ttl {
		flex: 0 0 150px; /* 中サイズPC画面では150px */
	}
}

/* 大サイズPC画面用のラベル幅調整 (1701px以上) */
@media (min-width: 1701px) {
	.login-wrap__plan-item--02 .login-wrap__plan-total-ttl {
		flex: 0 0 170px; /* 大サイズPC画面では170px */
	}
}

/* 総額ラベル付きでない単独フィールド用 */
.login-wrap__plan-total--02 .input-with-unit {
	width: 100%;
}

.login-wrap__plan-total input{
	margin-right: 0;
	margin-left: clamp(10px, 0.6944vw, 13px);
}

.login-wrap__plan-total input[type="checkbox"]{
	margin-right: clamp(10px, 0.6944vw, 13px);
	margin-left: clamp(10px, 0.6944vw, 13px);
}

.login-wrap__plan-total--02 input{
	margin-right: 0 !important;
	margin-left: 0 !important;
}

/* プロフィール登録ページ用のスタイル */
.login-wrap__form-box .input-with-unit {
	position: relative;
	display: flex;
	width: 100%;
}

.login-wrap__form-box .input-with-unit .input-control {
	padding-right: 50px !important;
}

.login-wrap__form-box .input-unit {
	position: absolute;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	color: #767676;
	pointer-events: none;
	font-size: 14px;
	line-height: 1;
}

/* 「総額」ラベル付きの場合の調整 */
.login-wrap__form-box .txt:first-child {
	flex-shrink: 0;
	margin-right: 10px;
}

.login-wrap__form-box .input-with-unit {
	flex: 1;
}

/* MemberMql用の投資目的の文字表示アップデート用 */
.ci_investment_purpose_font_size_update {
	font-size: clamp(1.2rem, 0.86vw, 1.9rem);
	line-height: 2.5;
}

/* 個人情報の取り扱いセクション用のレスポンシブスタイル */
.privacy-policy-section {
	margin: 0 auto;
	padding: 30px 40px 50px 40px;
	max-width: 750px;
	background-color: #ffffff;
	text-align: left;
}

.privacy-policy-section h3 {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.privacy-policy-section .icon {
	margin-right: 8px;
}

.privacy-policy-content {
	font-size: 18px;
	line-height: 1.8;
	color: #333;
	text-align: left;
}

.privacy-policy-content p {
	margin-bottom: 15px;
}

.privacy-policy-content a {
	color: #0066cc;
	text-decoration: none;
}

.privacy-policy-content a:hover {
	text-decoration: underline;
}

.privacy-policy-checkbox {
	margin-top: 20px;
}

.privacy-policy-checkbox span {
	font-size: 18px;
}

.privacy-policy-checkbox .required {
	color: #e74c3c;
	font-weight: bold;
	margin-left: 5px;
}

/* モバイル対応 */
@media (max-width: 767px) {
	.privacy-policy-section {
		padding: 20px 15px 30px 15px;
		max-width: 100%;
	}
	
	.privacy-policy-section h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}
	
	.privacy-policy-content {
		font-size: 14px;
		line-height: 1.6;
	}
	
	.privacy-policy-content p {
		margin-bottom: 12px;
	}
	
	.privacy-policy-checkbox span {
		font-size: 12px;
		padding-top: 4px;
	}
	
	.privacy-policy-checkbox .required {
		margin-left: 3px;
	}
}

/* タブレット対応 */
@media (min-width: 768px) and (max-width: 1024px) {
	.privacy-policy-section {
		padding: 25px 30px 40px 30px;
	}
	
	.privacy-policy-section h3 {
		font-size: 22px;
	}
	
	.privacy-policy-content {
		font-size: 16px;
	}
	
	.privacy-policy-checkbox span {
		font-size: 16px;
	}
}

