.fadein {
	opacity : 0.1;
	transform : translate(0, 50px);
	transition : all 1s;
}
.blur {
	background: rgba(0,0,0,0);
	transition : background 1s;
}
.blur > *{
	filter: blur(100px);
	transition : filter 1s;
}

.fadein.scrollin {
	opacity : 1;
	transform : translate(0, 0);
}

.blur.scrollin{
	background: rgba(0,0,0,0.3);
}
.blur.scrollin > *{
	filter: blur(0px);
}

::-webkit-scrollbar {
	width: 5px;
	background-color: #000;
}

::-webkit-scrollbar-track{
	background-color: #000;
}

::-webkit-scrollbar-thumb {
	background: #ccc;
	width: 3px;
	border-radius: 5px;
}

body{
	background-color: #222;
}

main{
	max-width:750px;
	margin: 0 auto;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
	color:#eee;
	background-color:#000;
	min-height:100svh;
}
img{
	vertical-align: bottom;
	max-width: 100%;
	max-height: 100%;
}
h3{
	font-size: 28px;
	line-height: 2em;
	margin-bottom: 1em;
}
p{
	line-height: 1.8em;
	font-size: 13px;
}

section{
	padding-top: 3rem;
	padding-bottom: 3rem;
	padding-left: clamp(1px, 2vw, 1.5rem);
	padding-right: clamp(1px, 2vw, 1.5rem);
}

#hero-section{
	position: relative;
	height:100svh;
	padding:0;
	overflow: hidden;
}

#hero-section .video-container {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

#hero-section .bg-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	transform: translate(-50%, -50%);
	object-fit: cover;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}

#hero-section .bg-video.fade-in {
	opacity: 1;
}

#hero-section .blur {
	position: relative;
	z-index: 2;
}

#hero-section .grid{
	height:100svh;
	padding:0;
	display: grid;
	grid-template-columns: 1fr;
	grid-template-rows: 1fr 1fr 1fr;
	align-items: center;
	justify-items: center;
	text-align: center;
}

#hero-section .title{
	margin: 2rem;
}

#hero-section .sub{
	font-size: clamp(12px, 4dvw, 24px);
	line-height: 1;
}
#hero-section .main{
	font-size: clamp(12px, 7dvw, 30px);
	line-height: 1.5;
	margin: 2rem 0;
}

#hero-section img{
	height:200px;
}

#about-us-section{
	background-image: linear-gradient(to right, rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)), url("../images/designers_lp/about-us-section/store-exterior-bg.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: center, center;
	background-size: cover, cover;
	padding:3rem 2rem;
	text-align:center;
}
#about-us-section .grid{
	display: grid;
	grid-template-columns: 140px 1fr;
	height: 300px;
	align-items: center;
	gap:2em;
}
#about-us-section h3 {
	font-size: clamp(10px, 3.7vw, 28px);
	margin-bottom: 1em;
	color: #fff;
}

#about-us-section p {
	font-size: clamp(8px, 1.9vw, 13px);
	margin-bottom: 1em;
	color: #fff;
}

#about-us-section h4{
	font-size: clamp(12px, 3.5dvw, 18px);
	line-height: 2em;
	color: #fff;
}

#about-us-section img{
	max-width: 140px;
	width: 100%;
}

/* モーダルウィンドウスタイル */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(5px);
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease;
}

.modal-overlay.show {
	opacity: 1;
	visibility: visible;
}

.modal-content {
	background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 
	            0 0 0 1px rgba(255, 215, 0, 0.1);
	max-width: 480px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	position: relative;
	transform: scale(0.8) translateY(50px);
	transition: all 0.3s ease;
}

.modal-overlay.show .modal-content {
	transform: scale(1) translateY(0);
}

.modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	background: transparent;
	border: none;
	font-size: 28px;
	color: #ccc;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.3s ease;
	z-index: 1;
}

.modal-close:hover {
	background-color: rgba(255, 255, 255, 0.1);
	color: #fff;
	transform: rotate(90deg);
}

