:root {
--bg: #0b0c0e;
--surface: #15171b;
--surface-2: #1d2025;
--text: #f4f4f2;
--muted: #b7bac0;
--line: #30343a;
--accent: #e7c46a;
--accent-dark: #9b7531;
--white: #fff;
--max: 1120px;
--radius: 18px;
--shadow: 0 18px 50px rgba(0, 0, 0, .28);
}
* {
	box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
}
body {
	margin: 0;
	color: var(--text);
	background: radial-gradient(circle at 85% 5%, rgba(215,180,106,.12), transparent 28rem), var(--bg);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	line-height: 1.75;
	letter-spacing: .02em;
}
img {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
}
.container {
	width: min(calc(100% - 40px), var(--max));
	margin-inline: auto;
}
.skip-link {
	position: fixed;
	left: 12px;
	top: -80px;
	z-index: 100;
	padding: 10px 14px;
	background: var(--white);
	color: #111;
}
.skip-link:focus {
	top: 12px;
}
.site-header {
	position: sticky;
	top: 0;
	z-index: 20;
	border-bottom: 1px solid rgba(255,255,255,.08);
	background: rgba(11,12,14,.88);
	backdrop-filter: blur(14px);
}
.header-inner {
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 22px;
}
.heading-nowrap {
	display: inline-block;
	white-space: nowrap;
}
.brand {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	background: #000;
	border-radius: 0px;
	padding: 2px 12px;
}
.brand img {
	width: 372px;
	height: auto;
}
.nav {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 6px;
}
.nav a {
	text-decoration: none;
	color: var(--muted);
	font-size: .9rem;
	font-weight: 700;
	padding: 9px 12px;
	border-radius: 999px;
}
.nav a:hover, .nav a:focus-visible {
color: var(--white);
background: var(--surface-2);
}
.nav .nav-cta {
	color: #15100a;
	background: var(--accent);
}
.nav .nav-cta:hover, .nav .nav-cta:focus-visible {
color: #15100a;
background: #eccd89;
}
.hero {
	padding: 72px 0 56px;
	overflow: hidden;
}
.hero-grid {
	display: grid;
grid-template-columns: 1.02fr .98fr;
	align-items: center;
	gap: 56px;
}
.eyebrow {
	margin: 0 0 14px;
	color: var(--accent);
	font-size: .82rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .16em;
}
h1 {
	margin: 0;
	font-size: clamp(2.2rem, 6vw, 3.0rem);
	line-height: 1.05;
	letter-spacing: -.05em;
}
.model-name {
	display: block;
	margin-top: 14px;
	color: var(--muted);
	font-size: clamp(1rem, 2vw, 1.3rem);
	letter-spacing: .08em;
}
.hero-lead {
	margin: 28px 0 0;
	max-width: 42rem;
	font-size: clamp(1.05rem, 2vw, 1.3rem);
	color: #dedfdf;
}
.hero-lead strong {
	color: var(--white);
}
.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 32px;
}
.button {
	display: inline-flex;
	min-height: 52px;
	align-items: center;
	justify-content: center;
	padding: 12px 22px;
	border-radius: 999px;
	text-decoration: none;
	font-weight: 800;
	border: 1px solid var(--line);
}
.button-primary {
	color: #171109;
	background: var(--accent);
	border-color: var(--accent);
}

