/* 基本設定・リセット
   ------------------------------------------ */
*, ::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%; /* base設定から移動して統合 */
    background: var(--bodyBgColor); /* base設定から移動して統合 */

    /* CSS変数（カスタムプロパティ）定義 */
    --margin: 160px;
    --padding: 60px;
    
    /* iframe 1系 (YTP_1, 2, 3) */
    --iframewidth: 2700px;
    --iframeheight: 1450px;
    --iframemarginleft: -100px;
    
    /* iframe 2系 (YTP_4, 5) */
    --iframe2width: 2700px;
    --iframe2height: 1450px;
    --iframe2marginleft: -100px;

    --YouTubeheight: 70vh;
    --YouTube2height: 600px;
    --detailwidth: 80%;
    --YouTubeitemheight: 300px;
    --PickupNum: 4;
}

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

/* レスポンシブ変数定義
   ------------------------------------------ */
@media (max-width: 1920px) {
    html {
        --iframewidth: 2100px;
        --iframeheight: 1300px;
        --iframemarginleft: 0px;
        --iframe2width: 1950px;
        --iframe2height: 1100px;
        --iframe2marginleft: 0px;
    }
}
@media (max-width: 1400px) {
    html {
        --padding: 50px;
        --iframewidth: 1650px;
        --iframeheight: 1250px;
        --iframemarginleft: 0px;
        --iframe2width: 1650px;
        --iframe2height: 1250px;
    }
}
@media (max-width: 1200px) {
    html {
        --margin: 120px;
        --padding: 42px;
        --iframewidth: 1200px;
        --iframeheight: 1450px;
        --iframe2width: 1200px;
        --iframe2height: 1450px;
    }
}
@media (max-width: 1000px) {
    html {
        --padding: 34px;
        --iframewidth: 1200px;
        --iframeheight: 1350px;
        --iframe2width: 1200px;
        --iframe2height: 1350px;
    }
}
@media (max-width: 768px) {
    html {
        --margin: 80px;
        --YouTubepadding: 28px;
        --iframewidth: 1300px;
        --iframeheight: 1300px;
        --YouTubeheight: 70vh;
        --iframe2width: 800px;
        --iframe2height: 1200px;
        --YouTube2height: 400px;        
    }
}
@media (max-width: 600px) {
    html {
        --YouTubemargin: 60px;
        --YouTubepadding: 24px;
        --iframewidth: 1300px;
        --iframeheight: 1300px;
        --iframemarginleft: -420px;
        --YouTubeheight: 40vh;
        --iframe2width: 600px;
        --iframe2height: 1085px;
        --YouTube2height: 200px;
        --iframe2marginleft: 0px;
        --detailwidth: 98%;
        --YouTubeitemheight: 150px;
        --PickupNum: 2;
    }
}

/* HTML要素のリセット・基本スタイル
   ------------------------------------------ */
main { display: block; }
p, table, blockquote, address, pre, iframe, form, figure, dl { margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--headFontEn), var(--headFontJa), sans-serif; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dt { font-weight: bold; }
dd { margin-left: 0; }
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-top-width: 1px;
    margin: 0;
    clear: both;
    color: inherit;
}
pre, code, kbd, samp { font-family: monospace, monospace; font-size: inherit; }
address { font-style: inherit; }
a { background-color: transparent; text-decoration: none; color: inherit; transition: all 0.3s ease; }
a { color: var(--textColorlink); }
abbr[title] { text-decoration: underline dotted; }
b, strong { font-weight: bolder; }
small { font-size: 80%; }
sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub { bottom: -0.25em; }
sup { top: -0.5em; }
svg, img, embed, object, iframe { vertical-align: bottom; }
button, input, optgroup, select, textarea {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    text-align: inherit;
    text-transform: inherit;
}
[type="checkbox"] { -webkit-appearance: checkbox; appearance: checkbox; }
[type="radio"] { -webkit-appearance: radio; appearance: radio; }
button, [type="button"], [type="reset"], [type="submit"] { cursor: pointer; }
button:disabled, [type="button"]:disabled, [type="reset"]:disabled, [type="submit"]:disabled { cursor: default; }
:-moz-focusring { outline: auto; }
select:disabled { opacity: inherit; }
option { padding: 0; }
fieldset { margin: 0; padding: 0; min-width: 0; }
legend { padding: 0; }
progress { vertical-align: baseline; }
textarea { overflow: auto; }
[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button { height: auto; }
[type="search"] { outline-offset: -2px; }
[type="search"]::-webkit-search-decoration { -webkit-appearance: none; }
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit; }
label[for] { cursor: pointer; }
details { display: block; }
summary { display: list-item; }
[contenteditable]:focus { outline: auto; }
table { border-color: inherit; border-collapse: collapse; }
caption { text-align: left; }
td, th { vertical-align: top; padding: 0; }
th { text-align: left; font-weight: bold; }
p { line-height: 1.8; }
img { max-width: 100%; }
label[for] { cursor: default; }

/* レイアウト・コンポーネント
   ------------------------------------------ */

/* CONCEPT */
.conceptArea { width: 100%; }
.conceptInner { padding: 0 10%; height: auto; position: relative; }
.conceptInner .contentBlock { position: relative; }
.conceptInner .pickupblock { margin: 0 auto; padding: 2vh 4vw; max-width: calc(1300px + 10vw); }
.conceptInner .col-left, .conceptInner .col-right { display: block; letter-spacing: 0.1em; }
.conceptInner .col-left { width: 50%; }
.conceptInner .col-right { width: 50%; }
.conceptInner .colInner { padding: 5% 10% 0 5%; }
.conceptInner .subHead { font-size: 21px; margin-bottom: 20px; }
.conceptInner .subDesc { font-size: 14px; margin-bottom: 40px; }
.btnToAbout { width: 50%; margin: 0 0 0 5%; }
.conceptImg { position: relative; }
.conceptImg img { width: 100%; height: auto; }

