@charset "UTF-8";

/* ==========================================================================
   Table of Contents
   --------------------------------------------------------------------------
   0. Global Variables (変数定義)
   1. Reset & Base Styles (基本設定・リセット)
   2. UI Components (ボタン, 入力フォーム, ローディング)
   3. Layout & Wrapper (共通レイアウト)
   4. Header & Drawer (ヘッダー, ドロワーメニュー)
   5. Top Page Sections (メインビジュアル, Concept, Feature, Custom)
   6. Item List & Grid (商品一覧, カテゴリ)
   7. Item Detail (商品詳細)
   8. Blog & Information (ブログ, お知らせ)
   9. Apps & Modules (BASE Apps, YouTube, etc.)
   10. Footer (フッター)
   ========================================================================== */

/* ==========================================================================
   0. Global Variables (変数定義)
   ========================================================================== */
:root {
    /* --- Colors: Theme --- */
    --bodyBgColor: #fff;
    --textColorMain: #333;
    --textColorMain10: rgba(51, 51, 51, 0.1);
    --textColorMain20: rgba(51, 51, 51, 0.2);
    --textColorHead: #111;
    --textColorlink: #333;
    --noticeColor: #e74c3c;
    --btnBgColor: #f59e0b; /* User Specified Orange */
    --footerBgColor: #f0f0f0;
    --footerTextColor: #666;

    /* --- Colors: Palette (Stone & Amber) --- */
    --color-white: #fff;
    --color-stone-50: #fafaf9;
    --color-stone-100: #f5f5f4;
    --color-stone-300: #d6d3d1;
    --color-stone-400: #a8a29e;
    --color-stone-500: #78716c;
    --color-stone-600: #57534e;
    --color-stone-700: #44403c;
    --color-stone-800: #292524;
    --color-stone-900: #1c1917;
    --color-amber-200: #fde68a;
    --color-amber-500: #f59e0b;
    --color-amber-600: #d97706;

    /* --- Layout & Spacing --- */
    --maxWidth: 1000px;
    --margin: 160px;
    --padding: 60px;
    --detailwidth: 80%;
    --spacing-section: 6rem;
    --PickupNum: 4;
    --imageBorderRadiusL2: 8px;

    /* --- Modules: YouTube --- */
    --YouTubeheight: 70vh;
    --YouTube2height: 600px;
    --YouTubeitemheight: 300px;
    --YouTubemargin: 0;
    --YouTubepadding: 60px;

    /* --- Typography --- */
    --bodyFontEn: "Helvetica Neue", Arial;
    --bodyFontJa: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo;
    --headFontEn: "Times New Roman", Times;
    --headFontJa: "Yu Mincho", "YuMincho";
    
    --base-font-family: var(--bodyFontEn), var(--bodyFontJa), sans-serif;
    --font-serif: var(--headFontEn), var(--headFontJa), "Hiragino Mincho ProN", serif;
    --font-sans: "Helvetica Neue", Arial, sans-serif;

    /* --- Z-Index Layers --- */
    --z-background: 0;
    --z-content: 1;
    --z-header: 1000;
    --z-drawer-bg: 10000;
    --z-drawer: 10001;
    --z-loading: 99999;
}

/* Responsive Variables Override */
@media (max-width: 1400px) { :root { --padding: 50px; } }
@media (max-width: 1200px) { :root { --margin: 120px; --padding: 42px; } }
@media (max-width: 1000px) { :root { --padding: 34px; } }
@media (max-width: 768px) {
    :root {
        --margin: 80px;
        --YouTubepadding: 28px;
        --YouTubeheight: 70vh;
        --YouTube2height: 400px;
        --PickupNum: 2;
    }
}
@media (max-width: 600px) {
    :root {
        --YouTubemargin: 60px;
        --YouTubepadding: 24px;
        --YouTubeheight: 40vh;
        --YouTube2height: 200px;
        --detailwidth: 98%;
        --YouTubeitemheight: 150px;
    }
}

/* ==========================================================================
   1. Reset & Base Styles (基本設定・リセット)
   ========================================================================== */
*, ::before, ::after {
    box-sizing: border-box;
    border-style: solid;
    border-width: 0;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    font-size: 62.5%; /* 1rem = 10px context */
    background: var(--bodyBgColor);
}

