@charset "UTF-8";

/*--------------------------------------
Theme Name: wagyukatana
Rebuilt for Cloudflare Pages + AIO
--------------------------------------*/

/* ===== Reset ===== */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6,
pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure {
    margin: 0; padding: 0; box-sizing: border-box;
}
img { line-height: 0; }
figure { line-height: 1; }
table { border-collapse: collapse; border-spacing: 0; }
fieldset, img { border: 0; }
address, caption, cite, code, dfn, em, strong, th, var { font-style: normal; }
li { list-style: none; }
caption, th { text-align: left; }
h1, h2, h3, h4, h5, h6 { font-size: 100%; font-weight: normal; }
q:before, q:after { content: ""; }
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
input, textarea, select { font-family: inherit; font-size: inherit; font-weight: inherit; }
legend { color: #000; }
* { box-sizing: border-box; }

/* ===== Cinzel font ===== */
@font-face {
    font-family: "Cinzel";
    font-style: normal; font-weight: 400;
    src: url(https://fonts.gstatic.com/s/cinzel/v7/8vIJ7ww63mVu7gt79mT7PkRXMw.woff2) format("woff2");
}

/* ===== Body ===== */
body {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    position: relative;
    font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-feature-settings: "palt";
    color: #000;
    background: #fff;
}

@media screen and (min-width: 768px) {
    body { min-width: 1250px; }
    html { font-size: 13px; }
}
@media screen and (max-width: 767px) {
    body { min-width: 100%; }
    html { font-size: 13px; scroll-padding-top: 72px; }
}

/* ===== Typography ===== */
p, a, li, dt, dd, th, td, figcaption {
    line-height: 2;
    letter-spacing: 0.05em;
    color: #000;
}
@media screen and (min-width: 768px) {
    p, a, li, dt, dd, th, td, figcaption { font-size: 16px; }
}
@media screen and (max-width: 767px) {
    p, a, li, dt, dd, th, td, figcaption { font-size: 14px; line-height: 1.6; }
}

img { max-width: 100%; width: auto; height: auto; vertical-align: bottom; }
.w100 { width: 100%; }

a { text-decoration: none; outline: none; color: inherit; transition: 0.4s; }
a:hover { opacity: 0.5; transition: 0.2s; }

/* ===== Responsive visibility ===== */
@media screen and (min-width: 768px) {
    .pc-non, .pc_non { display: none !important; }
}
@media screen and (max-width: 767px) {
    .sp-non { display: none !important; }
}

/* ===== Fade-in animation ===== */
.fadein {
    opacity: 0;
    transition: 0.8s;
    transform: translate(0, 75px);
}
.fadein.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ===== Section Title ===== */
.sec_ttl { text-align: center; }
@media screen and (min-width: 768px) {
    .sec_ttl { padding-bottom: 45px; }
    .sec_ttl > h1 { margin-top: 30px; }
}
@media screen and (max-width: 767px) {
    .sec_ttl { padding-bottom: 30px; }
    .sec_ttl > h1 { margin-top: 20px; }
}
.sec_ttl > * {
    color: #000; font-weight: bold; letter-spacing: 0.05em;
    font-family: "dnp-shuei-nmincho-std", "Noto Serif JP", sans-serif;
}
.sec_ttl > * > span { display: block; margin-bottom: 10px; line-height: 1; }
@media screen and (min-width: 768px) {
    .sec_ttl > * { font-size: 36px; }
    .sec_ttl > * > span { font-size: 20px; color: #baa994; }
}
@media screen and (max-width: 767px) {
    .sec_ttl > * { font-size: 24px; }
    .sec_ttl > * > span { font-size: 13px; color: #baa994; }
}

/* ===== Buttons ===== */
.readmore, .btn_y {
    display: inline-block;
    border: 1px solid #663d10;
    border-radius: 5px;
    line-height: normal !important;
    padding: 7px 15px 7px 20px;
    font-family: "Crimson Text", "Noto Serif JP", serif;
    font-size: 13px;
}
.btn_y { background-color: #000; color: #fff; border: none; }

/***************************************
 Header
***************************************/
#header_top {
    position: fixed;
    width: 100%;
    top: 0; left: 0;
    z-index: 1000;
    background: #fff;
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
}
@media screen and (min-width: 768px) {
    #header_top > div {
        margin: 0 auto;
        padding: 10px 0;
        display: flex;
        justify-content: flex-end;
    }
    #header_top > div > *:last-child { margin-left: auto; }
}
@media screen and (max-width: 767px) {
    #header_top > div { width: 100%; padding: 10px 0; }
}

@media screen and (min-width: 768px) {
    #header_logo { width: 40px; }
}
@media screen and (max-width: 767px) {
    #header_logo { width: 48px; margin: 0 auto; }
}

@media screen and (min-width: 768px) {
    .header_nav_area { display: flex; }
}
@media screen and (max-width: 767px) {
    .header_nav_area {
        position: fixed; top: 0; left: 0; width: 100%;
        background: #eabd00; padding: 55px 3.5% 20px;
        z-index: 1000; display: none;
    }
}

#header_nav > * {
    font-family: "dnp-shuei-nmincho-std", sans-serif;
    cursor: pointer; line-height: normal; transition: 0.4s;
}
#header_nav > *:hover { opacity: 0.5; transition: 0.2s; }

@media screen and (min-width: 768px) {
    #header_nav {
        display: flex; justify-content: flex-start;
        text-align: center; align-items: flex-end; margin-bottom: 5px;
    }
    #header_nav > * {
        padding: 0 0 0 50px;
        font-size: 16px; position: relative;
        border-right: 1px dotted #241e1a; height: 18px;
    }
    #header_nav > *:last-child { border-right: none; }
    #header_nav > *:hover span { top: -20px; }
    #header_nav > * > span {
        display: block; width: 100%; font-size: 11px;
        position: absolute; top: -15px; left: 0; transition: 0.3s;
        font-family: "游ゴシック", "Yu Gothic", sans-serif;
    }
}
@media screen and (max-width: 767px) {
    #header_nav > * {
        font-size: 17px; font-weight: bold;
        display: block; padding: 10px 0;
        border-bottom: 1px solid #461503;
    }
    #header_nav > * > span {
        font-size: 11px; font-weight: bold;
        display: inline-block; margin-left: 10px; opacity: 0.382;
        font-family: "Crimson Text", "Noto Serif JP", serif;
    }
    #header_nav { margin-bottom: 2.5rem; }
}

