@charset "Shift_JIS";

/* # Update: 2025.07.24 - 01 */

/* ===========================================================
  初期化
=========================================================== */

html * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	color: var(--color-text-default);
	background-color: var(--color-body-bg);
	font-size: min(16px, 4vw);
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
	font-weight: normal;
	line-height: 1.5;
}

#SMP_STYLE select {
	appearance: none;
	width: 100%;
	padding: 10px 30px 10px 10px;
	border: 1px solid var(--color-choice-border);
	background: url("/ssl-images/a12/arrow.svg") right center no-repeat;
	background-size: 1em;
	background-color: var(--color-select-bg);
	border-radius: 5px;
	font-size: 113%;
	cursor: pointer;
}

#SMP_STYLE ul,
#SMP_STYLE li {
	list-style: none;
}

#SMP_STYLE img {
	width: auto;
	max-width: 100%;
	vertical-align: middle;
}

#SMP_STYLE label {
	width: fit-content;
	cursor: pointer;
}


/* ===========================================================
  ユーティリティ
=========================================================== */

/* -------------------------------------------------
  デバイス表示切替
-------------------------------------------------- */
#SMP_STYLE .sponly {
	display: block;
}
#SMP_STYLE .pconly {
	display: none;
}

/* -------------------------------------------------
  テキスト配置
-------------------------------------------------- */
#SMP_STYLE .txt-l {
	text-align: left;
}
#SMP_STYLE .txt-c {
	text-align: center;
}
#SMP_STYLE .txt-r {
	text-align: right;
}


/* ===========================================================
  ページ全体（body直下のdiv）
=========================================================== */

#SMP_STYLE .body_tbl {
	max-width: 900px;
	margin-inline: auto;
	text-align: center;
	background-color: var(--color-body-tbl-bg);
}


/* ===========================================================
  SP表示
=========================================================== */

/* -------------------------------------------------
  ヘッダー
-------------------------------------------------- */
#SMP_STYLE .header {
	margin: 0 0 1.5em 0;
	font-size: 137%;
	font-weight: bold;
}

#SMP_STYLE .header > span {
	display: block;
}

/* === 1段目（画像） === */
#SMP_STYLE .header span:first-child {
	padding: 15px 0;
	background-color: var(--color-header-bg);
}

#SMP_STYLE .header img {
	width: 400px;
	max-width: 70%;
}

/* === 2段目（テキスト） === */
#SMP_STYLE .header span:nth-of-type(2) {
	padding: 10px 0;
	font-size: 128%;
	font-weight: normal;
	background: linear-gradient(
		to right,
		var(--color-grad-start) 0%,
		var(--color-grad-mid) 31%,
		var(--color-grad-end) 100%
	);
	color: var(--color-text-light);
}

@media screen and (max-width: 640px) {
	#SMP_STYLE .header span:nth-of-type(2) {
		font-size: 4.8vw;
		line-height: 6vw;
		padding: 2.8vw 0;
	}
}

/* -------------------------------------------------
  説明文
-------------------------------------------------- */
#SMP_STYLE .header_rmesg,
#SMP_STYLE .header_emesg {
	max-width: 90%;
	margin: 1em 0 0;
	margin-inline: auto;
	font-size: 100%;
	text-align: left;
}

/* === エラー === */
#SMP_STYLE .header_emesg {
	color: var(--color-text-error);
}

/* -------------------------------------------------
  ステップ（入力・確認・完了）
-------------------------------------------------- */
#SMP_STYLE #step {
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	margin: 1em auto 2.5em;
	padding: 0 calc(5% + 1.2em) 0 5%;
}

#SMP_STYLE #step li {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 34%;
	height: 3em;
	padding-left: 1.5em;
	font-size: 104%;
}

#SMP_STYLE #step li:first-child {
	padding-left: 0.5em;
	width: 31%;
}

#SMP_STYLE #step li::before,
#SMP_STYLE #step li::after {
	content: "";
	z-index: 2;
	position: absolute;
	display: block;
	width: 0;
	height: 0;
	top: 50%;
	transform: translate(0, -50%);
	border-left: 1.5em solid;
	border-top: 3em solid transparent;
	border-right: 0 solid transparent;
	border-bottom: 3em solid transparent;
}