body {
    margin: 0;
    color: var(--textColorMain);
    font-size: 1.4rem;
    font-family: var(--base-font-family);
    line-height: 1.3;
    letter-spacing: 0.08em;
    word-break: break-all;
    word-wrap: break-word;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6, .item_title, .shop_title {
    margin: 0;
    padding: 0;
    font-family: var(--font-serif) !important;
    letter-spacing: 0.05em;
}

p, .item_description, .about_content {
    margin: 0;
    padding: 0;
    line-height: 1.8 !important;
    font-size: 15px;
}

/* Link Styles */
a {
    background-color: transparent;
    text-decoration: none;
    color: var(--textColorlink);
    cursor: pointer;
    transition: all 0.2s ease;
}

a:hover, a:active {
    opacity: 0.7;
}

/* Image Interaction Effect */
.item_link:hover .item_img, .item_link:active .item_img, 
.item_link:hover .item_photo, .item_link:active .item_photo,
a:hover img, a:active img {
    transform: scale(1.03);
    filter: brightness(1.1);
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* List & Misc Reset */
ul, ol { list-style: none; margin: 0; padding: 0; }
img { max-width: 100%; vertical-align: bottom; }
table { border-collapse: collapse; border-color: inherit; }
hr { box-sizing: content-box; height: 0; overflow: visible; border-top-width: 1px; }

/* Utility Classes */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }

/* ==========================================================================
   2. UI Components (ボタン, 入力フォーム, ローディング)
   ========================================================================== */

/* --- Loading Animation --- */
.loading {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    position: fixed; width: 100%; height: 100vh;
    background: var(--bodyBgColor); z-index: var(--z-loading);
    transition: all 0.3s ease;
}
.loading.hide { opacity: 0; pointer-events: none; }
.loading .loader { display: flex; justify-content: center; gap: 6px; }
.loading .loader span {
    opacity: 0.5; width: 8px; height: 8px; background: var(--textColorMain);
    animation: 0.9s loader-bounce infinite alternate;
}
.loading .loader span:nth-child(2) { animation-delay: 0.3s; }
.loading .loader span:nth-child(3) { animation-delay: 0.6s; }
@keyframes loader-bounce { to { opacity: 0.2; transform: translate3d(0, -5px, 0); } }

/* --- Buttons --- */
button, input[type="button"], input[type="reset"], input[type="submit"], 
.add_cart_btn, .purchaseButton {
    appearance: none; -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

button:disabled, input:disabled { cursor: default; opacity: 0.5; }

/* Button Hover/Active State */
button:hover, input[type="submit"]:hover, .add_cart_btn:hover, .purchaseButton:hover,
button:active, input[type="submit"]:active, .add_cart_btn:active, .purchaseButton:active {
    background-color: #A0522D !important; /* Brownish interaction color */
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    opacity: 1 !important;
}

/* Custom Button (.btnt) */
.btnt { text-align: center; position: relative; overflow: hidden; }
.btnt a {
    display: block; width: 100%; height: 100%;
    padding: 15px 55px;
    color: #222 !important; border: 1px solid #000 !important;
    background: var(--color-white) !important;
    font-size: 12px; font-weight: 400; text-decoration: none;
    transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
    z-index: 2; position: relative;
}
.btnt a:hover, .btnt a:active {
    background: #999 !important; color: #eee !important;
    transform: scale(1.1); opacity: 0.7;
}

/* --- Form Inputs (BASE Overrides) --- */
/* Note: !important is required to override BASE's default user agent styles */
.header-search input, .drawer-search input, 
.inquirySection dl dd input, .inquirySection dl dd textarea, 
input.x_mailMagazineSubscribe_input, input.itemOption__input, 
select.x_i18nSelectBox, select#valiationSelect, 
select.itemOption__select, select.amountSelect {
    outline: none !important; display: block; margin: 0 !important; padding: 8px !important;
    width: 100% !important; min-width: auto !important;
    color: #333 !important; font-family: var(--base-font-family) !important;
    background: var(--color-white) !important; border: none !important;
    border-radius: 3px !important;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important; appearance: none !important;
}
.header-search input::placeholder, .drawer-search input::placeholder, 
input.x_mailMagazineSubscribe_input::placeholder, input.itemOption__input::placeholder {
    opacity: 0.4 !important; color: #333 !important;
}

/* Select Box Styling */
select.x_i18nSelectBox, select#valiationSelect, 
select.itemOption__select, select.amountSelect {
    padding: 8px 24px 8px 8px !important;
    background: linear-gradient(45deg, #fff 50%, #333 50%) no-repeat center right 12px / 4px 4px, 
                linear-gradient(-45deg, #fff 50%, #333 50%) no-repeat center right 8px / 4px 4px !important;
    background-color: var(--color-white) !important;
}

/* --- Badges --- */
.badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    color: var(--color-white)!important;
    font-size: 14px;
    font-style: italic;
    line-height: 80px;
    text-align: center;
    border-radius: 40px;
    letter-spacing: 0.06em !important;
    z-index: 110;

}
.badge_gold { background-color: #dab300!important; }
.badge_silver { background-color: #c0c0c0!important; }
.badge_copper { background-color: #C47222!important; }
.badge_steel { background-color: #244344!important; }

@media (max-width: 600px) {
    .badge { width: 50px; height: 50px; border-radius: 25px; right: -8px; line-height: 50px; }
}

/* ==========================================================================
   3. Layout & Wrapper (共通レイアウト)
   ========================================================================== */
.container { width: 100%; position: relative; }

.content {
    margin: 70px auto; padding: 0 4vw 10vh 4vw;
    max-width: calc(1580px + 10vw);
}
.home .content { padding: 0; max-width: 100%; }

/* Section Common Styles */
.secArea { margin: 50px auto 30px; }
.section_title, .secTitle {
    display: block; position: relative;
    margin-bottom: 4vh;
    text-align: center; line-height: 1.3em;
}
.section_title::after {
    content: ""; position: absolute; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px; background-color: #C5A059;
}
.secTitleEn { display: block; font-size: 2.8rem; font-weight: bold; margin-bottom: 10px; letter-spacing: 0.1em; }
.secTitleJp { display: block; font-size: 12px; font-weight: 400; letter-spacing: 0.1em; }

@media (max-width: 600px) {
    .secTitle { margin-bottom: 10px; }
    .secArea { margin: 0 auto 50px; }
}

/* ==========================================================================
   4. Header & Drawer (ヘッダー, ドロワーメニュー)
   ========================================================================== */

/* --- Header --- */
.header {
    display: flex; justify-content: space-between; align-items: center;
    position: fixed; top: 0; left: 0; width: 100%; z-index: var(--z-header);
    padding: 10px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    color: var(--textColorMain);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

/* Transparent Mode (Top Page Initial State) */
.header.header-transparent {
    background-color: transparent;
    color: #fff;
    padding: 20px 40px;
    box-shadow: none;
    backdrop-filter: none;
}

/* Logo */
.header h1 { margin: 0 auto 0 0; line-height: 1; }
.header h1 img {
    max-width: 180px; max-height: 35px;
    transition: all 0.4s ease; filter: none;
}
.header.header-transparent h1 img { filter: brightness(0) invert(1); }

/* Logo Sizes */
.header.header-logosize2 h1 img { max-width: 210px; max-height: 50px; }
.header.header-logosize3 h1 img { max-width: 240px; max-height: 65px; }

/* Navigation (Desktop) */
.header-nav { margin: 0 0 0 auto; }
.header-nav > ul { display: flex; }
.header-nav > ul > li { position: relative; margin: 0 15px; font-size: 1.2rem; }

.header-nav > ul > li > a, .header-nav-category {
    cursor: pointer; display: block; position: relative; padding: 8px 0;
    color: inherit;
}
.header-nav > ul > li > a:after, .header-nav-category:after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0%; height: 1px;
    background: currentColor; transition: all 0.3s ease;
}
.header-nav > ul > li > a:hover:after, .header-nav-category:hover:after { width: 100%; }

/* Dropdown Menu */
.header-nav-category > ul {
    opacity: 0; visibility: hidden; position: absolute; top: 80%; left: calc(50% - 100px);
    padding: 20px; width: 200px;
    background: var(--bodyBgColor); color: var(--textColorMain);
    box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.1); border-radius: 3px;
    transition: all 0.3s ease;
}
.header-nav-category > ul.open { opacity: 1; visibility: visible; top: 100%; }
.header-nav-category > ul > li > a { display: block; padding: 5px 0; }
.header-nav-category > ul > li > ul { padding: 10px 0 10px 20px; }
.header-nav-category > ul > li > ul > li { position: relative; }
.header-nav-category > ul > li > ul > li:before {
    content: ""; opacity: 0.5; position: absolute; top: 0; left: -10px; width: 1px; height: 100%; background: currentColor;
}

/* Header Search */
.header-search {
    display: flex; justify-content: space-between; margin: 0 30px; padding: 0 5px 0 15px;
    width: 110px; height: 34px; border-radius: 20px;
    background: var(--textColorMain10); color: var(--textColorMain);
    transition: all 0.3s ease;
}
.header.header-transparent .header-search {
    background: rgba(255, 255, 255, 0.2); color: #fff;
}
.header-search.active { width: 150px; }
.header-search input {
    padding: 0 !important; width: calc(100% - 34px) !important; height: auto !important;
    font-size: 1.2rem !important; background: none !important; box-shadow: none !important;
    color: inherit !important;
}
.header.header-transparent .header-search input::placeholder { color: rgba(255,255,255,0.7) !important; }
.header-search button { width: 32px; height: 32px; text-align: center; }
.header-search button svg { width: 18px; fill: currentColor; }

/* BASE Icon Menu */
.base-menu ul { display: flex; }
.base-menu ul li { margin: 0 0 0 5px; }
.base-menu ul li a {
    display: block; padding: 8px 0 0 0; width: 34px; height: 34px;
    text-align: center; border-radius: 17px;
}
.base-menu ul li a:hover { background: rgba(0,0,0,0.1); }
.base-menu ul li a img { height: 18px; transition: all 0.3s ease; filter: none; }
.header.header-transparent .base-menu ul li a img,
.base-menu.white ul li a img { filter: brightness(0) invert(1); }

/* Drawer Toggle */
.drawer-open { display: none; }

/* --- Drawer (Mobile Menu) --- */
.drawer-bg {
    opacity: 0; visibility: hidden; position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.8);
    z-index: var(--z-drawer-bg); transition: all 0.3s ease;
}
.drawer-bg.open { opacity: 1; visibility: visible; }

.drawer {
    position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
    padding: 80px 20px 60px 20px;
    background: var(--bodyBgColor); z-index: var(--z-drawer);
    overflow: auto; display: flex; flex-direction: column; align-items: center;
    transform: translateX(100%); transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.drawer.open { transform: translateX(0); }

.drawer-close {
    cursor: pointer; position: absolute; top: 20px; right: 20px;
    width: 50px; height: 50px; z-index: 10;
}
.drawer-close:before, .drawer-close:after {
    content: ""; position: absolute; top: 24px; left: 10px;
    width: 30px; height: 1px; background: var(--textColorMain);
    transform: rotate(45deg); transition: transform 0.3s ease;
}
.drawer-close:after { transform: rotate(-45deg); }
.drawer-close:hover:before { transform: rotate(135deg); }
.drawer-close:hover:after { transform: rotate(45deg); }

.drawer-search {
    display: flex; justify-content: space-between;
    margin: 0 auto 40px auto; padding: 5px 5px 5px 15px;
    width: 100%; max-width: 320px;
    background: rgba(0, 0, 0, 0.05); border-radius: 30px;
}

.drawer-nav { width: 100%; max-width: 320px; text-align: center; padding-bottom: 40px; }
.drawer-nav > li { margin: 15px 0; }
.drawer-nav li a, .drawer-nav li span {
    display: inline-block; padding: 10px 20px;
    font-size: 1.6rem; font-family: var(--headFontEn), sans-serif;
    letter-spacing: 0.1em; font-weight: bold; border-radius: 30px;
}
.drawer-nav li a:active, .drawer-nav li span:active {
    background-color: rgba(0,0,0,0.05); transform: scale(0.95);
}

.drawer-nav-category { display: flex; flex-direction: column; align-items: center; }
.drawer-nav-category ul { margin: 15px 0 0 0; font-size: 1.3rem; }
.drawer-nav-category ul li { margin-bottom: 10px; }

/* SP Header Styles */
@media (max-width: 1000px) {
    .header { padding: 15px 4vw; }
    .header h1 img { max-width: 120px; max-height: 30px; }
    .header.header-logosize2 h1 img { max-width: 135px; max-height: 40px; }
    .header.header-logosize3 h1 img { max-width: 150px; max-height: 50px; }
    .header-nav, .header-search { display: none; }
    
    .drawer-open {
        cursor: pointer; display: block; position: relative; margin: 0 0 0 5px; width: 34px; height: 34px;
    }
    .drawer-open span, .drawer-open span:before, .drawer-open span:after {
        content: ""; position: absolute; top: 17px; left: 7px;
        width: 20px; height: 1px; background: var(--textColorMain);
        transition: all 0.3s ease;
    }
    .drawer-open span:before { top: -6px; left: 0; }
    .drawer-open span:after { top: 6px; left: 0; }
    
    .header.header-transparent .drawer-open span,
    .header.header-transparent .drawer-open span:before,
    .header.header-transparent .drawer-open span:after {
        background: #fff;
    }
    .drawer-open:active { opacity: 0.6; transform: scale(0.95); }
}

/* ==========================================================================
   5. Top Page Sections (メインビジュアル, Concept, Feature, Custom)
   ========================================================================== */

/* --- Main Visual (Video Background) --- */
.mainvisual {
    position: relative; top: 0; left: 0;
    width: 100%; height: 100vh; min-height: 400px;
    overflow: hidden; margin-top: 0;
}
.video-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: var(--z-background); overflow: hidden;
}
.video-background iframe {
    position: absolute; top: 50%; left: 50%;
    width: 100vw; height: 56.25vw; min-height: 100vh; min-width: 177.78vh;
    transform: translate(-50%, -50%); pointer-events: none;
}
.video-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.3);
    background-image: radial-gradient(rgba(0,0,0,0.3) 30%, transparent 31%);
    background-size: 3px 3px; z-index: var(--z-content);
}
.mainvisual-content {
    position: relative; z-index: 2; height: 100%;
    display: flex; flex-direction: column; justify-content: end; align-items: flex-start;
    padding: 0 0 3vw 10vw; color: var(--color-white);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.mainvisual-content .title {
    font-size: 3rem; font-weight: bold; font-family: var(--font-serif);
    line-height: 1.2; margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .mainvisual { height: 100vh; }
    .mainvisual-content { padding-left: 5vw; align-items: center; }
    .mainvisual-content .title { font-size: 2.4rem; }
    .mainvisual-content .text { width: 90%; margin-bottom: 50px;}
    .video-overlay { background-size: 2px 2px; }
}

/* --- Concept Section --- */
.conceptArea { width: 100%; }
.conceptInner {
    padding: 0 10%;
    position: relative;
    /* margin: 0 auto; */
    /* padding: 7vh 4vw; */
    /* max-width: calc(1300px + 10vw); */

}

/* Flexbox Layout for Best Seller & Concept: 画像巨大化を防ぐ修正 */
.conceptInner .contentBlock {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

/* 左右カラムの幅定義 */
.conceptInner .col-left, .conceptInner .col-right {
    display: block;
    letter-spacing: 0.1em;
    width: 48%;

}

.conceptInner .colInner { padding: 5% 10% 0 5%; }
.conceptInner .subHead { font-size: 21px; margin-bottom: 20px; }
.conceptImg img { width: 100%; height: auto; }
.btnToAbout { width: 50%; margin: 0 0 0 5%; }

@media only screen and (max-width:1024px) { 
    .conceptInner { padding: 0 5%; }
    .conceptInner .col-left, .conceptInner .col-right { width: 100%; margin-bottom: 30px; }
    .conceptInner .col-right { margin-bottom: 30px; }
    .conceptInner .colInner { padding: 0; }
    .btnToAbout { width: 100%; margin: 0; }
}

/* --- Feature Section --- */
.fetureArea { width: 95%; margin-bottom: 80px!important; }
.fetureAreaInner { margin: 0 auto; position: relative; }
.fetureAreaInner .secTitle { padding: 0 10%; }
.listFeature ul li { width: 100%; margin: 0 0 60px 0; }
.col-left { float: left; }
.col-right { float: right; }
.listFeature .col-txt { width: 45%; padding: 10%; display: inline-block; vertical-align: middle; }
.listFeature .col-img { width: 55%; display: inline-block; vertical-align: middle; }
.col-img img { width: 100%; }
.listFeature .f-num { font-size: 32px; margin-bottom: 40px; display: inline-block; }
.listFeature .f-num:after { content: " "; width: 100%; height: 1px; display: block; margin-top: 15px; border: 1px solid #000 !important; }

@media only screen and (max-width: 1024px) {
    .fetureAreaInner .secTitle { padding: 0 5%; }
    .listFeature .col-img { width: 90%; }
    .listFeature .col-txt { width: 100%; padding: 5% 10%; }
    .listFeature .f-num { font-size: 28px; margin-bottom: 20px; }
}
.listFeature .subHead {font-size: 24px;display: block;margin-bottom: 5px;}
.listFeature .subHeadEn {font-size: 14px;margin-bottom: 25px;display: block;}

.pickupblock{
    margin: 0 auto;
    padding: 7vh 4vw;
    max-width: calc(1300px + 10vw);
}
.pickupblock .inner-col {position: relative;}

/* --- Aging Section --- */
.aging-section {
    padding: 10rem 15rem; margin: 0 auto;
    background-color: var(--color-stone-900); color: var(--color-white);
    position: relative; overflow: hidden;
}
.aging-bg-texture {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0.1;
    background-image: url('https://www.transparenttextures.com/patterns/leather.png');
    pointer-events: none;
}
.aging-content {
    position: relative; z-index: 10;
    display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center;
}
.aging-text h2 {
    font-family: var(--font-serif); font-size: 2rem;
    line-height: 1.2; margin-bottom: 1.5rem;
}
.text-highlight { color: var(--color-amber-500); }
.aging-description { color: var(--color-stone-300); margin-bottom: 2rem; line-height: 1.8; }
.aging-timeline {
    display: flex; gap: 2rem;
    border-top: 1px solid var(--color-stone-700); padding-top: 2rem;
}
.timeline-item .year { color: var(--color-amber-500); font-weight: bold; font-size: 2rem; font-family: var(--font-serif); }
.timeline-item .desc { color: var(--color-stone-400); font-size: 1.5rem; margin-top: 0.25rem; }
.aging-images { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.aging-img-card { display: flex; flex-direction: column; gap: 0.5rem; }
.aging-img-card img {
    width: 100%; border-radius: 0.25rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); object-fit: cover;
}
.aging-img-card .caption { text-align: center; font-size: 1.75rem; color: var(--color-stone-400); }
.aging-img-card.offset img { border: 2px solid rgba(217, 119, 6, 0.5); }
.aging-img-card.offset .caption { color: var(--color-amber-500); font-weight: bold; }

@media (min-width: 768px) {
    .aging-content { grid-template-columns: 1fr 1fr; }
    .aging-text h2 { font-size: 3rem; }
}
@media (max-width: 768px) {
    .aging-section { padding: 4rem 2rem; }
    .aging-text h2 { font-size: 2.4rem; }
}

/* --- Quality Section --- */
.quality-section {
    padding: var(--spacing-section) 0; margin-top: 100px;
    background-color: var(--color-white); border-top: 1px solid #ccc;
}
.quality-grid { display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
.quality-image-wrapper { position: relative; margin: 0 8vh; }
.quality-main-image {
    width: 100%; border-radius: 2px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    object-fit: cover; transition: all 0.3s ease;
}
.quality-main-image:hover { transform: scale(1.03); filter: brightness(1.1); }
.quality-badge {
    position: absolute; bottom: -1.5rem; right: -1.5rem;
    background-color: var(--color-stone-900); color: var(--color-white);
    padding: 1.5rem 2rem; display: none;
}
.quality-badge p { font-family: var(--font-serif); font-size: 1.25rem; line-height: 1.2; }
.feature-list { display: flex; flex-direction: column; gap: 2rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-icon-box {
    /* background-color: var(--color-stone-100); */
    /* color: var(--color-stone-700); */
    /* padding: 0.75rem; */
    /* border-radius: 9999px; */
    /* display: flex; */
    /* align-items: center; */
    background-color: var(--color-stone-100);
    color: var(--color-stone-700);
    padding: 0.75rem;
    border-radius: 9999px;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;

}
.feature-icon-svg { width: 24px; height: 24px; }
.feature-content h3 {
    font-family: var(--font-serif); font-size: 1.85rem; color: var(--color-stone-900); margin-bottom: 0.5rem;
}
.feature-content p { color: var(--color-stone-600); font-size: 1.35rem; line-height: 1.625; }

@media (min-width: 768px) {
    .quality-grid { grid-template-columns: 1fr 1fr; padding: 0 12vh; }
    .quality-badge { display: block; }
    .quality-badge p { font-size: 1.5rem; }
}
@media (max-width: 768px) {
    .quality-grid { padding: 0 2rem; gap: 2rem; }
    .quality-image-wrapper { margin: 0; }
}

/* --- Voice Section --- */
.voice-section { padding: 5rem 15rem; background-color: var(--color-white); }
.section-heading { margin-bottom: 3rem; text-align: center; }
.section-heading h2 {
    font-family: var(--font-serif); font-size: 2.25rem;
    color: var(--color-stone-900); margin-bottom: 0.75rem;
}
.section-heading .subtitle {
    color: var(--color-stone-500); font-size: 1.5rem;
    text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
}
.section-heading .divider {
    height: 4px; width: 4rem; background-color: var(--color-stone-300); margin: 1rem auto 0;
}
.voice-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.review-card {
    background-color: var(--color-stone-50); padding: 2rem;
    border-radius: 0.125rem; position: relative;
}
.review-card::before {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(to right, var(--color-amber-200), transparent);
}
.star-rating { display: flex; color: var(--color-amber-500); margin-bottom: 1rem; }
.review-text { color: var(--color-stone-700); margin-bottom: 1.5rem; font-size: 1.5rem; line-height: 1.6; }
.reviewer-name {
    color: var(--color-stone-400); font-size: 1.2rem;
    font-weight: bold; letter-spacing: 0.05em; text-align: right;
}

@media (min-width: 768px) { .voice-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .voice-section { padding: 4rem 2rem; } }

/* ==========================================================================
   6. Item List & Grid (商品一覧, カテゴリ)
   ========================================================================== */
.home .item-list-wrap { margin: 0 auto; padding: 7vh 4vw; max-width: calc(1300px + 10vw); }
.item-list-wrap h2, .category-item-list-wrap h2 {
    margin: 0 0 4vh 0; color: var(--textColorHead); font-size: 3rem; font-weight: bold;
}
.item-list { display: grid; grid-template-columns: repeat(var(--itemListItemNum), 1fr); gap: 40px; }

/* Item List Card */
.item-list-item { position: relative; }
.item-list-item .label_image { position: absolute; top: -8px; left: -8px; width: 50px; z-index: 2; }
.item-list-item .image { position: relative; margin: 0 0 20px 0; }
.item-list-item .image a img {
    aspect-ratio: var(--itemListItemAspect); object-fit: cover;
    width: 100%; height: 100%; transition: all 0.3s ease;
}
.item-list-item .image a:hover { opacity: 0.7; }
.item-list-item .image .soldout {
    display: flex; justify-content: center; align-items: center; position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    color: var(--noticeColor); font-weight: bold;
    background: rgba(0, 0, 0, 0.3); z-index: 1;
}
.item-list-item .text a { display: block; }
.item-list-item .text a:hover { opacity: 0.7; }
.item-list-item .text .price {
    display: flex; flex-wrap: wrap; align-items: center; margin: 5px 0 0 0;
    font-size: 1.3rem; color: #777;
}
.item-list-item .text .price .rate {
    margin: 0 5px 0 0; padding: 3px 5px; color: var(--color-white); font-size: 1rem;
    background: var(--noticeColor); border-radius: 3px;
}
.item-list-item .text .price .current { color: var(--noticeColor); }
.item-list-item .text .tags { display: flex; flex-wrap: wrap; gap: 5px; margin: 8px 0 0 0; }
.item-list-item .text .tags div {
    padding: 3px 5px; color: var(--textColorMain); font-size: 1rem;
    border: var(--textColorMain) 1px solid;
}

/* Category Slider */
.category-item-list { margin: 0 -20px; }
.category-item-list .slick-slide { padding: 0 20px; }
.category-item-list .slick-prev, .category-item-list .slick-next {
    cursor: pointer; display: flex; justify-content: center; align-items: center; position: absolute;
    top: calc(-4vh - 37px); right: 20px; width: 32px; height: 32px; font-size: 0;
    background: var(--btnBgColor); border-radius: 3px; transition: all 0.3s ease;
}
.category-item-list .slick-prev { right: 60px; }
.category-item-list .slick-prev:before, .category-item-list .slick-next:before {
    content: ""; margin: 0 -2px 0 0; width: 6px; height: 6px;
    border-top: var(--color-white) 2px solid; border-left: var(--color-white) 2px solid; transform: rotate(-45deg);
}
.category-item-list .slick-next:before { margin: 0 0 0 -2px; transform: rotate(135deg); }
.category-item-list .slick-prev:hover, .category-item-list .slick-next:hover { opacity: 0.7; }

/* Pickup List */
.conceptitem-list .image a img { aspect-ratio: 1/1; }
.conceptitem-list .item-list { grid-template-columns: repeat(var(--PickupNum), 1fr); }

/* Load More & AJAX */
.item-list-more { display: none; justify-content: center; margin: 40px 0 0 0; }
.item-list-more.show { display: flex; }
.item-list-more span {
    cursor: pointer; display: block; margin: 0 auto; padding: 20px; width: 240px;
    color: var(--color-white); font-size: 1.2rem; font-weight: bold; text-align: center;
    background: var(--btnBgColor); border-radius: 3px; transition: all 0.3s ease;
}
.item-list-more span:hover { opacity: 0.7; }
.item-list-loading { display: none; justify-content: center; gap: 6px; padding: 60px 0; }
.item-list-loading.show { display: flex; }
.item-list-loading span {
    opacity: 0.5; width: 8px; height: 8px; background: var(--textColorMain);
    animation: 0.9s bounce infinite alternate;
}
.item-list-loading span:nth-child(2) { animation-delay: 0.3s; }
.item-list-loading span:nth-child(3) { animation-delay: 0.6s; }
@keyframes bounce { to { opacity: 0.2; transform: translate3d(0, -5px, 0); } }

@media (max-width: 768px) {
    .item-list-wrap h2, .category-item-list-wrap h2 { font-size: 2.8rem; }
    .item-list, .conceptitem-list .item-list { grid-template-columns: repeat(2, 1fr); gap: 4vh 10px; }
    .item-list-item .image { margin: 0 0 10px 0; }
    .category-item-list { margin: 0 -5px; }
    .category-item-list .slick-slide { padding: 0 5px; }
    .category-item-list .slick-prev { right: 40px; }
    .category-item-list .slick-next { right: 5px; }
}

/* ==========================================================================
   7. Item Detail (商品詳細)
   ========================================================================== */
.item { display: flex; padding: 4vh 0 0 0; }
.item-image { position: relative; width: 50%; }
.item-detail { padding: 0 0 0 60px; width: 50%; }

/* Detail Images */
.item-image .label_image { position: absolute; top: -12px; left: -12px; width: 70px; z-index: 1; }
.item-image-slick { opacity: 0; margin: 0 0 10px 0; transition: all 0.3s ease; }
.item-image-slick.slick-initialized { opacity: 1; }
.item-image-slick img { width: 100%; }

.item-image-slick-thumbnail { opacity: 0; transition: all 0.3s ease; }
.item-image-slick-thumbnail.slick-initialized { opacity: 1; }
.item-image-slick-thumbnail .slick-track {
    display: grid; grid-template-columns: repeat(8, 1fr); gap: 5px; width: 100% !important; transform: unset !important;
}
.item-image-slick-thumbnail .slick-track:before, .item-image-slick-thumbnail .slick-track:after { display: none; }
.item-image-slick-thumbnail .slick-slide {
    cursor: pointer; opacity: 0.7; width: 100% !important; aspect-ratio: 1 / 1;
}
.item-image-slick-thumbnail .slick-slide:hover, 
.item-image-slick-thumbnail .slick-slide.slick-current { opacity: 1; }
.item-image-slick-thumbnail img { object-fit: cover; width: 100%; height: 100%; }

/* Detail Text & Price */
.item-detail h1 { margin: 0 0 10px 0; color: var(--textColorHead); font-size: 2rem; }
.item-detail .price { margin: 0 0 15px 0; }
.item-detail .price .default { font-size: 1.7rem; color: #555555; }
.item-detail .price .default span { opacity: 0.7; margin: 0 0 0 5px; font-size: 1.1rem; }
.item-detail .price div:first-child { display: flex; align-items: center; margin: 0 0 5px 0; }
.item-detail .price .normal { opacity: 0.7; font-size: 1.2rem; text-decoration: line-through; }
.item-detail .price .rate {
    margin: 0 0 0 5px; padding: 2px 5px; color: var(--color-white); font-size: 1rem;
    background: var(--noticeColor); border-radius: 3px;
}
.item-detail .price .current { color: var(--noticeColor); font-size: 3rem; }
.item-detail .soldout, .item-detail .coming-soon { color: var(--noticeColor); }
.item-detail .item-description { font-size: 1.4rem; }

/* Purchase Form Area */
.item-detail #purchase_form {
    margin: 4vh 0; border: 1px solid #f0f0f0; background-color: #f7f7f7; padding: 20px 10px;
}
.purchaseElement, .itemOptionElement { margin: 0 0 20px 0; }
.purchaseElement label, .itemOptionElement label { display: block; margin: 0 0 8px 0; font-weight: bold; }
.itemOption__caption { margin: -3px 0 8px 0; font-size: 1rem; }
.itemOption__caption--error { display: block; margin: 5px 0 0 0; color: var(--noticeColor); font-size: 1.2rem; }
.itemOption__count { margin: 3px 0 0 0; font-size: 1rem; text-align: right; }
.purchaseButton button, .purchaseButton a {
    display: block; margin: 20px 0 0 0; padding: 20px; width: 100%;
    color: var(--color-white); font-size: 1.2rem; font-weight: bold; text-align: center;
    background: var(--btnBgColor); border-radius: 3px;
}
.ageVerificationWarning {
    opacity: 0.7; margin: 20px 0 !important; color: var(--textColorMain) !important;
    font-size: 3.1rem !important; line-height: 1.3 !important;
}

/* SNS Share */
.item-sns-wrap { display: flex; justify-content: space-between; align-items: center; }
.item-sns { display: flex; gap: 10px; font-size: 1.2rem; }
.item-sns div a { display: flex; align-items: center; }
.item-sns div a img { margin: 0 7px 0 0; width: 15px; }
.item-sns div.twitter a img { padding: 2px; background: var(--color-white); border-radius: 4px; }
#reportBtn { font-size: 1.2rem; }

/* Related Items */
.related-items { margin: 7vh 0 0 0; }
.related-items h2 { margin: 0 0 4vh 0; color: var(--textColorHead); font-size: 3.2rem; font-weight: bold; }
.related-items ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.related-items ul li .image a img {
    aspect-ratio: var(--itemListItemAspect); object-fit: cover; width: 100%; transition: all 0.3s ease;
}
.related-items ul li .image a:hover img { opacity: 0.7; }

@media (max-width: 768px) {
    .item { display: block; }
    .item-image { margin: 0 0 7vh 0; width: 100%; }
    .item-detail { padding: 0; width: 100%; }
    .item-image-slick-thumbnail .slick-track { grid-template-columns: repeat(5, 1fr); }
    .related-items h2 { font-size: 2.8rem; }
    .related-items ul { gap: 10px; }
    .related-items ul li .image { margin: 0 0 10px 0; }
}

/* ==========================================================================
   8. Blog & Information (ブログ, お知らせ)
   ========================================================================== */
.newblog-wrap { border-top: var(--textColorMain20) 1px solid; }
.newblog { margin: 0 auto; padding: 7vh 4vw; max-width: calc(1200px + 8vw); }
.newblog h2 { margin: 0 0 4vh 0; color: var(--textColorHead); font-size: 3rem; font-weight: bold; }
.newblog-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; }
.newblog-list-item .image a img {
    aspect-ratio: 1 / 1; object-fit: cover; width: 100%; height: 100%; transition: all 0.3s ease;
}
.newblog-list-item .image a:hover img { opacity: 0.7; }
.newblog-list-item .date { opacity: 0.7; margin: 5px 0 0 0; font-size: 1.2rem; }
.newblog-more { margin: 40px 0 0 0; text-align: center; }
.newblog-more a {
    display: block; margin: 0 auto; padding: 20px; width: 240px;
    color: var(--color-white); font-size: 1.2rem; font-weight: bold; text-align: center;
    background: var(--btnBgColor); border-radius: 3px;
}
.newblog-more a:hover { opacity: 0.7; }

.information { margin: 0 auto; padding: 7vh 4vw; max-width: calc(1480px + 10vw); }
.information h2 { margin: 0 0 4vh 0; font-size: 3rem; font-weight: bold; }
.information ul { padding: 0 0 0 100px; }
.information ul li { display: flex; position: relative; margin: 10px 0; padding: 0 0 0 50px; }
.information ul li:before {
    content: ""; position: absolute; top: 8px; left: 0; width: 10px; height: 1px; background: var(--textColorMain);
}
.information ul li .information-date { opacity: 0.7; width: 120px; }
.information ul li .information-text { width: calc(100% - 120px); }
.information ul li .information-text a { text-decoration: underline; }

@media (max-width: 768px) {
    .newblog h2 { font-size: 2.6rem; }
    .newblog-list { grid-template-columns: repeat(2, 1fr); gap: 4vh 10px; }
    .information h2 { font-size: 2.8rem; }
    .information ul { padding: 0; }
    .information ul li { display: block; margin: 0 0 20px 0; padding: 0; }
    .information ul li:before { display: none; }
    .information ul li .information-date { margin: 0 0 10px 0; width: 100%; font-size: 1.2rem; }
    .information ul li .information-text { width: 100%; }
}

/* ==========================================================================
   9. Apps & Modules (BASE Apps, YouTube, etc.)
   ========================================================================== */

/* Inquiry Form */
.inquirySection { margin: 0 auto; padding: 8vh 4vw; max-width: 800px; }
.inquirySection h2 { text-align: center; font-size: 2.8rem; margin-bottom: 4rem; font-weight: bold; }
.inquirySection dl { display: grid; grid-template-columns: 260px 1fr; border-top: 1px solid var(--color-stone-300); }
.inquirySection dl dt, .inquirySection dl dd { padding: 20px; border-bottom: 1px solid var(--color-stone-300); }
.inquirySection dl dt { grid-column: 1; background-color: var(--color-stone-50); font-weight: bold; display: flex; align-items: center; }
.inquirySection dl dd { grid-column: 2; margin: 0; }
.inquirySection dl dt .required { background: var(--noticeColor); color: #fff; font-size: 1rem; padding: 2px 6px; margin-left: 8px; border-radius: 2px; }
.inquirySection textarea { min-height: 200px; line-height: 1.6; }
.inquirySection .submitBtn { margin-top: 40px; text-align: center; }
.inquirySection input[type="submit"], .inquirySection button[type="submit"] {
    min-width: 280px; padding: 18px 40px !important;
    background-color: var(--btnBgColor) !important; color: var(--color-white) !important;
    font-size: 1.6rem !important; font-weight: bold; border: none;
}

@media (max-width: 768px) {
    .inquirySection { padding: 40px 5vw; }
    .inquirySection dl { display: block; }
    .inquirySection dl dt, .inquirySection dl dd { width: 100%; display: block; border-bottom: none; }
    .inquirySection dl dt { background: transparent; padding: 20px 0 5px 0; border-top: 1px solid var(--color-stone-300); }
    .inquirySection dl dt:first-child { border-top: none; }
    .inquirySection dl dd { padding: 0 0 20px 0; }
    .inquirySection input[type="submit"] { width: 100%; }
}

/* BASE Item Attention & Community */
#itemAttention { margin: 20px 0 0; font-size: 1.2rem; line-height: 1.8; }
#itemAttention .communityLabel, #itemAttention .salesPeriod--term, #itemAttention .preOrder, 
#itemAttention .lottery, #itemAttention .takeout {
    margin: 20px 0; padding: 15px; color: var(--textColorMain); font-weight: bold;
    background: none; border: var(--textColorMain) 1px dashed;
}
#communityPurchase .communitySignin {
    margin: 4vh 0 !important; padding: 15px !important;
    border: var(--textColorMain20) 1px solid; border-radius: 3px !important;
}
.purchaseButtonModal__input, .purchaseButtonModal__inputArea, 
.purchaseButtonModal__ageVerificationWarningText, 
.communityModal, .communityModal h1, .communityModal a, 
.msg_postBox__control__input, #salesPeriodModal .salesPeriodModal__input { color: #333 !important; }
.communityModal { overflow: auto; max-height: 90%; }
.msg_postBox__control__submit { text-align: center; }

/* Custom Detail Area */
#appsItemDetailCustom { margin: 8vh auto 50px; width: var(--detailwidth); }
#appsItemDetailCustom a { color: blue; }
#appsItemDetailCustomTag iframe { width: 100%; height: auto; aspect-ratio: 16 / 9; }
.appsItemDetailCustomTag_heading { font-size: 1.6rem; font-weight: bold; }

/* Pinned Article */
.PinnedArticle { margin: 50px auto 0; width: 90%; }
.PinnedArticle a {
    background-color: #E8DCCA; color: #5d4037 !important;
    font-size: 12px; text-align: center; padding: 15px 0;
    display: block; margin: 0 auto; width: 100%; border-radius: 2px;
}
.PinnedArticle a:hover { opacity: 0.7; }

/* YouTube Modules (Utility) */
.youtube, .YouTubeSecond, .YouTubeitemdetail {
    overflow: hidden; display: flex; flex-direction: column; justify-content: center; align-items: center;
    position: relative; margin: 0 0 var(--margin) 0; padding: 0 var(--padding);
    border-radius: var(--imageBorderRadiusL2);
}
.youtube { height: var(--YouTubeheight); }
.YouTubeSecond { height: var(--YouTube2height); }
.YouTubeitemdetail { height: var(--YouTubeitemheight); margin: 50px 0 0; }
.youtube .text, .YouTubeSecond .text, .YouTubeitemdetail .text {
    padding: 0 var(--padding); width: 100%; max-width: var(--maxWidth);
    color: var(--color-white); text-align: center; z-index: 1;
}
.youtube .text p, .YouTubeSecond .text p { line-height: 2.0; white-space: pre-line; }

/* ==========================================================================
   10. Footer (フッター)
   ========================================================================== */
.footer-wrap { background: var(--footerBgColor); }

/* Mail Magazine */
.mailmagazine-wrap { margin: 0 auto; padding: 0 4vw 4vh 4vw; max-width: calc(1200px + 8vw); }
.mailmagazine {
    display: flex; justify-content: space-between; align-items: center;
    padding: 4vh 4vw; background: var(--textColorMain10);
}
.mailmagazine h2 { margin: 0 0 5px 0; color: var(--textColorHead); font-size: 2.2rem; font-weight: bold; }
.mailmagazine-text .text { opacity: 0.7; font-size: 1.2rem; }
.mailmagazine-form { width: 300px; }
.x_mailMagazineSubscribe_field { display: flex; justify-content: center; }
input.x_mailMagazineSubscribe_input {
    margin: 0 5px 0 0 !important; padding: 12px !important; width: 225px !important; font-size: 1.2rem !important;
}
.x_mailMagazineSubscribe_field button {
    display: block; margin: 0; padding: 12px; width: 70px; height: auto;
    color: var(--color-white); font-size: 1.2rem; font-weight: bold;
    background: var(--btnBgColor); border-radius: 3px;
}
.x_mailMagazineSubscribe_field button:hover { opacity: 0.7; }
.x_mailMagazineSubscribe_confirm { font-weight: bold; }

/* Site Footer */
.site-footer {
    background-color: var(--color-stone-900); color: var(--color-stone-400);
    padding: 4rem 0; border-top: 1px solid var(--color-stone-800);
    font-family: var(--font-sans);
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
.footer-brand, .footer-column { margin: 0 8vh; }
.footer-brand h2 {
    color: var(--color-white); font-family: var(--font-serif);
    font-size: 1.5rem; margin-bottom: 1.5rem;
    letter-spacing: 0.1em; font-weight: bold;
}
.footer-brand p { font-size: 1.2rem; line-height: 1.625; margin-bottom: 1.5rem; }

/* Footer Links */
.footer-column h3 {
    color: var(--color-white); font-weight: bold; font-size: 1.4rem;
    text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem;
}
.footer-links a {
    color: var(--color-stone-400); font-size: 1.2rem; transition: color 0.3s;
}
.footer-links a:hover { color: var(--color-amber-500); }
.footer-links li { margin-bottom: 0.75rem; }

/* Social Links */
.social-links { display: flex; gap: 1rem; }
.social-links > div > a { display: flex; justify-content: center; align-items: center; width: 32px; height: 32px; }
.social-links > div > a:hover { opacity: 0.7; }
.social-links > div > a img { max-width: 22px; max-height: 22px; }

/* Page Top */
.pagetop a {
    display: block; padding: 20px; color: var(--footerTextColor); font-size: 1rem;
    text-align: center; background: rgba(0, 0, 0, 0.1);
}
.pagetop a:hover { opacity: 0.7; }
.pagetop a span { position: relative; padding: 0 15px 0 0; }
.pagetop a span:after {
    content: ""; position: absolute; top: 5px; right: 0; width: 5px; height: 5px;
    border-top: var(--footerTextColor) 1px solid; border-left: var(--footerTextColor) 1px solid;
    transform: rotate(45deg);
}

.footer-copyright {
    margin-top: 4rem; padding-top: 2rem;
    border-top: 1px solid var(--color-stone-800);
    text-align: center; font-size: 1rem;
}

@media (min-width: 768px) {
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .mailmagazine { display: block; text-align: center; }
    .mailmagazine h2 { font-size: 2rem; }
    .mailmagazine-text .text { margin: 0 0 20px 0; font-size: 1rem; }
    .mailmagazine-form { width: 100%; }
    .mailmagazine-form input { text-align: left; }
    
    .footer-brand, .footer-column { margin: 0 4vw; text-align: left; }
    .footer-copyright { text-align: center; }
}-