/* Menu trigger (mobile hamburger) */
.menu-trigger, .menu-trigger span {
    display: inline-block; transition: all 0.4s; box-sizing: border-box;
}
.menu-trigger {
    position: fixed; z-index: 1500; top: 15px; right: 3.5%;
    width: 28px; height: 24px; cursor: pointer;
}
.menu-trigger span {
    position: absolute; left: 0; width: 100%; height: 4px; background-color: #000;
}
.menu-trigger span:nth-of-type(1) { top: 0; }
.menu-trigger span:nth-of-type(2) { top: 10px; }
.menu-trigger span:nth-of-type(3) { bottom: 0; }
.menu-trigger p {
    position: absolute; font-size: 9px;
    font-family: "Crimson Text", "Noto Serif JP", serif;
    font-weight: bold; top: 27px; left: -2px; text-align: center;
}
.menu-trigger.active span:nth-of-type(1) { transform: translateY(10px) rotate(-45deg); }
.menu-trigger.active span:nth-of-type(2) { opacity: 0; }
.menu-trigger.active span:nth-of-type(3) { transform: translateY(-10px) rotate(45deg); }

/* PC fixed reservation button */
#fix_rsv {
    position: fixed; bottom: 30px; right: 30px;
    z-index: 500; display: block; width: 94px;
}
#fix_rsv a img { filter: grayscale(1) contrast(2); }