.button-secondary {
	color: var(--white);
	background: rgba(255,255,255,.03);
}
.button-secondary_buy {
	color: var(--white);
	background: rgba(200,200,255,.1);
}
.button:hover {
	transform: translateY(-1px);
}
.hero-visual {
	position: relative;
}
.hero-visual::before {
	content: "";
	position: absolute;
	inset: 8% -8% -10% 12%;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(215,180,106,.24), transparent 65%);
	filter: blur(18px);
}
.hero-card {
	position: relative;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 28px;
	background: var(--surface);
	box-shadow: var(--shadow);
}
.hero-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}
.hero-badge {
	position: absolute;
	left: 18px;
	bottom: 18px;
	display: flex;
	align-items: baseline;
	gap: 8px;
	padding: 12px 16px;
	border: 1px solid rgba(255,255,255,.18);
	border-radius: 14px;
	background: rgba(10,10,10,.76);
	backdrop-filter: blur(8px);
}
.hero-badge strong {
	color: var(--accent);
	font-size: 2rem;
	line-height: 1;
}
.hero-badge span {
	color: #ddd;
	font-size: .86rem;
}
section {
	padding: 56px 0;
}
.section-head {
	display: grid;
grid-template-columns: .72fr 1.28fr;
	gap: 40px;
	margin-bottom: 34px;
	align-items: end;
}
.section-label {
	margin: 0 0 8px;
	color: var(--accent);
	font-weight: 800;
	font-size: .8rem;
	letter-spacing: .13em;
}
h2 {
	margin: 0;
	font-size: clamp(1.9rem, 4vw, 3.2rem);
	line-height: 1.25;
	letter-spacing: -.025em;
}
.section-intro {
	margin: 0;
	color: var(--muted);
	font-size: 1.02rem;
}
.feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
.feature-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.012));
	transition: transform .2s ease, border-color .2s ease;
}
.feature-card:hover {
	transform: translateY(-3px);
	border-color: rgba(215,180,106,.52);
}
.feature-image {
	position: relative;
	display: grid;
	place-items: center;
	width: min(200px, calc(100% - 36px));
	aspect-ratio: 1 / 1;
	margin: 22px auto 0;
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: linear-gradient(135deg, rgba(215,180,106,.09), rgba(255,255,255,.025)), var(--surface-2);
}
.feature-image img {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.feature-image-placeholder {
	color: #858a91;
	font-size: .82rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-align: center;
}
.feature-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 20px 22px 24px;
}
.feature-no {
	color: var(--accent);
	font-weight: 900;
	font-size: .78rem;
	letter-spacing: .12em;
}
.feature-card h3 {
	margin: 8px 0 9px;
	font-size: 1.25rem;
	line-height: 1.4;
}
.feature-card p {
	margin: 0;
	color: var(--muted);
	font-size: .94rem;
}
.comparison {
	border-block: 1px solid var(--line);
	background: #101216;
}
.compare-list {
	display: grid;
	gap: 14px;
}
.compare-row {
	display: grid;
	grid-template-columns: minmax(150px, 230px) 1fr 76px;
	gap: 18px;
	align-items: center;
	padding: 16px 18px;
	border: 1px solid var(--line);
	border-radius: 14px;
	background: var(--surface);
}
.compare-name {
	font-weight: 700;
}
.compare-track {
	height: 11px;
	overflow: hidden;
	border-radius: 999px;
	background: #2a2d32;
}
.compare-bar {
	height: 100%;
	min-width: 8px;
	border-radius: inherit;
	background: linear-gradient(90deg, var(--accent-dark), var(--accent));
}
.compare-row.is-product {
	border-color: rgba(215,180,106,.62);
	background: rgba(215,180,106,.07);
}
.compare-value {
	text-align: right;
	color: var(--muted);
	font-variant-numeric: tabular-nums;
}
.compare-row.is-product .compare-value {
	color: var(--accent);
	font-weight: 900;
}
.media-grid {
	display: grid;
grid-template-columns: 1.1fr .9fr;
	gap: 24px;
	align-items: stretch;
}
.gallery-card, .spec-card {
	overflow: hidden;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	background: var(--surface);
}
.gallery-card {
	position: relative;
	min-width: 0;
	display: flex;
	flex-direction: column;
}
.gallery-viewport {
	position: relative;
	flex: 1;
	min-height: 520px;
	overflow: hidden;
	background: #0d0f12;
}
.gallery-track {
	display: flex;
	height: 100%;
	transition: transform .45s ease;
	will-change: transform;
}
.gallery-slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
	min-height: 520px;
	margin: 0;
	display: grid;
	place-items: center;
	overflow: hidden;
	background: radial-gradient(circle at center, rgba(215,180,106,.12), transparent 62%), #111318;
}
.gallery-slide img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.gallery-placeholder {
	color: #858a91;
	font-size: .9rem;
	font-weight: 700;
	letter-spacing: .08em;
	text-align: center;
}
.gallery-caption {
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: 16px;
	z-index: 2;
	margin: 0;
	padding: 11px 14px;
	color: #fff;
	font-size: .9rem;
	font-weight: 700;
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 12px;
	background: rgba(0,0,0,.64);
	backdrop-filter: blur(8px);
}
.gallery-button {
	position: absolute;
	top: 50%;
	z-index: 3;
	width: 46px;
	height: 46px;
	padding: 0;
	display: grid;
	place-items: center;
	border: 1px solid rgba(255,255,255,.2);
	border-radius: 50%;
	color: #fff;
	background: rgba(0,0,0,.62);
	cursor: pointer;
	transform: translateY(-50%);
	backdrop-filter: blur(7px);
}
.gallery-button:hover {
	background: rgba(0,0,0,.82);
}
.gallery-button-prev {
	left: 14px;
}
.gallery-button-next {
	right: 14px;
}
.gallery-button span {
	font-size: 1.7rem;
	line-height: 1;
}
.gallery-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 9px;
	min-height: 52px;
	padding: 12px 16px;
	border-top: 1px solid var(--line);
	background: var(--surface);
}
.gallery-dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #555a62;
	cursor: pointer;
}
.gallery-dot[aria-current="true"] {
	width: 26px;
	border-radius: 999px;
	background: var(--accent);
}
.gallery-counter {
	position: absolute;
	top: 15px;
	right: 15px;
	z-index: 3;
	padding: 7px 11px;
	border-radius: 999px;
	color: #fff;
	background: rgba(0,0,0,.62);
	font-size: .8rem;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
}
.spec-card {
	padding: 28px;
}
.spec-card h3 {
	margin: 0 0 18px;
	font-size: 1.45rem;
}
.spec-table {
	width: 100%;
	border-collapse: collapse;
}
.spec-table th, .spec-table td {
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	text-align: left;
	vertical-align: top;
}
.spec-table th {
	width: 38%;
	color: var(--muted);
	font-size: .9rem;
	font-weight: 600;
}
.spec-table td {
	font-weight: 700;
}
.package {
	margin-top: 24px;
	padding-top: 24px;
	border-top: 1px solid var(--line);
	
}
.package img {
	width: 100%;
	max-height: 300px;
	object-fit: contain;
	border-radius: 12px;
	background: #222;
}
.purchase-panel {
	display: grid;
grid-template-columns: 1.05fr .95fr;
	gap: 30px;
	padding: 34px;
	border: 1px solid rgba(215,180,106,.42);
	border-radius: 24px;
	background: linear-gradient(135deg, rgba(215,180,106,.12), rgba(255,255,255,.025));
}
.purchase-panel h2 {
	font-size: clamp(1.7rem, 4vw, 2.7rem);
}
.purchase-panel p {
	color: var(--muted);
}
.store-box {
	padding: 24px;
	border-radius: 18px;
	background: rgba(0,0,0,.25);
}
.store-box h3 {
	margin: 0 0 14px;
}
.store-list {
	margin: 0;
	padding: 0;
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.store-list li {
	padding: 9px 12px;
	border-radius: 9px;
	background: rgba(255,255,255,.055);
	font-size: .92rem;
}
.owners {
	padding-top: 0;
}
.owners-card {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 28px;
	align-items: center;
	padding: 34px;
	border-radius: 22px;
	color: #171109;
	background: var(--accent);
}
.owners-card h2 {
	font-size: clamp(1.6rem, 4vw, 2.5rem);
}
.owners-card p {
	margin: 10px 0 0;
	color: #4f3b18;
}
.owners-card .button {
	background: #16130f;
	color: #fff;
	border-color: #16130f;
	white-space: nowrap;
}
footer {
	padding: 42px 0;
	border-top: 1px solid var(--line);
	color: var(--muted);
}
.footer-grid {
	display: flex;
	justify-content: space-between;
	gap: 28px;
	flex-wrap: wrap;
}
.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 20px;
}
.footer-links a {
	text-decoration: none;
}
.footer-links a:hover {
	color: var(--white);
}
.copyright {
	margin: 18px 0 0;
	font-size: .78rem;
}
a:focus-visible, button:focus-visible {
outline: 3px solid #fff;

outline-offset: 3px;
}

