@charset "utf-8";

/* placeholderの色指定 */
::placeholder {
	color: var(--placeholderColor);
}

/* PHPエラー文 */
.secForm .txtError {
	color: #F00;
	font-size: 12px;
	background: url(../img/common/iconError.png) left top / 14px auto no-repeat;
	padding: 0 0 0 17px;
	margin-top: 15px;
	line-height: 14px;
}

/*-----------------------------------------------
    secFormTit
-----------------------------------------------*/
.secFormTit {
	text-align: center;
}

.secFormTit .titJp {
	font-size: var(--pcFontSize36);
	line-height: 1.5;
	letter-spacing: var(--pcLetterSpacing36_100);
	color: var(--textColor);
}

.secFormTit .titJp::after {
	content: "";
	display: block;
	width: 4.8rem;
	height: 0.2rem;
	margin: 1.6rem auto 0;
	background: var(--keyColor);
}

.secFormTit .titEng {
	display: inline-block;
	font-size: var(--pcFontSize24);
	line-height: 1.2;
	color: var(--keyColor);
	margin-top: 2rem;
}

.secFormTit .titLead {
	font-size: var(--pcFontSize18);
	line-height: var(--pcLineHeight18_40);
	letter-spacing: var(--pcLetterSpacing18_100);
	margin-top: 3.4rem;
	color: var(--textColor);
}

@media only screen and (max-width:1215px) {
	.secFormTit .titJp {
		font-size: var(--spFontSize18);
		line-height: var(--spLineHeight18_28);
		letter-spacing: var(--spLetterSpacing14_40);
	}

	.secFormTit .titJp::after {
		width: 4rem;
		height: 0.15rem;
		margin-top: 0.8rem;
	}

	.secFormTit .titEng {
		font-size: var(--spFontSize20);
		margin-top: 0.6rem;
	}

	.secFormTit .titLead {
		font-size: var(--spFontSize13);
		line-height: var(--spLineHeight13_20);
		margin-top: 1.6rem;
	}
}

/*-----------------------------------------------
    secFormWrap / titLead（完了ページ等）
-----------------------------------------------*/
.secFormWrap .titLead {
	font-size: var(--pcFontSize18);
	line-height: var(--pcLineHeight18_40);
	letter-spacing: var(--pcLetterSpacing18_100);
	color: var(--textColor);
	text-align: center;
}

.isFormOk .secFormWrap .secForm {
	padding-top: 0;
}

.isFormOk .secFormWrap .boxFormBtn {
	margin-top: 3.1rem;
}

@media only screen and (max-width:1215px) {
	.secFormWrap .titLead {
		font-size: var(--spFontSize13);
		line-height: var(--spLineHeight13_20);
		text-align: left;
	}

	.isFormOk .secFormWrap .boxFormBtn {
		margin-top: 2.2rem;
	}
}

/*-----------------------------------------------
    must / optional
-----------------------------------------------*/
.secCmnForm .must,
.secCmnForm .optional {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 3.5rem;
	height: 2.1rem;
	padding: 0 0.6rem 0.1rem;
	font-size: var(--pcFontSize11);
	line-height: 1;
	font-weight: 400;
	color: var(--whiteColor);
	border-radius: 0.4rem;
	flex-shrink: 0;
}

.secCmnForm .must {
	background-color: var(--keyColor);
}

.secCmnForm .optional {
	background-color: var(--optionalColor);
	color: var(--textColor);
}

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

	.secCmnForm .must,
	.secCmnForm .optional {
		min-width: 3.3rem;
		height: 1.8rem;
		font-size: var(--spFontSize11);
		border-radius: 0.3rem;
	}
}

/*-----------------------------------------------
    secFormWrap
-----------------------------------------------*/
.secFormWrap {
	width: 100%;
	margin: 4.4rem auto 0;
	padding: 1.8rem 8.4rem 6rem;
	background: var(--whiteColor);
	border: 0.1rem solid var(--formCardBorderColor);
	box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.06);
	border-radius: 0.5rem;
}

.secFormWrap .secFormTable {
	width: 100%;
	border-collapse: collapse;
}

.secForm tr {
	border-bottom: 0.1rem solid var(--formBorderColor);
	width: 100%;
}

.secForm tr:first-child {
	padding-top: 0;
}

.secForm tr:last-child {
	padding-bottom: 0;
}

.secForm th,
.secForm td {
	position: relative;
	display: inline-block;
	width: 23rem;
	padding: 3rem 0;
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}

.secForm th.thPosition {
	vertical-align: top;
	padding-top: 4.4rem;
}

