@charset 'utf-8';

/* common
------------------------------------------------ */
#container { padding-top: 0; }
.hd-announcement { display: none; }
#contents { padding: 0; }

/* lazy */
.lazy { transition: ease-out 0.6s; transform: translateY(40px); opacity: 0; }
.lazy-done { transform: translate(0); opacity: 1; }

@media screen and (max-width: 768px) {
	.lazy { transform: translateY(30px); }
	.lazy-done { transform: translateY(0); }
}

/* visual
------------------------------------------------ */
.lp-visual { position: relative; width: 100%; height: 100vh; overflow: hidden; }
.lp-visual-copy { position: absolute; bottom: 80px; left: 40px; padding: 20px 40px; width: calc(100% - 160px); background-color: rgba(255,255,255,0.4); text-align: center; font-size: 4.1666666666vw; font-weight: 700; letter-spacing: 0.06em; line-height: 1.33333333333; color: #3a1f00; z-index: 2; }
.lp-visual-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.lp-visual-image img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-visual-scroll { position: absolute; bottom: 32px; left: 50%; margin-left: -600px; width: 1px; height: 145px; background-color: #fff5e6; z-index: 3; }
.lp-visual-scroll span { position: absolute; top: 0; left: 50%; animation: lpVisualScroll 2.2s linear infinite; margin-left: -6px; width: 12px; height: 12px; background-color: #3a1f00; border-radius: 50%; }
.lp-visual.lazy { transform: none; opacity: 1; }
.lp-visual.lazy .lp-visual-copy,
.lp-visual.lazy .lp-visual-image,
.lp-visual.lazy .lp-visual-scroll { transition: ease-out 0.6s; }
.lp-visual.lazy .lp-visual-copy { transform: translateY(40px); opacity: 0; }
.lp-visual.lazy .lp-visual-image { opacity: 0; }
.lp-visual.lazy .lp-visual-scroll { opacity: 0; }
.lp-visual.lazy-done .lp-visual-copy { transition-delay: 0.2s; transform: translate(0); opacity: 1; }
.lp-visual.lazy-done .lp-visual-image { opacity: 1; }
.lp-visual.lazy-done .lp-visual-scroll { transition-delay: 0.4s; opacity: 1; }

@keyframes lpVisualScroll {
	0% {
		transform: translateY(0);
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% {
		transform: translateY(145px);
		opacity: 0;
	}
}

@media screen and (min-width: 1200px) {
	.lp-visual-copy { left: 50%; transform: translateX(-50%) !important; width: auto; white-space: nowrap; font-size: 5rem; }
}

@media screen and (max-width: 1240px) {
	.lp-visual-scroll { left: 20px; margin-left: 0; }
}

@media screen and (max-width: 768px) {
	.lp-visual { height: 100svh; }
	.lp-visual-copy { bottom: 40px; padding: 20px; width: calc(100% - 120px); font-size: 2.2rem; }
	.lp-visual-scroll { bottom: 20px; left: 15px; height: 80px; }
	.lp-visual-scroll span { margin-left: -4px; width: 8px; height: 8px; }

	@keyframes lpVisualScroll {
		0% {
			transform: translateY(0);
			opacity: 0;
		}
		40% {
			opacity: 1;
		}
		80% {
			opacity: 1;
		}
		100% {
			transform: translateY(80px);
			opacity: 0;
		}
	}
}

/* main
------------------------------------------------ */
.lp-main { position: relative; padding: 100px 0; background-color: #3a1f00; color: #fff5e6; }
.lp-main-title { margin-bottom: 40px; text-align: center; font-size: 4rem; }
.lp-main-copy { margin-bottom: 60px; text-align: center; font-size: 2rem; line-height: 1.6; }
.lp-main-block { position: relative; }
.lp-main-block + .lp-main-block { margin-top: 120px; }
.lp-main-block__medium { position: relative; }
.lp-main-block__medium img { box-shadow: 14px 20px 20px rgba(0,0,0,0.16); }
.lp-main-block__medium--caption { text-align: center; font-size: 1.6rem; }
.lp-main-block--text { margin-top: 40px; text-align: center; font-size: 2rem; line-height: 1.6; }

@media screen and (min-width: 769px) {
	.lp-main-block__medium { display: grid; }
	.lp-main-block__medium[data-grid='2'] { grid-template-columns: 48.3333333333%; row-gap: 40px; column-gap: 40px; }
	.lp-main-block__medium[data-grid='2'] img:nth-of-type(1) { grid-row: 1 / 2; grid-column: 1 / 2; }
	.lp-main-block__medium[data-grid='2'] img:nth-of-type(2) { grid-row: 1 / 2; grid-column: 2 / 3; }
	.lp-main-block__medium[data-grid='2'] .lp-main-block__medium--caption { grid-column: 1 / 3; }
	.lp-main-block__medium[data-grid='3'] { grid-template-columns: 53.3333333333% 43.3333333333%; row-gap: 40px; column-gap: 40px; }
	.lp-main-block__medium[data-grid='3'] img:nth-of-type(1) { grid-row: 1 / 2; grid-column: 1 / 2; }
	.lp-main-block__medium[data-grid='3'] img:nth-of-type(2) { grid-row: 1 / 3; grid-column: 2 / 3; }
	.lp-main-block__medium[data-grid='3'] img:nth-of-type(3) { grid-row: 2 / 3; grid-column: 1 / 2; }
	.lp-main-block__medium[data-grid='3'] .lp-main-block__medium--caption { grid-column: 1 / 3; }
}

@media screen and (max-width: 768px) {
	.lp-main { padding: 60px 0; }
	.lp-main-title { margin-bottom: 20px; font-size: 2.6rem; }
	.lp-main-copy { margin-bottom: 40px; font-size: 1.6rem; }
	.lp-main-block + .lp-main-block { margin-top: 60px; }
	.lp-main-block__medium img { box-shadow: 6px 10px 10px rgba(0,0,0,0.16); }
	.lp-main-block__medium img + img { margin-top: 20px; }
	.lp-main-block__medium--caption { margin-top: 20px; font-size: 1.2rem; }
	.lp-main-block--text { margin-top: 20px; font-size: 1.6rem; }
}

/* newbrand
------------------------------------------------ */
.lp-newbrand { position: relative; }
.lp-newbrand-image { position: relative; }
.lp-newbrand-content { position: relative; padding: 60px 0 100px; background-color: #FCF7EA; color: #3a1f00; }
.lp-newbrand-content a { color: #fff; }
.lp-newbrand-title { margin-bottom: 40px; text-align: center; font-size: 2.4rem; font-weight: 700; line-height: 1.2; }
.lp-newbrand-title span { display: inline-block; vertical-align: top; }
.lp-newbrand-title span::before,
.lp-newbrand-title span::after { content: '-'; }
.lp-newbrand-lead { margin-bottom: 60px; text-align: center; font-size: 2rem; line-height: 1.6; }
.lp-newbrand-products { position: relative; }
.lp-newbrand-products--item { position: relative; }
.lp-newbrand-products--text { font-size: 2rem; letter-spacing: 0.1em; line-height: 2; }
.lp-newbrand-products__photo { position: relative; }
.lp-newbrand-products__photo > a { display: block; width: 100%; }
.lp-newbrand-products__photo--caption { margin-top: 20px; text-align: center; font-size: 2rem; }

@media screen and (min-width: 769px) {
	.lp-newbrand-content { overflow: hidden; }
	.lp-newbrand-products { display: flex; flex-wrap: wrap; }
	.lp-newbrand-products__info { padding-top: 60px; width: calc(50% - 40px); }
	.lp-newbrand-products--item { margin: 80px 40px 0 0; width: calc((100% / 2) - (40px / 2)); }
	.lp-newbrand-products--item:nth-of-type(2n) { margin-right: 0; }
	.lp-newbrand-products--item:nth-of-type(-n+2) { display: flex; align-items: center; margin-top: 0; width: 100%; }
	.lp-newbrand-products--item:nth-of-type(-n+2) .lp-newbrand-products__photo { width: 53.3333333333%; }
	.lp-newbrand-products--item:nth-of-type(-n+2) .lp-newbrand-products--text { width: calc(46.6666666667% - 40px); }
	.lp-newbrand-products--item:nth-of-type(1) .lp-newbrand-products--text { padding-right: 40px; }
	.lp-newbrand-products--item:nth-of-type(2) { flex-flow: row-reverse; margin-top: 10px; }
	.lp-newbrand-products--item:nth-of-type(2) .lp-newbrand-products--text { padding-left: 40px; }
}

@media screen and (max-width: 768px) {
	.lp-newbrand-content { padding: 20px 0 50px; }
	.lp-newbrand-title { margin-bottom: 20px; font-size: 1.6rem; }
	.lp-newbrand-lead { margin-bottom: 40px; text-align: left; font-size: 1.4rem; }
	.lp-newbrand-products--item { display: flex; flex-flow: column-reverse; }
	.lp-newbrand-products--item:not(:first-child) { margin-top: 60px; }
	.lp-newbrand-products--text { margin-top: 10px; font-size: 1.4rem; }
	.lp-newbrand-products__photo { margin: 0 20px; }
	.lp-newbrand-products__photo--caption { margin-top: 10px; font-size: 1.6rem; }
	.lp-newbrand-products--item:nth-of-type(1) .lp-newbrand-products__photo { margin: 0 0 0 -20px; }
	.lp-newbrand-products--item:nth-of-type(2) { margin-top: 40px; }
	.lp-newbrand-products--item:nth-of-type(2) .lp-newbrand-products__photo { margin: 0 -20px 0 0; }
}

/* signature
------------------------------------------------ */
.lp-signature { position: relative; background-color: #FCF7EA; color: #3a1f00; }
.lp-signature-content { position: relative; padding: 40px 0 80px; }
.lp-signature-title { position: relative; padding-bottom: 30%; width: 100%; height: 0; overflow: hidden; }
.lp-signature-title .wrap { display: flex; justify-content: center; align-items: center; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100%; height: 100%; z-index: 2; }
.lp-signature-title--name { display: inline-block; padding: 20px 40px; background-color: rgba(0,0,0,0.4); text-align: center; vertical-align: top; font-size: 4rem; font-weight: 400; letter-spacing: 0.1em; line-height: 1.2; color: #fff; }
.lp-signature-title--image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.lp-signature-lead { margin-bottom: 40px; font-size: 1.6rem; }
.lp-signature-products { display: flex; flex-wrap: wrap; position: relative; margin: 0 auto; max-width: 960px; }
.lp-signature-products--item { position: relative; }
.lp-signature-products--item > a { display: block; position: relative; width: 100%; height: 100%; }
.lp-signature-products__info { position: relative; margin-top: 30px; }
.lp-signature-products--title { text-align: center; font-size: 2rem; font-weight: 700; line-height: 1.4; }

@media screen and (min-width: 769px) {
	.lp-signature-title { padding-bottom: 360px; }
	.lp-signature-products--item { margin: 60px 40px 0 0; width: calc((100% / 2) - (40px / 2)); }
	.lp-signature-products--item:nth-of-type(-n+2) { margin-top: 0; }
	.lp-signature-products--item:nth-of-type(2n) { margin-right: 0; }
}

@media screen and (max-width: 768px) {
	.lp-signature-title { padding-bottom: 40%; }
	.lp-signature-title--name { padding: 20px; font-size: 1.6rem; line-height: 1.6; }
	.lp-signature-content { padding: 20px 0 40px; }
	.lp-signature-lead { margin-bottom: 20px; font-size: 1.4rem; }
	.lp-signature-products--item:not(:first-child) { margin-top: 40px; }
	.lp-signature-products__info { margin-top: 16px; }
	.lp-signature-products--title { font-size: 1.8rem; }
}

/* store
------------------------------------------------ */
.lp-store { position: relative; padding: 100px 0 110px; background-color: #3a1f00; color: #fff5e6; }
.lp-store a { color: #fff5e6; }
.lp-store-name { margin: 0 auto 40px; padding: 16px 10px; max-width: 480px; background-color: #fff5e6; border-radius: 12px; text-align: center; font-size: 2.8rem; line-height: 1.2; color: #3a1f00; }
.lp-store-gallery { display: flex; justify-content: space-between; }
.lp-store-gallery--item { width: 48%; }
.lp-store-info { position: relative; }
.lp-store-info dl > dt { margin-bottom: 10px; font-size: 2rem; font-weight: 700; line-height: 1.2; }
.lp-store-info dl > dd { font-size: 1.6rem; line-height: 1.625; }
.lp-store-map { position: relative; margin-top: 40px; padding-bottom: 41.6666666667%; width: 100%; height: 0; overflow: hidden; }
.lp-store-map iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

@media screen and (min-width: 769px) {
	.lp-store-gallery { margin: 0 auto 40px; max-width: 1000px; }
	.lp-store-info { display: flex; flex-wrap: wrap; padding-left: 120px; }
	.lp-store-info dl { width: calc(50% - 40px); }
	.lp-store-info dl + dl { margin-left: 80px; }
	.lp-store-info dl dt:not(:first-child) { margin-top: 24px; }
}

@media screen and (max-width: 768px) {
	.lp-store { padding: 50px 0; }
	.lp-store-name { margin-bottom: 20px; padding: 12px 8px; max-width: inherit; border-width: 1px; border-radius: 8px; font-size: 1.6rem; }
	.lp-store-gallery { margin-bottom: 20px; }
	.lp-store-info { padding: 0 20px; }
	.lp-store-info dl + dl,
	.lp-store-info dl > dd + dt { margin-top: 20px; }
	.lp-store-info dl > dt { font-size: 1.6rem; }
	.lp-store-info dl > dd { font-size: 1.4rem; }
	.lp-store-map { margin: 30px -20px 0; padding-bottom: 60%; width: calc(100% + 40px); }
}