@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/*----------------------------------------------------*/
body {
	width: 100%;
	min-width: 320px;
	color: #333;
	font-family: "urw-din", 'Noto Sans JP', SourceHanSans-Regular, SourceHanSansJP-Regular, '源ノ角ゴシック Regular', '源ノ角ゴシック', NotoSansJP-Regular, 'Noto Sans Japanese Regular', 'YuGothic', 'Yu Gothic', '游ゴシック', '游ゴシック体', 'メイリオ', sans-serif;
	font-feature-settings: "palt";
	background-color: #fff;
	margin: 0;
}

a {
	color: #FF3700;
	text-decoration: none;
	transition: all .2s ease;
	word-break: break-all;
}

a:hover {
	color: #fc43c9;
}

a img {
	transition: all .2s ease;
}

a:hover img {
	filter: drop-shadow(0px 2px 6px #D8EAFA);
}

.material-symbols-outlined {
	font-variation-settings:
		'FILL' 1,
		'wght' 400,
		'GRAD' 0,
		'opsz' 24
}

p.note {
	font-size: .8em !important;
}

/* アイコンのサイズを変更するためのClass */
.material-symbols-outlined.md-18 {
	font-size: 18px;
}

.material-symbols-outlined.md-24 {
	font-size: 24px;
}

.material-symbols-outlined.md-36 {
	font-size: 36px;
}

.material-symbols-outlined.md-48 {
	font-size: 48px;
}

.btn {
	color: #fff;
	font-size: clamp(0.75rem, 0.7rem + 0.25vw, 0.9rem);
	font-weight: 600;
	line-height: 1em;
	text-align: center;
	display: block;
	width: max-content;
	padding: .3em .8em .3em 2.2em;
	margin: .5em 0 .5em -.2em;
	border-radius: 1em;
	border: 1px solid #007FFF;
	background-color: #007FFF;
	position: relative;
	transition: all .2s ease-in-out;
}

.btn:hover {
	color: #007FFF;
	border: 1px solid #007FFF;
	background-color: #fff;
}

.btn::before {
	font-family: "Material Symbols Outlined";
	font-size: 1.5em;
	font-weight: 600;
	position: absolute;
	top: 50%;
	left: .3em;
	transform: translatey(-50%);
}

.detailOpen {
	color: #007FFF;
	display: block;
	padding: .1em .8em .1em 2.2em;
	background-color: transparent;
	border: none;
}

.btn.detailOpen:hover {
	color: #007FFF;
	background-color: transparent;
	border: none;
	opacity: .8;
}

.detailOpen::before {
	content: "\e5c8";
}

.buy {
	content: "\e8cc";
}

.buy::before {
	content: "\e8cc";
}


ul {
	list-style: none;
}

ol.circleNum {
	counter-reset: counter1;
	list-style: none;
	padding: 0;
	display: grid;
	width: fit-content;
	column-gap: 2em;
	grid-auto-flow: column;
	grid-template-rows: repeat(4, auto);
}

ol.circleNum li {
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
}

ol.circleNum li:before {
	content: counter(counter1);
	counter-increment: counter1;
	background-color: #007FFF;
	color: #FFF;
	font-weight: 600;
	display: block;
	float: left;
	line-height: 22px;
	margin-left: -30px;
	text-align: center;
	height: 22px;
	width: 22px;
	border-radius: 50%;
}

ol.ast {
	counter-reset: counter2;
	list-style: none;
	padding: 0;
}

ol.ast li {
	font-size: clamp(0.625rem, 0.458rem + 0.56vw, 0.875rem);
	line-height: 1.2;
	padding-left: 2em;
	margin-bottom: .2em;
	position: relative;
}

ol.ast li:before {
	content: "※" counter(counter2)":";
	counter-increment: counter2;
	width: 3em;
	margin-left: -2em;
}

sup {
	vertical-align: baseline;
	font-size: smaller;
}

main>article {
	margin: 0 0 10vh;
}

.detail-page-body main>article {
	margin: 0 0 0vh;
}

.in-modal main>article {
	margin: 0;
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.flex div {
	text-align: center;
	margin-bottom: 40px;
}

.flex .flex1 {
	width: 100%;
}

.flex .flex2 {
	width: 50%;
}

.flex .flex3 {
	width: 33.3%;
}

.flex .flex4 {
	width: 25%;
}

.flex .flex5 {
	width: 20%;
}

.flex .flex6 {
	width: 16.6%;
}

/*
Page Loader
*/
#loader_base {
	width: 100vw;
	height: 100vh;
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 10000;
}

#loader p {
	color: #007FFF;
	font-size: 12px;
	text-align: center;
	margin-top: 20px;
}