@media only screen and (max-width:1024px) { 
    .conceptInner { padding: 0 5%; }
    .conceptInner .col-left, .conceptInner .col-right { width: 100%; position: relative; transform: translateY(0%); }
    .conceptInner .col-right { margin-bottom: 30px; }
    .conceptInner .colInner { padding: 0; }
    .conceptInner .contentBlock { height: auto !important; }
    .conceptInner .col-left { margin-bottom: 20px; }
    .conceptInner .col-right .colInner { padding: 0; }
    .conceptInner .subHead { font-size: 18px; margin: 0 0 15px 0; }
    .conceptInner .subDesc { margin: 0 0 30px 0; }
    .btnToAbout { width: 100%; }
}

/* FEATURE AREA */
.fetureArea {
    width: 95%;
    margin-bottom: 80px!important;

}
.fetureAreaInner .secTitle { padding: 0 10%; }
.fetureAreaInner { margin: 0 auto; position: relative; }
.listFeature ul li { width: 100%; margin: 0 0 60px 0; }
.listFeature ul li:last-child { margin: 0; }

.col-left, .col-right { display: inline-block; vertical-align: middle; }
.col-left { float: left; }
.col-right { float: right; }

.listFeature .col-txt { width: 45%; box-sizing: border-box; padding: 10%; }
.listFeature .col-img { width: 55%; }
.col-img img { width: 100%; }
.listFeature .f-num { font-size: 32px; margin-bottom: 40px; display: inline-block; }
.listFeature .f-num.on { display: inline-block; }
.listFeature .f-num.off { display: none; }
.listFeature .f-num:after { content: " "; width: 100%; height: 1px; display: block; margin-top: 15px; border: 1px solid #000000 !important; }
.listFeature .subHead { font-size: 24px; display: block; margin-bottom: 5px; }
.listFeature .subHeadEn { font-size: 14px; margin-bottom: 25px; display: block; }

@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: 21px; }
    .listFeature .subHeadEn { font-size: 12px; }
    .secArea { margin: 0 auto 50px; }
}

@media only screen and (max-width: 320px) {
    .listFeature .f-num { font-size: 24px; }
    .listFeature .subHead { font-size: 18px; }
}

/* Common Components */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

.secArea { margin: 50px auto 30px; }
.secTitle { display: block; margin-bottom: 4vh; line-height: 1.3em; text-align: left; }
.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; }

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

/* Input Elements */
.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(--bodyFontEn), var(--bodyFontJa), sans-serif !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    background: #fff !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;
}

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: #fff !important;
}

input[type="text"]:focus, input[type="email"]:focus, textarea:focus { outline: 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;
}

.msg_postBox__control__submit { text-align: center; }

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

/* Loading */
.loading {
    display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
    position: fixed; width: 100%; height: 100vh; background: var(--bodyBgColor);
    z-index: 99999; 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); } }

/* Drawer */
.drawer-bg {
    opacity: 0; visibility: hidden; position: fixed; top: 0; left: 0;
    width: 100%; height: 100vh; background: rgba(0, 0, 0, 0.8);
    transition: all 0.3s ease; z-index: 10000;
}
.drawer-bg.open { opacity: 1; visibility: visible; }
.drawer {
    overflow: auto; position: fixed; top: 0; right: 0; padding: 60px 30px 50px 30px;
    width: min(80%, 320px); height: 100vh; background: var(--bodyBgColor);
    z-index: 10001; transform: translateX(100%); transition: all 0.3s ease;
}
.drawer.open { transform: translateX(0); }
.drawer-close { cursor: pointer; position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; }
.drawer-close:before, .drawer-close:after {
    content: ""; position: absolute; top: 20px; left: 10px; width: 20px; height: 1px;
    background: var(--textColorMain); transform: rotate(45deg);
}
.drawer-close:after { transform: rotate(-45deg); }
.drawer-search {
    display: flex; justify-content: space-between; margin: 0 0 20px 0; padding: 5px 5px 5px 15px;
    width: 100%; background: rgba(0, 0, 0, 0.08); border-radius: 20px; transition: all 0.3s ease;
}
.drawer-search input {
    display: block !important; padding: 0 !important; margin: 0 !important;
    width: calc(100% - 34px) !important; height: auto !important; color: inherit !important;
    font-size: 1.2rem !important; line-height: 1 !important; background: none !important; box-shadow: none !important;
}
.drawer-search input::placeholder { color: inherit !important; }
.drawer-search button { width: 32px; height: 32px; text-align: center; }
.drawer-search button svg { margin: 0 auto; width: 18px; fill: var(--textColorMain); }
.drawer-nav > li { margin: 8px 0; }
.drawer-nav li a, .drawer-nav li span { display: block; position: relative; padding: 8px; font-size: 1.3rem; }
.drawer-nav-category ul { margin: 0 0 0 15px; font-size: 1.1rem; }
.drawer-nav-category ul li ul li a:before {
    content: ""; position: absolute; top: 15px; left: -3px; width: 5px; height: 1px; background: var(--textColorMain);
}

/* Header */
.header {
    display: flex; justify-content: space-between; align-items: center; position: relative;
    margin: 0 auto; padding: 40px min(4vw, 50px); z-index: 10;
}
.header h1 { margin: 0 auto 0 0; font-size: 3rem; font-weight: bold; line-height: 1; }
.header h1 img { max-width: 180px; max-height: 35px; }
.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; }
.header-nav > ul > li > a:after, .header-nav-category:after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0%; height: 1px;
    background: var(--textColorMain); 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);
    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 a:hover { opacity: 0.7; }
.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: var(--textColorMain);
}
.header-nav-category > ul > li > ul > li > a { display: block; padding: 3px 0; }
.header-search {
    display: flex; justify-content: space-between; margin: 0 30px; padding: 0 5px 0 15px;
    width: 110px; height: 34px; background: var(--textColorMain10); border-radius: 20px; transition: all 0.3s ease;
}
.header-search.active { width: 150px; }
.header-search input {
    padding: 0 !important; width: calc(100% - 34px) !important; height: auto !important;
    color: inherit !important; font-size: 1.2rem !important; line-height: 1 !important;
    background: none !important; box-shadow: none !important;
}
.header-search input::placeholder { color: inherit !important; }
.header-search button { width: 32px; height: 32px; text-align: center; }
.header-search button svg { margin: 0 auto; width: 18px; fill: var(--textColorMain); }
.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: var(--textColorMain10); }
.base-menu ul li a img { height: 18px; }
.base-menu.white ul li a img { filter: brightness(0) invert(1); }
.drawer-open { display: none; }

