.kuraloveCatalogCont .kv {
	width: 100%;
	height: auto;
	margin: 0 auto;
	background-color: #fceed9;
}

.kv picture img {
	width: 100%;
	max-width: 1200px;
}

.kv img {
	width: 100%;
}

.contents {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 100px 85px;
}
/* アコーディオン */

.accordion {
	width: 100%;
	margin: 0 auto;
}

.accordionItem + .accordionItem {
	margin-top: 20px;
}

.accordionQuestion {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #4abed3;
	cursor: pointer;
	padding: 10px 14px;
	gap: 20px;
	position: relative;
	user-select: none;
	border-radius: 4px;
	font-size: 20px;
	text-align: left;
	color: #fff;
	font-weight: bold;
	transition: background 0.2s;
}

.accordionQuestion:hover {
	opacity: .8;
}

.toggleIcon {
	width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	user-select: none;
}
.iconShape {
	position: relative;
	width: 100%;
	height: 100%;
	display: inline-block;
}
.line {
	position: absolute;
	background: #fff;
}
.line.vertical {
	left: 50%;
	top: 50%;
	width: 2px;
	height: 16px;
	transform: translateX(-50%) translateY(-50%);
}
.line.horizontal {
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	transform: translateX(-50%) translateY(-50%);
}
.toggleIcon.active .iconShape {
	transform: rotate(180deg);
}

.toggleIcon.active .line.vertical {
	opacity: 0;
	height: 0;
}

.accordionAnswer {
	margin-top: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition:
		height 0.4s cubic-bezier(0.4,0,0.2,1),
		padding-top 0.2s,
		padding-bottom 0.2s,
		opacity 0.3s;
}

.accordionAnswer > div:first-of-type {
	margin-top: 24px;
}

.accordionAnswer ul {
	margin-top: 20px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
}

.accordionAnswer ul > li {
	position: relative;
	font-size: 16px;
	padding-left: 1.2em;
	text-align: left;
}

.accordionAnswer ul > li.dots {
	padding-left: .8em;
}

.accordionAnswer > p {
	margin-top: 24px;
	font-size: 16px;
	text-align: left;
}

.accordionAnswer ul > li.circle::before {
	position: absolute;
	width: 14px;
	height: 14px;
	top: 3px;
	left: 0;
	content: "";
	background-color: #bfbfbf;
	border-radius: 50%;
}

.accordionAnswer ul > li.dots::before {
	position: absolute;
	width: 4px;
	height: 4px;
	top: 8px;
	left: .4em;
	content: "";
	background-color: #333;
	border-radius: 50%;
	transform: translateX(-50%);
}

.accordionAnswer ul > li.caution::before {
	position: absolute;
	top: 0px;
	left: 0;
	content: "※";
	color: #333;
	font-size: 14px;
}

.accordionAnswer ul > li.caution > span {
	display: inline;
	color: #333;
	font-size: 14px;
}

.accordionHdg {
	position: relative;
	padding-left: 1.2em;
	margin-top: 30px;
	font-size: 18px;
	font-weight: bold;
	text-align: left;
}

.accordionHdg::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	content: "";
	background-color: #4abed3;
}

.accrodionContact {
	text-align: left;
	font-size: 16px;
	font-weight: bold;
	margin-top: 15px;
}

/* 同意ボタン */
.agreement {
	padding: 50px 0 0;

}

.agreementInner {
	max-width: 600px;
	padding: 20px 20px 10px;
	margin: 0 auto 24px;
	border: solid 1px #333;
}

.agreementInner p {
	font-size: 16px;
	text-align: left;
}

.agreementInput {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 1.5em;
	font-size: 16px;
}

.agreementInput input {
	cursor: pointer;
}

.agreementInput label {
	cursor: pointer;
}

.agreementCheckbox {
	position: relative;
	margin-right: 8px;
	width: 18px;
	height: 18px;
	appearance: none;
}

.agreementCheckbox::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 18px;
	height: 18px;
	content: "";
	border: solid 1px #808080;
	background-color: transparent;
	border-radius: 3px;
}

.agreementCheckbox:checked:before {
	background-color: #fd7122;
}

.agreementCheckbox:checked::after {
	content: "";
	position: absolute;
	left: 7px;
	top: 3px;
	width: 4px;
	height: 10px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
	background-color: transparent;
}

.submitBtn {
	width: 400px;
	margin: 0 auto;
	padding: 18px 0;
	font-size: 16px;
	font-weight: bold;
	background: #bfbfbf;
	color: #fff;
	border: none;
	border-radius: 4px;
	transition: background 0.2s;
	cursor: not-allowed;
}

.submitBtn.enabled {
	background: #fd7122;
	cursor: pointer;
}

.submitBtn:active.enabled {
	background: #fd7122;
}

.cautionList {
	margin-top: 100px;
}

.cautionList > ul > li {
	position: relative;
	font-size: 14px;
	padding-left: 1em;
	text-align: left;
}

.cautionList > ul > li:not(:first-of-type) {
	margin-top: 5px;
}

.cautionList > ul > li::before {
	position: absolute;
	top: 0px;
	left: 0;
	content: "※";
	color: #333;
	font-size: 14px;
}

.ftRight {
	display: none;
}

@media screen and (max-width: 667px) {
	.contents {
		padding: 32px 15px 70px;
	}

	.submitBtn {
		width: 100%;
	}

	.cautionList {
		margin-top: 50px;
	}
}