/***************************************
 Main Content
***************************************/
#main_content {
    background-color: #fff;
    position: relative;
    z-index: 10;
}
@media screen and (min-width: 768px) {
    #main_content {
        min-width: 1250px;
        background-size: 100% auto;
        background-position: left top;
        background-attachment: fixed;
        background-repeat: repeat-y;
        padding-bottom: 70px;
    }
}
@media screen and (max-width: 767px) {
    #main_content {
        padding-top: 30px;
        background-size: 120% auto;
        background-position: center top;
        background-repeat: repeat-y;
        padding-bottom: 40px;
    }
}
#top #main_content { padding-top: 61px; }
@media screen and (min-width: 768px) {
    #top #main_content { margin-top: 100vh; }
}
footer {
    position: relative;
    z-index: 10;
}

/***************************************
 Hero Slider (Swiper)
***************************************/
#mainv { position: relative; z-index: 50; }

/* Mobile default */
#top #mainv { height: 177vw; }
#top #mainv .swiper.top_slide_sp { height: 100%; }
#top #mainv .swiper.top_slide_pc { display: none; }
#top #mainv .swiper-slide { background-color: #000; }
#top #mainv .swiper-slide > img { object-fit: cover; width: 100%; height: 100%; }
#top #mainv .swiper-slide video { object-fit: contain; width: 100%; height: 100%; }
#top #mainv .swiper-pagination { bottom: 1.5vw; top: auto; transform: scaleY(1.15); }
#top #mainv .swiper-pagination-bullet {
    width: 2.5vw; height: 2.5vw; margin: 0 1.5vw;
    background-color: #fff; border-radius: 0; transform: rotate(45deg);
}
#top_slide_txt_sp {
    position: absolute; inset: 0; display: grid; place-content: center;
}
#top_slide_txt_sp img, #top_slide_txt_pc img {
    width: 35%; max-width: 200px; margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/* Desktop */
@media screen and (min-width: 768px) {
    #top #mainv { position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: -1; height: 100vh; }
    #top #mainv .swiper.top_slide_pc { display: block; height: 100%; }
    #top #mainv .swiper.top_slide_sp { display: none; }
    #top #mainv .swiper-slide video { object-fit: cover; }
    #top #mainv .swiper-pagination-bullet { margin: 0 0.75rem; width: 1rem; height: 1rem; }
    #top_slide_txt_pc {
        position: absolute; inset: 0; display: grid; place-content: center;
    }
    #top_slide_txt_pc img { width: 12%; max-width: 160px; }
}

/***************************************
 Proverb
***************************************/
#proverb { padding-top: 20px; }
.proverb_wrap img {
    display: block; width: 60%; margin: 0 auto 30px;
}
@media screen and (min-width: 768px) {
    #proverb { padding-top: 20px; }
    .proverb_wrap img { width: 21%; margin: 0 auto 30px; }
}
@media screen and (max-width: 767px) {
    #proverb { width: 93%; margin: 0 auto; padding: 100px 0 30px; }
}

/***************************************
 Concept / Brand
***************************************/
@media screen and (min-width: 768px) {
    #concept { padding: 90px 0 160px; }
}
@media screen and (max-width: 767px) {
    #concept { width: 93%; margin: 0 auto; padding: 100px 0 30px; }
}

.brand_title { margin-bottom: 45px; }
.brand_title h2 { font-size: 28px; font-weight: bold; text-align: center; letter-spacing: 0.05rem; }
.brand_block { margin-bottom: 45px; }
.brand_title_sub { margin-bottom: 30px; }
.brand_title_sub h3 {
    font-size: 18px; font-weight: bold; text-align: center; letter-spacing: 0.05rem;
}
.brand_title_sub h3::after {
    content: ''; width: 108px; height: 2px;
    background-color: #181b39; display: block; margin: 10px auto 0;
}
.brand_box { margin-bottom: 3rem; }
.brand_img { margin-bottom: 2rem; }
.brand_img img { width: 100%; }
.brand_txt { text-align: center; margin-bottom: 2rem; }
.brand_txt h4 { font-size: 18px; letter-spacing: 0.05rem; margin-bottom: 0.75rem; }
.brand_txt p { margin-bottom: 1.5rem; }