@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);
    }
    .drawer-open span:before { top: -6px; left: 0; }
    .drawer-open span:after { top: 6px; left: 0; }
}

/* Main Visual */
.mainvisual-slick {
    opacity: 0; margin: 0 auto; width: 100%; height: 50vmax; max-height: 70vh; transition: all 0.3s ease;
}
.mainvisual-slick.slick-initialized { opacity: 1; }
.mainvisual-slick .slick-list, .mainvisual-slick .slick-track, .mainvisual-slick .slick-slide { width: 100%; height: 100%; }
.mainvisual-slick .slick-slide img { object-fit: cover; width: 100%; height: 100%; }
.slick-animation img { animation: zoom 2s ease 0s both; }

@keyframes zoom { 0% { transform: scale(1.1); } 100% { transform: scale(1); } }

.mainvisual-slick-item { position: relative; }
.mainvisual-slick-item .text {
    position: absolute; bottom: calc(5vw + 10px); left: 10vw; width: 400px; color: #fff; z-index: 1;
}
.mainvisual-slick-item .text .title {
    font-size: 3.5rem; font-weight: bold; font-family: var(--headFontEn), var(--headFontJa), sans-serif;
}
.mainvisual-slick-item .text p { margin: 2vh 0 0 0; }
.mainvisual-slick-item .text .btn { margin: 4vh 0 0 0; width: 150px; }
.mainvisual-slick-item .text .btn a {
    display: block; padding: 12px; color: var(--textColorMain); font-size: 1.2rem;
    font-weight: bold; text-align: center; background: var(--bodyBgColor);
    border-radius: 3px; transition: all 0.3s ease;
}
.mainvisual-slick-item .text .btn a:hover { opacity: 0.7; }
.slick-animation .text .title { animation: textUp 1s ease 1s both; }
.slick-animation .text p { animation: textUp 1s ease 1.3s both; }
.slick-animation .text .btn { animation: textUp 1s ease 1.6s both; }

@keyframes textUp { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }

.mainvisual-slick .slick-dots { display: flex; gap: 10px; position: absolute; bottom: 3vw; left: 10vw; }
.mainvisual-slick .slick-dots li button {
    opacity: 0.3; width: 8px; height: 8px; font-size: 0; background: #fff;
    border-radius: 1px; transition: all 1s ease;
}
.mainvisual-slick .slick-dots li.slick-active button { opacity: 0.8; transform: scale(1.2); }

@media (max-width: 768px) {
    .mainvisual-slick { height: 40vmax; }
    .mainvisual-slick-item .text { bottom: auto; left: 4vw; width: 92vw; bottom: 4vw; }
    .mainvisual-slick-item .text .title { font-size: 2.4rem; }
    .mainvisual-slick-item .text p { font-size: 1.2rem; }
    .mainvisual-slick-item .text .btn { width: 120px; }
    .mainvisual-slick-item .text .btn a { font-size: 1.2rem; }
    .mainvisual-slick .slick-dots { display: none !important; }
}

/* Footer & 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: #fff; font-size: 1.2rem; font-weight: bold; font-family: var(--bodyFontEn), var(--bodyFontJa), sans-serif;
    text-align: center; background: var(--btnBgColor); border-radius: 3px; transition: all 0.3s ease;
}
.x_mailMagazineSubscribe_field button:hover { opacity: 0.7; }
.x_mailMagazineSubscribe_confirm { font-weight: bold; }

.footer-wrap { background: var(--footerBgColor); }
.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 {
    display: flex; justify-content: space-between; align-items: center;
    margin: 0 auto; padding: 4vh 4vw 10vh 4vw; max-width: calc(1200px + 8vw); text-align: center;
}
.footer-logo { margin: 0 auto 15px auto; text-align: left; }
.footer-logo img { max-width: 120px; max-height: 32px; }
.footer-nav { display: flex; word-break: normal; }
.footer-nav li { margin: 0 10px 0 0; }
.footer-nav li a { color: var(--footerTextColor); font-size: 1rem; }
.footer-sns { display: flex; justify-content: flex-end; margin: 0 0 15px 0; }
.footer-sns > div { margin: 0 0 0 5px; }
.footer-sns > div > a { display: flex; justify-content: center; align-items: center; width: 32px; height: 32px; }
.footer-sns > div > a:hover { opacity: 0.7; }
.footer-sns > div > a img { max-width: 22px; max-height: 22px; }
.footer-sns > div.twitter > a img { padding: 3px; background: #fff; border-radius: 4px; }
.footer-sns #i18 { display: flex; }
.footer-sns #i18 > div { margin: 0 0 0 10px; }
.footer-sns #i18 > div select {
    padding: 0 22px 0 6px !important; min-width: auto !important; height: 32px !important;
    font-size: 1.2rem !important; line-height: 32px !important;
}
.copyright { color: var(--footerTextColor); font-size: 1rem; text-align: right; }

@media (max-width: 768px) {
    .mailmagazine { display: block; text-align: center; }
    .mailmagazine h2 { margin: 0 0 5px 0; font-size: 2rem; font-weight: bold; }
    .mailmagazine-text .text { margin: 0 0 20px 0; font-size: 1rem; }
    .mailmagazine-form { width: 100%; }
    .mailmagazine-form input { text-align: left; }
    .footer { display: block; text-align: center; }
    .footer-logo { text-align: center; }
    .footer-logo img { max-width: 80px; }
    .footer-nav { display: block; justify-content: center; margin: 0 0 4vh 0; }
    .footer-nav li { margin: 0 5px; }
    .footer-sns { flex-wrap: wrap; justify-content: center; }
    .footer-sns > div { margin: 0 3px; }
    .footer-sns .apps-i18n { margin: 10px 0; width: 100%; }
    .footer-sns #i18 { justify-content: center; }
    .footer-sns #i18 > div { margin: 0 5px; }
    .copyright { text-align: center; }
}

/* Index & Category */
.category-item-list-wrap {
    display: none; position: relative; margin: 0 auto; padding: 7vh 4vw; max-width: calc(1200px + 8vw);
}
.category-item-list-wrap h2 {
    margin: 0 0 4vh 0; color: var(--textColorHead); font-size: 3.2rem; font-weight: bold;
}
.category-item-list { margin: 0 -20px; }
.category-item-list .category-item-fail { margin: 0 20px; }
.category-item-list .slick-slide { padding: 0 20px; }
.category-item-list .item-list-item .label_image { display: none; }
.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: #fff 2px solid; border-left: #fff 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; }
hr.category-item-list-sep { border: none; border-bottom: var(--textColorMain20) 1px solid; }

