@charset "UTF-8";

body.noScroll {
	overflow: hidden;
	height: 100%;
	/* 必須 */
}

input,
button,
select,
textarea {
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
}

textarea {
	resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
	display: none;
	max-width: 100%;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}

select::-ms-expand {
	display: none;
}

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* コンタクトページ
/* -------------------------------------------------- */
.backBtnText::after {
	background: url(../../img/common/icon_back.svg) center center/cover no-repeat;
}


@media screen and (min-width: 1025px) and (max-width: 1199px) {	
	.footerMenuContainer ul li a {
		font-size: clamp(1.2rem, 1.5vw, 1.7rem);
	}

}

.errForm {
	background-color: #F3BCBF !important;
}

.errorMessageRadio {
	padding: 12px;
}

.errorMessageCheck {
	padding-top: 8px;
	text-align: center;
}

#contactlead {
	padding-top: 65px;
	margin-bottom: 50px;
}

.contactformCheck {
	margin-bottom: 0;
	padding-top: 0;
}

#contactlead p {
	font-size: 2rem;
	line-height: 2;
	text-align: center;
}

#anno {
	padding-bottom: 20px;
	text-align: right;
	font-size: 1.2rem;
}

#anno span {
	font-size: 1.7rem;
	color: #cf1515;
}

#contactformWrap {
	width: 1000px;
	margin: 0 auto 100px;
	max-width: 100%;
}

.contactInputWrap {
	display: flex;
	align-items: center;
}

.contactInputWrap dt {
	padding-right: 32px;
	width: 230px;
	font-size: 1.8rem;
	font-weight: bold;
	text-align: right;
}

.contactInputWrap dd {
	width: calc(100% - 230px);
	max-width: 100%;
}

.contactInputWrap input,
.contactInputWrap textarea {
	padding: 16px 20px;
	border: 1px solid #e1e0e0;
	background: #f4f8fa;
	width: 100%;
	max-width: 100%;
	font-size: 1.6rem;
}

.contactInputWrap input {
	height: 65px;
}

.contactInputWrap textarea {
	height: 180px;
}

.contactInputWrap:not(:last-child) {
	margin-bottom: 26px;
}

.contactRadioWrap {
	padding-bottom: 9px;
	position: relative;
}

.contactRadioItemRadio {
	position: relative;
}

.contactRadioItem {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 32px;
}

.radioLabel {
	position: relative;
	display: flex;
	align-items: center;
	cursor: pointer;
	font-size: 1.8rem;
}

.radioLabel input[type="radio"] {
	opacity: 0;
	position: absolute;
}

.radioLabel span {
	display: inline-flex;
	align-items: center;
}

.radioLabel span::before {
	content: "";
	width: 30px;
	height: 30px;
	border-radius: 50%;
	margin-right: 10px;
	border: 1px solid #e1e0e0;
	background: #f4f8fa;
	box-sizing: border-box;
	transition: all 0.25s ease;
}

.radioLabel input[type="radio"]:checked+span::before {
	border-color: #007ac1;
	background-color: #007ac1;
	box-shadow: inset 0 0 0 8px #fff;
}

.radioLabel:hover span::before {
	border-color: #007ac1;
}

#ppOpenBtn {
	text-decoration: underline;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.3s ease;
}

#ppAgree {
	margin: 0 auto;
	width: 320px;
	font-size: 1.8rem;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: all 0.3s ease;
}

#ppAgree input[type="checkbox"] {
	position: absolute;
	opacity: 0;
	width: 0;
	height: 0;
}

#ppAgree #ppText {
	padding-left: 36px;
	position: relative;
	display: inline-block;
	cursor: pointer;
	transition: all 0.3s ease;
}

#ppAgree #ppText::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 30px;
	border: 1px solid #e1e0e0;
	background: #f4f8fa;
	box-sizing: border-box;
}

#ppAgree #ppText::after {
	content: "";
	position: absolute;
	left: 12px;
	top: 50%;
	width: 14px;
	height: 7px;
	border-left: 3px solid #007ac1;
	border-bottom: 3px solid #007ac1;
	transform: translateY(-50%) rotate(-45deg) scale(0);
	transform-origin: left bottom;
	transition: transform 0.2s ease;
	z-index: 1;
}

#ppAgree #ppText:hover #ppOpenBtn {
	color: #007ac1;
	text-decoration: none;
}