.modal-header {
	padding: 20px 30px 15px;
	text-align: center;
	border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.modal-header h3 {
	font-family: "Noto Serif JP", serif;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	margin: 0;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.modal-body {
	padding: 20px 30px;
}

.modal-section {
	display: none;
}

.modal-section.active {
	display: block;
}

/* 電話モーダル専用スタイル */
.tel-info {
	text-align: center;
	margin-bottom: 30px;
}

.tel-number {
	margin-bottom: 15px;
}

.tel-label {
	display: block;
	font-size: 14px;
	color: #ccc;
	margin-bottom: 5px;
	font-weight: 400;
}

.tel-main {
	display: block;
	font-size: 32px;
	font-weight: 700;
	color: #ffd700;
	font-family: "Arial", sans-serif;
	text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
}

.business-hours {
	font-size: 16px;
	color: #aaa;
	margin-bottom: 20px;
}

.closed-message {
	background: rgba(255, 82, 82, 0.1);
	border: 1px solid rgba(255, 82, 82, 0.3);
	border-radius: 10px;
	padding: 20px;
	margin-top: 20px;
}

.closed-message p {
	color: #ff9999;
	margin: 0 0 10px;
	font-size: 14px;
	line-height: 1.6;
}

.closed-message p:last-child {
	margin-bottom: 0;
}

/* LINEモーダル専用スタイル */
.line-info {
	text-align: center;
}

.qr-code-area {
	margin-bottom: 30px;
}

.qr-placeholder {
	background: rgba(255, 255, 255, 0.05);
	border: 2px dashed rgba(255, 215, 0, 0.3);
	border-radius: 15px;
	padding: 40px 20px;
	margin-bottom: 20px;
}

.qr-icon {
	font-size: 48px;
	display: block;
	margin-bottom: 15px;
	opacity: 0.8;
}

.qr-placeholder p {
	color: #ccc;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.qr-code {
	background: rgba(255, 255, 255, 0.05);
	border: 2px dashed rgba(255, 215, 0, 0.3);
	border-radius: 15px;
	padding: 20px;
	margin-bottom: 20px;
	text-align: center;
}

.qr-code img {
	max-width: 200px;
	width: 100%;
	height: auto;
	border-radius: 10px;
	margin-bottom: 15px;
}

.qr-code p {
	color: #ccc;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.line-description {
	text-align: left;
	margin-bottom: 30px;
}

.line-description p {
	color: #ddd;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 15px;
}

.line-description ul {
	color: #bbb;
	font-size: 14px;
	line-height: 1.8;
	padding-left: 20px;
}

.line-description li {
	margin-bottom: 8px;
	position: relative;
}

.line-description li::before {
	content: "✓";
	color: #ffd700;
	font-weight: bold;
	position: absolute;
	left: -20px;
}

/* モーダルボタンスタイル */
.modal-buttons {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-top: 30px;
}

.modal-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 25px;
	border-radius: 50px;
	text-decoration: none;
	font-size: 16px;
	font-weight: 600;
	font-family: "Noto Serif JP", serif;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}

.modal-btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.modal-btn:hover::before {
	left: 100%;
}

.modal-btn-primary {
	background: #FFD700;
	color: #222;
	box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.modal-btn-primary:hover {
	background: #FFC107;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

.modal-btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal-btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
	transform: translateY(-2px);
}

.btn-icon {
	margin-right: 10px;
	font-size: 18px;
}

/* モーダル用レスポンシブ対応 */
@media screen and (max-width: 480px) {
	.modal-content {
		width: 95%;
		margin: 20px;
		max-height: 85vh;
	}
	
	.modal-header,
	.modal-body {
		padding: 20px;
	}
	
	.tel-main {
		font-size: 26px;
	}
	
	.modal-btn {
		padding: 12px 20px;
		font-size: 14px;
	}
}

@media screen and (max-width: 765px) {
	#about-us-section .grid{
		display: grid;
		grid-template-columns: 1fr;
		gap: 1.5em;
		height: auto;
	}
}
.separator{
	padding: 3rem 1.5rem;
	background-image: linear-gradient(to right, rgba(0,0,0, 0.2), rgba(0,0,0, 0.2)), url("../images/designers_lp/about-us-section/background-image-1.jpg"), url("../images/designers_lp/about-us-section/background-image-2.jpg");
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: top right, center left, center right;
	background-size: 100% 100%, 50%, 50%;
	height:20dvh;
}

/* mail-order-buying-section start */
#mail-order-buying-section{
	text-align: center;
	background-image: linear-gradient(to right, rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)), url("../images/designers_lp/about-us-section/background-image-3.jpg"), url("../images/designers_lp/about-us-section/background-image-4.jpg");
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: top right, bottom left, top right;
	background-size: 100% 100%, 500px , 250px;
	padding: 2em;
}
#mail-order-buying-section ul{
	text-align: center;
	font-size: 13px;
	margin: 2rem auto;
	display: flex;
	line-height: 1.5em;
	flex-direction: column;
	align-content: center;
	flex-wrap: wrap;
	list-style: none;
}