@media (max-width: 900px) {
.header-inner {
	min-height: 64px;
}
.nav a:not(.nav-cta) {
	display: none;
}
.hero {
	padding-top: 48px;
}
.hero-grid, .media-grid, .purchase-panel, .section-head {
	grid-template-columns: 1fr;
}
.hero-grid {
	gap: 32px;
}
.section-head {
	gap: 16px;
}
.feature-grid {
	grid-template-columns: 1fr 1fr;
}
.gallery-viewport, .gallery-slide {
	min-height: 360px;
}
}

@media (max-width: 600px) {
.container {
	width: min(calc(100% - 28px), var(--max));
}
.brand img {
	width: 136px;
}
section {
	padding: 28px 0;
}
.hero {
	padding: 34px 0 46px;
}
h1 {
	font-size: clamp(2.25rem, 14vw, 3rem);
}
.hero-actions .button {
	width: 100%;
}
.feature-grid {
	grid-template-columns: 1fr;
}
.feature-card {
	min-height: auto;
}
.compare-row {
	grid-template-columns: 1fr 60px;
	gap: 8px 12px;
}
.compare-track {
	grid-column: 1 / -1;
	grid-row: 2;
}
.compare-value {
	grid-column: 2;
	grid-row: 1;
}
.spec-card, .purchase-panel, .owners-card {
	padding: 22px;
}
.gallery-viewport, .gallery-slide {
	min-height: 300px;
}
.gallery-button {
	width: 40px;
	height: 40px;
}
.gallery-button-prev {
	left: 9px;
}
.gallery-button-next {
	right: 9px;
}
.gallery-caption {
	left: 10px;
	right: 10px;
	bottom: 10px;
	font-size: .82rem;
}
.store-list {
	grid-template-columns: 1fr;
}
.owners-card {
	grid-template-columns: 1fr;
}
.owners-card .button {
	width: 100%;
}
}

