@charset "UTF-8";

:root {
    --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;
    --footerBgColor: #f0f0f0;
    --footerTextColor: #666;
    --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;
    --maxWidth: 1000px;
    --margin: 160px;
    --padding: 60px;
    --detailwidth: 80%;
    --spacing-section: 6rem;
    --PickupNum: 4;
    --imageBorderRadiusL2: 8px;
    --YouTubeheight: 70vh;
    --YouTube2height: 600px;
    --YouTubeitemheight: 300px;
    --YouTubemargin: 0;
    --YouTubepadding: 60px;
    --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-background: 0;
    --z-content: 1;
    --z-header: 1000;
    --z-drawer-bg: 10000;
    --z-drawer: 10001;
    --z-loading: 99999
}

@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
    }
}

*,
::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%;
    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
}

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
}

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

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

.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
}

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
}

.clearfix:before,
.clearfix:after {
    content: "";
    display: table
}

.clearfix:after {
    clear: both
}

.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)
    }
}

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,
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;
    transform: translateY(2px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    opacity: 1 !important
}

.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
}

.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.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
}

.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
    }
}

.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%
}

.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
    }
}

.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
}

.header.header-transparent {
    background-color: transparent;
    color: #fff;
    padding: 20px 40px;
    box-shadow: none;
    backdrop-filter: none
}

.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)
}

.header.header-logosize2 h1 img {
    max-width: 210px;
    max-height: 50px
}

.header.header-logosize3 h1 img {
    max-width: 240px;
    max-height: 65px
}

.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%
}

.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 {
    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-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-open {
    display: none
}

.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
}

@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)
    }
}

.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
    }
}

.conceptArea {
    width: 100%
}

.conceptInner {
    padding: 0 10%;
    position: relative
}

.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
    }
}

.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,
.newblog .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 {
    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 {
    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;
    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 {
    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 {
    /* Slickで動かすため display: grid; は使用しません */
    display: block;
}

/* スライド間の余白調整 */
.voice-grid .review-card {
    margin: 0 1rem;
    /* 左右に隙間を空ける */
}

/* Slickのドットナビゲーションの色をテーマに合わせる */
.voice-grid .slick-dots li button:before {
    color: var(--color-amber-500);
}

.voice-grid .slick-dots li.slick-active button:before {
    color: var(--color-amber-600);
}

.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
    }
}

.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-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-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
}

.conceptitem-list .image a img {
    aspect-ratio: 1/1
}

.conceptitem-list .item-list {
    grid-template-columns: repeat(var(--PickupNum), 1fr)
}
#first-guide .conceptitem-list .item-list {
    grid-template-columns: repeat(3, 1fr)
}

.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
    }
}

.item {
    display: flex;
    padding: 4vh 0 0 0
}

.item-image {
    position: relative;
    width: 50%
}

.item-detail {
    padding: 0 0 0 60px;
    width: 50%
}

.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%
}

.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
}

.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
}

.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 {
    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
    }
}

.newblog-wrap {
    border-top: var(--textColorMain20) 1px solid;
    text-align: center;
}

.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 ul {
    margin: 4vh auto;
    padding: 0;
    max-width: 600px;
}

.newblog ul li {
    list-style: none;
    margin-bottom: 1.5vh;
}

.newblog ul li a {
    display: block;
    padding: 3vh 20px;
    color: var(--textColorMain);
    text-decoration: none;
    border: 1px solid var(--textColorMain20);
    border-radius: 3px;
    background-color: var(--color-white);
    transition: all 0.3s ease;
}

.newblog ul li a:hover {
    opacity: 0.6;
}

.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%
    }
}

.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%
    }
}

#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
}

#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
}

.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,
.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
}

.footer-wrap {
    background: var(--footerBgColor)
}

.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 {
    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-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 {
    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
}

.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
    }
}

/* Animation */
.js-fadein {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.js-fadein.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- リアルタイム風トースト通知 --- */
.toast-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--color-amber-500);
    /* テーマのアクセントカラー */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    width: 300px;
    transform: translateX(-150%);
    text-decoration: none;
    /* リンクのアンダーラインを消す */
    transition: all 0.3s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.toast-notification:hover {
    background: #fff;
    box-shadow: 0 15px 20px -5px rgba(0, 0, 0, 0.25);
}

.toast-notification.show {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.toast-notification img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.toast-label {
    display: block;
    font-size: 1rem;
    color: var(--color-amber-600);
    font-weight: bold;
    margin-bottom: 4px;
}

.toast-name {
    display: block;
    font-size: 1.2rem;
    color: var(--color-stone-800);
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 閉じるボタン */
.toast-close {
    position: absolute;
    top: 4px;
    right: 8px;
    background: none;
    border: none;
    color: var(--color-stone-400);
    font-size: 1.8rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s ease;
}

.toast-close:hover {
    color: var(--color-stone-700);
}

/* スマホ表示では画面下部・中央からスライドインさせる */
@media (max-width: 768px) {
    .toast-notification {
        bottom: 20px;
        top: auto;
        left: 50%;
        transform: translate(-50%, 100%);
        width: 90%;
    }

    .toast-notification.show {
        transform: translate(-50%, 0);
    }
}

/* --- ラベルアイコンにふわふわアニメーションを追加して目立たせる --- */
.item-list-item img.label_image,
.item-image img.label_image,
.PickUpArea .badge_gold,
.PickUpArea .badge_silver,
.PickUpArea .badge_copper {
    animation: floatLabel 5s ease-in-out infinite;
}

@keyframes floatLabel {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }

    /* 5px上に浮く */
    100% {
        transform: translateY(0px);
    }
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-cta a,
.newblog a {
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
}

.hero-cta-primary {
    background: #f0a537;
    color: #fff;
}

.hero-cta-secondary {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.hero-sub-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 14px;
}

.hero-sub-links a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-trust-points {
    display: flex;
    gap: 10px 16px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding: 0;
    list-style: none;
    font-size: 13px;
    opacity: 0.9;
}

.item-reassurance {
    margin-top: 24px;
    padding: 16px;
    border: 1px solid #e5e0d8;
    background: #faf8f4;
    border-radius: 10px;
}

.item-reassurance-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.item-reassurance-points {
    margin: 0;
    padding-left: 18px;
}

.item-reassurance-points li {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.7;
}

.item-reassurance-note {
    margin-top: 12px;
    font-size: 13px;
    line-height: 1.7;
    color: #555;
}

.item-reassurance-link a {
    display: inline-block;
    margin-top: 8px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

#appsItemDetailCustom img{
    max-width: 600px;
}

#first-guide .guide_title {
    font-size: 18px;
    margin-bottom: 10px;
    font-family: var(--font-serif) !important;
    font-weight:600;
}