#mail-order-buying-section p:not(.philosophy-quote) {
	font-size: clamp(8px, 1.9vw, 14px);
	color: #fff;
	line-height: 1.8;
	margin-bottom: 1em;
	font-family: "Noto Serif JP", serif;
}
/* mail-order-buying-section end */

/* brand-list-section start */
#brand-list-section{
	text-align: center;
	background-image: linear-gradient(to right, rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)), url("../images/designers_lp/brand-list-section/brand-showcase-1.jpg"), url("../images/designers_lp/brand-list-section/brand-showcase-2.jpg");
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: center right,left bottom , right top;
	background-size: 100% 100%, 45%, 45%;
}
#brand-list-section div.grid{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr, auto;
	gap:3em;
	align-items: center;
	margin: 1em;
	line-height: 1.5em;
	font-size: 12px;
}
#brand-list-section div.grid div:nth-child(1) { grid-area: 1 / 1 / 2 / 2; }
#brand-list-section div.grid div:nth-child(2) { grid-area: 1 / 2 / 2 / 3; }
#brand-list-section div.grid div:nth-child(3) { grid-area: 2 / 1 / 3 / 3; }
/* brand-list-section end */

/* purchase-records-section start */
#purchase-records-section{
	background-image: linear-gradient(to right, rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)), url("../images/designers_lp/purchase-records-section/purchase-records-bg.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: center, center;
	background-size: cover, cover;
	text-align:center;
}
#purchase-records-section ul{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	font-size: 8px;
	list-style: none;
	gap:5em 1em;
	text-align: center;
	line-height: 1.5em;
}
#purchase-records-section ul li{
	position: relative;
	height:200px;
}
#purchase-records-section ul li:nth-child(1){
	background-image: linear-gradient(to top, rgba(0,0,0, 0.4), rgba(0,0,0, 0.4));
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-position: center;
	background-size: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
#purchase-records-section ul li:nth-child(1) h3{
	font-size: 24px;
	text-decoration:underline;
	text-underline-offset: 4px;
}
#purchase-records-section ul li img{
	width:100%;
}
#purchase-records-section ul li div{
	position:absolute;
	bottom:0px;
	width:100%;
	background-image: linear-gradient(to top, rgba(0,0,0, 0.5), rgba(0,0,0, 0));
	background-repeat: no-repeat;
	background-size: 100% 100%;
	padding:1em 0;
	min-height:70px;
	display:flex;
	flex-direction: column;
	justify-content: flex-end;
}
#purchase-records-section ul li span{
	font-size: 16px;
	text-decoration:underline;
	text-underline-offset: 3px;
	line-height: 1.5em;
}
/* purchase-records-section end */

/* point-system-section start */
#point-system-section{
	font-size:18px;
}
#point-system-section h3{
	font-size:28px;
	text-decoration:underline;
	text-underline-offset: 6px;
	text-align: center;
	margin: 1rem;
}
#point-system-section p{
	text-align: center;
}
#point-system-section p strong{
	color: #ff7800;
	text-align: center;
}
#point-system-section .grid {
	display: grid;
	grid-template-columns: auto auto auto;
	grid-template-rows: 1fr 50px 1fr;
	align-items: center;
	justify-items: center;
	text-align: center;
	justify-content: center;
	gap:1rem 2rem;
	line-height: 1.5em;
	margin:2rem auto;
}
#point-system-section .grid > div:nth-child(1){grid-area: 1 / 1 / 4 / 2;}
#point-system-section .grid > div:nth-child(2){grid-area: 1 / 2 / 4 / 3;}
#point-system-section .grid > div:nth-child(3){grid-area: 1 / 3 / 2 / 4;}
#point-system-section .grid > div:nth-child(4){grid-area: 2 / 3 / 3 / 4;}
#point-system-section .grid > div:nth-child(5){grid-area: 3 / 3 / 4 / 4;}
#point-system-section img{
	width:100%;
	max-width: 150px;
}
#point-system-section .value{
	font-size:28px;
	text-decoration:underline;
	text-underline-offset: 6px;
}
#point-system-section .rate{
	font-size:14px;
}
#point-system-section .parent strong{
	text-decoration:underline;
	text-underline-offset: 3px;
}
#point-system-section .cont{
	display: flex;
}
#point-system-section ul{
	font-size:10px;
	line-height: 1.5;
	list-style: none;
	display: inline-block;
	margin:0 auto;
}
#point-system-section ul li:before{
	content:"※";
	margin-right:.2em;
}
#point-system-section .arrow {
	position: relative;
	display: inline-block;
	width: 2px;
	height: 70px;
	border-radius: 9999px;
	background-color: #ffffff;
	transform: rotate(45deg);
	scale: 60%;
}
#point-system-section .arrow.bottom{
	transform: rotate(180deg);
}
#point-system-section .arrow::before,
#point-system-section .arrow::after {
	content: "";
	position: absolute;
	top: 0;
	left: calc(50% - 1px);
	width: 2px;
	height: 30px;
	border-radius: 9999px;
	background-color: #ffffff;
	transform-origin: 50% 1px;
}
#point-system-section .arrow::before {
	transform: rotate(30deg);
}
#point-system-section .arrow::after {
	transform: rotate(-30deg);
}
/* point-system-section end */