#ppAgree input[type="checkbox"]:checked+#ppText::before {
	border-color: #007ac1;
}

#ppAgree input[type="checkbox"]:checked+#ppText::after {
	transform: translateY(-50%) rotate(-45deg) scale(1);
}

#ppAgree #ppText:hover::before {
	border-color: #007ac1;
}

#pp {
	width: 1000px;
	max-width: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 4000;
	position: fixed;
	background: #FFFFFF;
	visibility: hidden;
	box-sizing: border-box;
}

#pp dt {
	margin-bottom: 26px;
	width: 100%;
	font-size: 1.8rem;
	font-weight: 500;
}

#pp dd {
	width: 100%;
	font-size: 1.6rem;
	margin-bottom: 55px;
}

#ppContainer {
	margin-top: 36px;
}

#ppCover {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	left: 0;
	top: 0;
	content: "";
	position: fixed;
	visibility: hidden;
	z-index: 3000;
}

#ppWrap {
	padding-top: 34px;
	padding-right: 24px;
	padding-bottom: 30px;
	overflow-x: hidden;
}

#ppCloseBtn {
	position: absolute;
	top: -100px;
	right: 0;
	cursor: pointer;
}

#ppCloseBtn #ppCloseBtnBar {
	background: linear-gradient(to bottom, #51c5d7, #4faaf3);
	width: 80px;
	height: 80px;
	border-radius: 100vmax;
	position: relative;
}

#ppCloseBtn #ppCloseBtnBar .ppCloseBtnBar {
	width: 30px;
	height: 2px;
	background: #FFFFFF;
	position: absolute;
	top: 50%;
	left: 50%;
}

#ppCloseBtn #ppCloseBtnBar .bar1 {
	transform: translate(-50%, -50%) rotate(45deg);
}

#ppCloseBtn #ppCloseBtnBar .bar2 {
	transform: translate(-50%, -50%) rotate(-45deg);
}

#ppBox {
	height: 500px;
	padding: 36px 36px 63px 63px;
	width: 100%;
	max-width: 100%;
	overflow-y: scroll;
	overflow-x: hidden;
	position: relative;
	display: block;
}

#ppBox dt {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

#ppBox dd {
	width: 100%;
	max-width: 100%;
	overflow-x: hidden;
}

#ppBox .ps__thumb-y {
	background-color: #007ac1;
	width: 3px;
	border-radius: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
}

#ppBox .ps__rail-y {
	background-color: #e1e0e0;
	/* 薄いグレー */
	width: 3px;
}

#ppBox .ps--active-x>.ps__rail-x,
#ppBox .ps--active-y>.ps__rail-y {
	background-color: #000;
}

.ppActive #pp {
	visibility: visible;
}

.ppActive #ppCover {
	visibility: visible;
}

.contactInputRequired {
	position: relative;
}

.contactInputRequired::after {
	font-size: 1.7rem;
	right: -10px;
	top: -8px;
	position: absolute;
	color: #cf1515;
	content: "*";
}

#contactleadTxt2 .caution {
	color: #cf1515;
}

#confirmBtn {
	width: 400px;
	max-width: 100%;
	margin: 40px auto 0;
	text-align: center;
}

#sendBtn .contactContentBtn {
	margin-bottom: 42px;
}

#backBtn {
	width: 400px;
	max-width: 100%;
	font-size: 2rem;
	font-weight: bold;
	margin: 0 auto;
	text-align: center;
}

#backBtn:hover {
	opacity: 0.7;
}

#backBtn span {
	color: #777;
	position: relative;
}

#backBtn span::after {
	width: 32px;
	height: 32px;
	content: "";
	position: absolute;
	left: -48px;
	top: 50%;
	transform: translateY(-50%);
}

#contactConfirmWrap dl .contactConfirmItem {
	padding: 24px 0;
	display: flex;
}

#contactConfirmWrap dl .contactConfirmItem:not(:last-child) {
	border-bottom: 1px solid #ccc;
}

#contactConfirmWrap dl .contactConfirmItem dt {
	font-size: 1.8rem;
	font-weight: bold;
	width: 230px;
}

#contactConfirmWrap dl .contactConfirmItem dd {
	font-size: 1.8rem;
	width: calc(100% - 230px);
	max-width: 100%;
}

#contactEnd {
	width: 1000px;
	max-width: 100%;
	margin: 60px auto 0;
	text-align: center;
	padding-bottom: 100px;
}

