@charset "UTF-8";


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

kv

------------------------------------------- */
.top-kv {
	position: relative;
	height: 64rem;
	background: url(../img/top-kv.jpg) no-repeat center / cover;
}
.top-kv .wrap {
	position: absolute;
	left: 12rem;
	top: 50%;
	transform: translate(0,-50%);
	z-index: 10;
	color: #fff;
	font-weight: 500;
}
.top-kv .wrap span {
	display: block;
	font-size: 3.3rem;
}
@media screen and (max-width: 768px) {
	.top-kv {
		height: auto;
		background: none;
	}
	.top-kv .wrap {
		position: relative;
		left: auto;
		top: auto;
		transform: none;
		background: var(--prime);
		padding: 2rem 0 2.1rem 0;
	}
	.top-kv .wrap span {
		font-size: 2rem;
		text-align: center;
	}
}



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

wrap

------------------------------------------- */
.top-wrap {
	background: url(../img/top-bg-1.png) no-repeat right top / cover;
}
@media screen and (max-width: 768px) {
	.top-wrap {
		background: none;
	}
}



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

about

------------------------------------------- */
.top-about {
	padding: 8rem 0;
}
.top-about .wrap {
	display: flex;
	flex-direction: row-reverse;
}
.top-about .wrap > figure {
	width: 44%;
	margin-top: 3rem;
}
.top-about .wrap > div {
	width: 56%;
	padding-right: 3rem;
}
.top-about p {
	font-weight: 500;
}
@media screen and (max-width: 768px) {
	.top-about {
		padding: 8rem 3rem;
	}
	.top-about .wrap {
		flex-direction: column;
	}
	.top-about .wrap > figure {
		width: 100%;
		margin-top: 0;
		margin-bottom: 2.5rem;
	}
	.top-about .wrap > div {
		width: 100%;
		display: contents;
		padding-right: 0;
	}
	.top-about h2 {
		order: -1;
	}
}



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

service

------------------------------------------- */
.top-service ul {
	display: flex;
	background: #2d2d2d;
}
.top-service ul li {
	flex: 1;
}
.top-service ul li > div {
	color: #fff;
}
.top-service ul li:nth-child(1) {
	border-right: solid 0.1rem #fff;
}
.top-service ul li:nth-child(1) > div {
	padding-top: 5rem;
	padding-bottom: 5rem;
	padding-left: 14.5rem;
	padding-right: 5rem;
}
.top-service ul li:nth-child(2) > div {
	padding-top: 5rem;
	padding-bottom: 5rem;
	padding-left: 5rem;
	padding-right: 14.5rem;
}
.top-service dt {
	color: var(--beige);
	font-weight: 500;
	font-size: 2.4rem;
}
.top-service dd {
	margin: 2rem 0 3rem 0;
}
@media screen and (max-width: 768px) {
	.top-service h2 {
		padding-left: 3rem;
	}	
	.top-service ul {
		display: block;
	}
	.top-service ul li {
		width: 100%;
	}
	.top-service ul li > div {
		color: #fff;
	}
	.top-service ul li:nth-child(1) {
		border-right: solid 0.1rem #fff;
	}
	.top-service ul li:nth-child(1) > div {
		padding: 3rem;
	}
	.top-service ul li:nth-child(2) > div {
		padding: 3rem;
	}
	.top-service dt {
		color: var(--beige);
		font-weight: 500;
		font-size: 2.4rem;
	}
	.top-service dd {
		margin: 2rem 0 3rem 0;
	}	
}


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

item