/* instagram-section start */
#instagram-section{
	line-height: 1.5em;
}
#instagram-section h3{
	position: relative;
	display: inline;
}
#instagram-section h3:before{
	content:"";
	background-image: url("../images/designers_lp/service-process-section/instagram-icon.png");
	width:50px;
	height:50px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: block;
	position: absolute;
	left: -60px;
	top: 50%;
	transform: translate(0, -50%);
}
#instagram-section strong{
	margin: .5rem;
	color: #ff7800;
	font-size: 20px;
	display: block;
}
#instagram-section img{
	max-height:300px;
}
#instagram-section a{
	background-color: #ffffff;
	border-radius: 50px;
	color:#111;
	font-size: 18px;
	font-weight: bold;
	padding:.5em 1em;
	margin: 0 auto;
	text-align: center;
	display: block;
	text-decoration: none;
}
#instagram-section .grid {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto auto auto;
	gap: 1rem 2rem;
	align-items: center;
	justify-items: center;
	text-align: center;
	justify-content: center;
}
#instagram-section .grid > div:nth-child(1) {
	grid-area: 1 / 1 / 2 / 2;
	align-self: end;
}
#instagram-section .grid > div:nth-child(2) {
	grid-area: 2 / 1 / 3 / 2;
}
#instagram-section .grid > div:nth-child(3) {
	grid-area: 3 / 1 / 4 / 2;
	align-self: start;
}
#instagram-section .grid > div:nth-child(4) { grid-area: 1 / 2 / 4 / 3; }
/* instagram-section end */

/* online-store-section start */
#online-store-section{
	line-height: 1.5em;
}
#online-store-section h3{
	position: relative;
	line-height: 1.3;
	display: inline;
}
#online-store-section h3:before{
	content:"";
	background-image: url("../images/designers_lp/point-system-section/online-store-icon.png");
	width:50px;
	height:40px;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	display: block;
	position: absolute;
	left: -60px;
	top: 50%;
	transform: translate(0, -50%);
}
#online-store-section strong{
	color: #ff7800;
	margin: .5rem;
	font-size: 14px;
	display: block;
}
#online-store-section img{
	max-width:200px;
}
#online-store-section a{
	background-color: #ffffff;
	border-radius: 50px;
	color:#111;
	font-size: 18px;
	font-weight: bold;
	padding:.5em 1em;
	margin: 0 auto;
	text-align: center;
	display: block;
	text-decoration: none;
}
#online-store-section .grid {
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: auto auto auto;
	gap: 1rem 4rem;
	align-items: center;
	justify-items: center;
	text-align: center;
	justify-content: center;
}
#online-store-section .grid > div:nth-child(1) {
	grid-area: 1 / 2 / 2 / 3;
	align-self: end;
}
#online-store-section .grid > div:nth-child(2) {
	grid-area: 2 / 2 / 3 / 3;
}
#online-store-section .grid > div:nth-child(3) {
	grid-area: 3 / 2 / 4 / 3;
	align-self: start;
}
#online-store-section .grid > div:nth-child(4) { grid-area:1 / 1 / 4 / 2;}
/* online-store-section end */

