@charset "UTF-8";



.product .ttl-wrap {
	display: flex;
	justify-content: center;
}



/* -------------------------------------------

summary

------------------------------------------- */
.product-summary {
	padding: 10rem 0;
	text-align: center;
}
.product-summary ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.product-summary ul li {
	width: 24%;
	margin-right: calc(4% / 3);
}
.product-summary ul li:nth-child(4n) {
	margin-right: 0;
}
.product-summary ul li:nth-child(n + 5) {
	margin-top: calc(4% / 3);
}
.product-summary ul a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4.4rem;
	color: #fff;
	background: var(--grey);
	padding-bottom: 0.2rem;
	position: relative;
}
.product-summary ul a:hover {
	opacity: 1;
	background: var(--prime);
}
.product-summary ul a i {
	position: absolute;
	right: 1.5rem;
	top: 50%;
	transform: translate(0,-50%);
	margin-top: 0.1rem;
	font-size: 1rem;
}
@media screen and (max-width: 768px) {
	.product-summary {
		padding: 8rem 3rem;
	}
	.product-summary ul {
		justify-content: space-between;
	}
	.product-summary ul li {
		width: 49%;
		margin-right: 0;
	}
	.product-summary ul li:nth-child(n + 5) {
		margin-top: 0;
	}
	.product-summary ul li:nth-child(n + 3) {
		margin-top: 2%;
	}	
	.product-summary ul a {
		font-size: 1.3rem;
	}
	.product-summary ul a i {
		right: 1rem;
		font-size: 0.8rem;
	}
}