@media (max-width: 768px) {
    .category-item-list-wrap h2 { font-size: 2.8rem; }
    .category-item-list { margin: 0 -5px; }
    .category-item-list:before, .category-item-list:after { width: 5px; }
    .category-item-list .category-item-fail { margin: 0 5px; }
    .category-item-list .slick-slide { padding: 0 5px; }
    .category-item-list .slick-prev, .category-item-list .slick-next { right: 5px; }
    .category-item-list .slick-prev { right: 40px; }
}

.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; }
.information ul li .information-text a:hover { opacity: 0.7; }

@media (max-width: 768px) {
    .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%; }
}

.concept-wrap { padding: 4vh 4vw; background: var(--conceptBgImage) no-repeat center center / cover; }
.concept { position: relative; margin: 0 auto; padding: 40px; max-width: 800px; text-align: center; }
.concept:before {
    content: ""; opacity: 0.5; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: var(--bodyBgColor);
}
.concept h2 { position: relative; margin: 0 0 4vh 0; font-size: 3.2rem; font-weight: bold; }
.concept p { position: relative; font-size: 1.2rem; }
.concept-more { position: relative; margin: 2vh auto 0 auto; }
.concept-more a { position: relative; padding: 8px 0; font-size: 1.2rem; font-weight: bold; }
.concept-more a:after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0%; height: 1px;
    background: var(--textColorMain); transition: all 0.3s ease;
}
.concept-more a:hover:after { width: 100%; }

@media (max-width: 768px) {
    .concept h2 { font-size: 2.8rem; }
    .concept-wrap { padding: 4vw; }
}

/* Blog & Item List */
.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 { margin: 0 0 20px 0; }
.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, .item-list-more span {
    cursor: pointer; display: block; margin: 0 auto; padding: 20px; width: 240px;
    color: #fff; font-size: 1.2rem; font-weight: bold; text-align: center;
    background: var(--btnBgColor); border-radius: 3px; transition: all 0.3s ease;
}
.newblog-more a:hover, .item-list-more span:hover { opacity: 0.7; }

@media (max-width: 768px) {
    .newblog h2 { font-size: 2.6rem; }
    .newblog-list { grid-template-columns: repeat(2, 1fr); gap: 4vh 10px; }
    .newblog-list-item .image { margin: 0 0 10px 0; }
}

.not-shop-pablic { padding: 200px 0; text-align: center; }
.home .item-list-wrap { margin: 0 auto; padding: 7vh 4vw; max-width: calc(1300px + 10vw); }
.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: #fff; 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; font-style: normal;
    border: var(--textColorMain) 1px solid;
}
.item-list-more { display: none; justify-content: center; margin: 40px 0 0 0; }
.item-list-more.show { display: flex; }

.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 { font-size: 2.8rem; }
    .not-shop-pablic { padding: 50px 0; text-align: center; }
    .item-list { grid-template-columns: repeat(2, 1fr); gap: 4vh 10px; }
    .item-list-item .image { margin: 0 0 10px 0; }
}

/* 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%; }
.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; display: block !important; float: none !important;
    width: 100% !important; aspect-ratio: 1 / 1; transition: all 0.3s ease;
}
.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: #fff; font-size: 1rem;
    background: var(--noticeColor); border-radius: 3px;
}
.item-detail .price .current { color: var(--noticeColor); font-size: 3rem; }
.item-detail .price .current span { opacity: 0.7; margin: 0 0 0 5px; font-size: 1.2rem; }
.item-detail .soldout, .item-detail .coming-soon { color: var(--noticeColor); }

#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;
}
#itemAttention .communityLabel__title, #itemAttention .lottery__label, #itemAttention .takeout__label {
    font-size: 1.4rem !important;
}
#itemAttention .communityLabel .communityLabel__note { margin: 0; font-size: 1.2rem !important; }
.item-detail .item-description { font-size: 1.4rem; }
.item-detail #purchase_form {
    margin: 4vh 0; border-style: solid 1px #f0f0f0; background-color: #f7f7f7; padding: 20px 10px 20px;
}
.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; }
.ageVerificationWarning {
    opacity: 0.7; margin: 20px 0 !important; color: var(--textColorMain) !important;
    font-size: 3.1rem !important; line-height: 1.3 !important;
}
.purchaseButton button, .purchaseButton a {
    display: block; margin: 20px 0 0 0; padding: 20px; width: 100%; color: #fff;
    font-size: 1.2rem; font-weight: bold; text-align: center; background: var(--btnBgColor);
    border-radius: 3px; transition: all 0.3s ease;
}
.purchaseButton button:hover, .purchaseButton a:hover { opacity: 0.7; }
.purchaseButton button:disabled { opacity: 0.5; }
#communityPurchase .communitySignin {
    margin: 4vh 0 !important; padding: 15px !important; border: var(--textColorMain20) 1px solid;
    border-radius: 3px !important;
}
.item-sns-wrap { display: flex; justify-content: space-between; align-items: center; }
.item-sns { display: flex; justify-content: center; align-items: center; gap: 10px; font-size: 1.2rem; }
.item-sns .title { margin: 0 18px 0 0; }
.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: #fff; border-radius: 4px; }
#reportBtn { font-size: 1.2rem; }
#appsItemDetailCustom { margin: 8vh auto 0; width: var(--detailwidth); }
#appsItemDetailCustom a, .item-description a { --textColorlink: blue; }
#appsItemDetailCustomTag p, #appsItemDetailCustomTag > div, #appsItemDetailCustomTag > img { margin: 0 0 20px 0; }
.appsItemDetailCustomTag_heading { font-size: 1.6rem; font-weight: bold; }
.appsItemDetailCustomTag_image { width: 100%; }
#appsItemDetailCustomTag iframe { width: 100%; height: auto; aspect-ratio: 16 / 9; }

.baseCarouselItems .slick-slide { position: relative; }
.baseCarouselItems .slick-slide img { width: 100%; }
.baseCarouselItems .slick-slide .baseCarouselCaption {
    position: absolute; bottom: 0; left: 0; padding: 10px; color: #fff;
    width: 100%; background: rgba(0, 0, 0, 0.8);
}
.baseCarouselItems .slick-slide .baseCarouselCaption:empty { background: none; }
.baseCarouselItems { opacity: 0; transition: all 0.3s ease; }
.baseCarouselItems.slick-initialized { opacity: 1; }
.baseCarouselCaption { opacity: 0.7; margin: 5px 0 0 0 !important; font-size: 1.2rem; text-align: center; }
.baseCarouselItems .slick-prev, .baseCarouselItems .slick-next {
    display: flex; justify-content: center; align-items: center; position: absolute;
    top: 0; right: 33px; width: 32px; height: 32px; color: #fff; font-size: 0;
    text-align: center; background: rgba(0, 0, 0, 0.5); z-index: 1;
}
.baseCarouselItems .slick-next { right: 0; }
.baseCarouselItems .slick-prev:before, .baseCarouselItems .slick-next:before {
    content: ""; margin: 0 -2px 0 0; width: 6px; height: 6px;
    border-top: #fff 2px solid; border-left: #fff 2px solid; transform: rotate(-45deg);
}
.baseCarouselItems .slick-next:before { margin: 0 0 0 -2px; transform: rotate(135deg); }
.baseCarouselItems .slick-prev:hover, .baseCarouselItems .slick-next:hover { opacity: 0.7; }

.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 { margin: 0 0 20px 0; }
.related-items ul li .image a img {
    aspect-ratio: var(--itemListItemAspect); object-fit: cover; width: 100%; height: 100%; transition: all 0.3s ease;
}
.related-items ul li .image a:hover img { opacity: 0.7; }
.related-items ul li .price { margin: 5px 0 0 0; }
.review01__title { margin: 50px 0 0 0; }

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

/* Common */
.breadcrumb { display: flex; padding: 10px 0; border-bottom: var(--textColorMain20) 1px solid; }
.breadcrumb li { opacity: 0.7; font-size: 1rem; }
.breadcrumb li:not(:last-child):after { content: ">"; margin: 0 10px; }
.page-title { padding: 7vh 0 6vh 0; color: var(--textColorHead); font-size: 4rem; font-weight: bold; text-align: center; }
.page-title-category ul { display: flex; flex-wrap: wrap; justify-content: center; margin: -4vh 0 6vh 0; }
.page-title-category ul li { margin: 0 10px; }
.page-title-category ul li a { display: block; position: relative; padding: 8px 0; font-size: 1.2rem; }
.page-title-category ul li a:after {
    content: ""; position: absolute; left: 0; bottom: 0; width: 0%; height: 1px;
    background: var(--textColorMain); transition: all 0.3s ease;
}
.page-title-category ul li a:hover:after { width: 100%; }