@media (prefers-reduced-motion: reduce) {
html {
	scroll-behavior: auto;
}
*, *::before, *::after {
	transition: none !important;
	animation: none !important;
}
}
/* ============================================================
   カートページ
============================================================ */
/* ============================================================
   基本
============================================================ */



html {
    scroll-behavior: smooth;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {

    background:
        linear-gradient(
            180deg,
            #050505 0%,
            #0a0a0a 100%
        );

    color: #eeeeee;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        "Yu Gothic",
        "Hiragino Kaku Gothic ProN",
        Meiryo,
        sans-serif;

    line-height: 1.6;

}

button,
input {
    font: inherit;
}

button {
    touch-action: manipulation;
}


/* ============================================================
   メイン
============================================================ */

.shop-container {

    width: min(1120px, 100%);

    margin: 0 auto;

    padding:
        20px
        18px
        140px;

}


/* ============================================================
   HEADER
============================================================ */

.shop-header {

    text-align: center;

    padding:
        35px
        10px
        38px;

    margin-bottom: 40px;

    border-bottom:
        1px solid #303030;

}

.shop-header-sub {

    color: #8a8a8a;

    font-size: 12px;

    letter-spacing: 4px;

}

.shop-header h1 {

    margin:
        6px
        0
        3px;

    font-size:
        clamp(
            30px,
            7vw,
            48px
        );

    letter-spacing: 5px;

    line-height: 1.2;

}

.shop-header p {

    color: #aaa;

    font-size: 14px;

    margin: 8px 0 0;

}


/* ============================================================
   SECTION TITLE
============================================================ */

.section-title {

    margin-bottom: 20px;

}

.section-title small {

    display: block;

    color: #666;

    font-size: 11px;

    letter-spacing: 3px;

}

.section-title h2 {

    margin: 2px 0 0;

    font-size: 24px;

}


/* ============================================================
   PRODUCTS
============================================================ */

.products {

    display: grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(280px, 1fr)
        );

    gap: 20px;

}

.product {

    background: #101010;

    border:
        1px solid #2d2d2d;

    border-radius: 12px;

    overflow: hidden;

    transition:
        border-color .2s,
        transform .2s;

}

.product:hover {

    border-color: #555;

    transform:
        translateY(-2px);

}

.product-image {

    display: flex;

    align-items: center;

    justify-content: center;

    background: #181818;

    aspect-ratio: 1 / 1;

}

.product-image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: contain;

}

.product-body {

    padding: 20px;

}

.product-code {

    color: #777;

    font-size: 11px;

    letter-spacing: 1px;

}

.product-name {

    margin-top: 4px;

    font-weight: 700;

    font-size: 18px;

}

.product-desc {

    color: #a0a0a0;

    font-size: 13px;

    margin-top: 8px;

    min-height: 44px;

}

.product-price {

    margin-top: 16px;

    font-size: 24px;

    font-weight: bold;

}

.product-price small {

    color: #999;

    font-size: 11px;

    font-weight: normal;

}