/* access-section start */
#access-section{
	text-align: center;
	line-height: 1.5em;
	padding-bottom: 3rem;
}
#access-section h3{
	line-height: 1.3;
}
#access-section h4{
	font-size: 20px;
	line-height: 1.5em;
	margin: 1rem;
}
#access-section h5{
	margin-top: 1rem;
}
#access-section .image{
	position: relative;
	margin: 1rem;
}
#access-section .image:before{
	content:"";
	background-image: url("../images/designers_lp/point-system-section/access-store-logo.png");
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-size: auto 130%;
	background-position: center;
	display: block;
	position: absolute;
}
#access-section .image img{
	max-width:400px;
	width: 100%;
}
#access-section dl{
	display: grid;
	grid-template-columns: auto auto;
	grid-template-rows: repeat(2, 1fr);
	align-items: baseline;
	text-align: center;
	justify-items: end;
	justify-content: center;
}
#access-section dl dt{
	font-size: 12px;
}
#access-section dl dt:after{
	content:":";
}
#access-section dl dd{
	justify-self: start;
	font-size: 16px;
}
/* ACCESSセクション電話番号専用スタイル */
.access-tel-link {
	color: #fff;
	text-decoration: underline;
	font-weight: normal;
	transition: color 0.3s ease;
}

.access-tel-link:hover {
	color: #ffd700;
}
/* access-section end */

/* contact-buttons-section start */
.contact-buttons-section {
	padding: 40px 20px;
	background-color: transparent;
}

.contact-buttons-pair {
	display: flex;
	gap: 15px;
	margin: 0 auto;
}

.contact-btn-oval {
	flex: 1;
	display: flex;
	align-items: center;
	padding: 12px 15px;
	border-radius: 50px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.contact-btn-oval:hover {
	transform: translateY(-4px);
}

.contact-btn-oval:active {
	transform: translateY(-1px) scale(0.97);
	box-shadow:
		0 3px 10px rgba(255, 215, 0, 0.3),
		0 1px 2px rgba(0, 0, 0, 0.2),
		inset 0 1px 2px rgba(255, 255, 255, 0.3),
		inset 0 -1px 2px rgba(0, 0, 0, 0.3),
		inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.btn-tel {
	background: #FFD700;
	color: #000;
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
}

.service-btn-tel {
	background: #2137ff;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
}

.btn-line {
	background: #FFD700;
	color: #000;
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
}

.service-btn-line {
	background: #5dd05c;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
}
.service-btn-line .btn-icon svg {
	fill: white;
}

.service-btn-instagram {
	background: #bd2e87;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
}
.service-btn-instagram .btn-icon svg {
	fill: white;
}

/* ECサイトボタン（白っぽいグレー系） */
.service-btn-ec {
	background: #f8f9fa;
	color: #495057;
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
}

/* 地図ボタン（グレー系） */
.service-btn-map {
	background: #6c757d;
	color: #fff;
	border: 2px solid rgba(255, 255, 255, 0.4);
	backdrop-filter: blur(5px);
}
/* contact-buttons-section専用 */
.contact-buttons-section .btn-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-right: 15px;
	flex-shrink: 0;
}
.contact-buttons-section .btn-icon svg {
	fill: currentColor;
}
.contact-buttons-section .btn-line .btn-icon svg {
	fill: currentColor;
}

.contact-buttons-section .btn-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1px;
	justify-content: center;
}

.btn-line1, .btn-line2, .btn-line3 {
	line-height: 1.1;
	text-align: center;
	font-family: "Noto Sans JP", sans-serif;
	text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* 電話ボタンの文字サイズ */
.btn-tel .btn-line1 {
	font-size: 16px;
	font-weight: bold;
}

.btn-tel .btn-line2 {
	font-size: 11px;
	opacity: 0.8;
}

.btn-tel .btn-line3 {
	font-size: 16px;
	font-weight: bold;
}

/* LINEボタンの文字サイズ */
.btn-line .btn-line1 {
	font-size: 16px;
	font-weight: bold;
}

.btn-line .btn-line2 {
	font-size: 16px;
	font-weight: bold;
}

.btn-line .btn-line3 {
	font-size: 11px;
	opacity: 0.8;
}

.btn-arrow {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-left: 15px;
	flex-shrink: 0;
	font-weight: bold;
	transform: scaleY(2.5);
}
/* contact-buttons-section end */

/* philosophy-section */
#philosophy-section {
	padding: 60px 20px;
	background-image:
		linear-gradient(to right, rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)),
		url("../images/designers_lp/philosophy-section/philosophy-bg-1.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: center, bottom left;
	background-size: 100% 100%, 50%;
	text-align: center;
	position: relative;
}