@media (max-width: 768px) {
    .page-title { font-size: 3rem; }
}

/* About */
.about-image { margin: 0 0 4vh 0; }
.about-sns { display: flex; margin: 4vh 0 0 0; }
.about-sns li { margin: 0 10px 0 0; }
.about-h3 { margin: 7vh 0 4vh 0; font-size: 3.2rem; font-weight: bold; }
.about-googlemap { margin: 7vh 0 0 0; }
.about-googlemap iframe { width: 100% !important; }

@media (max-width: 768px) {
    .about-h3 { font-size: 2.8rem; }
}

/* Blog */
.blogListMain, .blogDetail { margin: 0 auto; max-width: 800px; }
.blog_inner { margin: 0 0 7vh 0; padding: 0 !important; border: none !important; }
.blog_inner:last-child { margin: 0 !important; }
.main #about.blogListMain h2, .main #about.blogDetail .blog_title h2 {
    margin: 0 0 10px 0 !important; font-size: 3.2rem; line-height: 1.3 !important;
}
.main #about.blogListMain .blog_publish, .main #about.blogDetail .blog_publish {
    opacity: 0.7; margin: 0 0 4vh 0 !important; font-size: 1.2rem !important;
}
.main #about.blogListMain .blog_publish .publish_date, #about .publish_date { font-size: inherit !important; }
.blog_head_image { margin: 0 0 20px 0; }
.blog_head_image.hide { display: none; }
.blog_head_image img { width: 100%; transition: all 0.3s ease; }
.blog_head_image a:hover img { opacity: 0.7; }
.blog_inner .blog_contents { overflow: auto !important; height: auto !important; }
.blog_inner .blog_contents .read_more {
    position: relative !important; bottom: auto !important; margin: 4vh 0 0 0 !important;
    padding: 0 !important; background: none !important;
}
.read_more a {
    cursor: pointer; display: block; margin: 0 auto; padding: 20px; width: 240px;
    color: #fff !important; font-size: 1.2rem; font-weight: bold; text-align: center;
    background: var(--btnBgColor); border-radius: 3px; transition: all 0.3s ease;
}
.social { margin: 7vh 0 0 0 !important; }
.blog_body > p, .blog_body > div { margin: 20px 0; }
.blog_body h3 { margin: 40px 0 20px 0; }
.blog_body .youtube, .blog_body .vimeo { width: 100%; height: 400px; }
.paginate-wrp { margin: 7vh 0 0 0 !important; }
.paginate-wrp .paginate { justify-content: center; }
.paginate-wrp .paginate li, .paginate-wrp .paginate li.current {
    margin: 0 2px; font-weight: bold; background: none; border: none;
}
.paginate-wrp .paginate li a, .paginate-wrp .paginate li a:hover, .paginate-wrp .paginate li.current a {
    display: block; padding: 8px 10px; color: var(--textColorMain); font-size: 1.2rem;
    line-height: 1; background: none; border: var(--textColorMain) 1px solid; border-radius: 3px;
}
.paginate-wrp .paginate li.current a, .paginate-wrp .paginate li.current a:hover {
    color: var(--bodyBgColor); background: var(--textColorMain);
}
.paginate-wrp .paginate li a:hover { opacity: 0.7; }

@media (max-width: 768px) {
    .main #about.blogListMain h2, .main #about.blogDetail .blog_title h2 { font-size: 2.8rem; }
    .blog_body .youtube, .blog_body .vimeo { height: 240px; }
}