#SMP_STYLE #step li::before {
	right: -1.5em;
	border-left-color: var(--color-body-tbl-bg);
}

#SMP_STYLE #step li::after {
	right: -1em;
}

#SMP_STYLE #step .current span,
#SMP_STYLE #step li:not(.current) span {
	color: var(--color-text-light);
}

/* === 現在地 === */
#SMP_STYLE #step .current {
	background-color: var(--color-step-current-bg);
}
#SMP_STYLE #step .current:after {
	border-left-color: var(--color-step-current-bg);
}

/* === 現在地ではない === */
#SMP_STYLE #step li:not(.current) {
	background-color: var(--color-step-other-bg);
}
#SMP_STYLE #step li:not(.current)::after {
	border-left-color: var(--color-step-other-bg);
}


/* -------------------------------------------------
  カスタムフォーム
-------------------------------------------------- */
#SMP_STYLE .smp_tmpl {
	max-width: 90%;
	margin-inline: auto;
}

/* === 入力フォーム === */
#SMP_STYLE .smp_tmpl .cf .cf { /* .親cfの中に子.cfが指定されてしまっているため余白を削除 */
	margin: 0;
}
/* -- ユニット -- */
#SMP_STYLE .smp_tmpl .cf {
	position: relative;
	display: table;
	width: 100%;
	margin-top: 2em;
}
#SMP_STYLE .smp_tmpl .cf:last-child {
	margin-bottom: 50px;
}
/* -- 項目名 -- */
#SMP_STYLE .smp_tmpl .title {
	margin-bottom: 0.5em;
	color: #333;
	font-weight: bold;
	text-align: left;
	line-height: 1.2;
}
/* - 必須 - */
#SMP_STYLE .smp_tmpl .title .need {
	color: var(--color-text-required);
	font-size: 100%;
	font-weight: normal;
}
/* -- 入力欄 全体 -- */
#SMP_STYLE .smp_tmpl .data {
	font-size: 100%;
	text-align: left;
	word-break: break-all;
}
/* - テキストフィールド - */
#SMP_STYLE .smp_tmpl .data .input {
	width: 100%;
	margin-bottom: 0.2em;
	padding: 8px;
	color: #333;
	border: 1px solid var(--color-choice-border);
	border-radius: 3px;
	font-size: 105%;
}
/* - セレクトボックス（入力例） - */
#SMP_STYLE .smp_tmpl .data .sample {
	color: #666;
	font-size: 85%;
}

/* - エラー - */
#SMP_STYLE .smp_tmpl .data .msg {
	display: block;
	margin-top: 10px;
	color: var(--color-text-error-help);
	font-size: 93%;
	font-weight: bold;
}
/* - テキストフィールドの横幅 - */
/* 郵便番号 */
#SMP_STYLE .smp_tmpl .data .code01,
#SMP_STYLE .smp_tmpl .data .code02 {
	display: inline-block;
}
/* 郵便番号（3桁）*/
#SMP_STYLE .smp_tmpl .data .code01 input {
	width: 4em;
}
/* 郵便番号（4桁）*/
#SMP_STYLE .smp_tmpl .data .code02 {
	margin-left: 0.5em;
}
#SMP_STYLE .smp_tmpl .data .code02 input {
	width: 5em;
}
/* ご購入日 */
#SMP_STYLE .smp_tmpl .data.time li {
	display: inline-block;
	margin: 0 0.3em 0 0;
}
#SMP_STYLE .smp_tmpl .data.time .input {
	width: 3em;
	margin-right: 0.1em;
}
/* ご購入日（生年）だけ横幅を長くする */
#SMP_STYLE .smp_tmpl .data.time .year {
	width: 5em;
}
/* ご意見・ご感想 */
#SMP_STYLE .smp_tmpl .data textarea {
	width: 100%;
	padding: 5px;
	border: 1px solid var(--color-choice-border);
	border-radius: 3px;
	font-size: 100%;
}