#philosophy-section::before {
	content: "";
	position: absolute;
	top: 20px;
	right: 20px;
	width: 25%;
	aspect-ratio: 1;
	background-image: url("../images/designers_lp/philosophy-section/philosophy-bg-2.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.philosophy-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}
.philosophy-quote {
	font-size: clamp(10px, 2.9vw, 20px);
	font-weight: bold;
	color: #fff;
	margin-bottom: 1em;
	line-height: 1.4;
	font-family: "Noto Serif JP", serif;
}

.philosophy-description {
	margin-top: 40px;
}

.philosophy-description p {
	font-size: clamp(8px, 1.9vw, 14px);
	color: #fff;
	line-height: 1.8;
	font-family: "Noto Serif JP", serif;
	margin-bottom: 1em;
}

@media (max-width: 768px) {
	#philosophy-section {
		padding: 40px 15px;
	}
}
/* philosophy-section end */

/* buyer-expertise-section */
#buyer-expertise-section {
	padding: 60px 20px;
	background-color: #000;
	background-image:
		linear-gradient(to right, rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)),
		url("../images/designers_lp/buyer-expertise-section/buyer-expertise-bg-1.jpg"),
		url("../images/designers_lp/buyer-expertise-section/buyer-expertise-bg-2.jpg"),
		url("../images/designers_lp/buyer-expertise-section/buyer-expertise-bg-3.jpg");
	background-position: center, right 25%, center left, bottom right;
	background-size: 100% 100%, 45% auto, 45% auto, 50% auto;
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
	text-align: center;
	position: relative;
}

.buyer-content {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	z-index: 10;
}

#buyer-expertise-section h3 {
	font-size: clamp(10px, 3.7vw, 28px);
	font-weight: bold;
	color: #fff;
	margin-bottom: 1em;
	line-height: 1.4;
	font-family: "Noto Serif JP", serif;
}

.buyer-description {
	text-align: center;
}

.buyer-description p {
	font-size: clamp(8px, 1.9vw, 14px);
	color: #fff;
	line-height: 1.8;
	margin-bottom: 1em;
	font-family: "Noto Serif JP", serif;
}

.buyer-description strong {
	color: #fff;
	font-weight: bold;
}

@media (max-width: 768px) {
	#buyer-expertise-section {
		padding: 40px 15px;
	}
}
/* buyer-expertise-section end */

#style-heritage-section {
	padding-top: 0;
	padding-bottom: 0;
}

#style-heritage-section br.sp{
	display: none;
}

#style-heritage-section > div > div:nth-child(1){
	text-align: center;
	background-image: linear-gradient(to right, rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)), url("../images/designers_lp/style-heritage-section/heritage-showcase-1.jpg"), url("../images/designers_lp/style-heritage-section/heritage-showcase-2.jpg"), url("../images/designers_lp/style-heritage-section/heritage-showcase-3.jpg");
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
	background-position: center, top left, center, bottom right;
	background-size: 100% 100%, 100px , 300px, 100px;
	padding: 2em;
}

#style-heritage-section > div > div:nth-child(2){
	text-align: center;
	display: grid;
	grid-template-columns: 70% 30%;
	align-items: center;
}

#style-heritage-section > div > div:nth-child(2) > div:nth-child(1) p {
	background-image: linear-gradient(to right, rgba(0,0,0, 0.5), rgba(0,0,0, 0.5)), url("../images/designers_lp/style-heritage-section/heritage-showcase-4.jpg");
	background-repeat: no-repeat, no-repeat;
	background-position: center, center left -50px;
	background-size: 100% 100%, 300px;
	padding: clamp(8px, 2.5vw, 16px) 0;
}

#style-heritage-section p {
	font-size: clamp(8px, 1.9vw, 14px);
	margin-bottom: 1em;
}

#style-heritage-section h3 {
	font-size: clamp(10px, 3.7vw, 28px);
	margin-bottom: 1em;
}

#style-heritage-section strong{
	text-decoration: none;
}

#style-heritage-section .grid > div:nth-child(1){
	padding:20px 0;
}

#style-heritage-section h4{
	font-size: clamp(8px, 2.5vw, 16px);
	margin-bottom: 5px;
}

#style-heritage-section img{
	margin: 1em 0;
}