/* Privacy, Law, Contact */
#privacy, #law, .inquirySection { margin: 0 auto; max-width: 800px; }
#privacy h2, #law h2, .inquirySection h1 {
    padding: 7vh 0 5vh 0; font-size: 4rem; font-weight: bold; text-align: center;
}
#law h3 { margin: 5vh 0 2vh 0; font-size: 1.8rem; font-weight: bold; }
#privacy p.privacy_intro { margin: 0 0 5vh 0; }
#privacy dl dt, #law dl dt { margin: 0 0 2vh 0; font-size: 1.8rem; }
#privacy dl dd, #law dl dd { margin: 0 0 5vh 0; line-height: 1.8; }
.inquirySection h1 { padding: 7vh 0 1vh 0; text-transform: uppercase; }
.inquirySection p { margin: 0 0 7vh 0; text-align: center; }
.inquirySection dl dt { margin: 5vh 0 2vh 0; }
.inquirySection dl dt:first-child { margin: 0 0 2vh 0; }
.inquirySection dl dt span { margin: 0 0 0 5px; color: var(--noticeColor); font-size: 1.2rem; }
.inquirySection dl dd.error { margin: 5px 0 0 0; color: var(--noticeColor); font-size: 1.2rem; }
.inquirySection dl dd input { padding: 12px !important; }
.inquirySection dl dd textarea { padding: 12px !important; height: 300px; }
.inquirySection input[type="submit"] {
    cursor: pointer; display: block; margin: 7vh auto 0 auto; padding: 20px; width: 240px;
    color: #fff; font-size: 1.2rem; font-weight: bold; text-align: center;
    letter-spacing: inherit !important; background: var(--btnBgColor);
    border-radius: 3px; transition: all 0.3s ease;
}
.inquirySection input[type="submit"]:hover { opacity: 0.7; }
#inquiryCompleteSection { text-align: center; }
#inquiryCompleteSection a { text-decoration: underline; }

@media (max-width: 768px) {
    #privacy h2, #law h2, .inquirySection h1 { font-size: 3rem; }
}

/* Membership */
#membership { --checked-color: var(--btnBgColor) !important; padding: 0 !important; }
.membership .guide .img-wrapper {
    margin: 0 calc(50% - var(--vw) * 50) !important; width: calc(var(--vw) * 100) !important; height: 500px !important;
}
.membership .guide .img-wrapper .img { height: 100% !important; }
.membership .content { padding: 0; max-width: 100%; }
.membership .guide .content .heading, .membership .login .heading {
    margin: 0 !important; padding: 7vh 0; color: var(--textColorHead);
    font-size: 4rem !important; font-weight: bold !important; text-align: center; line-height: 1.3 !important;
}
.membership .guide .content .description { margin: 0 !important; }
.membership .guide .content .description > p {
    font-size: 1.4rem !important; font-weight: normal !important;
    line-height: 1.8 !important; text-align: center;
}
.membership .guide .register {
    margin: 7vh 0 0 0 !important; padding: 5vw !important; background: var(--textColorMain10) !important;
}
.membership .guide .register .description-link, .membership .guide .register .login-link, .membership .login .register-link {
    color: var(--textColorMain) !important;
}
.membership .guide .register .mail-magazine .mail-magazine-wrapper .label { color: var(--textColorMain) !important; }
.membership .guide .register .link, .membership .login .link { color: #fff !important; background: var(--btnBgColor) !important; }
.membership .flash-message { margin: 0 0 30px 0 !important; }
.membership .mypage .logout { color: var(--textColorMain) !important; background: none !important; }
.membership .mypage .card {
    background: var(--textColorMain10) !important; border: var(--textColorMain20) 1px solid !important;
}
.membership .mypage .content .bar { background: var(--textColorMain20) !important; }
.membership .mypage .content .definition-description .mail-address, .membership .mypage .content .definition-description .point-amount {
    background: var(--textColorMain10) !important;
}
.membership .mypage .content .definition-description .edit {
    color: var(--textColorMain) !important; background: none !important; border: var(--textColorMain) 2px solid !important;
}
.membership .mypage .leave-wrapper .leave { color: var(--textColorMain) !important; background: none !important; }
.membership .mypage .leave-modal-wrapper .leave-overlay { z-index: 9999 !important; }
.membership .mypage .leave-modal-wrapper .leave-modal { z-index: 10000 !important; }

@media (max-width: 768px) {
    .membership .guide .img-wrapper { height: 200px !important; }
    .membership .guide .img-wrapper .img { object-fit: cover !important; }
    .membership .mypage .img-wrapper .img { max-height: 100% !important; }
    .membership .mypage .card { max-width: 100% !important; }
    .membership .guide .content .heading, .membership .login .heading { font-size: 3rem !important; }
}

/* Community */
.communityMain { padding: 0 !important; width: 100% !important; }
.communityMain h1.communityTitle { padding: 7vh 0 5vh 0; color: var(--textColorHead); font-size: 4rem; font-weight: bold; }
.communityMain .communityContent {
    margin: 0 !important; padding: 4vh !important; border: var(--textColorMain20) 1px solid !important;
}
.communityMain .communityNav { margin: 0 0 0 40px !important; width: 380px !important; }
.communityMain .communityTerm a { color: var(--textColorMain) !important; }
.communityMain .communityOverview { width: calc(100% - 420px) !important; }
.communityMain .communitySignin { border: var(--textColorMain20) 1px solid !important; }
.communityMain #limitedItem, .communityMain #limitedUrl { width: 100% !important; }
.communityMain .communityItemHeader, .communityMain .communityUrlHeader {
    margin: 7vh 0 4vh 0 !important; color: var(--textColorHead) !important;
    font-size: 3.2rem !important; font-weight: bold !important;
    font-family: var(--headFontEn), var(--headFontJa), sans-serif !important;
}
.communityMain .communityItems {
    display: grid !important; grid-template-columns: repeat(var(--itemListItemNum), 1fr); gap: 40px;
}
.communityMain .communityItems .communityItem { margin: 0 !important; }
.communityMain .communityItems .communityItem .communityImageContainer {
    display: block !important; margin: 0 0 20px 0; width: 100% !important; height: auto !important;
}
.communityMain .communityItems .communityItem .communityImageContainer img {
    aspect-ratio: var(--itemListItemAspect); object-fit: cover; width: 100%; height: 100%; transition: all 0.3s ease;
}
.communityMain .communityItems .communityItem .communityImageContainer a:hover img { opacity: 0.7; }
.communityMain .communityItems .communityItem .communityLabelImage {
    top: -8px !important; left: -8px !important; width: 50px !important; height: auto !important;
}
.communityMain .communityItems .communityItem .communityItemTitle { margin: 0 !important; width: auto !important; }
.communityMain .communityItems .communityItem .communityItemPrice {
    margin: 5px 0 0 0 !important; font-size: 1.4rem !important;
}
.communityMain .communityItems .communityItem .communityItemPrice.discount { color: var(--noticeColor) !important; }
.communityMain .communityItems .communityItem .communityItemPrice.discount .discount {
    margin: 0 5px 0 0 !important; padding: 3px 5px !important; color: #fff !important;
    font-size: 1rem !important; font-weight: normal !important;
    background: var(--noticeColor) !important; border-radius: 3px !important;
}
.communityMain .communityItems .communityItem .communityItemLabel, 
.communityMain .communityItems .communityItem .communityItemLabelBlock {
    display: inline-block !important; margin: 5px 0 0 0 !important; padding: 3px 5px !important;
    color: var(--textColorMain) !important; font-size: 1rem !important; font-weight: normal !important;
    background: inherit !important; border: var(--textColorMain) 1px solid !important; border-radius: 0 !important;
}
.communityMain .communityItems .communityItem .communityItemMetaSub { margin: 0 !important; }
.communityMain #productsLimitedUrl { gap: 40px; }
.communityMain #productsLimitedUrl .urlBox {
    margin: 0 !important; width: calc((100% / 3) -(80px / 3)) !important; border: none !important;
    background: var(--textColorMain10) !important;
}