/* ============================================================
   数量・カートボタン
============================================================ */

.buy-area {

    display: flex;

    gap: 10px;

    margin-top: 17px;

}

.qty-control {

    display: flex;

    height: 48px;

    flex-shrink: 0;

    overflow: hidden;

    border:
        1px solid #444;

    border-radius: 7px;

}

.qty-control button {

    width: 40px;

    border: 0;

    background: #1b1b1b;

    color: #fff;

    font-size: 21px;

    cursor: pointer;

}

.qty-control button:hover {

    background: #292929;

}

.qty-control input {

    width: 48px;

    border: 0;

    border-left:
        1px solid #333;

    border-right:
        1px solid #333;

    background: #080808;

    color: white;

    text-align: center;

    font-size: 16px;

    outline: none;

}

.qty-control input::-webkit-inner-spin-button,
.qty-control input::-webkit-outer-spin-button {

    -webkit-appearance: none;

    margin: 0;

}

.add-cart {

    flex: 1;

    min-height: 48px;

    border: none;

    border-radius: 7px;

    background: #efefef;

    color: #050505;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;

}

.add-cart:hover {

    background: #fff;

}

.add-cart:active {

    transform:
        scale(.985);

}


/* ============================================================
   CART
============================================================ */

.cart-section {

    margin-top: 65px;

}

.cart-box {

    overflow: hidden;

    background: #0d0d0d;

    border:
        1px solid #333;

    border-radius: 13px;

}

.cart-empty {

    padding:
        50px
        20px;

    text-align: center;

    color: #777;

}

.cart-item {

    display: grid;

    grid-template-columns:
        75px
        1fr
        auto;

    gap: 15px;

    align-items: center;

    padding: 18px;

    border-bottom:
        1px solid #252525;

}

.cart-image {

    width: 75px;

    height: 75px;

    border-radius: 7px;

    background: #181818;

    object-fit: contain;

}

.cart-product-name {

    font-size: 14px;

    font-weight: 700;

}

.cart-code {

    color: #777;

    font-size: 10px;

}

.cart-price-info {

    margin-top: 2px;

    color: #999;

    font-size: 12px;

}

.cart-item-total {

    white-space: nowrap;

    text-align: right;

    font-size: 17px;

    font-weight: 700;

}


/* ============================================================
   CART 数量
============================================================ */

.cart-controls {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 8px;

}

.cart-controls button {

    height: 30px;

    min-width: 30px;

    border:
        1px solid #444;

    border-radius: 5px;

    background: #202020;

    color: #fff;

    cursor: pointer;

}

.cart-controls button:hover {

    background: #303030;

}

.cart-controls .delete {

    width: auto;

    padding:
        0
        10px;

    margin-left: 4px;

    color: #aaa;

    font-size: 11px;

}


/* ============================================================
   SUMMARY
============================================================ */

.cart-summary {

    padding: 24px;

}

.summary-row {

    display: flex;

    justify-content: space-between;

    color: #aaa;

    font-size: 14px;

}

.summary-row + .summary-row {

    margin-top: 5px;

}

.total-row {

    display: flex;

    justify-content: space-between;

    align-items: baseline;

    margin-top: 17px;

    padding-top: 18px;

    border-top:
        1px solid #333;

}

.total-label {

    font-size: 17px;

    font-weight: 700;

}

.total-price {

    font-size: 30px;

    font-weight: bold;

}

.total-price small {

    color: #999;

    font-size: 11px;

    font-weight: normal;

}


/* ============================================================
   CHECKOUT
============================================================ */

.checkout {

    width: 100%;

    min-height: 60px;

    margin-top: 22px;

    border: 0;

    border-radius: 8px;

    background: #fff;

    color: #000;

    font-size: 17px;

    font-weight: 700;

    cursor: pointer;

    transition:
        opacity .15s,
        transform .15s;

}

.checkout:hover:not(:disabled) {

    opacity: .9;

}

.checkout:active:not(:disabled) {

    transform:
        scale(.99);

}

.checkout:disabled {

    opacity: .25;

    cursor: default;

}

.checkout-loading {

    pointer-events: none;

    opacity: .6 !important;

}


/* ============================================================
   INFORMATION
============================================================ */

.shop-info {

    margin-top: 18px;

    text-align: center;

    color: #888;

    font-size: 12px;

}