------------------------------------------- */
.top-item {
	padding: 8rem 0;
}
.top-item ul {
	display: flex;
	flex-wrap: wrap;
	column-gap: 0.3rem;
	row-gap: 1rem;
	margin-bottom: 4rem;
}
.top-item > .more-wrap {
	display: flex;
	justify-content: center;
	margin-bottom: 4rem;
}
.top-item > .more-wrap .more {
	color: #000;
	border-color: #000;
}
.top-item > .more-wrap .more::before {
	filter: invert(1);
}
.top-item ul li {
	/* 1列に4つ（12件なら3行） */
	width: calc((100% - 0.9rem) / 4);
}
.top-item figure {
	/* border: solid 0.1rem #e5e5e5;
	background: #fff; */
	overflow: hidden;
}
.top-item figure img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}
.top-item figcaption {
	background: var(--prime);
	color: #fff;
	text-align: center;
	padding: 0.5rem 0 0.6rem 0;
}
/* .top-item .item-price {
	display: none;
} */
.item-price {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
	padding: 2rem 0.8rem;
	border-top: solid 0.1rem #e5e5e5;
	background: #fff;
}
.item-price-al{
	flex-direction: column;
}
.item-price__label {
	font-size: 1.2rem;
	font-weight: 600;
	color: #666;
	white-space: nowrap;
}

.item-price__value {
	display: inline-flex;
	align-items: baseline;
	gap: 0.2rem;
	flex-wrap: nowrap;
	white-space: nowrap;
	word-break: keep-all;
	font-weight: 700;
}
.item-price__num {
	display: inline-block;
	color: #d60000;
	font-size: 2.1rem;
	line-height: 1;
	white-space: nowrap;
}
.item-price__yen {
	display: inline-block;
	font-size: 1.3rem;
	color: #333;
	line-height: 1;
	white-space: nowrap;
}
.top-item .wrap {
	background: #2d2d2d;
	color: #fff;
	display: flex;
	align-items: center;
	flex-direction: row-reverse;
}
.top-item .wrap > figure {
	width: 55%;
}	
.top-item .wrap > div {
	width: 45%;
	padding-left: 4rem;
}
.top-item .wrap  h3 {
	font-weight: 500;
	letter-spacing: 0.3em;
	font-size: 2.6rem;
}
.top-item .wrap p {
	white-space: nowrap;
	margin: 2rem 0 2.5rem 0;
}
@media screen and (max-width: 768px) {
	.top-item {
		padding: 8rem 3rem;
	}
	.top-item ul li {
		width: calc((100% - 0.6rem) / 2);
	}
	.item-price {
		padding: 0.8rem 0.9rem;
	}
	.item-price__num {
		font-size: 2.2rem;
	}
	.item-price__yen {
		font-size: 1.4rem;
	}
	.top-item .wrap {
		display: block;
		overflow: hidden;
	}
	.top-item .wrap > figure {
		width: 135%;
		margin-left: -35%;
	}	
	.top-item .wrap > div {
		width: 100%;
		padding: 3rem;
	}
	.top-item .wrap p {
		white-space: unset;
	}	
}



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

aside

------------------------------------------- */
aside ul {
	display: flex;
}
aside ul li {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 30rem;	
}
aside ul li:nth-child(1) {
	background: 
		url(../img/tri-red-1.png) no-repeat left top,
		url(../img/top-bg-2.jpg) no-repeat center;
	background-size:
		15rem auto,
		cover;
}
aside ul li:nth-child(2) {
	background: 
		url(../img/tri-red-2.png) no-repeat right bottom,
		url(../img/top-bg-3.jpg) no-repeat center;
	background-size:
		15rem auto,
		cover;	
}
aside .heading-1 {
	align-items: center;
	color: #fff;
}
@media screen and (max-width: 768px) {
	aside ul {
		display: block;
	}
	aside ul li {
		height: 30rem;	
	}
	aside ul li:nth-child(1) {
		background: 
			url(../img/tri-red-1.png) no-repeat left top,
			url(../img/top-bg-2.jpg) no-repeat center;
		background-size:
			12rem auto,
			cover;
	}
	aside ul li:nth-child(2) {
		background: 
			url(../img/tri-red-2.png) no-repeat right bottom,
			url(../img/top-bg-3.jpg) no-repeat center;
		background-size:
			12rem auto,
			cover;	
	}
}



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