/* HTML: <div class="loader"></div> */
.loader {
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 2px solid;
	border-color: #007FFF #0000;
	animation: l1 1s infinite;
}

@keyframes l1 {
	to {
		transform: rotate(.5turn)
	}
}

.image-switcher {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	/* アニメーションで画像がはみ出すのを防ぐ */
}

.image-switcher img {
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transform: scale(1);
	/* 初期サイズ */
	transition: opacity 1s ease-in-out, transform 4s ease-in-out;
	/* opacityとtransformの変化を滑らかに */
}

.image-switcher img.active {
	opacity: 1;
	transform: scale(1.05);
	/* 拡大後のサイズ */
}

#titleArea {
	padding: 5vw;
	position: fixed;
	top: 0;
	left: 0;
	width: 30vw;
	height: 100%;
}

#titleArea h1 {
	font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
	font-weight: 700;
	margin: 1vh 0 5vh 0;
}

#titleArea p {
	line-height: 1.2;
}

#titleArea p.catch {
	font-size: clamp(2rem, -0.625rem + 5.47vw, 3.75rem);
	line-height: 1.5em;
	font-weight: 400;
	margin: 5vh 0 5vh -.0em;
}

#titleArea p.en {
	font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
	font-weight: 600;
}

#titleArea p.sub {
	font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
	font-size: 14px;
	font-weight: 600;
}

#titleArea h1 span,
#titleArea p span {
	padding: .0em .2em;
	background: #fff;
}

#titleArea nav {
	display: none;
}

#contentsArea {
	float: right;
	width: 70vw;
}

#contentsArea main {
	margin: 50vh 2vw 0vw 0;
	padding: 5vw;
	background: rgba(255, 255, 255, .9);
}

.in-modal #contentsArea main {
	margin: 0;
}

#contentsArea h2 {
	color: #007FFF;
	font-size: clamp(1.5rem, -0.188rem + 3.52vw, 2.625rem);
	font-weight: 200;
	margin-bottom: 4vw;
}

#contentsArea h2.jp {
	font-size: clamp(1.5rem, 0.938rem + 1.17vw, 1.875rem);
	font-weight: 300;
}


#aboutArea p {
	font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
	font-weight: 400;
	margin-bottom: 1em;
}

#galleryArea .flex {
	justify-content: space-between;
}

#galleryArea .flex .flex3 {
	width: 33.33%;
	margin-bottom: 0;
}

#galleryArea figure {
	margin: 0;
}

#galleryArea figure img {
	width: 100%;
	height: auto;
	display: block;
}

#designArea h3 {
	color: #007FFF;
	font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
	font-weight: 600;
}

#designArea p {
	font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
	font-weight: 400;
	margin-bottom: 1em;
}

#designArea .flex2 {
	margin: 3em 0;
}

#designArea figcaption {
	color: #333;
	font-size: 13px;
	font-weight: 400;
}

#designArea .circleNum {
	font-weight: 600;
	margin: 2em;
}

#summitedArea h2 span {
	font-size: 60%;
	font-weight: 300;
	margin-left: 0.5em;
}

#summitedArea p {
	font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
	font-weight: 400;
	margin-bottom: 1em;
}

.summited-options {
	display: flex;
	gap: 4vw;
	margin-top: 2em;
}

.summited-option {
	flex: 1;
	padding: 2em 0em;
}

.summited-option h3 {
	font-size: clamp(0.75rem, 0.583rem + 0.56vw, 1rem);
	font-weight: 600;
	margin-bottom: 2em;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.summited-option h3 img {
	margin-right: 1em;
}

.summited-option p {
	font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1rem) !important;
	margin-bottom: 1em !important;
}

#lineupArea p {
	font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
	font-weight: 400;
}

#lineupArea p.lead {
	margin-bottom: .5em;
}

#lineupArea p span {
	font-size: 80%;
}

#lineupArea .flex {
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 40px;
	gap: 1%;
}

.item {
	width: 24%;
	margin-bottom: 40px;
}