/* 4STEPセクション用CSS */
.steps-header {
	text-align: center;
	border: 2px solid #fff;
	padding: 15px;
	margin-bottom: 30px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
}

.steps-header::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 25px solid transparent;
	border-right: 25px solid transparent;
	border-top: 15px solid #fff;
}

.steps-header::before {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 22px solid transparent;
	border-right: 22px solid transparent;
	border-top: 12px solid #000;
	z-index: 999;
}

.steps-container {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
	margin-bottom: 50px;
}

.step-card {
	background: #ff8c00;
	border-radius: 15px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 4px 8px rgba(255, 140, 0, 0.3);
	color: #000;
	font-weight: bold;
	display: grid;
	grid-template-rows: auto 63px 130px 1fr;
}

.step-number {
	background: #333;
	color: #fff;
	border-radius: 20px;
	padding: 8px 15px;
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
}

.step-title {
	font-size: 18px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

.step-icon {
	width: 100%;
	aspect-ratio: 1 / 1;
	max-height: 150px;
	display: block;
	object-fit: contain;
	align-self: center;
}

.step-title.small-text {
	font-size: 14.4px; /* 18px の 80% */
}

.step-icon.small-height {
	max-height: 100px;
}

.step-description {
	font-size: 10px;
	line-height: 1.4;
	align-self: center;
}

/* POINTセクション */
.point-section {
	margin-bottom: 40px;
}

.point-title {
	font-size: clamp(1px, 3vw, 20px);
	font-weight: bold;
	margin-bottom: 20px;
	text-align: center;
}

/* POINT 1: ボタン群 */
.contact-buttons {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 20px;
	text-align: center;
}

/* service-process-section専用のcontact-buttons */
#service-process-section .contact-buttons .btn-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-size: 24px;
	margin-right: 15px;
	flex-shrink: 0;
}

#service-process-section .contact-buttons .btn-icon svg {
	fill: currentColor;
}

#service-process-section .contact-buttons .btn-content {
	width: 160px;
	display: flex;
	gap: 1px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
}

.contact-btn {
	padding: 15px 10px;
	border-radius: 25px;
	text-align: center;
	font-size: 12px;
	font-weight: bold;
	text-decoration: none;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.contact-btn svg {
	width: 40px;
	height: 40px;
	fill: currentColor;
}

.btn-phone { background: #69ad11; }
.btn-form { background: #d9740b; }
.btn-instagram { background: #bd2e87; }

.contact-note {
	text-align: center;
	font-size: 14px;
	margin-bottom: 20px;
	line-height: 1.5em;
}

/* POINT 2: 身分証明書 */
.id-verification {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-bottom: 20px;
}

.id-text {
	font-size: 14px;
	text-align: center;
	line-height: 1.5em;
}

.id-card {
	width: 150px;
	height: 100px;
}

.id-card img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* POINT 3: 梱包セット */
.packaging-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
	margin-bottom: 20px;
}

.packaging-text {
	font-size: 14px;
	text-align: center;
	line-height: 1.5em;
}

.packaging-image {
	width: 150px;
	height: 100px;
}

.packaging-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* POINT 4: ブランドロゴ */
.brand-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.brand-text {
	font-size: 14px;
	text-align: center;
	line-height: 1.5em;
}

.brand-logo {
	width: 150px;
	height: 80px;
}

.brand-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* POINT 5: 個別対応サポート */
.support-section {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

.support-text {
	font-size: 14px;
	text-align: center;
	line-height: 1.5em;
}

.support-logo {
	width: 150px;
	height: 80px;
}

.support-logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* 注意書きテキスト */
.disclaimer-text {
	font-size: 12px;
	line-height: 1.4;
	text-align: center;
	margin: 20px 0;
	color: #ccc;
}

/* レスポンシブ */
@media (max-width: 768px) {
	.steps-container {
		grid-template-columns: repeat(4, 1fr);
		gap: 8px;
	}

	.step-card {
		height: auto;
		min-height: 280px;
		padding: 15px 8px;
	}
	.step-description {
		font-size: 10px;
		line-height: 1.2;
	}

	.contact-buttons {
		grid-template-columns: 1fr;
		gap: 10px;
		max-width: 300px;
		margin: 0 auto 20px auto;
	}

	.contact-buttons-pair {
		flex-direction: column;
		gap: 10px;
		max-width: 400px;
		margin: 0 auto;
	}

	.id-verification,
	.packaging-section,
	.brand-section,
	.support-section {
		flex-direction: column;
		text-align: center;
	}

	.step-icon-container {
		gap: 5px;
	}
}

#style-heritage-section > div > div:nth-child(2) > div:nth-child(2){
	font-size: 10px;
}

#purchase-records-section .button,
input[type="submit"]{
	background-color: #ff7800;
	border-radius: 10px;;
	color:#111;
	font-size: 16px;
	font-weight: bold;
	padding:.8em .5em;
	margin:1em auto 0 auto;
	width: 300px;
	text-align: center;
	cursor: pointer;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
	overflow:hidden;
	border: 1px solid #000;
	display: block;
	text-decoration:none;
}

#purchase-records-section .button > span{
	display: flex;
	justify-content: center;
 	align-items: center;
}

#purchase-records-section .button > span::after {
	content: "";
	display: inline-block;
	background-image: url('../images/designers_lp/common-ui/ui-tap-gesture.png');
	width: 30px;
	height: 30px;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
	vertical-align:bottom;
}

div.tel{
	margin-top:2em;
}
div.tel a{
	color:#fff;
}

.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}