faq

------------------------------------------- */
.faq-list dt {
	display: flex;
	align-items: center;
	border-bottom: solid 0.15rem var(--grey);
	font-size: 1.6rem;
	font-weight: 500;
	padding: 0.8rem 2rem;
	font-weight: bold;
}
.faq-list dt span:nth-child(1) {
	font-family: var(--font-en);
	color: var(--prime);
	font-size: 2.4rem;
}
.faq-list dt span:nth-child(2) {
	padding-left: 1.5rem;
	padding-bottom: 0.1rem;
}
.faq-list dd {
	padding: 2rem;
}
.faq-list dd:not(:last-of-type) {
	margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
	.faq-list dt {
		padding: 0.8rem 1rem;
	}
	.faq-list dd {
		padding: 1.6rem 1rem;
	}	
}



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

flow

------------------------------------------- */
.flow-list {
	display: flex;
	flex-direction: column;
	gap: 6rem;
}
.flow-list li {
	display: flex;
	position: relative;
	background: rgba(255,255,255,0.6);
	padding: 2.5rem;
}
.flow-list .num {
	width: 5rem;
	height: 5rem;
	background: var(--prime);
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: var(--font-en);
	font-weight: bold;
	color: #fff;
	border-radius: 50%;
	font-size: 2rem;
	position: absolute;
	left: -0.5rem;
	top: -0.5rem;
	padding-top: 0.2rem;
}
.flow-list li:not(:last-child):before {
	content: "";
	width: 1rem;
	height: 1rem;
	border-left: solid 0.4rem var(--prime);
	border-bottom: solid 0.4rem var(--prime);	
	transform: rotate(-45deg);
	position: absolute;
	left: calc(50% - 0.5rem);
	bottom: -3.5rem;
}
.flow-list li > figure {
	width: 30%;
}
.flow-list li > dl {
	width: 70%;
	padding-top: 0.5rem;
	padding-left: 3.5rem;
}
.flow-list dt {
	font-weight: bold;
	font-size: 1.8rem;
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	border-bottom: solid 0.12rem var(--grey);
}
@media screen and (max-width: 768px) {
	.flow-list li {
		flex-direction: column;
	}
	.flow-list li > figure {
		width: 100%;
		margin-bottom: 1.8rem;
	}
	.flow-list li > dl {
		width: 100%;
		padding-top: 0;
		padding-left: 0;
	}
	.flow-list dt {
		margin-bottom: 1rem;
		font-size: 1.6rem;
	}	
}



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

item

------------------------------------------- */
.item-coming-soon {
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	margin: 2rem 0 6rem 0;
}
ul.item-list + .heading-1 {
	margin-top: 6rem;
}
@media screen and (max-width: 768px) {
	.item-coming-soon {
		font-size: 1.8rem;
		margin: 1.5rem 0 5rem 0;
	}
	ul.item-list + .heading-1 {
		margin-top: 4rem;
	}
}
.item-list {
	display: flex;
	gap: 3rem;
	flex-wrap: wrap;
}
.item-list li {
	/* 1列に4つ（12件なら3行） */
	width: calc((100% - 9rem) / 4);
}
.item-list dd img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}
.item-list dt {
	background: var(--prime);
	text-align: center;
	color: #fff;
	font-size: 1.8rem;
	font-weight: bold;
	padding: 0.4rem 0 0.5rem 0;
}
.item-list .item-desc {
	display: block;
	margin-top: 1rem;
}
/* .item-list .item-price {
	display: none;
} */
@media screen and (max-width: 768px) {
	.item-list {
		display: flex;
		gap: 2rem;
		flex-wrap: wrap;
	}
	.item-list li {
		width: calc((100% - 2rem) / 2);
	}
	.item-list dt {
		font-size: 1.6rem;
	}	
	.item-list dd {
		line-height: 1.5;
		font-size: 1.3rem;
	}
}

.many{
    display: block;
    text-align: center;
}