@media (max-width: 768px) {
    .communityMain .communityContent { display: block !important; }
    .communityMain h1.communityTitle { font-size: 3rem !important; }
    .communityMain .communityNav { margin: 0 !important; width: 100% !important; }
    .communityMain .communityItemHeader, .communityMain .communityUrlHeader { font-size: 2.8rem !important; }
    .communityMain .communityOverview { width: 100% !important; }
    .communityMain .communityItems { grid-template-columns: repeat(2, 1fr); gap: 4vh 10px; }
    .communityMain #productsLimitedUrl { grid-template-columns: repeat(1, 1fr); gap: 4vh 0; }
    .communityMain #productsLimitedUrl .urlBox { width: 100% !important; }
}

/* カスタム・追加コンポーネント
   ------------------------------------------ */
.btnt { text-align: center; position: relative; overflow: hidden; }
.btnt a {
    color: #222222 !important; border: 1px solid #000000 !important; background: #ffffff !important;
    padding: 15px 55px; cursor: pointer; font-size: 12px; font-weight: 400;
    transition: .3s cubic-bezier(0.5, 1, 0.89, 1); z-index: 2; position: relative;
    width: 100%; height: 100%; opacity: 1; text-decoration: none; display: block;
}
.btnt a:hover {
    background: #999; color: #eee; transform: scale(1.1); opacity: 0.7;
}

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

/* YouTube Modules */
.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; }

.mbYTP_wrapper:after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.05);
    background-image: radial-gradient(rgba(0, 0, 0, 0.1) 30%, transparent 31%), radial-gradient(rgba(0, 0, 0, 0.1) 30%, transparent 31%);
    background-size: 4px 4px; background-position: 0 0, 2px 2px;
}
.youtube.viewed .youtube-bg-movie { opacity: 1; transform: translateY(0); }
.youtube-bg-movie { opacity: 0; transform: translateY(20px); transition: all 1s ease; }

.youtube .text, .YouTubeSecond .text, .YouTubeitemdetail .text {
    padding: 0 var(--padding); width: 100%; max-width: var(--maxWidth);
    color: #fff; text-align: center; z-index: 1;
}
.youtube.viewed .text p, .youtube.viewed .text .btn-image { opacity: 1; transform: translateY(0); }
.youtube .text p, .YouTubeSecond .text p { line-height: 2.0; white-space: pre-line; }

/* 統合されたiframe記述 */
#iframe_YTP_1, #iframe_YTP_2, #iframe_YTP_3,
#iframe_YTP_4, #iframe_YTP_5 {
    position: absolute; z-index: 0; top: 0px; left: 0px; overflow: hidden; opacity: 1;
    -webkit-user-select: none; margin-top: -402px; max-width: initial;
}
/* グループ1 */
#iframe_YTP_1, #iframe_YTP_2, #iframe_YTP_3 {
    width: var(--iframewidth); height: var(--iframeheight); margin-left: var(--iframemarginleft);
}
/* グループ2 */
#iframe_YTP_4, #iframe_YTP_5 {
    width: var(--iframe2width); height: var(--iframe2height); margin-left: var(--iframe2marginleft);
}

.inner-col { position: relative; display: block; }
.badge {
    color: #ffffff!important; position: absolute; display: block; font-size: 14px;
    width: 80px; height: 80px; border-radius: 40px; text-align: center;
    top: -20px; right: -20px; font-style: italic; line-height: 80px;
    z-index: 110; letter-spacing: 0.06em !important;
}
.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) {
    .secTitle { margin-bottom: 10px; }
    .badge { width: 50px; height: 50px; border-radius: 25px; right: -8px; line-height: 50px; }
    .btnToAbout { margin: 0 0 0 0; }
}

.conceptitem-list .image a img { aspect-ratio: 1/1; }
.conceptitem-list .item-list { grid-template-columns: repeat(var(--PickupNum), 1fr); }
.header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 5px 40px;
    transition: all 0.3s ease; background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px); display: flex; justify-content: space-between; align-items: center;
}
.mainvisual { margin-top: 70px; }

/* -----------------------------------------
   1. フォントの変更
   見出しを「明朝体」にして、高級感と伝統を表現
   ----------------------------------------- */
h1, h2, h3, .item_title, .shop_title {
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGSMinchoE", serif !important;
    letter-spacing: 0.05em; /* 文字間を少し広げてゆったり見せる */
}