.secForm td {
	width: calc(100% - 23rem);
}

.secForm tr .boxTit {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	font-size: 0;
	gap: 1rem;
}

.secForm .boxTit .must,
.secForm .boxTit .optional {
	margin-top: 0.55rem;
}

.secForm .boxTit .tit {
	font-size: var(--pcFontSize16);
	line-height: var(--pcLineHeight16_32);
	letter-spacing: var(--pcLetterSpacing16_100);
	font-weight: 700;
}

@media only screen and (max-width:1215px) {
	.secFormWrap {
		margin-top: 2.4rem;
		padding: 3.5rem 2rem 3.2rem;
		border-radius: 0.5rem;
		box-shadow: 0 0.2rem 1.2rem rgba(0, 0, 0, 0.06);
	}

	.secForm tr {
		display: block;
		padding: 1.5rem 0 2rem;
	}

	.secForm tr:first-child {
		padding-top: 0;
	}

	.secForm th,
	.secForm td {
		display: block;
		width: 100%;
		max-width: 100%;
		padding: 0;
	}

	.secForm th,
	.secForm th.thPosition {
		padding-top: 0;
		margin-bottom: 1.2rem;
		vertical-align: top;
	}

	.secForm .boxTit .must,
	.secForm .boxTit .optional {
		margin-top: 0.15rem;
	}

	.secForm .boxTit .tit {
		font-size: var(--spFontSize14);
		line-height: var(--spLineHeight14_22);
	}

	.secForm tr:last-child {
		padding-bottom: 2rem;
	}
}

/*-----------------------------------------------
    入力ボックス
-----------------------------------------------*/
.secFormWrap input[type="text"],
.secFormWrap input[type="tel"],
.secFormWrap input[type="email"],
.secFormWrap input[type="number"],
.secFormWrap input[type="password"],
.secFormWrap select,
.secFormWrap textarea {
	position: relative;
	width: 100%;
	height: 6.5rem;
	font-size: var(--pcFontSize16);
	letter-spacing: var(--pcLetterSpacing16_100);
	line-height: 1.4;
	padding: 0 1.6rem;
	border-radius: 0.5rem;
	background: var(
	--whiteColor);
	color: inherit;
	font-family: inherit;
	border: 0.1rem solid var(
	--formBorderColor);
	outline: none;
}

.secFormWrap select {
	padding-right: 3.6rem;
	cursor: pointer;
}

.secFormWrap textarea {
	height: 20rem;
	padding: 1.9rem 1.6rem;
	line-height: var(--pcLineHeight16_26);
	resize: vertical;
}

.secFormWrap select:focus::placeholder,
.secFormWrap textarea:focus::placeholder,
.secFormWrap input:focus::placeholder {
	color: transparent !important;
}

.box_input,
.box_select {
	margin-top: 0;
}

.box_select {
	position: relative;
}

.box_select::before {
	position: absolute;
	content: '';
	width: 0.9rem;
	height: 0.9rem;
	border-right: 0.2rem solid var(--keyColor);
	border-bottom: 0.2rem solid var(--keyColor);
	top: 50%;
	right: 1.6rem;
	margin-top: -0.65rem;
	transform: rotate(45deg);
	z-index: 1;
	pointer-events: none;
	box-sizing: border-box;
}

.box_select select {
	-webkit-appearance: none;
	appearance: none;
	outline: none;
}

.secFormWrap .w100p {
	width: 100%;
}

.secFormWrap .w130 {
	width: 13rem;
}

.secFormWrap .w150 {
	width: 15rem;
}

.secFormWrap .w200 {
	width: 20rem;
}

.secFormWrap .w320 {
	width: 32rem;
}

.secFormWrap .w345 {
	width: 34.5rem;
}

.secFormWrap .w355 {
	width: 35.5rem;
}

.secFormWrap .w365 {
	width: 36.5rem;
}

.secFormWrap .w400 {
	width: 40rem;
}

.secFormWrap .w750 {
	width: 75rem;
}

.secFormWrap .w800 {
	width: 80rem;
}