.shop-info span {

    display: inline-block;

    margin:
        3px
        8px;

}

.shop-notice {

    margin-top: 15px;

    color: #707070;

    text-align: center;

    font-size: 11px;

}


/* ============================================================
   TOAST
============================================================ */

.toast {

    position: fixed;

    left: 50%;

    bottom: 90px;

    z-index: 10000;

    padding:
        11px
        22px;

    border-radius: 30px;

    background: #fff;

    color: #000;

    font-size: 13px;

    font-weight: 700;

    opacity: 0;

    pointer-events: none;

    transform:
        translateX(-50%)
        translateY(20px);

    transition: .25s;

    box-shadow:
        0
        5px
        30px
        rgba(0,0,0,.5);

}

.toast.show {

    opacity: 1;

    transform:
        translateX(-50%)
        translateY(0);

}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 640px) {

    .shop-container {

        padding:
            10px
            12px
            120px;

    }


    .shop-header {

        padding:
            24px
            5px
            28px;

        margin-bottom: 30px;

    }


    .products {

        grid-template-columns: 1fr;

        gap: 14px;

    }


    .product {

        display: grid;

        grid-template-columns:
            120px
            1fr;

    }


    .product-image {

        aspect-ratio: auto;

        min-height: 190px;

    }


    .product-body {

        padding: 14px;

    }


    .product-name {

        font-size: 15px;

    }


    .product-desc {

        display: none;

    }


    .product-price {

        margin-top: 7px;

        font-size: 20px;

    }


    .buy-area {

        display: block;

        margin-top: 11px;

    }


    .qty-control {

        width: 100%;

        height: 42px;

    }


    .qty-control button {

        flex: 1;

    }


    .qty-control input {

        width: 48px;

    }


    .add-cart {

        width: 100%;

        min-height: 43px;

        margin-top: 7px;

        font-size: 13px;

    }


    .cart-section {

        margin-top: 50px;

    }


    .cart-item {

        grid-template-columns:
            60px
            1fr;

        padding: 14px;

    }


    .cart-image {

        width: 60px;

        height: 60px;

    }


    .cart-item-total {

        grid-column: 2;

        text-align: left;

    }


    .cart-summary {

        padding: 18px;

    }


    .total-price {

        font-size: 26px;

    }

}
/* ============================================================
   通常・会員価格　表示変更対応用
============================================================ */

.normal-price {
    color: #888;
    font-size: 13px;
    text-decoration: line-through;
    margin-bottom: 3px;
}

.member-price {
    color: #fff;
    font-size: 14px;
}

.member-price strong {
    display: inline-block;
    margin-left: 7px;
    font-size: 25px;
}

.member-price::before {
    content: "SPECIAL";
    display: inline-block;
    padding: 2px 7px;
    margin-right: 5px;
    border: 1px solid #888;
    border-radius: 3px;
    font-size: 9px;
    letter-spacing: 1px;
}
/* ============================================================
   商品画像スライダー
============================================================ */

.product-gallery {
    position: relative;
    overflow: hidden;
    background: #181818;
    aspect-ratio: 1 / 1;
}

.gallery-track {
    display: flex;
    height: 100%;
    transition: transform .35s ease;
}

.gallery-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


/* 左右ボタン */

.gallery-prev,
.gallery-next {
padding-bottom: 3px;
    position: absolute;
    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: 0;
    border-radius: 50%;

    background: rgba(0,0,0,.55);

    color: #fff;

    font-size: 28px;

    cursor: pointer;

    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;

    padding: 0;
}

.gallery-prev {
    left: 10px;
	padding-bottom: 5px;
}

.gallery-next {
    right: 10px;
	padding-bottom: 5px;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: rgba(0,0,0,.8);
}


/* 下の丸 */

.gallery-dots {

    position: absolute;

    left: 0;
    right: 0;
    bottom: 12px;

    display: flex;

    justify-content: center;

    gap: 7px;

    z-index: 6;

}

.gallery-dot {

    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.4);

    cursor: pointer;

}

.gallery-dot.active {

    background: #fff;

    transform: scale(1.3);

}


/* スマホ */

@media (max-width: 640px) {

    .product-gallery {

        aspect-ratio: auto;

        min-height: 190px;

    }

    .gallery-prev,
    .gallery-next {

        width: 34px;
        height: 34px;

        font-size: 23px;

    }

}