/* - 画像アップロード - */
#SMP_STYLE .smp_tmpl .file input {
	appearance: none;
	width: auto;
	font-size: 0.85rem;
	border: none;
	box-shadow: none;
}
/* [ファイルを選択]ボタン */
#SMP_STYLE .smp_tmpl .file input::file-selector-button {
	height: 2em;
	margin-right: 0.5em;
	padding: 0 1em;
	border: 1px solid var(--color-choice-border);
	font-size: 0.85rem;
	line-height: 2em;
	border-radius: 5px;
	background: var(--color-choice-bg);
	box-shadow: 1px 1px 1px 0 var(--color-btn-file-shadow);
	cursor: pointer;
}

/* -------------------------------------------------
  カスタムアンケート
-------------------------------------------------- */

#SMP_STYLE .smp_tmpl .multi1 span:first-child,
#SMP_STYLE .smp_tmpl .multi2 span:first-child {
	display: block;
	margin-bottom: 10px;
}

/* === アンケートにお答えください（テキスト） === */
#SMP_STYLE .smp_tmpl .enq_start {
	padding-top: 2em;
	margin-top: 2em;
	border-top: 1px solid var(--color-border-top-enq);
}

/* === パターン1 === */
#SMP_STYLE .smp_tmpl .multi1 label {
	display: block;
	min-width: 135px;
	padding: 0.5em;
	background: var(--color-label-bg);
	font-size: 113%;
}
#SMP_STYLE .smp_tmpl .multi1 label span {
	position: relative;
	padding-left: 1.3em;
}
#SMP_STYLE .smp_tmpl .multi1 li {
	display: inline-block;
}

/* === パターン2 === */
#SMP_STYLE .smp_tmpl .multi2 li label {
	background: var(--color-label-bg);
	display: block;
	width: 100%;
	min-width: 110px;
	padding: 0.5em;
	border-radius: 5px;
	font-size: 108%;
	border: 1px solid var(--color-choice-border);
}
#SMP_STYLE .smp_tmpl .multi2 label span {
	position: relative;
	padding-left: 1.3em;
}
#SMP_STYLE .smp_tmpl .multi2 li:not(:first-of-type) {
	margin-top: 1em;
}

/* === ラジオボタン・チェックボックス（共通） === */
#SMP_STYLE .smp_tmpl .input[type="checkbox"],
#SMP_STYLE .smp_tmpl .input[type="radio"] {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
}
#SMP_STYLE .smp_tmpl .input[type="radio"] + span:before,
#SMP_STYLE .smp_tmpl .input[type="checkbox"] + span:before {
	content: "";
	display: block;
	position: absolute;
	left: 0;
	top: 50%;
	width: 0.8em;
	height: 0.8em;
	border: 1px solid var(--color-choice-border);
	background: var(--color-choice-bg);
	transform: translate(0, -50%);
}

/* === ラジオボタン === */
#SMP_STYLE .smp_tmpl .input[type="radio"] + span:before {
	border-radius: 1em;
	width: 0.93em;
	height: 0.93em;
}
#SMP_STYLE .smp_tmpl .input[type="radio"]:checked + span:before {
	background: var(--color-choice-selected-bg);
	border: 1px solid var(--color-choice-selected-bg);
	outline: 2px solid var(--color-text-light);
	outline-offset: -3px;
}

/* === チェックボックス === */
#SMP_STYLE .smp_tmpl .input[type="checkbox"] + span:before {
	border-radius: 2px;
}
#SMP_STYLE .smp_tmpl .input[type="checkbox"]:checked + span:before {
	background: var(--color-choice-selected-bg);
	border: 1px solid var(--color-choice-selected-bg);
	color: var(--color-text-light);
}
#SMP_STYLE .smp_tmpl input[type="checkbox"]:checked + span::after {
	content: "";
	display: block;
	position: absolute;
	top: 42%;
	left: 2px;
	width: 0.2em;
	height: 0.5em;
	border-right: 2px solid var(--color-choice-check);
	border-bottom: 2px solid var(--color-choice-check);
	transform: rotate(45deg) translate(0, -50%);
}

/* === プレースホルダー === */
::placeholder {
	color: var(--color-placeholder);
}