.secFormWrap .w130,
.secFormWrap .w150,
.secFormWrap .w200,
.secFormWrap .w320,
.secFormWrap .w345,
.secFormWrap .w355,
.secFormWrap .w365,
.secFormWrap .w400,
.secFormWrap .w750,
.secFormWrap .w800 {
	max-width: 100%;
}

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

	.secFormWrap input[type="text"],
	.secFormWrap input[type="tel"],
	.secFormWrap input[type="email"],
	.secFormWrap input[type="number"],
	.secFormWrap input[type="password"],
	.secFormWrap select,
	.secFormWrap textarea {
		height: 4rem;
		font-size: var(--spFontSize16);
		padding: 0 1.2rem;
		border-radius: 0.3rem;
	}

	.secFormWrap select {
		padding-right: 3rem;
	}

	.secFormWrap textarea {
		height: 12rem;
		padding: 1.2rem;
		line-height: var(--spLineHeight14_22);
	}

	.box_select::before {
		width: 0.8rem;
		height: 0.8rem;
		right: 1.4rem;
		margin-top: -0.55rem;
		border-right-width: 0.18rem;
		border-bottom-width: 0.18rem;
	}

	.secFormWrap .ws70 {
		width: 7rem;
	}

	.secFormWrap .ws90 {
		width: 9rem;
	}

	.secFormWrap .w130,
	.secFormWrap .w150,
	.secFormWrap .w320,
	.secFormWrap .w345,
	.secFormWrap .w355,
	.secFormWrap .w365,
	.secFormWrap .w400,
	.secFormWrap .w750,
	.secFormWrap .w800 {
		width: 100%;
	}
}

/*-----------------------------------------------
    boxRadio
-----------------------------------------------*/
.boxRadio {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 2rem 3.2rem;
	margin: 0;
	list-style: none;
}

.boxRadio li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.boxRadio .labelRadio {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
	font-size: var(--pcFontSize16);
	line-height: 1.4;
	letter-spacing: var(--pcLetterSpacing16_100);
}

.boxRadio input[type="radio"] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	margin: 0;
}

.boxRadio .txtRadio {
	display: inline-flex;
	align-items: center;
	gap: 0.8rem;
}

.boxRadio .txtRadio::before {
	content: "";
	width: 1.8rem;
	height: 1.8rem;
	border: 0.1rem solid var(--formBorderColor);
	border-radius: 50%;
	background: var(--whiteColor);
	box-sizing: border-box;
	flex-shrink: 0;
}

.boxRadio input[type="radio"]:checked+.txtRadio::before {
	background: radial-gradient(circle, var(--keyColor) 0%, var(--keyColor) 35%, var(--whiteColor) 40%, var(--whiteColor) 100%);
}

@media only screen and (max-width:1215px) {
	.boxRadio {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.4rem;
		padding-top: 0;
	}

	.boxRadio .labelRadio {
		font-size: var(--spFontSize14);
	}

	.boxRadio .txtRadio::before {
		width: 1.6rem;
		height: 1.6rem;
	}
}

/*-----------------------------------------------
    boxDate
-----------------------------------------------*/
.boxDate {
	width: 100%;
}

.boxDateGroup {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 1.2rem 1.6rem;
	margin-bottom: 1.2rem;
	justify-content: space-between;
}

.boxDateRow {
	display: flex;
	align-items: center;
	gap: 1.2rem;
}

.boxDateRow .titHope {
	width: 7.4rem;
	flex-shrink: 0;
	font-size: var(--pcFontSize16);
	letter-spacing: var(--pcLetterSpacing16_100);
	line-height: 2;
}

.boxDateRow .titTime {
	flex-shrink: 0;
	font-size: var(--pcFontSize16);
	letter-spacing: var(--pcLetterSpacing16_100);
	line-height: 2;
}

.boxDate .txtNote,
.secForm td .txtNote {
	font-size: var(--pcFontSize13);
	line-height: var(--pcLineHeight13_23);
	letter-spacing: var(--pcLetterSpacing13_100);
	margin-top: 1rem;
	color: var(--textColor);
}

@media only screen and (max-width:1215px) {
	.boxDateGroup {
		display: block;
		margin-bottom: 0;
	}

	.boxDateRow {
		display: flex;
		align-items: center;
		gap: 0.2rem;
		margin-bottom: 1.2rem;
	}

	.boxDateRow .titHope,
	.boxDateRow .titTime {
		width: 6.4rem;
		flex-shrink: 0;
		font-size: var(--spFontSize13);
		line-height: var(--spLineHeight13_20);
	}

	.boxDateRow .box_input,
	.boxDateRow .box_select {
		flex: 1;
		width: auto;
		min-width: 0;
	}

	.boxDate .txtNote,
	.secForm td .txtNote {
		font-size: var(--spFontSize11);
		line-height: calc(20 / 11);
		margin-top: 0.4rem;
		letter-spacing: 0.05em;
	}
}

/*-----------------------------------------------
    boxCol2 / subTit
-----------------------------------------------*/
.boxCol2 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 1.2rem 0;
}