@media (min-width: 768px) {
    .brand_title { margin-bottom: 45px; }
    .brand_title h2 { font-size: 42px; }
    .brand_block { width: 100%; max-width: 1015px; margin: 0 auto 100px; }
    .brand_title_sub { margin-bottom: 50px; }
    .brand_title_sub h3 { font-size: 24px; }
    .brand_title_sub h3 br { display: none; }
    .brand_box {
        display: flex; justify-content: space-between; align-items: center; margin-bottom: 50px;
    }
    .brand_box._reverse { flex-direction: row-reverse; }
    .brand_img { width: 50%; margin-bottom: 0; }
    .brand_txt { width: 45%; margin-bottom: 0; }
    .brand_txt p { font-size: 16px; line-height: 1.9; text-align: left; }
}

/***************************************
 News (info_contents)
***************************************/
#info_contents { margin: 0 auto; }
@media screen and (min-width: 768px) {
    #info_contents { width: 990px; margin-bottom: 130px; display: flex; justify-content: space-between; }
    #info_contents > * { width: 448px; }
}
@media screen and (max-width: 767px) {
    #info_contents { width: 93%; margin-bottom: 70px; }
}

.info_contents_list { border-bottom: 1px dotted #3a2721; }
@media screen and (min-width: 768px) {
    .info_contents_list { min-height: 170px; margin-bottom: 40px; padding-bottom: 45px; }
}
@media screen and (max-width: 767px) {
    .info_contents_list { margin-bottom: 30px; padding-bottom: 30px; }
}
.info_contents_list:last-child { padding-bottom: 0; border-bottom: none; }

.info_contents_date { font-family: "Cinzel", serif; line-height: normal; }
@media screen and (min-width: 768px) { .info_contents_date { font-size: 16px; } }
@media screen and (max-width: 767px) { .info_contents_date { font-size: 13px; } }

.info_contents_ttl { font-weight: bold; line-height: normal; margin-bottom: 5px; }
@media screen and (min-width: 768px) { .info_contents_ttl { font-size: 18px; } }
@media screen and (max-width: 767px) { .info_contents_ttl { font-size: 16px; } }

.info_contents_btn { text-align: center; }

.info_thumb_wrap { width: 30%; }
.info_thumb {
    background-size: cover; background-repeat: no-repeat;
    background-position: center center; box-sizing: content-box;
    width: 100%; height: 0; padding-bottom: 100%;
}

#top_news .info_contents_list > a {
    display: flex; justify-content: space-between; align-items: flex-start;
}
#top_news .info_contents_list > a > .info_contents_txt { width: 65.8%; }

/* top_news_only layout */
@media screen and (min-width: 768px) {
    .top_news_only #top_news { width: 100%; }
    .top_news_only .info_contents_list_wrap {
        display: flex; justify-content: space-between; margin-bottom: 60px;
    }
    .top_news_only .info_contents_list_wrap .info_contents_list { min-height: 0; }
    .top_news_only .info_contents_list_wrap > .info_contents_list {
        padding-bottom: 0; margin-bottom: 0; border-bottom: none; width: 43%;
    }
    .top_news_only #top_news .info_contents_list_wrap > .info_contents_list a { display: block; }
    .top_news_only .info_contents_list_wrap > .info_contents_list .info_thumb_wrap {
        width: 100%; margin-bottom: 20px;
    }
    .top_news_only #top_news .info_contents_list_wrap > .info_contents_list a > .info_contents_txt { width: 100%; }
    .top_news_only .info_contents_list_wrap > div { width: 52.5%; }
    .top_news_only .info_contents_list_wrap > div .info_contents_list {
        margin-bottom: 30px; padding-bottom: 30px;
    }
    .top_news_only .info_contents_list_wrap > div .info_contents_list:last-child {
        padding-bottom: 0; margin-bottom: 0; border-bottom: none;
    }
    .top_news_only #top_news .info_contents_list_wrap > div .info_contents_list a {
        display: flex; align-items: center; position: relative;
    }
    .top_news_only .info_contents_list_wrap > div .info_contents_list .info_contents_txt { padding-top: 20px; }
    .top_news_only .info_contents_list_wrap > div .info_contents_list .info_contents_ttl { font-size: 16px; }
    .info_thumb_wrap { width: 35%; }
    #top_news .info_contents_list > a > .info_contents_txt { width: 60%; }
}
@media screen and (max-width: 767px) {
    .top_news_only .info_contents_ttl { font-size: 14px; }
    #top_news { margin-bottom: 70px; }
}

