/*---------------------------------------------
共通
---------------------------------------------*/
/* ライン装飾用 */
.customer-voice .lower__section {
	position: relative;
	margin-bottom: 140px;
}

/* フッター上の斜めライン装飾 */
.customer-voice .lower__section::after {
	content: "";
	position: absolute;
	right: max(18px, calc((100vw - 1214px) / 2) - 26px);
	top: calc(100% - 75px);
	width: 30%;
	max-width: 400px;
	height: 3px;
	background-color: var(--c-kaisha-app);
	box-shadow:
		-30px 22px 0 var(--c-lalapay),
		-60px 44px 0 var(--c-maekyu);
	transform: rotate(-20deg);
	transform-origin: right center;
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	.customer-voice .lower__section::after {
		right: 5px;
		top: calc(100% - 30px);
		width: 40%;
		height: 1.5px;
		box-shadow:
			-20px 16px 0 var(--c-lalapay),
			-40px 32px 0 var(--c-maekyu);
	}
}

@media screen and (max-width: 480px) {
	.customer-voice .lower__section {
		position: relative;
		margin-bottom: 120px;
	}

	.customer-voice .lower__section::after {
		top: calc(100% - 0px);
	}
}

/* notice list */
.customer-voice .contact-koe-ul {
	list-style: none;
	background-color: var(--c-gray04);
	padding: 22px 28px;
	margin: 0 0 34px;
	border-radius: 5px;
}

.customer-voice .contact-koe-font {
	position: relative;
	padding-left: 20px;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.7;
}

.customer-voice .contact-koe-font:last-child {
	margin-bottom: 0;
}

.customer-voice .contact-koe-font::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.65em;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--c-blue01);
}

.customer-voice .contact-koe-font__text {
	margin: 0;
}

.customer-voice .contact-koe-font__sub-text {
	margin: 2px 0 0;
}

.customer-voice .contact-koe-font__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0 30px;
	margin-top: 2px;
}

.customer-voice .contact-koe-font__links a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--c-link);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.customer-voice .contact-koe-font__links a::after {
	content: "";
	display: inline-block;
	width: 14px;
	height: 14px;
	flex: 0 0 auto;
	background-image: url("../../assets/add-img/link-icon.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin-left: 2px;
}

/* tablet / SP */
@media screen and (max-width: 767px) {
	.customer-voice .contact-koe-ul {
		padding: 28px 24px;
		margin-bottom: 20px;
	}

	.customer-voice .contact-koe-font__links {
		display: block;
		margin-top: 2px;
	}

	.customer-voice .contact-koe-font__links a {
		display: block;
	}
}

/* small SP */
@media screen and (max-width: 480px) {
	.customer-voice .contact-koe-ul {
		padding: 18px;
		border-radius: 6px;
	}

	.customer-voice .contact-koe-font {
		padding-left: 16px;
		font-size: 14px;
		margin-bottom: 10px;
	}

	.customer-voice .contact-koe-font::before {
		top: 0.7em;
		width: 8px;
		height: 8px;
	}
}

/*---------------------------------------------
index.html
---------------------------------------------*/
/* リード文 */
.customer-voice .lead {
	font-size: 16px;
	margin-bottom: 40px;
}

/* notice title */
.noticeBox h3 {
	color: var(--c-blue01);
	font-size: 20px;
	font-weight: 700;
	margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
	.noticeBox h3 {
		font-size: 18px;
		line-height: 1.6;
	}
}


/* button */
.customer-voice .agree-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 12px 0 16px;
}

.customer-voice .agree-btn p {
	margin: 0;
}

.customer-voice .agree-btn__button {
	position: relative;
	display: block;
	width: 390px;
	max-width: 100%;
	min-height: 48px;
	padding: 10px 24px;
	color: var(--c-white01);
	background-color: var(--c-blue01);
	border: 2px solid var(--c-blue01);
	border-radius: 999px;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	box-shadow: 7px 7px 15px -10px #424242;
	transition: var(--tran-opacity-a);
}

.customer-voice .agree-btn__button:hover,
.customer-voice .agree-btn__button:focus {
	opacity: 0.8;
}

@media screen and (max-width: 767px) {
	.customer-voice .agree-btn__button {
		width: 280px;
		font-size: 16px;
	}
}

/*---------------------------------------------
post.html
---------------------------------------------*/