.boxCol2 .boxColItem {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1.6rem;
	flex: 1;
	min-width: 0;
}

.boxCol2 .boxColItem+.boxColItem {
	justify-content: flex-end;
}

.boxCol2 .subTit {
	width: auto;
	flex-shrink: 0;
	margin-bottom: 0;
	font-size: var(--pcFontSize16);
	line-height: var(--pcLineHeight16_32);
	letter-spacing: var(--pcLetterSpacing16_100);
}

.boxCol2 .box_input {
	min-width: 0;
}

.boxAddress .subTit {
	font-size: var(--pcFontSize13);
	line-height: var(--pcLineHeight14_22);
	margin-bottom: 0.6rem;
}

@media only screen and (max-width:1215px) {
	.boxCol2 {
		display: block;
	}
	.boxCol2 .boxColItem+.boxColItem {
		justify-content: flex-start;
	}
	.boxCol2 .boxColItem {
		display: flex;
		align-items: center;
		gap: 1.2rem;
		width: 100%;
		margin-bottom: 1.2rem;
	}

	.boxCol2 .boxColItem:last-child {
		margin-bottom: 0;
	}

	.boxCol2 .subTit {
		width: 6.4rem;
		font-size: var(--spFontSize13);
		line-height: var(--spLineHeight13_20);
	}

	.boxCol2 .box_input {
		flex: 1;
		width: auto;
		min-width: 0;
	}

	.boxCol2.boxColName {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		gap: calc((8 / 375) * var(--widthBase));
	}

	.boxCol2.boxColName .boxColItem {
		flex: none;
		width: 100%;
		margin-bottom: 0;
		gap: calc((12 / 375) * var(--widthBase));
	}

	.boxCol2.boxColName .subTit {
		width: auto;
	}

	.boxCol2.boxColName .box_input,
	.boxCol2.boxColName .w355 {
		flex: none;
		width: calc((280 / 375) * var(--widthBase));
	}

	.boxCol2.boxColName input {
		height: calc((40 / 375) * var(--widthBase));
	}

	.boxAddress .subTit {
		font-size: var(--spFontSize12);
		line-height: var(--spLineHeight12_18);
		margin-bottom: 0.4rem;
	}
}