/* -------------------------------------------

process

------------------------------------------- */
.product-process {
	padding: 10rem 0;
	background: #2f2c2b;
}
.product-process h2,
.product-process p {
	color: #fff;
}
.product-process p {
	text-align: center;
	margin-bottom: 5rem;
}
.product-process ul {
	display: flex;
	justify-content: center;
	gap: 6rem;
}
.product-process ul li {
	width: 18rem;
	background: #fff;
	position: relative;
	padding: 2rem 0 2.5rem 0;
}
.product-process ul li:not(:last-child):before {
	content: "＞";
	color: #fff;
	font-size: 3rem;
	line-height: 1;
	position: absolute;
	right: -4.5rem;
	top: 50%;
	transform: translateY(-50%);
}
.product-process ul li img {
	padding: 0 2.5rem;
	margin-bottom: 0.5rem;
}
.product-process dl {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.product-process dt {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 1.8rem;
	line-height: 1;
	margin-bottom: 1.5rem;
}
.product-process dt::after {
	content: "";
	width: 3rem;
	height: 0.35rem;
	background: var(--prime);
	margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
	.product-process {
		padding: 8rem 3rem;
	}
	.product-process p {
		margin-bottom: 2rem;
	}
	.product-process ul {
		display: block;
	}
	.product-process ul li {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 2.5rem 0;		
	}
	.product-process ul li:not(:last-child) {
		margin-bottom: 2rem;
	}	
	.product-process ul li:not(:last-child):before {
		display: none;
	}
	.product-process ul li img {
		padding: 0;
		width: 15rem;
	}
	.product-process dl {
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.product-process dt {
		font-size: 2rem;
	}
	.product-process dd {
		font-size: 1.6rem;
	}	
}



/* -------------------------------------------

info

------------------------------------------- */
.product-info {
	padding: 10rem 0;
}
.product-info > section:not(:last-of-type) {
	margin-bottom: 8rem;
}
.product-info ul {
	display: flex;
	flex-wrap: wrap;
}
.product-info ul li {
	width: 28%;
	margin-right: 8%;
}
.product-info ul li a {
	position: relative;
}
.product-info ul li a > i {
	position: absolute;
	right: 1.5rem;
	bottom: 1.5rem;
	color: #fff;
}
.product-info ul li:nth-child(3n) {
	margin-right: 0;
}
.product-info ul li:nth-child(n + 4) {
	margin-top: 6rem;
}
.product-info dt {
	margin: 1.5rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}	
.product-info dd {
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
	.product-info {
		padding: 8rem 2rem;
	}	
	.product-info ul {
		justify-content: space-between;
	}
	.product-info ul li {
		width: 47%;
		margin-right: 0;
	}
	.product-info ul li:nth-child(3n) {
		margin-right: 0;
	}
	.product-info ul li:nth-child(n + 4) {
		margin-top: 0;
	}
	.product-info ul li:nth-child(n + 3) {
		margin-top: 4rem;
	}	
	.product-info dt {
		margin: 1.5rem 0;
		align-items: flex-start;
	}	
}



/* -------------------------------------------

order

------------------------------------------- */
.product-order {
	padding: 5rem 0 10rem 0;
}
.product-order .wrap {
	width: 56rem;
	margin: 0 auto;
}
@media screen and (max-width: 768px) {
	.product-order {
		padding: 5rem 2rem 8rem 2rem;
	}
	.product-order .wrap {
		width: 100%;
		margin: 0 auto;
	}
}
.product-order .CMS-FORM-GROUP {
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;
}
.product-order .CMS-FORM-GROUP label {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	font-size: 1.6rem;	
}
.product-order .CMS-FORM-GROUP label span {
	font-size: 1.2rem;
	color: var(--prime);
	margin-left: 1rem;
	margin-top: 0.3rem;
}
.CMS-FORM-GROUP > input,
.CMS-FORM-GROUP textarea {
	width: 100%;
	border-radius: 0;
	border: solid 0.1rem #2f2c2b;
	padding: 1.7rem 2rem 1.8rem 2rem;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.6rem;
}
.CMS-FORM-GROUP p {
	font-size: 1.5rem;
	margin-top: 0.8rem;
	line-height: 1.6;
}
.product-order textarea {
	height: 20rem;
}
.product-order input[type=text]::placeholder,
.product-order textarea::placeholder {
	color: #e9e9e9;
}
.CMS-FORM-RADIO > div {
	display: flex;
	align-items: flex-start;
}
.CMS-FORM-RADIO > div:first-of-type {
	margin-bottom: 1rem;
}
.CMS-FORM-RADIO > div > label {
	padding-left: 0.6rem;
	margin-top: -0.3rem;
}




.product-order .wrap > div {
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;
}
.product-order .wrap > div label {
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	font-size: 1.6rem;
}
.product-order .wrap > div label span {
	font-size: 1.2rem;
	color: var(--prime);
	margin-left: 1rem;
	margin-top: 0.3rem;
}
.product-order .wrap > div label + dl {
	font-size: 1.2rem;
	margin-bottom: 1rem;
}
.product form {
	margin-bottom: 8rem;
}
.product input[type=text],
.product textarea {
	width: 100%;
	border-radius: 0;
	border: solid 0.1rem #2f2c2b;
	padding: 1.7rem 2rem 1.8rem 2rem;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.6rem;
}
.product textarea {
	height: 20rem;
}
.product input[type=text]::placeholder,
.product textarea::placeholder {
	color: #e9e9e9;
}
.product .select-wrap {
	position: relative;
}
.product .select-wrap::after {
	content: "";
    position: absolute;
    right: 1.5rem;
    top: 2.5rem;
    width: 4px;
    height: 4px;
    border-top: 2px solid var(--grey);
    border-left: 2px solid var(--grey);
    pointer-events: none;
    transform: translateY(-50%) rotate(-135deg);
}
.product select {
	position: relative;
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: solid 0.1rem #2f2c2b;	
	padding: 1.7rem 2rem 1.8rem 2rem;	
	font-family: "Zen Old Mincho", serif;
	background-color: #fff;
	color: var(--grey) !important;
	font-size: 1.6rem;
}
.radio-wrap > div {
	border: solid 0.1rem #2f2c2b;	
	padding: 1.5rem 3rem;
	display: flex;
	align-items: center;
}
.product .radio-wrap > div:not(:last-of-type) {
	margin-bottom: 1.5rem;
}
.product .radio-wrap > div label {
	padding-left: 3rem;
	margin: 0 !important;
}
.product .submit {
	margin-top: 6rem;
	display: flex;
	justify-content: center;
}
@media screen and (max-width: 768px) {
	.submit {
		margin-top: 3rem;
	}
}
input[type=submit] {
    -webkit-appearance: button;
    appearance: button;
    border: none;
    border-radius: 0;
	font-family: "Zen Old Mincho", serif;	
	color: #fff;
	background: url(../img/arrow-wh.png) no-repeat center right 3rem;
	background-size: 4rem auto;
	background-color: var(--prime);
	width: 32rem;
	margin: 0 auto;
	padding: 1.5rem 0 1.8rem 0;
}
@media screen and (max-width: 768px) {
	input[type=submit] {
		width: 100%;
	}
}
.product .privacy-wrap {
	width: 72rem;
	height: 24rem;
	margin: 0 auto;
	border: solid 0.1rem var(--grey);
	padding: 2.5rem 3rem;
	overflow-y: scroll;
}
.product .privacy-wrap h3 {
	font-weight: normal;
	font-size: 1.6rem;
	margin-bottom: 1.5rem;
}
.product .privacy-wrap p {
	font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
	.product .privacy-wrap {
		width: 100%;
	}
}