/* ---------- 共通部分 ---------- */
.customer-voice .form input[type="text"],
.customer-voice .form select,
.customer-voice .form textarea {
	color: var(--c-black02);
	font-size: 16px;
	line-height: 1.6;
	border: 1px solid var(--c-gray05);
	border-radius: 4px;
	background-color: var(--c-white01);
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.customer-voice .form input[type="text"],
.customer-voice .form select {
	min-height: 36px;
	padding: 6px 12px;
}

.customer-voice .form input[type="text"]:focus,
.customer-voice .form select:focus,
.customer-voice .form textarea:focus {
	border: 1px solid var(--c-gray02);
	box-shadow: 0 0 0 2px rgba(7, 49, 144, 0.12);
}

.customer-voice .form ::placeholder {
	color: #a9a9a9;
}

.customer-voice .form :-ms-input-placeholder {
	color: #a9a9a9;
}

.customer-voice .form ::-ms-input-placeholder {
	color: #a9a9a9;
}


/* ---------- ご意見・ご要望欄 ---------- */
.customer-voice .box2 {
	display: grid;
	grid-template-columns: 180px 1fr;
	column-gap: 36px;
	align-items: start;
	width: 100%;
	margin: 0 auto;
	padding: 22px 20px;
	border-top: 1px solid var(--c-gray05);
	border-bottom: 1px solid var(--c-gray05);
	box-sizing: border-box;
}

.customer-voice .box2Div1 {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-top: 4px;
	white-space: nowrap;
}

/* 必須項目 */
.customer-voice .box2P {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

/* 必須バッジ */
.customer-voice .box2Hiltusu {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 24px;
	padding: 2px 10px;
	border-radius: 999px;
	background-color: var(--c-lalapay);
	color: var(--c-white01);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;

}

/* 右側：textarea＋文字数 */
.customer-voice .box2Div2 {
	width: 100%;
	min-width: 0;
}

/* textarea本体 */
.customer-voice .textarea1 {
	display: block;
	width: 100%;
	min-height: 104px;
	padding: 10px 12px;
	box-sizing: border-box;
	resize: vertical;
}

@media screen and (max-width: 767px) {
	.customer-voice .textarea1 {
		min-height: 140px;
	}
}

/* 文字数カウント */
.customer-voice .textarea1P {
	margin: 10px 0 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

.customer-voice .character-count__num.is-near-limit {
	color: #e60012;
}

/* SP */
@media screen and (max-width: 767px) {
	.customer-voice .box2 {
		display: block;
		padding: 20px 15px;
	}

	.customer-voice .box2Div1 {
		margin-bottom: 10px;
		padding-top: 0;
	}

	.customer-voice .textarea1 {
		min-height: 140px;
	}

	.customer-voice .textarea1P {
		font-size: 14px;
	}
}

/* 小さめSP */
@media screen and (max-width: 480px) {
	.customer-voice .box2Div1 {
		gap: 8px;
	}

	.customer-voice .box2P {
		font-size: 15px;
	}

	.customer-voice .box2Hiltusu {
		min-width: 42px;
		min-height: 22px;
		font-size: 12px;
	}

	.customer-voice .textarea1 {
		font-size: 16px;
	}
}

/* ---------- 任意欄（性別・年齢） ---------- */
.customer-voice .box3 {
	margin: 0 auto;
	padding-top: 40px;
}

/* お差し支えなければご回答ください */
.customer-voice .box3Title {
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: 700;
	padding: 12px 20px;
	background-color: #f6f6f6;
}

/* 年齢・性別 共通 */
/* 性別・年齢の1行 */
.customer-voice .box3SubtitleBox1,
.customer-voice .box3SubtitleBox3 {
	display: grid;
	grid-template-columns: 180px 1fr;
	column-gap: 36px;
	align-items: center;
	margin-top: 16px;
	padding: 0 20px;
	box-sizing: border-box;
}

/* 左側：項目名＋任意バッジ */
.customer-voice .box3Subtitle1Box,
.customer-voice .box3Subtitle3Box {
	display: flex;
	align-items: center;
	gap: 10px;
	white-space: nowrap;
}

/* 項目名 */
.customer-voice .box3Subtitle1,
.customer-voice .box3Subtitle3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
}

/* 任意バッジ */
.customer-voice .box3SubtitleButton {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 48px;
	min-height: 24px;
	padding: 2px 10px;
	border-radius: 999px;
	background-color: var(--c-blue01);
	color: var(--c-white01);
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
}

/* 右側：選択肢エリア */
.customer-voice .box3Subtitle1Choose1,
.customer-voice .box3Subtitle3Choose3 {
	display: flex;
	align-items: center;
	min-height: 36px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.5;
}

/* ----- 性別 ----- */
/* ラジオボタン */
.customer-voice .box3Subtitle1Choose1 input[type="radio"] {
	margin: 0 6px 0 0;
	accent-color: var(--c-blue01);
}

/* 2つ目以降のラジオボタンに左余白 */
.customer-voice .box3Subtitle1Choose1 input[type="radio"]:not(:first-child) {
	margin-left: 28px;
}

/* ----- 年齢 ----- */
.customer-voice .box3Subtitle3Choose3 {
	position: relative;
	display: block;
	width: 200px;
	max-width: 100%;
	background-color: #e9e9ed;
	border-radius: 4px;
	z-index: 0;
}

/* 矢印 */
.customer-voice .box3Subtitle3Choose3::before {
	content: "";
	position: absolute;
	right: 14px;
	top: 50%;
	width: 7px;
	height: 7px;
	border-right: 1px solid var(--c-gray02);
	border-bottom: 1px solid var(--c-gray02);
	transform: translateY(-65%) rotate(45deg);
	pointer-events: none;
	z-index: 1;
}

/* select本体 */
.customer-voice .box3Subtitle3Choose3 select {
	width: 100%;
	background-color: transparent;
	padding-right: 34px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	font-weight: 700;
	cursor: pointer;
}

/* IE・旧Edge用：標準矢印を非表示 */
.customer-voice .box3Subtitle3Choose3 select::-ms-expand {
	display: none;
}

/* ---------- 入力内容のご確認ボタン ---------- */
/* .customer-voice .contact-input-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 56px 0 0;
}

.customer-voice .contact-input-btn p {
	margin: 0;
}

.customer-voice .contact-input-btn__button {
	position: relative;
	display: block;
	width: 390px;
	max-width: 100%;
	min-height: 48px;
	padding: 10px 24px;
	color: var(--c-white01);
	background-color: var(--c-blue01);
	border: 2px solid var(--c-blue01);
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	box-shadow: 7px 7px 15px -10px #424242;
	transition: var(--tran-opacity-a);
	cursor: pointer;
}

.customer-voice .contact-input-btn__button:hover,
.customer-voice .contact-input-btn__button:focus {
	opacity: 0.6;
} */

.customer-voice .buttonDiv {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 56px 0 0;
}

.customer-voice .button {
	position: relative;
	display: block;
	width: 390px;
	max-width: 100%;
	min-height: 48px;
	padding: 10px 24px;
	color: var(--c-white01);
	background-color: var(--c-blue01);
	border: 2px solid var(--c-blue01);
	border-radius: 999px;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	text-decoration: none;
	box-shadow: 7px 7px 15px -10px #424242;
	transition: var(--tran-opacity-a);
	cursor: pointer;
}

/* ホバー・フォーカスの見た目 */
.customer-voice .button:hover,
.customer-voice .button:focus {
	opacity: 0.6;
}

@media screen and (max-width: 767px) {

	.customer-voice .box3SubtitleBox1,
	.customer-voice .box3SubtitleBox3 {
		grid-template-columns: 1fr;
		row-gap: 8px;
		padding: 0 15px;
	}

	/* ラジオボタン */
	.customer-voice .box3Subtitle1Choose1 input[type="radio"] {
		margin: 0 2px 0 0;
	}

	/* 2つ目以降のラジオボタンに左余白 */
	.customer-voice .box3Subtitle1Choose1 input[type="radio"]:not(:first-child) {
		margin-left: 10px;
	}

	/* ボタン */
	/* .customer-voice .contact-input-btn__button {
		width: 280px;
		font-size: 15px;
	} */

	.customer-voice .button {
		width: 280px;
		font-size: 15px;
	}
}

@media screen and (max-width: 520px) {
	.customer-voice .lower__inner {
		padding: 0 20px;
	}
}

/* ssl */
.customer-voice .txt-cap {
	max-width: 390px;
	margin: 10px auto 0;
	color: var(--c-black02);
	font-size: 11px;
	font-weight: 500;
	line-height: 1.7;
}

/*---------------------------------------------
確認画面
---------------------------------------------*/
.customer-voice .read {
	margin-bottom: 34px;
}

.customer-voice .read p {
	font-size: 16px;
	line-height: 1.8;
}

@media screen and (max-width: 767px) {
	.customer-voice .read p {
		font-size: 14px;
		line-height: 1.6;
	}
}

.submit-textarea {
  max-width: 543px;
  width: 100%;
  background: none !important;
  resize: none;
  height: 128px;
  overflow-y: hidden;
  padding: 4px 0 0;
  border: none !important;
  color: var(--c-black02) !important;
  -webkit-text-fill-color: var(--c-black02);
  opacity: 1;
}

.submit-textarea:disabled {
  color: var(--c-black02) !important;
  -webkit-text-fill-color: var(--c-black02);
  opacity: 1;
}

@media screen and (max-width: 767px) {
	.submit-textarea {
		padding: 10px 0;
	}
}

.submit-select {
	background: none !important;
}

.submit-select::before {
	display: none;
}

/*---------------------------------------------
reCAPTCHA / 確認画面補助
---------------------------------------------*/
.customer-voice .question-column-box {
	margin-top: 28px;
}

.customer-voice .question-column {
	text-align: center;
}

.customer-voice .security-label {
	font-size: 14px;
	font-weight: 400;
}

.customer-voice .g-recaptcha {
	display: flex;
	justify-content: center;
	margin: 0 0 24px;
}

/*---------------------------------------------
確認画面：戻る・送信するボタン
---------------------------------------------*/
.btn-contact {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 12px 0 16px
}

.btn-contact p {
  margin: 0;
}

.btn-contact__btn {
  position: relative;
  display: block;
  width: 216px;
  padding: 10px;
  color: #fff;
  background-color: var(--c-blue01);
  border: 2px solid var(--c-blue01);
  border-radius: 40px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  box-shadow: 7px 7px 15px -10px #424242;
  transition: none;
}

/* 戻るボタン */
.btn-contact__btn--glay {
  color: #fff !important;
  background-color: var(--c-gray02) !important;
  border-color: var(--c-gray02) !important;
  transition: var(--tran-opacity-a);
}

/* 戻るボタン：ホバー時はグレーを少し薄くするだけ */
.btn-contact__btn--glay:hover,
.btn-contact__btn--glay:focus {
  opacity: 0.8;
}

/* 念のため：非活性状態 */
.btn-contact__btn.disabled,
.btn-contact__btn:disabled {
  color: #fff;
  background-color: var(--c-gray03);
  border-color: var(--c-gray03);
  box-shadow: none;
  opacity: 1;
  transition: none;
  cursor: not-allowed;
}

/* 送信するボタン：活性化しているときだけtransitionを付ける */
.btn-contact--2col button.btn-contact__btn:not(:disabled):not(.disabled) {
  transition: var(--tran-opacity-a);
}

/* 送信するボタン：活性化しているときだけhoverで薄くする */
.btn-contact--2col button.btn-contact__btn:not(:disabled):not(.disabled):hover,
.btn-contact--2col button.btn-contact__btn:not(:disabled):not(.disabled):focus {
  opacity: 0.6;
}

/* SP */
@media screen and (max-width: 767px) {
	.btn-contact {
		flex-direction: column;
		gap: 14px;
		margin: 40px 0 16px;
	}

	.btn-contact__btn {
		width: 280px;
		max-width: 100%;
		font-size: 15px;
	}

	/* SPでは「送信する」を上、「戻る」を下にする */
	.btn-contact--2col p:first-child {
		order: 2;
	}

	.btn-contact--2col p:nth-child(2) {
		order: 1;
	}
}

/* ---------- hidden ---------- */
/* reCAPTCHA等でdisabledが付いたとき用 */
.customer-voice .button.disabled,
.customer-voice .button:disabled {
	background-color: var(--c-gray05);
	border-color: var(--c-gray05);
	color: var(--c-white01);
	cursor: not-allowed;
	opacity: 1;
}

/* hidden submit */
.customer-voice .contact-form-submit {
	display: none;
}

/*---------------------------------------------
thanks.html
---------------------------------------------*/
.customer-voice .thanks__inner {
	padding-bottom: 40px;
}

.customer-voice .thanks__ttl {
	margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
	.customer-voice .thanks__inner {
		padding-bottom: 0;
	}

	.customer-voice .thanks__ttl {
		margin-bottom: 40px;
	}
}