/***************************************
 Mid Image
***************************************/
#mid_img { line-height: 0; }
#mid_img img { width: 100%; display: block; }

/***************************************
 Footer
***************************************/
footer { background-color: #181B39; color: #fff; }
@media screen and (min-width: 768px) { footer { padding: 50px 0 30px; } }
@media screen and (max-width: 767px) { footer { padding: 30px 0; } }

.footer_inner { margin: 0 auto; }
@media screen and (min-width: 768px) { .footer_inner { width: 1080px; } }
@media screen and (max-width: 767px) { .footer_inner { width: 100%; } }

#footer_logo { text-align: center; }
@media screen and (min-width: 768px) { #footer_logo { margin-bottom: 45px; } }
@media screen and (max-width: 767px) { #footer_logo { margin-bottom: 20px; } }
#footer_logo > a { display: inline-block; }
#footer_logo > a img { filter: brightness(20); }
@media screen and (min-width: 768px) { #footer_logo > a { width: 133px; } }
@media screen and (max-width: 767px) { #footer_logo > a { width: 25%; } }

.footer_content { margin: 0 auto; }
@media screen and (min-width: 768px) { .footer_content { display: flex; justify-content: center; margin-bottom: 40px; } }
@media screen and (max-width: 767px) { .footer_content { width: 93%; margin-bottom: 30px; text-align: center; } }

#footer_nav {
    margin: 0 auto 30px; display: flex; justify-content: center;
}
@media screen and (max-width: 767px) {
    #footer_nav { width: 90%; margin: 30px auto; }
    #footer_nav > ul { width: 48%; }
}
#footer_nav ul li h3, #footer_nav ul li h4,
#footer_nav ul li a, #footer_nav ul li p { color: #fff; font-size: 1rem; }
#footer_nav > ul > li:before {
    content: "・"; color: #fff; margin-right: 0.5rem; font-weight: bold; opacity: 0.5;
}
#footer_nav > ul > li > p, #footer_nav > ul > li > h3 { display: inline; }
#footer_nav > ul > li.nobefore:before { content: none; }
#footer_nav > ul > li > ul { margin-bottom: 5px; }
#footer_nav > ul > li > ul > li { position: relative; }
#footer_nav > ul > li > ul > li::before {
    position: absolute; content: ""; top: calc(50% - 0.5px); left: 15px;
    height: 1px; width: 25px; background-color: rgb(255 255 255 / 25%);
}
#footer_nav > ul > li > ul > li a { margin-left: 49px; }

@media screen and (min-width: 768px) {
    #footer_nav .footer_nav1, #footer_nav .footer_nav2, #footer_nav .footer_nav3 {
        padding-left: 5rem; white-space: nowrap;
    }
    #footer_nav .footer_nav2 > li > h4 { cursor: pointer; }
    #footer_nav .footer_nav2 > li > h4:before { content: "■"; display: inline-block; margin-right: 6px; }
    #footer_nav .footer_nav2 > li > ul {
        margin-left: 20px; display: flex; justify-content: flex-start; flex-wrap: wrap;
    }
    #footer_nav .footer_nav2 > li > ul > li:before { content: none; }
    #footer_nav .footer_nav2 > li > ul > li:after { content: "/"; display: inline-block; margin: 0 3px; color: #fff; }
    #footer_nav .footer_nav2 > li > ul > li:last-child:after { content: none; }
}
@media screen and (max-width: 767px) {
    .footer_nav2 { width: 100%; text-align: center; }
    .footer_nav2 h3 {
        font-size: 20px; margin-bottom: 20px;
        font-family: "dnp-shuei-nmincho-std", "Noto Serif JP", serif;
    }
    .area_list h4 {
        font-size: 16px; font-weight: bold; padding: 5px 0;
        position: relative; z-index: 150;
        border-top: 1px solid rgb(255 255 255 / 50%);
        color: #fff;
    }
    .area_list:last-of-type h4 { border-bottom: 1px solid rgb(255 255 255 / 50%); }
    .area_list ul { margin: 0 auto; border-top: 1px solid #fff; display: none; }
    .area_list ul li {
        color: #fff; text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .area_list ul li a {
        font-size: 13px; display: block; padding: 10px 10px 10px 30px;
        background: rgba(0,0,0,0.1); position: relative; color: #fff;
    }
}

#copy {
    padding-top: 20px;
    border-top: 1px solid rgb(255 255 255 / 25%);
    text-align: center; color: #fff;
    font-family: "Crimson Text", "Noto Serif JP", serif;
    letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) { #copy { font-size: 12px; } }
@media screen and (max-width: 767px) { #copy { font-size: 13px; width: 93%; margin: 0 auto; padding-bottom: 70px; } }

/* ===== Mobile fixed nav ===== */
#sp_fixed {
    position: fixed; bottom: 0; left: 0; z-index: 1000;
    width: 100%; display: flex; justify-content: space-between;
    align-items: flex-end;
}
.sp_fixed_btn1 { width: 100%; }

/***************************************
 Sub Pages (store, company, news)
***************************************/

/* Page header */
.page-header {
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}
@media screen and (min-width: 768px) { .page-header { height: 393px; margin-top: 61px; } }
@media screen and (max-width: 767px) { .page-header { height: 250px; margin-top: 61px; } }
.page-header h1 {
    font-family: "dnp-shuei-nmincho-std", "Noto Serif JP", sans-serif;
    font-weight: bold; letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(0,0,0,0.5);
}
@media screen and (min-width: 768px) { .page-header h1 { font-size: 36px; } }
@media screen and (max-width: 767px) { .page-header h1 { font-size: 24px; } }
.page-header .sub-en {
    display: block; font-size: 14px; color: #baa994;
    font-family: "Crimson Text", serif; margin-top: 5px;
}

/* Section styling for sub pages */
.section { padding: 60px 0; }
.section--dark { background: #fff; }
@media screen and (min-width: 768px) { .section { padding: 80px 0; } }

.section-title { text-align: center; margin-bottom: 40px; }
.section-title h2 {
    font-family: "dnp-shuei-nmincho-std", "Noto Serif JP", sans-serif;
    font-weight: bold; letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) { .section-title h2 { font-size: 36px; } }
@media screen and (max-width: 767px) { .section-title h2 { font-size: 24px; } }
.section-title .en {
    display: block; font-size: 14px; color: #baa994;
    font-family: "Crimson Text", serif; margin-top: 5px;
}

/* Sub page header/nav (matching main site style) */
.header {
    position: fixed; width: 100%; top: 0; left: 0; z-index: 1000;
    background: #fff; padding: 10px 0;
    display: flex; align-items: center; justify-content: space-between;
}
.header-logo { display: inline-block; }
@media screen and (min-width: 768px) { .header-logo { width: 40px; margin-left: 20px; } }
@media screen and (max-width: 767px) { .header-logo { width: 48px; margin: 0 auto; } }

.header-nav {
    display: flex; align-items: flex-end;
    font-family: "dnp-shuei-nmincho-std", sans-serif;
}
.header-nav a {
    padding: 0 0 0 30px; font-size: 16px;
    position: relative; line-height: normal;
}
.header-nav a .sub {
    display: block; font-size: 11px; color: #baa994;
    font-family: "游ゴシック", sans-serif;
}
.lang-switch { padding-left: 30px; display: flex; gap: 8px; font-size: 14px; }
.lang-switch .active { font-weight: bold; color: #663d10; }

/* News list (sub page) */
.news-list { max-width: 990px; margin: 0 auto; }
.news-item {
    display: flex; gap: 20px; padding: 20px 0;
    border-bottom: 1px dotted #3a2721;
}
.news-date {
    font-family: "Cinzel", serif; font-size: 16px;
    line-height: normal; white-space: nowrap; min-width: 100px;
}
.news-title { font-weight: bold; font-size: 18px; line-height: normal; margin-bottom: 5px; }
.news-body { font-size: 14px; }

/* Company table */
.company-table {
    max-width: 900px; margin: 0 auto; width: 90%;
}
.company-table tr { border-bottom: 1px dotted #3a2721; }
.company-table th, .company-table td { padding: 15px 10px; vertical-align: top; }
.company-table th {
    font-weight: bold; white-space: nowrap; width: 150px;
    font-family: "dnp-shuei-nmincho-std", sans-serif;
}

/* Sub page footer (shared) */
.footer { background-color: #181B39; color: #fff; padding: 40px 0 30px; text-align: center; }
.footer-logo { margin-bottom: 30px; }
.footer-logo img { width: 100px; filter: brightness(20); }
.footer-nav { display: flex; justify-content: center; gap: 30px; margin-bottom: 20px; }
.footer-nav a { color: #fff; font-size: 14px; }
.footer-copy { color: #fff; font-size: 12px; font-family: "Crimson Text", serif; }

/* Sub page mobile fixed nav */
.sp-fixed { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 1000; }
@media screen and (min-width: 768px) { .sp-fixed { display: none; } }
.sp-fixed-inner { display: flex; }
.sp-fixed-inner a {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    justify-content: center; padding: 8px 0; font-size: 10px;
    color: #fff; background: #b22627;
}
.sp-fixed-inner a img { height: 20px; margin-bottom: 2px; }

/* Hamburger for sub pages */
.hamburger {
    display: none; position: fixed; z-index: 1500;
    top: 15px; right: 3.5%; width: 28px; height: 24px; cursor: pointer;
}
@media screen and (max-width: 767px) { .hamburger { display: block; } }
.hamburger span {
    position: absolute; left: 0; width: 100%; height: 4px; background: #000;
    transition: all 0.4s;
}
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 10px; }
.hamburger span:nth-child(3) { bottom: 0; }

/***************************************
 Store Page
***************************************/
.store-section { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.store-area-title {
    background: #000; color: #fff; padding: 10px 40px;
    border-radius: 4px; margin-bottom: 20px; font-size: 13px;
    position: relative; cursor: pointer;
}
.store-area-title span { position: absolute; left: 15px; color: #fff; font-size: 15px; }
.store-card {
    border-radius: 4px; background: #fff;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    overflow: hidden; margin-bottom: 20px;
}
.store-card-image { width: 100%; }
.store-card-image img { width: 100%; height: auto; display: block; }
.store-card-text { padding: 1.5rem; }
.store-card-name {
    text-align: center; font-weight: bold;
    font-family: "dnp-shuei-nmincho-std", sans-serif;
    font-size: 1.25rem; margin-bottom: 1rem;
}

/* FAQ section */
.faq-section { max-width: 900px; margin: 40px auto; padding: 0 20px; }
.faq-item { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px dotted #ccc; }
.faq-q { font-weight: bold; margin-bottom: 8px; }
.faq-a { line-height: 1.8; }