.mwform-radio-field-text{
	vertical-align: text-bottom;
}

@media screen and (max-width: 700px) {

	#instagram-section .parent,
	#online-store-section .parent
	{
		gap: 1rem 0;
	}
	#instagram-section .image,
	#online-store-section .image
	{
		display: none;
	}

	#point-system-section h3{
		text-decoration: none;
	}
	#point-system-section h3 .main{
		text-decoration: underline;
	}
	#point-system-section h3 .sub{
		font-size: 14px;
		display: block;
		line-height: 1;
		text-decoration: none;
	}
	#point-system-section .text{
		text-align:justify;
	}
	#purchase-records-section ul{
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: auto repeat(3, 1fr);
		gap: 2em 1em;
	}

	#purchase-records-section ul li:nth-child(1){
		grid-area: 1 / 1 / 2 / 4;
		height: auto;
	}

	#purchase-records-section ul li:nth-child(1) h3 {
		margin-bottom: 0;
	}

	#brand-list-section div.grid{
		grid-template-columns: 1fr;
	}
	#brand-list-section div.grid > div:nth-child(1) { grid-area:auto !important; }
	#brand-list-section div.grid > div:nth-child(2) { grid-area:auto !important; }
	#brand-list-section div.grid > div:nth-child(3) { grid-area:auto !important; }

	#instagram-section .grid,
	#online-store-section .grid{
		grid-template-columns: auto;
   			grid-template-rows: auto auto auto auto;
		gap: 1rem 0;
	}

	/* instagram-section: タイトル → 画像 → 説明 → ボタンの順序 */
	#instagram-section .grid > div:nth-child(1) { grid-area: auto; order: 1; align-self: auto; } /* タイトル */
	#instagram-section .grid > div:nth-child(4) { grid-area: auto; order: 2; } /* 画像 */
	#instagram-section .grid > div:nth-child(2) { grid-area: auto; order: 3; } /* 説明 */
	#instagram-section .grid > div:nth-child(3) { grid-area: auto; order: 4; align-self: auto; } /* ボタン */

	/* online-store-section: タイトル → 画像 → 説明 → ボタンの順序 */
	#online-store-section .grid > div:nth-child(1) { grid-area: auto; order: 1; align-self: auto; } /* タイトル */
	#online-store-section .grid > div:nth-child(4) { grid-area: auto; order: 2; } /* 画像 */
	#online-store-section .grid > div:nth-child(2) { grid-area: auto; order: 3; } /* 説明 */
	#online-store-section .grid > div:nth-child(3) { grid-area: auto; order: 4; align-self: auto; } /* ボタン */
	#style-heritage-section .pc{
		display: none;
	}
	#style-heritage-section br.sp{
		display: inline;
	}

}

#map-section {
	text-align: center;
	padding: 2rem 0;
}

iframe.googleMap{
	width: 100%;
	padding: 0;
}

#map-section .contact-btn-oval {
	margin: 1rem auto;
	display: inline-flex;
	max-width: 350px;
}

/* フッタースタイル */
footer {
	color: rgb(167 141 0);
	text-align: center;
	padding: 0.7rem 0;
	margin-top: 0.7rem;
}

.footer-content p {
	margin: 0;
	font-size: 11px;
	font-family: "Noto Serif JP", serif;
	line-height: 1.6;
}