/* -------------------------------------------------
  ボタン
-------------------------------------------------- */
#SMP_STYLE #button-wrap {
	margin: 40px 0 30px 0;
}

/* === 共通 === */
#SMP_STYLE .btn {
	background-color: var(--color-btn-main-bg);
	color: var(--color-text-light);
	border: none;
	text-decoration: none;
}
#SMP_STYLE .btn:hover,
#SMP_STYLE .submit:hover,
#SMP_STYLE .btn-back:hover {
	opacity: 0.9;
	cursor: pointer;
}
#SMP_STYLE .btn:focus,
#SMP_STYLE .submit:focus,
#SMP_STYLE .btn-back:focus {
	outline-offset: -2px;
}

/* === 確認・登録ボタン === */
#SMP_STYLE .submit {
	display: inline-block;
	-webkit-appearance: button;
	appearance: button;
	box-sizing: border-box;
	border: none;
	border-radius: 7px;
	width: 90%;
	min-height: 48px;
	padding: 12px 0;
	font-size: 125%;
	background-color: var(--color-btn-main-bg);
	color: var(--color-text-light);
}
/* - 登録（確認ページ） - */
#SMP_STYLE .btn-confirm .submit {
	background-color: var(--color-btn-action-bg);
}

/* === 戻るボタン === */
#SMP_STYLE .btn-confirm .btn-back {
	position: relative;
	z-index: 1;
	margin-top: 10px;
	padding-left: 1em;
	padding-right: 1em;
	white-space: nowrap;
	box-sizing: border-box;
	padding-left: 1.5em;
	background: url("/ssl-images/a12/btn-arrow.svg") no-repeat 0.5em center;
	background-size: 1em;
	background-color: var(--color-btn-neutral-bg);
}

/* -------------------------------------------------
  フッター
-------------------------------------------------- */

#SMP_STYLE .footer {
	max-width: 900px;
	margin: 3em 0 0;
	padding: 1em 0;
	background-color: var(--color-footer-bg);
	color: var(--color-text-light);
	font-size: 77%;
}

#SMP_STYLE .footer a {
	color: var(--color-text-light);
}


/* ===========================================================
  PC表示
=========================================================== */

@media screen and (min-width: 641px) {
	/* -------------------------------------------------
	  デバイス表示切替
	-------------------------------------------------- */
	#SMP_STYLE .sponly {
		display: none;
	}
	#SMP_STYLE .pconly {
		display: block;
	}

	/* -------------------------------------------------
	  ステップ（入力・確認・完了）
	-------------------------------------------------- */
	/* === 縦幅 === */
	#SMP_STYLE #step li {
		height: 3.5em;
	}

	/* -------------------------------------------------
	  フォーム
	-------------------------------------------------- */
	/* === 入力フォーム === */
	#SMP_STYLE .smp_tmpl select {
		width: auto;
	}
	#SMP_STYLE .smp_tmpl .title {
		display: inline-block;
		width: 200px;
		padding-top: 0.4em;
	}
	#SMP_STYLE .smp_tmpl .data {
		width: calc(100% - 200px); /* 横幅100%から見出し（#SMP_STYLE .smp_tmpl .title）で指定している幅をマイナス */
		display: inline-block;
		vertical-align: top;
	}
	#SMP_STYLE .smp_tmpl .multi2 li label {
		display: inline;
		background: none;
		border: none;
		padding: 0;
	}
	/* - input（テキストフィールド）の横幅 - */
	#SMP_STYLE .smp_tmpl .data .input[name="username"],
	#SMP_STYLE .smp_tmpl .data .input[name="userkana"],
	#SMP_STYLE .smp_tmpl .data .input[name="email"],
	#SMP_STYLE .smp_tmpl .data .input[name="email:cf"] {
		width: 30em;
	}
	#SMP_STYLE .smp_tmpl .data .input[name="phone"] {
		width: 10em;
	}

	/* -------------------------------------------------
	  ボタン
	-------------------------------------------------- */
	#SMP_STYLE #button-wrap {
		direction: rtl;
	}
	#SMP_STYLE .submit {
		width: 345px;
	}
	#SMP_STYLE .submit + .submit {
		margin-right: 5%;
	}
}