.item p.num {
	color: #999;
	font-size: clamp(1.125rem, 0.375rem + 1.56vw, 1.625rem) !important;
}


.item h3 {
	font-size: clamp(1.125rem, 0.375rem + 1.56vw, 1.625rem) !important;
	line-height: 1.2;
	letter-spacing: .1em;
	font-weight: 400;
	padding-left: -.2em;
	margin: .5em 0;
}

.item h3 span {
	color: #999;
	font-size: 50%;
	letter-spacing: 0em;
	font-weight: 600;
	padding-left: .1em;
	display: block;
}

.item .detail {
	display: none;
}

.detail {
	padding: 1.5vw 2vw 2vw 2vw;
}

.detailTitle {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1vw 0;
}

.detailTitle h2 {
	color: #333 !important;
	font-size: 1.5rem !important;
	line-height: 1.2;
	font-weight: 400 !important;
	margin-bottom: 0em !important;
}

.detailTitle h2 span {
	font-size: 60% !important;
	font-weight: 600;
	padding-left: 1em;
}

.detail p {
	font-size: .9em;
	line-height: 1.5;
	font-weight: 400;
	margin: .5em .2em 0;
}

#cboxCurrent {
	display: none !important;
}

footer {
	font-size: 12px;
	color: #666;
	padding: 2em 1em;
	background: #fff;
}

@media screen and (max-width: 1024px) {
	#contentsArea main {
		margin: 30vh 2vw 0vw 0;
		padding: 5vw;
		background: rgba(255, 255, 255, .9);
	}

	.item {
		width: 32%;
	}
}

@media screen and (max-width: 768px) {
	#titleArea {
		padding: 5vw;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: auto;
	}

	#contentsArea {
		float: none;
		width: 100%;
		margin: auto;
	}

	#contentsArea main {
		margin: 50vh 0vw 0vw 0;
	}

	.item {
		width: 48%;
	}
}

@media screen and (max-width: 480px) {
	ol.circleNum {
		padding: 4vw;
		display: block;
	}

	ol.circleNum li {
		margin-bottom: 10px;
		padding-left: 30px;
		position: relative;
	}

	ol.circleNum li:before {
		line-height: 1.5em;
		margin-left: -30px;
		height: 1.5em;
		width: 1.5em;
	}

	main>article {
		margin: 0 0 5vh;
	}

	.flex {
		display: flex;
		justify-content: space-around;
		align-items: flex-start;
	}

	.flex .flex1 {
		width: 100%;
	}

	.flex .flex2 {
		width: 100%;
	}

	.flex .flex3 {
		width: 48%;
	}

	.flex .flex4 {
		width: 48%;
	}

	.flex .flex5 {
		width: 32%;
	}

	.flex .flex6 {
		width: 32%;
	}

	.image-switcher {
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: 100vw;
		overflow: hidden;
	}

	.image-switcher img {
		width: 100%;
		height: 100vw;
		object-fit: cover;
	}

	#titleArea {
		padding: 3vw;
		position: fixed;
		top: 0;
		left: 0;
		width: 100vw;
		height: auto;
	}

	#contentsArea {
		float: none;
		width: 100%;
		margin: auto;
	}

	#contentsArea main {
		margin: 50vh 0vw 0vw 0;
	}

	#designArea .flex2 {
		margin: 1em 0;
	}

	#designArea .flex5 {
		margin: 1em 0;
	}

	#designArea .flex .color {
		display: none;
	}

	#designArea .circleNum {
		font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
		font-weight: 600;
		margin: 0em;
	}

	.summited-options {
		flex-direction: column;
		gap: 1.5em;
	}

	.summited-option {
		padding: 1.5em;
	}

	.item {
		width: 48%;
		margin-bottom: 20px;
	}

	#lineupArea .flex {
		justify-content: center;
		align-items: center;
		margin-top: 40px;
		gap: 1%;
	}
}

/* Sort & Filter Controls */
.sort-controls {
	margin: 4em 0 2em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #eee;
	padding-bottom: 0;
}

.sort-buttons {
	display: flex;
	gap: 0;
}

.sort-buttons button {
	padding: 10px 20px;
	margin-right: 0;
	cursor: pointer;
	border: none;
	border-bottom: 2px solid transparent;
	background: none;
	color: #666;
	font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
	transition: all 0.3s ease;
}

.sort-buttons button:hover {
	color: #007FFF;
	background-color: #f9f9f9;
}