/*-----------------------------------------------
    boxAddress / boxZip
-----------------------------------------------*/
.boxAddress {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.boxAddress input[type="text"],
.boxAddress select {
	height: 5.5rem;
}

.boxAddressRow {
	width: 100%;
}

.boxZip {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 1.3rem;
}

.boxZip .txt {
	font-size: var(--pcFontSize18);
	line-height: 1;
	flex-shrink: 0;
}

.boxZip .box_input {
	margin-top: 0;
}

.boxAddressOpt {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 1.4rem;
}

.boxAddressOpt .optional {
	margin-right: 0;
	margin-left: 0;
	flex-shrink: 0;
}

.boxAddressOpt .box_input {
	min-width: 0;
}

@media only screen and (max-width:1215px) {
	.boxAddress {
		gap: calc((12 / 375) * var(--widthBase));
	}

	.boxAddress input[type="text"],
	.boxAddress select {
		height: calc((40 / 375) * var(--widthBase));
	}

	.boxZip {
		gap: 0.6rem;
	}

	.boxZip .txt {
		font-size: var(--spFontSize14);
	}

	/* 郵便番号：100×40 */
	.boxAddress .boxZip .ws70,
	.boxAddress .boxZip .ws90 {
		width: calc((100 / 375) * var(--widthBase));
	}

	/* 都道府県：243×40 */
	.boxAddress .boxAddressRow .box_select.w345 {
		width: calc((243 / 375) * var(--widthBase));
		max-width: 100%;
	}

	/* 市区町村：305×40 */
	.boxAddress .boxAddressRow:nth-child(3) > .box_input {
		width: calc((305 / 375) * var(--widthBase));
		max-width: 100%;
	}

	/* 番地・建物名：264×40 */
	.boxAddress .boxAddressRow:nth-child(4) > .box_input,
	.boxAddress .boxAddressOpt > .box_input {
		width: calc((264 / 375) * var(--widthBase));
		max-width: 100%;
	}

	.boxAddressOpt {
		display: flex;
		align-items: center;
		flex-wrap: nowrap;
		gap: calc((8 / 375) * var(--widthBase));
	}

	.boxAddressOpt .box_input {
		flex: none;
		min-width: 0;
	}
}

/*-----------------------------------------------
    boxNote
-----------------------------------------------*/
.boxNote {
	margin-top: 3rem;
	padding: 2.4rem 3rem;
	background: var(--noteBgColor);
	border-radius: 0.5rem;
}

.boxNote .txt {
	font-size: var(--pcFontSize13);
	line-height: var(--pcLineHeight13_26);
	letter-spacing: var(--pcLetterSpacing13_100);
}

@media only screen and (max-width:1215px) {
	.boxNote {
		margin-top: 2rem;
		padding: 1.8rem 1.6rem;
		border-radius: 0.4rem;
	}

	.boxNote .txt {
		font-size: var(--spFontSize11);
		line-height: calc(20 / 11);
		letter-spacing: 0;
	}
}

/*-----------------------------------------------
    boxPrivacy
-----------------------------------------------*/
.boxPrivacy {
	margin-top: 5.8rem;
	text-align: center;
}

.boxPrivacy .line01,
.boxPrivacy .line02 {
	text-align: center;
}

.boxPrivacy .line01 a {
	display: inline-block;
	font-size: var(--pcFontSize16);
	letter-spacing: var(--pcLetterSpacing16_100);
	line-height: 1;
	color: var(
	--linkColor);
	text-decoration: underline;
	text-underline-offset: 1rem;
}

.boxPrivacy .line02 {
	font-size: var(--pcFontSize16);
	letter-spacing: var(--pcLetterSpacing16_100);
	line-height: 2;
	margin-top: 1.5rem;
	color: var(
	--textColor);
}

@media only screen and (max-width:1215px) {
	.boxPrivacy {
		margin-top: 3rem;
	}

	.boxPrivacy .line01 a {
		font-size: var(--spFontSize13);
		text-underline-offset: 0.6rem;
	}

	.boxPrivacy .line02 {
		font-size: var(--spFontSize12);
		margin-top: 1.4rem;
	}
}

/*-----------------------------------------------
	boxFormBtn
-----------------------------------------------*/
.boxFormBtn {
	margin-top: 2.5rem;
	text-align: center;
}

.boxFormBtn .btnSend {
	position: relative;
	width: 44rem;
	max-width: 100%;
	height: 8.8rem;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: var(--pcFontSize18);
	line-height: 1;
	font-weight: 700;
	letter-spacing: var(--pcLetterSpacing16_100);
	color: var(--whiteColor);
	background-color: var(--keyColor);
	border-radius: 4.4rem;
}

.boxFormBtn .btnSend.isArrow::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 2.8rem;
	width: 1.5rem;
	height: 1.3rem;
	transform: translateY(-50%);
	background: url(../img/common/arrow-right.svg) center / contain no-repeat;
	filter: brightness(0) invert(1);
}

.boxFormBtn .btnSendCoBack {
	display: inline-block;
	margin-top: 3.2rem;
	font-size: var(--pcFontSize16);
	line-height: 1.6;
	font-weight: 700;
	color: var(--linkColor);
	text-decoration: underline;
}

.btnSendCo.no_tap,
.btnSendCoBack.no_tap {
	opacity: 0.3 !important;
	pointer-events: none !important;
	transition: none !important;
}

.btnSendCo.no_tap {
	background: url(../img/common/iconLoader.png) center center / 3.2rem auto no-repeat, var(--keyColor) !important;
	font-size: 0 !important;
}

@media only screen and (max-width:1215px) {
	.boxFormBtn {
		margin-top: 2.2rem;
	}

	.boxFormBtn .btnSend {
		width: 100%;
		height: 6.4rem;
		font-size: var(--spFontSize15);
		border-radius: 3.2rem;
	}

	.boxFormBtn .btnSend.isArrow::after {
		right: 1.8rem;
		width: 1.2rem;
		height: 1rem;
	}

	.boxFormBtn .btnSendCoBack {
		margin-top: 2.4rem;
		font-size: var(--spFontSize14);
	}
}

.g-recaptcha{
	display: flex;
    align-items: center;
    justify-content: center;
    margin: 5rem auto 0;
}

@media only screen and (max-width:1215px) {
	.g-recaptcha{
		margin: 3rem auto 0;
	}
}

.secContact .boxError{
	color: #F00;
	font-size: var(--pcFontSize14);
	line-height: calc(28 / 14);
	letter-spacing: 0.05em;
	margin-top: 2rem;
}

@media only screen and (max-width:1215px) {
	.secContact .boxError{
		margin-top: 1rem;
		font-size: var(--spFontSize12);
		line-height: calc(24 / 12);
		letter-spacing: 0.05em;
	}
}