/* -----------------------------------------
   2. 購入ボタン（カートに入れる）の強化
   一番重要なボタンを目立たせ、クリックしたくなる動きをつける
   ----------------------------------------- */
/* 多くのBASEテーマで使われるボタンクラスを指定 */
button, input[type="submit"], .add_cart_btn, .purchaseButton{
    box-shadow: 0 4px 6px rgba(0,0,0,0.15); /* 影をつけて立体的に */
    transition: all 0.3s ease; /* ふんわり変化させる */
}

/* カーソルを合わせた時の動き */
button:hover, input[type="submit"]:hover, .add_cart_btn:hover, .purchaseButton:hover {
    background-color: #A0522D !important; /* 少し明るい茶色へ */
    transform: translateY(2px); /* ボタンが少し浮き上がる */
    box-shadow: 0 6px 10px rgba(0,0,0,0.2); /* 影を濃くする */
    opacity: 1 !important;
}

/* -----------------------------------------
   3. 商品画像の演出
   商品が浮き出て見えるようにし、質感を際立たせる
   ----------------------------------------- */


/* カーソルを合わせた時に少しズーム */
.item_link:hover .item_img, 
.item_link:hover .item_photo,
a:hover img {
    transform: scale(1.03); /* 1.03倍に拡大 */
    filter: brightness(1.1); /* 少しだけ明るくして革の艶を強調 */
}

/* -----------------------------------------
   4. 見出しのデザイン
   ただの文字ではなく、線を入れて「区切り」を明確にする
   ----------------------------------------- */
.section_title{
    position: relative;
    padding-bottom: 10px;
    text-align: center; /* 中央寄せ */
}

/* 見出しの下にゴールド（真鍮色）の線を引く */
.section_title::after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px; /* 線の長さ */
    height: 3px; /* 線の太さ */
    background-color: #C5A059; /* 真鍮（ブラス）のようなゴールド色 */
}



/* -----------------------------------------
   5. About / 説明文の読みやすさ向上
   ----------------------------------------- */
p, .item_description, .about_content {
    line-height: 1.8 !important; /* 行間を広げて読みやすく */
    font-size: 15px; /* スマホでも読みやすいサイズ確保 */
}

/* --- 共通変数 (サイト全体のトーンに合わせて調整してください) --- */
:root {
  --color-stone-50: #fafaf9;
  --color-stone-100: #f5f5f4;
  --color-stone-300: #d6d3d1;
  --color-stone-400: #a8a29e;
  --color-stone-500: #78716c;
  --color-stone-700: #44403c;
  --color-stone-900: #1c1917;
  --color-white: #ffffff;
  --color-amber-200: #fde68a;
  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;
  
  --font-serif: "Times New Roman", Times, serif; /* サイトのフォントに合わせて変更 */
  --font-sans: "Helvetica Neue", Arial, sans-serif;
  
  --spacing-section: 6rem; /* py-24 相当 */
}

.section-heading {
  margin-bottom: 3rem;
  text-align: center;
}

.section-heading h2 {
  font-family: var(--font-serif);
  font-size: 2.25rem; /* 36px */
  color: var(--color-stone-900);
  margin-bottom: 0.75rem;
}

.section-heading .subtitle {
  color: var(--color-stone-500);
  font-size: 0.75rem;
  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;
}

/* --- 1. Aging Section (革は、育てる愉しみ) --- */
.aging-section {
    padding: 10rem 15rem;
    background-color: var(--color-stone-900);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}
@media (max-width: 768px) {
  .aging-section {
    padding: 2rem;
  }
}


/* 背景テクスチャ */
.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](https://www.transparenttextures.com/patterns/leather.png)');
  pointer-events: none;
}

.aging-content {
  position: relative; /* z-index用 */
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .aging-content {
    grid-template-columns: 1fr 1fr;
  }
}

.aging-text h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .aging-text h2 {
    font-size: 3rem;
  }
}

.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; /* 30px */
  font-family: var(--font-serif);
  margin: 0;
}

.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); /* Amber border */
}

.aging-img-card.offset .caption {
  color: var(--color-amber-500);
  font-weight: bold;
}

/* --- 2. User Voice Section (お客様の声) --- */
.voice-section {
    padding: 5rem 15rem;
    background-color: var(--color-white);

}
@media (max-width: 768px) {
  .voice-section {
    padding: 3rem;
  }
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .voice-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.star-icon {
  width: 16px;
  height: 16px;
  fill: currentColor; /* SVGの色を親に合わせる */
}

.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;
}
/* --- Footer CSS --- */

/* 変数定義（もし未定義の場合） */
:root {
  --color-stone-800: #292524;
  --color-stone-900: #1c1917;
  --color-stone-400: #a8a29e;
  --color-white: #ffffff;
  --color-amber-500: #f59e0b;
  --color-amber-600: #d97706;
  --font-serif: "Times New Roman", Times, serif;
}

.site-footer {
  background-color: var(--color-stone-900);
  color: var(--color-stone-400);
  padding: 4rem 0; /* py-16 */
  border-top: 1px solid var(--color-stone-800);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr; /* モバイルは1列 */
  gap: 3rem; /* gap-12 */
}

@media (min-width: 768px) {
  .footer-grid {
    /* 修正: Newsletterを削除したため3カラムに変更 */
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Brand Section (左端) --- */
.footer-brand h2 {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 1.5rem; /* text-2xl */
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em; /* tracking-widest */
  font-weight: bold;
}

.footer-brand p {
  font-size: 1.2rem; /* text-sm */
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--color-stone-400);
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--color-white);
}

/* --- Link Columns (Shop, Support) --- */
.footer-column h3 {
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.4rem; /* text-sm */
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--color-stone-400);
  text-decoration: none;
  font-size: 1.2rem; /* text-sm */
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-amber-500);
}

/* --- Copyright Section (最下部) --- */
.footer-copyright {
  margin-top: 4rem; /* mt-16 */
  padding-top: 2rem; /* pt-8 */
  border-top: 1px solid var(--color-stone-800);
  text-align: center;
  font-size: 1rem; /* text-xs */
}
.social-links > div { margin: 0 0 0 5px; }
.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;
}
.footer-brand ,.footer-column{
margin: 0 8vh;
}