.sort-buttons button.active {
	font-weight: 600;
	color: #007FFF;
	border-bottom: 2px solid #007FFF;
	text-decoration: none;
}

.filter-select {
	margin-bottom: 5px;
}

.filter-select select {
	padding: 5px 10px;
	font-size: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
	border: 1px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
	cursor: pointer;
}

/* Modal Gallery */
.modal-gallery {
	width: 100%;
	margin-bottom: 20px;
}

.modal-gallery-main {
	margin-bottom: 5px;
}

.modal-gallery-main img {
	width: 100%;
	height: auto;
}

.modal-gallery-thumb {
	display: flex;
	gap: 5px;
	padding: 0;
	margin: 0;
}

.modal-gallery-thumb li {
	flex: 1;
	cursor: pointer;
}

.modal-gallery-thumb img {
	width: 100%;
	height: auto;
	opacity: 0.5;
	transition: opacity 0.2s ease;
}

.modal-gallery-thumb img.active,
.modal-gallery-thumb img:hover {
	opacity: 1;
}

.detailFooter {
	margin-top: 1em;
	display: flex;
	justify-content: center;
}


/* Price texts */
.price-desc {
	margin: 1.5em 0;
	font-size: clamp(0.875rem, 0.625rem + 1vw, 1.125rem);
	color: #333;
}

.price-desc span {
	color: #ccc;
	margin: 0 0.5em;
}

.price-desc .tax-note {
	font-size: 0.85em;
	color: #666;
	margin-left: 0.5em;
}

.price-lead {
	margin: 0 0 .5em;
	font-size: clamp(0.95rem, 0.8rem + 1vw, 1.25rem);
	color: #333;
	letter-spacing: 0.05em;
}

.price-lead span {
	color: #ccc;
	margin: 0 0.5em;
}

.price-lead .tax-note {
	display: inline-block;
	font-size: 0.8em;
	color: #666;
	margin-left: 0.5em;
}

/* ===== 独立表示の詳細ページ用 ===== */

/* PCやタブレット(768px以上) : 左にヘッダー、右に詳細とフッター */
@media screen and (min-width: 769px) {
	body.is-standalone.detail-page-body {
		display: flex;
		align-items: flex-start;
	}

	body.is-standalone.detail-page-body #titleArea {
		width: 320px;
		flex-shrink: 0;
		position: sticky;
		top: 0;
		height: 100vh;
		overflow-y: auto;
		padding: 4vw;
	}

	body.is-standalone.detail-page-body #contentsArea {
		flex: 1;
		float: none;
		width: auto;
		min-height: 100vh;
		display: flex;
		flex-direction: column;
	}

	body.is-standalone.detail-page-body #contentsArea main {
		margin: 0px 0 0 0;
		padding: 5vw;
		flex-grow: 1;
	}

	body.is-standalone.detail-page-body footer {
		margin-top: auto;
	}
}

/* スマホ(768px以下) : 縦並び、かつヘッダー高さを最小限に抑制 */
@media screen and (max-width: 768px) {
	body.is-standalone.detail-page-body #titleArea {
		position: relative;
		height: auto;
		padding: 5vw 5vw 0vw;
	}

	body.is-standalone.detail-page-body #titleArea h1 {
		margin-bottom: 0;
		font-size: 1.2rem;
	}

	/* 高さを抑えるために余分なキャッチコピーなどを非表示 */
	body.is-standalone.detail-page-body #titleArea p.catch,
	body.is-standalone.detail-page-body #titleArea p.en,
	body.is-standalone.detail-page-body #titleArea p.sub {
		display: none;
	}

	body.is-standalone.detail-page-body #contentsArea {
		float: none;
		width: 100%;
		margin: 0;
	}

	body.is-standalone.detail-page-body #contentsArea main {
		margin: 0;
		padding: 5vw;
		background: transparent;
	}
}

/* Detail Page Back Button */
.detail-back-container {
	text-align: center;
	padding: 40px 0;
}

.btn-back {
	display: inline-block;
	padding: 15px 40px;
	background: #111;
	color: #fff;
	text-decoration: none;
	border-radius: 4px;
	font-weight: bold;
	letter-spacing: 1px;
	transition: all 0.2s ease;
}

.btn-back:hover {
	background: #333;
	color: #fff;
	opacity: 0.8;
}