#contactEndMessage {
	line-height: 2;
	font-size: 2rem;
	margin-bottom: 40px;
	padding: 0 4%;
}

#contactEndMessage .caution {
	color: #cf1515;
}

#compBtn {
	padding: 0 4%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.errorMessage {
	color: #cf1515;
}

/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	#pp {
		width: 90%;
	}

	#contactformWrap {
		padding: 0 4%;
	}

	.contactInputWrap dt {
		padding-right: 20px;
		width: 200px;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: right;
	}

	.contactInputWrap dd {
		width: calc(100% - 200px);
		max-width: 100%;
	}

	#ppWrap {
		width: 100%;
	}

	#ppBox {
		width: 100%;
	}

	.contactRadioItem {
		gap: 12px 20px;
	}

	.radioLabel {
		font-size: 1.6rem;
	}

	#pp dl {
		width: 600px;
	}

	#pp dt {
		font-size: 1.8rem;
	}

	#pp dd {
		font-size: 1.6rem;
	}

	#confirmBtn {
		padding: 0 4%;
	}
}

/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#contactlead {
		padding: 40px 4% 0;
		margin-bottom: 40px;
	}

	#contactlead #contactleadTxt1 {
		font-size: clamp(1.6rem, 3vw, 3rem);
		text-align: left;
	}

	#contactformWrap {
		margin-top: 40px;
		margin-bottom: 60px;
	}

	.contactInputWrap {
		display: block;
	}

	.contactRadioItemRadio {
		flex-direction: column;
	}

	.contactInputWrap dt {
		padding-right: 20px;
		width: 100%;
		font-size: 1.6rem;
		font-weight: bold;
		text-align: left;
		margin-bottom: 16px;
	}

	.contactInputWrap dd {
		width: 100%;
		max-width: 100%;
	}

	.contactInputWrap input {
		height: 52px;
	}

	.contactInputWrap input,
	.contactInputWrap textarea {
		padding: 8px 16px;
		font-size: 1.5rem;
	}

	#contactlead #contactleadTxt2 {
		font-size: clamp(1.6rem, 3vw, 3rem);
	}

	.contactRadioWrap::after {
		top: -25px;
	}

	#contactConfirmWrap dl .contactConfirmItem {
		padding: 24px 0;
		display: block;
	}

	#contactConfirmWrap dl .contactConfirmItem:first-child {
		padding-top: 0;
	}

	#contactConfirmWrap dl .contactConfirmItem:last-child {
		padding-bottom: 40px;
	}

	#contactConfirmWrap dl .contactConfirmItem dt {
		font-size: clamp(1.6rem, 2.1vw, 1.8rem);
		font-weight: bold;
		width: 100%;
	}

	#contactConfirmWrap dl .contactConfirmItem dd {
		margin-top: 12px;
		font-size: clamp(1.6rem, 2.1vw, 1.8rem);
		width: 100%;
		max-width: 100%;
	}

	#contactEndMessage {
		font-size: 1.6rem;
		padding: 0 4%;
		margin-bottom: 40px;
		text-align: left;
	}

	#pp {
		width: 92%;
		max-width: 600px;
	}

	#pp #ppWrap {
		width: 100%;
		padding: 24px 16px;
	}

	#pp #ppBox {
		padding: 26px 4% 24px 4%;
		overflow-y: scroll;
		overflow-x: hidden;
	}

	#pp dl {
		width: 100%;
		height: 350px;
		padding: 24px;
		display: block;
	}

	#pp dt {
		width: 100%;
		font-size: 1.6rem;
		display: block;
	}

	#pp dd {
		margin-bottom: 0;
		width: 100%;
		font-size: 1.4rem;
		display: block;
	}

	#ppText {
		font-size: 1.6rem;
	}

	#confirmBtn .moreBtnText {
		font-size: 1.8rem;
	}

	#sendBtn #confirmBtn .contactContentBtn {
		margin-bottom: 20px;
	}

	#sendBtn #confirmBtn .moreBtnText {
		font-size: 2rem;
	}

	#sendBtn .backBtnText {
		font-size: 1.4rem;
	}

	#sendBtn .backBtnText::after {
		width: 28px;
		height: 28px;
		left: -38px;
	}

	#contactEnd {
		padding-bottom: 60px;
	}

	#compBtn {
		padding: 0 4%;
		display: block;
	}
}
