/* ==========================================================================
   style.css
   共通部分(common.css)以外のページ固有CSSを統合
   ページ間で同一クラス名・異なるスタイルが競合する箇所は
   body class (page-xxx) でスコープして分離
   ========================================================================== */

.announce { background: var(--green); color: var(--white); text-align: center; font-size: 12px; padding: 0 20px; height: var(--bar-h); display: flex; align-items: center; justify-content: center; letter-spacing: 0.07em; }
.announce a { color: rgba(255,255,255,0.8); border-bottom: 1px solid rgba(255,255,255,0.35); margin-left: 14px; font-size: 11px; }
.about { overflow: hidden; }
.about-strip { width: 100%; overflow: hidden; padding: 0; margin-top: 100px; margin-bottom: 0; }
.about-strip-track { display: flex; align-items: center; gap: 20px; width: max-content; animation: stripScroll 60s linear infinite; }
.about-strip-track:hover { animation-play-state: paused; }
.about-strip-photo { flex-shrink: 0; overflow: hidden; position: relative; border-radius: 40px; width: 300px; height: 220px; }
.page-top .about-strip-photo img { width:100%;height:100%;object-fit:cover;display:block; }
.about-strip-photo-bg { width: 100%; height: 100%; transition: transform 0.4s; }
.about-strip-track:hover .about-strip-photo-bg { transform: scale(1.04); }
.page-about .about-inner, .page-contact-thanks .about-inner, .page-contact .about-inner, .page-news-list .about-inner, .page-news-single .about-inner, .page-novelty .about-inner, .page-privacy .about-inner, .page-products .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 56px 48px; max-width: var(--max); margin: 0 auto; }
.about-visual { position: relative; aspect-ratio: 4/5; border-radius: 48px; overflow: hidden; }
.about-visual-bg { width: 100%; height: 100%; overflow: hidden; position: relative; }
.about-visual-bg img { width: 100%; height: calc(100% + 80px); object-fit: cover; display: block; position: absolute; top: -40px; left: 0; will-change: transform; }
.page-about .about-visual-bg::after, .page-contact-thanks .about-visual-bg::after, .page-contact .about-visual-bg::after, .page-news-list .about-visual-bg::after, .page-news-single .about-visual-bg::after, .page-novelty .about-visual-bg::after, .page-privacy .about-visual-bg::after, .page-products .about-visual-bg::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 9px); }
.page-top .about-visual-bg::after { content: ""; position: absolute; inset: 0; }
.about-icon { font-size: 80px; color: rgba(255,255,255,0.28); z-index:1; }
.about-badge { position: absolute; bottom: 24px; right: -16px; background: var(--dark); color: var(--white); padding: 20px 24px; border-radius: 2px; font-size: 12px; line-height: 1.9; letter-spacing: 0.06em; box-shadow: var(--shadow); z-index: 2; }
.about-badge strong { display: block; font-family: var(--font-cor); font-size: 28px; font-weight: 600; color: var(--gold-l); letter-spacing: 0.1em; line-height: 1; margin-bottom: 6px; }
.about-kv { font-size: 42px; font-weight: 700; line-height: 1.5; letter-spacing: 0.08em; color: var(--dark); margin-bottom: 24px; }
.page-contact-thanks .about-body, .page-contact .about-body, .page-news-list .about-body, .page-privacy .about-body { font-size: 15px; color: var(--dark); line-height: 2.2; margin-bottom: 36px; }
.page-about .about-body, .page-novelty .about-body, .page-products .about-body { font-size: 15px; color: var(--dark); margin-bottom: 36px; }
.page-top .about-body { font-size: 15px; color: var(--dark); line-height: 2.2; margin-bottom: 36px;letter-spacing: 0.08em; }
.page-news-single .about-body { font-size: 15px; color: var(--dark);margin-bottom: 36px; }
.page-about .about-link, .page-contact-thanks .about-link, .page-contact .about-link, .page-news-list .about-link, .page-news-single .about-link, .page-novelty .about-link, .page-privacy .about-link, .page-products .about-link, .page-top .about-link { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: var(--white); background: var(--blue); padding: 12px 32px; border-radius: 999px; box-shadow: 0 2px 12px rgba(var(--blue-rgb), 0.45); position: relative; overflow: hidden; transition: color 0.4s; text-decoration: none; }
.page-news-list .about-link, .page-products .about-link { display: inline-flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; color: var(--dark); text-decoration: none; position: relative; overflow: hidden; padding: 10px 0; transition: color 0.3s; }
.about-link, .header-cta, .hero-btn { position: relative; overflow: hidden; isolation: isolate; }
.about-link::before, .header-cta::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: #fff; border-radius: 50%; transform: translate(-50%, -50%); transition: width 1s ease, height 1s ease; opacity: 0; z-index: 1; }
.hero-btn::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--white); border-radius: 50%; transform: translate(-50%, -50%); transition: width 1s ease, height 1s ease; opacity: 0; z-index: 1; }
.about-link:hover::before, .header-cta:hover::before, .hero-btn:hover::before { width: 400px; height: 400px; opacity: 1; }
.about-link > *, .header-cta > *, .hero-btn > * { position: relative; z-index: 2; }
.about-link:hover { color: var(--blue); }
.page-about .hero-btn:hover, .page-contact-thanks .hero-btn:hover, .page-contact .hero-btn:hover, .page-news-list .hero-btn:hover, .page-news-single .hero-btn:hover, .page-novelty .hero-btn:hover, .page-privacy .hero-btn:hover, .page-products .hero-btn:hover { color: var(--gold); }
.page-top .hero-btn:hover { color: var(--blue); }
.page-top .hero-btn:hover { opacity: 0.85; }
.link-line { display: none; }
.products { padding: 56px 0; }
.products-header { display: flex; justify-content: center; align-items: center; margin-bottom: 56px; }
.products-link { font-family: var(--font-cor); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--border); padding-bottom: 4px; flex-shrink: 0; }
.page-about .brand-grid, .page-contact-thanks .brand-grid, .page-contact .brand-grid, .page-news-list .brand-grid, .page-news-single .brand-grid, .page-novelty .brand-grid, .page-privacy .brand-grid, .page-products .brand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.page-top .brand-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;max-width: 1160px;margin: 0 auto; padding: 0 32px; }
.brand-card { background: var(--white); border-radius: 40px; overflow: hidden; box-shadow: 0 2px 16px rgba(43,31,14,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.brand-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.brand-card-img { aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.brand-card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 28px; letter-spacing: 0.04em; font-weight: 700; color: rgba(255,255,255,0.85); position: relative; }
.brand-card-img-placeholder::before { content: ""; position: absolute; top: 0; left: 32%; width: 22%; height: 100%; background: rgba(255,255,255,0.1); }
.bci-1 { background: linear-gradient(135deg, #E8C86A 0%, #C49828 50%, #A07A10 100%); }
.bci-2 { background: linear-gradient(135deg, #C8A898 0%, #A07860 50%, #7A5040 100%); }
.bci-3 { background: linear-gradient(135deg, #88A8C8 0%, #5A7AA4 50%, #3A5A84 100%); }
.brand-card-body { padding: 24px 24px 28px; }
.brand-card-tag { font-family: var(--font-cor); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.brand-card-name { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 10px; line-height: 1.3; }
.page-about .brand-card-desc, .page-contact-thanks .brand-card-desc, .page-contact .brand-card-desc, .page-news-list .brand-card-desc, .page-news-single .brand-card-desc, .page-novelty .brand-card-desc, .page-privacy .brand-card-desc, .page-products .brand-card-desc { font-size: 13px; color: var(--mid); line-height: 1.9; margin-bottom: 20px; }
.page-top .brand-card-desc { font-size: 13px; margin-bottom: 20px; }
.page-about .brand-card-link, .page-contact-thanks .brand-card-link, .page-contact .brand-card-link, .page-news-list .brand-card-link, .page-news-single .brand-card-link, .page-novelty .brand-card-link, .page-privacy .brand-card-link, .page-products .brand-card-link { display: inline-flex; align-items: center; gap: 10px; background: var(--gold); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; padding: 10px 28px; border-radius: 24px; position: relative; overflow: hidden; isolation: isolate; transition: color 0.4s; box-shadow: 0 2px 10px rgba(var(--gold-rgb), 0.38); text-decoration: none; }
.page-top .brand-card-link { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: 0.1em; padding: 10px 28px; border-radius: 24px; position: relative; overflow: hidden; isolation: isolate; transition: color 0.4s; box-shadow: 0 2px 10px rgba(var(--gold-rgb), 0.38); text-decoration: none; }
.brand-card-link::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: rgba(255,255,255,0.95); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.7s ease, height 0.7s ease, opacity 0.7s ease; opacity: 1; z-index: 1; }
.brand-card-link:hover::before { width: 300px; height: 300px; opacity: 1; }
.page-about .brand-card-link:hover, .page-contact-thanks .brand-card-link:hover, .page-contact .brand-card-link:hover, .page-news-list .brand-card-link:hover, .page-news-single .brand-card-link:hover, .page-novelty .brand-card-link:hover, .page-privacy .brand-card-link:hover, .page-products .brand-card-link:hover { color: var(--gold); }
.page-top .brand-card-link:hover { color: var(--blue); }
.brand-card-link > * { position: relative; z-index: 2; }
.btob { padding: 0 0 120px; }
.btob-inner { background: var(--dark); border-radius: 4px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.btob-visual { position: relative; min-height: 480px; overflow: hidden; }
.btob-slide { position: absolute; inset: 0; opacity: 0; transform: translateY(10px); transition: opacity 0.9s ease, transform 0.9s ease; display: flex; align-items: center; justify-content: center; }
.btob-slide.active { opacity: 1; transform: translateY(0); }
.btob-slide-bg { position: absolute; inset: 0; }
.btob-slide-bg::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(60deg, transparent, transparent 20px, rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 21px); }
.btob-slide-label { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); font-family: var(--font-cor); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.55); white-space: nowrap; z-index: 2; }
.btob-slide-dots { position: absolute; bottom: 16px; right: 20px; display: flex; gap: 6px; z-index: 2; }
.btob-slide-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all 0.3s; }
.btob-slide-dot.active { background: rgba(255,255,255,0.85); width: 18px; border-radius: 3px; }
.btob-visual-content { position: relative; z-index: 1; }
.btob-bottles { display: flex; gap: 12px; align-items: flex-end; padding: 40px 0; }
.btob-bottle { border-radius: 8px 8px 4px 4px; display: flex; align-items: center; justify-content: center; font-size: 11px; color: rgba(255,255,255,0.8); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.btob-copy { padding: 60px 52px; display: flex; flex-direction: column; justify-content: center; }
.btob-label { font-family: var(--font-cor); font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold-l); margin-bottom: 18px; }
.btob-heading { font-size: 30px; font-weight: 700; color: var(--white); line-height: 1.5; letter-spacing: 0.08em; margin-bottom: 20px; }
.page-contact-thanks .btob-body, .page-contact .btob-body, .page-news-list .btob-body, .page-privacy .btob-body, .page-top .btob-body { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 2.2; margin-bottom: 28px; }
.page-about .btob-body, .page-news-single .btob-body, .page-novelty .btob-body, .page-products .btob-body { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.btob-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.btob-feature { display: flex; align-items: flex-start; gap: 14px; }
.btob-feature-num { font-family: var(--font-cor); font-size: 11px; color: var(--gold-l); letter-spacing: 0.1em; flex-shrink: 0; padding-top: 2px; }
.btob-feature-text { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.8; }
.btob-btn { display: inline-flex; align-items: center; gap: 16px; background: var(--gold); color: var(--white); font-size: 13px; font-weight: 500; letter-spacing: 0.1em; padding: 16px 32px; border-radius: 2px; align-self: flex-start; transition: background 0.2s; }
.btob-btn:hover { background: var(--gold-l); }
.news { padding: 80px 0; }
.page-about .news .container, .page-contact-thanks .news .container, .page-contact .news .container, .page-news-list .news .container, .page-news-single .news .container, .page-novelty .news .container, .page-privacy .news .container, .page-products .news .container { background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border-radius: 20px; width: 92%; max-width: var(--max); padding: 60px 48px; }
.page-about .news .container, .page-contact-thanks .news .container, .page-contact .news .container, .page-news-list .news .container, .page-news-single .news .container, .page-novelty .news .container, .page-privacy .news .container, .page-products .news .container { padding: 40px 24px; width: 92%; border-radius: 16px; }
.page-top .news .container { background: rgba(255,255,255,0.92); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); border-radius: 20px; width: 92%; max-width: var(--max); padding: 60px 48px; margin: 0 auto; }
.page-about .news-inner, .page-contact-thanks .news-inner, .page-contact .news-inner, .page-news-list .news-inner, .page-news-single .news-inner, .page-novelty .news-inner, .page-privacy .news-inner, .page-products .news-inner { display: grid; grid-template-columns: 260px 1fr; gap: 80px; align-items: start; }
.page-about .news-inner, .page-contact-thanks .news-inner, .page-contact .news-inner, .page-news-list .news-inner, .page-news-single .news-inner, .page-novelty .news-inner, .page-privacy .news-inner, .page-products .news-inner { grid-template-columns: 1fr; gap: 32px; }
.page-top .news-inner { display: grid; grid-template-columns: 260px 1fr; gap: 20px; align-items: start; }
.page-about .news-left, .page-contact-thanks .news-left, .page-contact .news-left, .page-news-list .news-left, .page-news-single .news-left, .page-novelty .news-left, .page-privacy .news-left, .page-products .news-left, .page-top .news-left { position: sticky; top: calc(var(--nav-h) + 24px); }
.page-about .news-left, .page-contact-thanks .news-left, .page-contact .news-left, .page-news-list .news-left, .page-news-single .news-left, .page-novelty .news-left, .page-privacy .news-left, .page-products .news-left { position: static; display: flex; justify-content: space-between; align-items: flex-end; }
.news-list { border-top: 1px solid var(--border-d); }
.page-about .news-item, .page-contact-thanks .news-item, .page-contact .news-item, .page-news-list .news-item, .page-news-single .news-item, .page-novelty .news-item, .page-privacy .news-item, .page-products .news-item, .page-top .news-item { display: grid; grid-template-columns: 110px 76px 1fr; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border-d); transition: opacity 0.2s; }
.page-about .news-item, .page-contact-thanks .news-item, .page-contact .news-item, .page-news-list .news-item, .page-news-single .news-item, .page-novelty .news-item, .page-privacy .news-item, .page-products .news-item { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
.page-about .news-item, .page-contact-thanks .news-item, .page-contact .news-item, .page-news-list .news-item, .page-news-single .news-item, .page-novelty .news-item, .page-privacy .news-item, .page-products .news-item { display: grid; grid-template-columns: 110px 76px 1fr; gap: 16px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--border-d); text-decoration: none; transition: opacity 0.2s; }
.news-item:hover { opacity: 0.65; }
.page-about .news-date-cat, .page-contact-thanks .news-date-cat, .page-contact .news-date-cat, .page-news-list .news-date-cat, .page-news-single .news-date-cat, .page-novelty .news-date-cat, .page-privacy .news-date-cat, .page-products .news-date-cat, .page-top .news-date-cat { display: contents; }
.page-about .news-date-cat, .page-contact-thanks .news-date-cat, .page-contact .news-date-cat, .page-news-list .news-date-cat, .page-news-single .news-date-cat, .page-novelty .news-date-cat, .page-privacy .news-date-cat, .page-products .news-date-cat { display: flex; align-items: center; gap: 8px; }
.news-date { font-family: var(--font-cor); font-size: 13px; letter-spacing: 0.1em; color: var(--gold); }
.page-about .news-cat, .page-contact-thanks .news-cat, .page-contact .news-cat, .page-news-list .news-cat, .page-news-single .news-cat, .page-novelty .news-cat, .page-privacy .news-cat, .page-products .news-cat, .page-top .news-cat { font-size: 10px; letter-spacing: 0.1em; color: var(--gold); border: 1px solid var(--border); border-radius: 2px; padding: 3px 10px; text-align: center;font-weight: 800; }
.page-about .news-cat, .page-contact-thanks .news-cat, .page-contact .news-cat, .page-news-list .news-cat, .page-news-single .news-cat, .page-novelty .news-cat, .page-privacy .news-cat, .page-products .news-cat { display: inline-block; width: auto; }
.page-about .news-title, .page-contact-thanks .news-title, .page-contact .news-title, .page-news-list .news-title, .page-news-single .news-title, .page-novelty .news-title, .page-privacy .news-title, .page-products .news-title { font-size: 14px; color: var(--dark); line-height: 1.7; }
.page-top .news-title { font-size: 13px; color: var(--dark); line-height: 2; }
.page-about .cta-sub, .page-contact-thanks .cta-sub, .page-contact .cta-sub, .page-news-list .cta-sub, .page-news-single .cta-sub, .page-novelty .cta-sub, .page-privacy .cta-sub, .page-products .cta-sub, .page-top .cta-sub { font-size: 16px; color: var(--white); line-height: 2; margin-bottom: 44px; }
.page-about .cta-sub, .page-contact-thanks .cta-sub, .page-contact .cta-sub, .page-news-list .cta-sub, .page-news-single .cta-sub, .page-novelty .cta-sub, .page-privacy .cta-sub, .page-products .cta-sub, .page-top .cta-sub { font-size: 13px; }
.page-about .cta-sub, .page-contact-thanks .cta-sub, .page-contact .cta-sub, .page-news-list .cta-sub, .page-news-single .cta-sub, .page-novelty .cta-sub, .page-privacy .cta-sub, .page-products .cta-sub { font-size: 13px; line-height: 2; margin-bottom: 44px; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-btn-p { display: inline-flex; align-items: center; gap: 14px; background: var(--white); color: var(--blue); font-size: 14px; font-weight: 800; letter-spacing: 0.1em; padding: 14px 44px; border-radius: 30px; position: relative; overflow: hidden; isolation: isolate; transition: 0.4s; box-shadow: 0 2px 10px rgba(var(--gold-rgb), 0.38); text-decoration: none; border: 2px solid var(--white); }
.page-about .cta-btn-s, .page-contact-thanks .cta-btn-s, .page-contact .cta-btn-s, .page-news-list .cta-btn-s, .page-news-single .cta-btn-s, .page-novelty .cta-btn-s, .page-privacy .cta-btn-s, .page-products .cta-btn-s, .page-top .cta-btn-s { display: inline-flex; align-items: center; gap: 14px; background: none; color: var(--white); font-size: 14px; font-weight: 800; letter-spacing: 0.1em; padding: 14px 44px; border-radius: 30px; position: relative; overflow: hidden; isolation: isolate; transition: color 0.4s; box-shadow: 0 2px 10px rgba(255,255,255,0.25); text-decoration: none; border: 2px solid var(--white); }
.page-about .cta-btn-s, .page-contact-thanks .cta-btn-s, .page-contact .cta-btn-s, .page-news-list .cta-btn-s, .page-news-single .cta-btn-s, .page-novelty .cta-btn-s, .page-privacy .cta-btn-s, .page-products .cta-btn-s { display: inline-flex; align-items: center; gap: 14px; background: none; color: var(--white); font-size: 14px; font-weight: 800; letter-spacing: 0.1em; padding: 14px 44px; border-radius: 30px; position: relative; overflow: hidden; isolation: isolate; transition: color 0.4s; text-decoration: none; border: 2px solid var(--white); }
.page-about .cta-btn-p::before, .page-contact-thanks .cta-btn-p::before, .page-contact .cta-btn-p::before, .page-news-list .cta-btn-p::before, .page-news-single .cta-btn-p::before, .page-novelty .cta-btn-p::before, .page-privacy .cta-btn-p::before, .page-products .cta-btn-p::before, .page-top .cta-btn-p::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--blue); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.7s ease, height 0.7s ease, opacity 0.7s ease; opacity: 1; z-index: 1; }
.page-about .cta-btn-p::before, .page-contact-thanks .cta-btn-p::before, .page-contact .cta-btn-p::before, .page-news-list .cta-btn-p::before, .page-news-single .cta-btn-p::before, .page-novelty .cta-btn-p::before, .page-privacy .cta-btn-p::before, .page-products .cta-btn-p::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--blue); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.7s, height 0.7s; opacity: 1; z-index: 1; }
.page-about .cta-btn-s::before, .page-contact-thanks .cta-btn-s::before, .page-contact .cta-btn-s::before, .page-news-list .cta-btn-s::before, .page-news-single .cta-btn-s::before, .page-novelty .cta-btn-s::before, .page-privacy .cta-btn-s::before, .page-products .cta-btn-s::before, .page-top .cta-btn-s::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--white); border-radius: 50%; transform: translate(-50%, -50%); transition: width 0.7s ease, height 0.7s ease, opacity 0.7s ease; opacity: 1; z-index: 1; }
.page-about .cta-btn-s::before, .page-contact-thanks .cta-btn-s::before, .page-contact .cta-btn-s::before, .page-news-list .cta-btn-s::before, .page-news-single .cta-btn-s::before, .page-novelty .cta-btn-s::before, .page-privacy .cta-btn-s::before, .page-products .cta-btn-s::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--white); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.7s, height 0.7s; opacity: 1; z-index: 1; }
.page-about .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-contact-thanks .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-contact .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-news-list .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-news-single .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-novelty .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-privacy .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-products .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-top .cta-btn-p:hover::before, .cta-btn-s:hover::before { width: 400px; height: 400px; opacity: 1; }
.page-about .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-contact-thanks .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-contact .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-news-list .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-news-single .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-novelty .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-privacy .cta-btn-p:hover::before, .cta-btn-s:hover::before, .page-products .cta-btn-p:hover::before, .cta-btn-s:hover::before { width: 400px; height: 400px; }
.page-about .cta-btn-p:hover, .page-contact-thanks .cta-btn-p:hover, .page-contact .cta-btn-p:hover, .page-news-list .cta-btn-p:hover, .page-news-single .cta-btn-p:hover, .page-novelty .cta-btn-p:hover, .page-privacy .cta-btn-p:hover, .page-products .cta-btn-p:hover, .page-top .cta-btn-p:hover { color: var(--white);border: 2px solid var(--blue); }
.page-about .cta-btn-p:hover, .page-contact-thanks .cta-btn-p:hover, .page-contact .cta-btn-p:hover, .page-news-list .cta-btn-p:hover, .page-news-single .cta-btn-p:hover, .page-novelty .cta-btn-p:hover, .page-privacy .cta-btn-p:hover, .page-products .cta-btn-p:hover { color: var(--white); border-color: var(--blue); }
.cta-btn-s:hover { color: var(--gold); }
.cta-btn-p > *, .cta-btn-s > * { position: relative; z-index: 2; }
.page-mesh { position: fixed; inset: 0; z-index: -1; background: var(--white); overflow: hidden; }
.page-mesh::after { content: ""; position: absolute; inset: 0; background: radial-gradient( ellipse 85% 85% at 50% 50%, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.36) 45%, rgba(255,255,255,0) 100% ); pointer-events: none; z-index: 2; }
.mesh-blob { position: absolute; border-radius: 50%; will-change: transform; }
.mb1 { width: 900px; height: 900px; background: radial-gradient(circle, rgba(240,240,240,0.42) 0%, transparent 70%); top: -200px; left: -200px; animation: mbDrift1 10.5s ease-in-out infinite; }
.mb2 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(197, 213, 213, 0.45) 0%, transparent 70%); bottom: 10%; right: -150px; animation: mbDrift2 11s ease-in-out infinite; }
.mb3 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(204,229,229,0.42) 0%, transparent 70%); top: 40%; left: 5%; animation: mbDrift3 12.5s ease-in-out infinite; }
.novelty-section { overflow: hidden; }
.novelty-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding: 80px 48px; max-width: var(--max); margin: 0 auto; }
.novelty-text { order: 1; }
.novelty-visual { order: 2; position: relative; aspect-ratio: 4/5; border-radius: 48px; overflow: hidden; }
.novelty-slider { position: absolute; inset: 0; overflow: hidden; border-radius: inherit; }
.novelty-slides { display: flex; height: 100%; transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.novelty-slide { flex: 0 0 100%; height: 100%; }
.novelty-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.novelty-dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
.novelty-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.3s; }
.novelty-dot.active { background: var(--white); width: 20px; border-radius: 3px; }
.page-about .hero, .page-contact-thanks .hero, .page-contact .hero, .page-news-list .hero, .page-news-single .hero, .page-novelty .hero, .page-privacy .hero, .page-products .hero { position: relative; height: 100vh; max-height: 940px; min-height: 780px; max-width: 1600px; margin: 0 auto; overflow: visible; }
.page-top .hero { position: relative; padding-top: var(--topbar-h); padding-bottom: 40px; overflow: hidden; }
.page-top .hero-upper { max-width: var(--max); margin: 0 auto; padding: 56px 80px 32px; text-align: left; position: relative; }
.page-about .hero-catch, .page-contact-thanks .hero-catch, .page-contact .hero-catch, .page-news-list .hero-catch, .page-news-single .hero-catch, .page-novelty .hero-catch, .page-privacy .hero-catch, .page-products .hero-catch { font-size: 9.4vw; font-weight: 600; line-height: 1.35; letter-spacing: 0.15em; color: var(--dark); margin-bottom: 4px; opacity: 0; animation: hFadeUp 0.9s 0.5s forwards; text-align: center; }
.page-top .hero-catch { font-size: 72px; font-weight: 600; line-height: 1.35; letter-spacing: 0.15em; color: var(--dark); margin-bottom: 6px; margin-left: -6px; opacity: 0; animation: heroCatchIn 0.9s 0.4s forwards; }
.page-about .hero-sub, .page-contact-thanks .hero-sub, .page-contact .hero-sub, .page-news-list .hero-sub, .page-news-single .hero-sub, .page-novelty .hero-sub, .page-privacy .hero-sub, .page-products .hero-sub { font-size: 28px; font-weight: 700; letter-spacing: 0.12em; color: var(--dark); margin: 0 0 28px 4px; opacity: 0; animation: hFadeUp 0.9s 0.7s forwards; }
.page-top .hero-sub { font-size: 24px; font-weight: 600; letter-spacing: 0.1em; color: var(--dark); opacity: 0; animation: heroCatchIn 0.9s 0.65s forwards; }
.page-top .hero-deco { position: absolute; left: 0; right: 0; text-align: center; bottom: -0.15em; font-size: clamp(52px, 10.6vw, 134px); font-weight: 100; letter-spacing: -0.02em; color: var(--dark); opacity: 0.07; pointer-events: none; white-space: nowrap; line-height: 1; user-select: none; z-index: 0; }
.page-top .hero-slide-wrap { position: relative; width: calc(100% - 96px); max-width: var(--max); margin: 0 auto; aspect-ratio: 2 / 1; border-radius: 20px; overflow: hidden; }
.page-top .hero-slide-inner { position: absolute; inset: 0; border-radius: 12px; overflow: hidden; }
.page-top .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.page-top .hero-slide.active { opacity: 1; }
.page-top .hero-slide.active img { animation: heroZoom 6s ease-out forwards; }
.page-top .hero-slide img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.0); }
.page-top .hero-card-wrap { position: absolute; left: 16px; bottom: 16px; width: min(360px, calc(100% - 48px)); z-index: 10; }
.page-about .hero-card, .page-contact-thanks .hero-card, .page-contact .hero-card, .page-news-list .hero-card, .page-news-single .hero-card, .page-novelty .hero-card, .page-privacy .hero-card, .page-products .hero-card { position: absolute; bottom: 6%; left: 0; right: 0; display: flex; flex-direction: column; gap: 18px; opacity: 0; transform: translateY(12px); transition: opacity 0.65s ease 0.12s, transform 0.65s ease 0.12s; pointer-events: none; }
.page-top .hero-card { position: absolute; inset: 0; opacity: 0; transform: translateY(8px); transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s; pointer-events: none; }
.page-about .hero-card.active, .page-contact-thanks .hero-card.active, .page-contact .hero-card.active, .page-news-list .hero-card.active, .page-news-single .hero-card.active, .page-novelty .hero-card.active, .page-privacy .hero-card.active, .page-products .hero-card.active { opacity: 1; transform: translateY(0); pointer-events: auto; }
.page-top .hero-card.active { position: relative; opacity: 1; transform: translateY(0); pointer-events: auto; }
.page-about .hero-card-inner, .page-contact-thanks .hero-card-inner, .page-contact .hero-card-inner, .page-news-list .hero-card-inner, .page-news-single .hero-card-inner, .page-novelty .hero-card-inner, .page-privacy .hero-card-inner, .page-products .hero-card-inner { background: rgba(255,255,255,0.72); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 24px; padding: 32px 28px; max-width: 400px; box-shadow: 0 0 12px 0 rgba(0,0,0,0.05); }
.page-top .hero-card-inner { background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-radius: 16px; padding: 20px 22px 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.10); }
.page-about .hero-card-tag, .page-contact-thanks .hero-card-tag, .page-contact .hero-card-tag, .page-news-list .hero-card-tag, .page-news-single .hero-card-tag, .page-novelty .hero-card-tag, .page-privacy .hero-card-tag, .page-products .hero-card-tag { font-size: 15px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dark); margin-bottom: 4px; font-weight: 800; display: flex; align-items: center; gap: 12px; }
.page-top .hero-card-tag { font-size: 11px; font-weight: 800; letter-spacing: 0.1em; color: var(--gold); text-transform: uppercase; margin-bottom: 6px; }
.page-top .hero-card-title { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.5; }
.page-about .hero-card-text, .page-contact-thanks .hero-card-text, .page-contact .hero-card-text, .page-news-list .hero-card-text, .page-news-single .hero-card-text, .page-novelty .hero-card-text, .page-privacy .hero-card-text, .page-products .hero-card-text { font-size: 12.5px; font-weight: 500; color: var(--dark); line-height: 2; }
.page-top .hero-card-text { font-size: 13px; line-height: 2; margin-bottom: 12px; }
.page-about .hero-btn, .page-contact-thanks .hero-btn, .page-contact .hero-btn, .page-news-list .hero-btn, .page-news-single .hero-btn, .page-novelty .hero-btn, .page-privacy .hero-btn, .page-products .hero-btn { display: inline-flex; align-items: center; gap: 14px; background: var(--gold); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; padding: 10px 40px; border-radius: 24px; margin: 8px 0 0 -4px; align-self: flex-start; transition: color 0.4s; box-shadow: 0 2px 10px rgba(var(--gold-rgb), 0.38); }
.page-top .hero-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--blue); color: var(--white); font-size: 10px; font-weight: 800; letter-spacing: 0.1em; padding: 9px 24px; border-radius: 999px; text-decoration: none; transition: opacity 0.2s; }
.page-about .hero-btn-arr, .page-contact-thanks .hero-btn-arr, .page-contact .hero-btn-arr, .page-news-list .hero-btn-arr, .page-news-single .hero-btn-arr, .page-novelty .hero-btn-arr, .page-privacy .hero-btn-arr, .page-products .hero-btn-arr { width: 22px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.page-top .hero-btn-arr { width: 18px; height: 1px; background: currentColor; position: relative; display: inline-block; flex-shrink: 0; }
.page-about .hero-btn-arr::after, .page-contact-thanks .hero-btn-arr::after, .page-contact .hero-btn-arr::after, .page-news-list .hero-btn-arr::after, .page-news-single .hero-btn-arr::after, .page-novelty .hero-btn-arr::after, .page-privacy .hero-btn-arr::after, .page-products .hero-btn-arr::after { content: ""; position: absolute; right: 0; top: -3.5px; width: 8px; height: 8px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }
.page-top .hero-btn-arr::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }
.page-about .hero-btn-arr::after { content: ""; position: absolute; right: 0; top: -4px; width: 8px; height: 8px; border-top: 2px solid currentColor; border-right: 2px solid currentColor; transform: rotate(45deg); }
.page-about .hero-news, .page-contact-thanks .hero-news, .page-contact .hero-news, .page-news-list .hero-news, .page-news-single .hero-news, .page-novelty .hero-news, .page-privacy .hero-news, .page-products .hero-news { position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: var(--blue); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); display: flex; align-items: center; padding: 0 80px; gap: 18px; z-index: 20; text-decoration: none; transition: opacity 0.2s; }
.page-top .hero-news { display: flex; align-items: center; gap: 16px; margin: 20px 0 0; padding: 0 48px; height: 44px; background: var(--blue); text-decoration: none; transition: opacity 0.2s; }
.hero-news:hover { opacity: 0.88; }
.page-about .hero-news-label, .page-contact-thanks .hero-news-label, .page-contact .hero-news-label, .page-news-list .hero-news-label, .page-news-single .hero-news-label, .page-novelty .hero-news-label, .page-privacy .hero-news-label, .page-products .hero-news-label { font-size: 10px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--white); flex-shrink: 0; }
.page-top .hero-news-label { font-size: 10px; font-weight: 800; letter-spacing: 0.15em; color: var(--white); text-transform: uppercase; flex-shrink: 0; }
.page-about .hero-news-sep, .page-contact-thanks .hero-news-sep, .page-contact .hero-news-sep, .page-news-list .hero-news-sep, .page-news-single .hero-news-sep, .page-novelty .hero-news-sep, .page-privacy .hero-news-sep, .page-products .hero-news-sep { width: 1px; height: 13px; background: var(--border-d); flex-shrink: 0; }
.page-top .hero-news-sep { width: 1px; height: 13px; background: rgba(255,255,255,0.3); flex-shrink: 0; }
.page-about .hero-news-date, .page-contact-thanks .hero-news-date, .page-contact .hero-news-date, .page-news-list .hero-news-date, .page-news-single .hero-news-date, .page-novelty .hero-news-date, .page-privacy .hero-news-date, .page-products .hero-news-date { font-size: 12px; color: var(--white); flex-shrink: 0; }
.page-top .hero-news-date { font-size: 11px; color: rgba(255,255,255,0.75); flex-shrink: 0; letter-spacing: 0.05em; }
.page-about .hero-news-text, .page-contact-thanks .hero-news-text, .page-contact .hero-news-text, .page-news-list .hero-news-text, .page-news-single .hero-news-text, .page-novelty .hero-news-text, .page-privacy .hero-news-text, .page-products .hero-news-text { font-size: 13px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1;font-weight: 800; }
.page-top .hero-news-text { font-size: 12px; color: var(--white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex: 1; }
.page-about .hero-news-link, .page-contact-thanks .hero-news-link, .page-contact .hero-news-link, .page-news-list .hero-news-link, .page-news-single .hero-news-link, .page-novelty .hero-news-link, .page-privacy .hero-news-link, .page-products .hero-news-link { font-size: 11px; color: var(--white); letter-spacing: 0.06em; flex-shrink: 0;font-weight: 800; }
.page-top .hero-news-link { font-size: 11px; color: rgba(255,255,255,0.75); flex-shrink: 0; }
.page-about .section-label, .page-contact-thanks .section-label, .page-contact .section-label, .page-news-list .section-label, .page-news-single .section-label, .page-novelty .section-label, .page-privacy .section-label, .page-products .section-label, .page-top .section-label { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 16px; }
.page-about .section-label, .page-contact-thanks .section-label, .page-contact .section-label, .page-news-list .section-label, .page-news-single .section-label, .page-novelty .section-label, .page-privacy .section-label, .page-products .section-label { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 32px; }
.page-about .section-label, .page-products .section-label { display: flex; flex-direction: column; align-items: center; gap: 8px; margin-bottom: 40px; }
.page-about .section-label-en, .page-contact-thanks .section-label-en, .page-contact .section-label-en, .page-news-list .section-label-en, .page-news-single .section-label-en, .page-novelty .section-label-en, .page-privacy .section-label-en, .page-products .section-label-en, .page-top .section-label-en { font-size: 11px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; }
.page-about .section-label-en, .page-contact-thanks .section-label-en, .page-contact .section-label-en, .page-news-list .section-label-en, .page-news-single .section-label-en, .page-novelty .section-label-en, .page-privacy .section-label-en, .page-products .section-label-en { font-family: var(--font-cor); font-size: 11px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; }
.page-about .section-label-ja, .page-contact-thanks .section-label-ja, .page-contact .section-label-ja, .page-news-list .section-label-ja, .page-news-single .section-label-ja, .page-novelty .section-label-ja, .page-privacy .section-label-ja, .page-products .section-label-ja { font-size: 26px; font-weight: 700; letter-spacing: 0.08em; color: var(--dark); }
.page-about .section-label-ja, .page-contact-thanks .section-label-ja, .page-contact .section-label-ja, .page-news-list .section-label-ja, .page-news-single .section-label-ja, .page-novelty .section-label-ja, .page-privacy .section-label-ja { font-size: 26px; font-weight: 700; letter-spacing: 0.08em; color: var(--dark); text-align: center; }
.page-top .section-label-ja { font-size: 24px; font-weight: 700; letter-spacing: 0.08em; color: var(--dark); text-align: left; }
.page-products .section-label-ja { font-size: 26px; font-weight: 700; letter-spacing: 0.08em; color: var(--dark); text-align: left; }
.page-top .section-label-ja-sm { font-size: 15px; font-weight: 500; letter-spacing: 0.08em; color: var(--dark); text-align: left; }
.section-label-line { width: 40px; height: 1px; background: var(--gold); margin-top: 4px; }
.page-top .footer .container { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-radius: 0; width: auto; max-width: var(--max); padding: 0 48px; margin: 0 auto; }
.page-about .back-to-top, .page-contact-thanks .back-to-top, .page-contact .back-to-top, .page-news-list .back-to-top, .page-news-single .back-to-top, .page-novelty .back-to-top, .page-privacy .back-to-top, .page-products .back-to-top { position: fixed; right: 20px; bottom: 20px; width: 48px; height: 48px; border-radius: 50%; background: var(--white); border: 1px solid var(--border-d); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; color: var(--dark); cursor: pointer; z-index: 500; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background 0.2s, color 0.2s; }
.page-top .back-to-top { position: fixed; right: 20px; bottom: 20px; width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 1px solid var(--border-d); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; color: var(--dark); cursor: pointer; z-index: 500; opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background 0.2s, color 0.2s; }
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); color: var(--white); }
.back-to-top svg { width: 20px; height: 20px; }
.page-about .hero-bg-track, .page-contact-thanks .hero-bg-track, .page-contact .hero-bg-track, .page-news-list .hero-bg-track, .page-news-single .hero-bg-track, .page-novelty .hero-bg-track, .page-privacy .hero-bg-track, .page-products .hero-bg-track { position: absolute; inset: 0; overflow: hidden; }
.page-about .hero-bg, .page-contact-thanks .hero-bg, .page-contact .hero-bg, .page-news-list .hero-bg, .page-news-single .hero-bg, .page-novelty .hero-bg, .page-privacy .hero-bg, .page-products .hero-bg { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); transition: opacity 0.9s ease, transform 0.9s ease; overflow: hidden; }
.page-about .hero-bg.active, .page-contact-thanks .hero-bg.active, .page-contact .hero-bg.active, .page-news-list .hero-bg.active, .page-news-single .hero-bg.active, .page-novelty .hero-bg.active, .page-privacy .hero-bg.active, .page-products .hero-bg.active { opacity: 1; transform: translateY(0); }
.page-about .hero-bg .hero-bottles, .hero-bg .hero-bottles img, .hero-bg .bottle-item-onigiri img, .page-contact-thanks .hero-bg .hero-bottles, .hero-bg .hero-bottles img, .hero-bg .bottle-item-onigiri img, .page-contact .hero-bg .hero-bottles, .hero-bg .hero-bottles img, .hero-bg .bottle-item-onigiri img, .page-news-list .hero-bg .hero-bottles, .hero-bg .hero-bottles img, .hero-bg .bottle-item-onigiri img, .page-news-single .hero-bg .hero-bottles, .hero-bg .hero-bottles img, .hero-bg .bottle-item-onigiri img, .page-novelty .hero-bg .hero-bottles, .hero-bg .hero-bottles img, .hero-bg .bottle-item-onigiri img, .page-privacy .hero-bg .hero-bottles, .hero-bg .hero-bottles img, .hero-bg .bottle-item-onigiri img, .page-products .hero-bg .hero-bottles, .hero-bg .hero-bottles img, .hero-bg .bottle-item-onigiri img { animation: none; }
.page-about .hero-bg.active .hero-bottles, .hero-bg.active .hero-bottles-grid, .page-contact-thanks .hero-bg.active .hero-bottles, .hero-bg.active .hero-bottles-grid, .page-contact .hero-bg.active .hero-bottles, .hero-bg.active .hero-bottles-grid, .page-news-list .hero-bg.active .hero-bottles, .hero-bg.active .hero-bottles-grid, .page-news-single .hero-bg.active .hero-bottles, .hero-bg.active .hero-bottles-grid, .page-novelty .hero-bg.active .hero-bottles, .hero-bg.active .hero-bottles-grid, .page-privacy .hero-bg.active .hero-bottles, .hero-bg.active .hero-bottles-grid, .page-products .hero-bg.active .hero-bottles, .hero-bg.active .hero-bottles-grid { animation: kenBurns 6.5s ease-out forwards; }
.page-about .hero-bottles, .page-contact-thanks .hero-bottles, .page-contact .hero-bottles, .page-news-list .hero-bottles, .page-news-single .hero-bottles, .page-novelty .hero-bottles, .page-privacy .hero-bottles, .page-products .hero-bottles { position: absolute; right: 0; bottom: 10%;top: 0; height: 90%; display: flex; align-items: flex-end; gap: 6px; padding: 0 60px 0 0; }
.page-about .bottle-item, .page-contact-thanks .bottle-item, .page-contact .bottle-item, .page-news-list .bottle-item, .page-news-single .bottle-item, .page-novelty .bottle-item, .page-privacy .bottle-item, .page-products .bottle-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.page-about .bottle-item img, .page-contact-thanks .bottle-item img, .page-contact .bottle-item img, .page-news-list .bottle-item img, .page-news-single .bottle-item img, .page-novelty .bottle-item img, .page-privacy .bottle-item img, .page-products .bottle-item img { max-width: 188px; }
.page-about .bottle-item-onigiri, .page-contact-thanks .bottle-item-onigiri, .page-contact .bottle-item-onigiri, .page-news-list .bottle-item-onigiri, .page-news-single .bottle-item-onigiri, .page-novelty .bottle-item-onigiri, .page-privacy .bottle-item-onigiri, .page-products .bottle-item-onigiri { display: flex; flex-direction: column; align-items: center; }
.page-about .bottle-item-onigiri img, .page-contact-thanks .bottle-item-onigiri img, .page-contact .bottle-item-onigiri img, .page-news-list .bottle-item-onigiri img, .page-news-single .bottle-item-onigiri img, .page-novelty .bottle-item-onigiri img, .page-privacy .bottle-item-onigiri img, .page-products .bottle-item-onigiri img { max-width: 580px; }
.page-about .bottle-vis, .page-contact-thanks .bottle-vis, .page-contact .bottle-vis, .page-news-list .bottle-vis, .page-news-single .bottle-vis, .page-novelty .bottle-vis, .page-privacy .bottle-vis, .page-products .bottle-vis { border-radius: 10px 10px 5px 5px; border: 1.5px solid rgba(255,255,255,0.55); box-shadow: 0 8px 40px rgba(43,31,14,0.22), inset 0 1px 0 rgba(255,255,255,0.4); display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.6; text-align: center; padding: 0 8px; position: relative; overflow: hidden; transition: transform 0.4s; }
.page-about .bottle-vis:hover, .page-contact-thanks .bottle-vis:hover, .page-contact .bottle-vis:hover, .page-news-list .bottle-vis:hover, .page-news-single .bottle-vis:hover, .page-novelty .bottle-vis:hover, .page-privacy .bottle-vis:hover, .page-products .bottle-vis:hover { transform: translateY(-6px); }
.page-about .bottle-vis::before, .page-contact-thanks .bottle-vis::before, .page-contact .bottle-vis::before, .page-news-list .bottle-vis::before, .page-news-single .bottle-vis::before, .page-novelty .bottle-vis::before, .page-privacy .bottle-vis::before, .page-products .bottle-vis::before { content: ""; position: absolute; top: 0; left: 30%; width: 28%; height: 100%; background: rgba(255,255,255,0.15); }
.page-about .b-lg, .page-contact-thanks .b-lg, .page-contact .b-lg, .page-news-list .b-lg, .page-news-single .b-lg, .page-novelty .b-lg, .page-privacy .b-lg, .page-products .b-lg { width: 100px; height: 260px; }
.page-about .b-md, .page-contact-thanks .b-md, .page-contact .b-md, .page-news-list .b-md, .page-news-single .b-md, .page-novelty .b-md, .page-privacy .b-md, .page-products .b-md { width: 88px; height: 228px; }
.page-about .b-sm, .page-contact-thanks .b-sm, .page-contact .b-sm, .page-news-list .b-sm, .page-news-single .b-sm, .page-novelty .b-sm, .page-privacy .b-sm, .page-products .b-sm { width: 76px; height: 198px; }
.page-about .bv-gold, .page-contact-thanks .bv-gold, .page-contact .bv-gold, .page-news-list .bv-gold, .page-news-single .bv-gold, .page-novelty .bv-gold, .page-privacy .bv-gold, .page-products .bv-gold { background: linear-gradient(160deg, #E8C86A, #C4982A, #A87A1A); }
.page-about .bv-green, .page-contact-thanks .bv-green, .page-contact .bv-green, .page-news-list .bv-green, .page-news-single .bv-green, .page-novelty .bv-green, .page-privacy .bv-green, .page-products .bv-green { background: linear-gradient(160deg, #7ABCA8, #4A9A84, #2A7A64); }
.page-about .bv-terra, .page-contact-thanks .bv-terra, .page-contact .bv-terra, .page-news-list .bv-terra, .page-news-single .bv-terra, .page-novelty .bv-terra, .page-privacy .bv-terra, .page-products .bv-terra { background: linear-gradient(160deg, #E89A6A, #C47840, #A85C28); }
.page-about .bv-blue, .page-contact-thanks .bv-blue, .page-contact .bv-blue, .page-news-list .bv-blue, .page-news-single .bv-blue, .page-novelty .bv-blue, .page-privacy .bv-blue, .page-products .bv-blue { background: linear-gradient(160deg, #9AB8E0, #6A92C4, #4A72A8); }
.page-about .bottle-label, .page-contact-thanks .bottle-label, .page-contact .bottle-label, .page-news-list .bottle-label, .page-news-single .bottle-label, .page-novelty .bottle-label, .page-privacy .bottle-label, .page-products .bottle-label { font-size: 11px; color: var(--mid); letter-spacing: 0.04em; }
.page-about .hero-bottles-grid, .page-contact-thanks .hero-bottles-grid, .page-contact .hero-bottles-grid, .page-news-list .hero-bottles-grid, .page-news-single .hero-bottles-grid, .page-novelty .hero-bottles-grid, .page-privacy .hero-bottles-grid, .page-products .hero-bottles-grid { position: absolute; right: 0; bottom: 0; top: 0; width: 58%; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 0 24px 0 0; }
.page-about .bottles-row, .page-contact-thanks .bottles-row, .page-contact .bottles-row, .page-news-list .bottles-row, .page-news-single .bottles-row, .page-novelty .bottles-row, .page-privacy .bottles-row, .page-products .bottles-row { display: flex; justify-content: center; align-items: flex-end; gap: 10px; position: relative; margin-bottom: -65px; }
.page-about .bottles-row:last-child, .page-contact-thanks .bottles-row:last-child, .page-contact .bottles-row:last-child, .page-news-list .bottles-row:last-child, .page-news-single .bottles-row:last-child, .page-novelty .bottles-row:last-child, .page-privacy .bottles-row:last-child, .page-products .bottles-row:last-child { margin-bottom: 0; }
.page-about .bottles-row:nth-child(1), .page-contact-thanks .bottles-row:nth-child(1), .page-contact .bottles-row:nth-child(1), .page-news-list .bottles-row:nth-child(1), .page-news-single .bottles-row:nth-child(1), .page-novelty .bottles-row:nth-child(1), .page-privacy .bottles-row:nth-child(1), .page-products .bottles-row:nth-child(1) { z-index: 1; }
.page-about .bottles-row:nth-child(2), .page-contact-thanks .bottles-row:nth-child(2), .page-contact .bottles-row:nth-child(2), .page-news-list .bottles-row:nth-child(2), .page-news-single .bottles-row:nth-child(2), .page-novelty .bottles-row:nth-child(2), .page-privacy .bottles-row:nth-child(2), .page-products .bottles-row:nth-child(2) { z-index: 2; }
.page-about .bottles-row:nth-child(3), .page-contact-thanks .bottles-row:nth-child(3), .page-contact .bottles-row:nth-child(3), .page-news-list .bottles-row:nth-child(3), .page-news-single .bottles-row:nth-child(3), .page-novelty .bottles-row:nth-child(3), .page-privacy .bottles-row:nth-child(3), .page-products .bottles-row:nth-child(3) { z-index: 3; }
.page-about .hero-bottles-grid .bottle-item img, .page-contact-thanks .hero-bottles-grid .bottle-item img, .page-contact .hero-bottles-grid .bottle-item img, .page-news-list .hero-bottles-grid .bottle-item img, .page-news-single .hero-bottles-grid .bottle-item img, .page-novelty .hero-bottles-grid .bottle-item img, .page-privacy .hero-bottles-grid .bottle-item img, .page-products .hero-bottles-grid .bottle-item img { max-width: 112px; }
.page-about .hero-overlay, .page-contact-thanks .hero-overlay, .page-contact .hero-overlay, .page-news-list .hero-overlay, .page-news-single .hero-overlay, .page-novelty .hero-overlay, .page-privacy .hero-overlay, .page-products .hero-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; z-index: 10; pointer-events: none; }
.page-about .hero-topbar-spacer, .page-contact-thanks .hero-topbar-spacer, .page-contact .hero-topbar-spacer, .page-news-list .hero-topbar-spacer, .page-news-single .hero-topbar-spacer, .page-novelty .hero-topbar-spacer, .page-privacy .hero-topbar-spacer, .page-products .hero-topbar-spacer { flex-shrink: 0; height: var(--topbar-h); }
.page-about .hero-left, .page-contact-thanks .hero-left, .page-contact .hero-left, .page-news-list .hero-left, .page-news-single .hero-left, .page-novelty .hero-left, .page-privacy .hero-left, .page-products .hero-left { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 0 80px 80px; max-width: 720px; pointer-events: none; }
.page-about .hero-en, .page-contact-thanks .hero-en, .page-contact .hero-en, .page-news-list .hero-en, .page-news-single .hero-en, .page-novelty .hero-en, .page-privacy .hero-en, .page-products .hero-en { font-family: var(--font-cor); font-size: 13px; letter-spacing: 0.35em; color: var(--brown-m); text-transform: uppercase; margin-bottom: 18px; opacity: 0; animation: hFadeUp 0.9s 0.3s forwards; }
.page-about .hero-cards-viewport, .page-contact-thanks .hero-cards-viewport, .page-contact .hero-cards-viewport, .page-news-list .hero-cards-viewport, .page-news-single .hero-cards-viewport, .page-novelty .hero-cards-viewport, .page-privacy .hero-cards-viewport, .page-products .hero-cards-viewport { position: relative; height: 180px; pointer-events: none; }
.page-about .hero-cards-track, .page-contact-thanks .hero-cards-track, .page-contact .hero-cards-track, .page-news-list .hero-cards-track, .page-news-single .hero-cards-track, .page-novelty .hero-cards-track, .page-privacy .hero-cards-track, .page-products .hero-cards-track { position: relative; height: 100%; }
.page-about .hero-card-tag::before, .page-contact-thanks .hero-card-tag::before, .page-contact .hero-card-tag::before, .page-news-list .hero-card-tag::before, .page-news-single .hero-card-tag::before, .page-novelty .hero-card-tag::before, .page-privacy .hero-card-tag::before, .page-products .hero-card-tag::before { content: ""; display: block; width: 32px; height: 1px; background: var(--light); flex-shrink: 0; }
.page-about .hero-controls, .page-contact-thanks .hero-controls, .page-contact .hero-controls, .page-news-list .hero-controls, .page-news-single .hero-controls, .page-novelty .hero-controls, .page-privacy .hero-controls, .page-products .hero-controls { position: absolute; bottom: 80px; left: 80px; display: flex; align-items: center; gap: 20px; z-index: 20; }
.page-about .hero-dots, .page-contact-thanks .hero-dots, .page-contact .hero-dots, .page-news-list .hero-dots, .page-news-single .hero-dots, .page-novelty .hero-dots, .page-privacy .hero-dots, .page-products .hero-dots { display: flex; gap: 10px; }
.page-about .hero-dot, .page-contact-thanks .hero-dot, .page-contact .hero-dot, .page-news-list .hero-dot, .page-news-single .hero-dot, .page-novelty .hero-dot, .page-privacy .hero-dot, .page-products .hero-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(43,31,14,0.25); cursor: pointer; transition: all 0.3s; }
.page-about .hero-dot.active, .page-contact-thanks .hero-dot.active, .page-contact .hero-dot.active, .page-news-list .hero-dot.active, .page-news-single .hero-dot.active, .page-novelty .hero-dot.active, .page-privacy .hero-dot.active, .page-products .hero-dot.active { background: var(--gold); width: 24px; border-radius: 3px; }
.page-about .hero-arrows, .page-contact-thanks .hero-arrows, .page-contact .hero-arrows, .page-news-list .hero-arrows, .page-news-single .hero-arrows, .page-novelty .hero-arrows, .page-privacy .hero-arrows, .page-products .hero-arrows { display: flex; gap: 8px; }
.page-about .hero-arrow, .page-contact-thanks .hero-arrow, .page-contact .hero-arrow, .page-news-list .hero-arrow, .page-news-single .hero-arrow, .page-novelty .hero-arrow, .page-privacy .hero-arrow, .page-products .hero-arrow { width: 40px; height: 40px; border: 1px solid rgba(43,31,14,0.18); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; background: rgba(255,255,255,0.84); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); font-size: 18px; color: var(--mid); transition: all 0.2s; user-select: none; }
.page-about .hero-arrow:hover, .page-contact-thanks .hero-arrow:hover, .page-contact .hero-arrow:hover, .page-news-list .hero-arrow:hover, .page-news-single .hero-arrow:hover, .page-novelty .hero-arrow:hover, .page-privacy .hero-arrow:hover, .page-products .hero-arrow:hover { background: var(--gold); color: var(--white); border-color: transparent; }
.page-top .container, .page-about .container, .page-contact-thanks .container, .page-contact .container, .page-news-list .container, .page-news-single .container, .page-novelty .container, .page-privacy .container, .page-products .container { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.page-about .container-flow, .page-contact-thanks .container-flow, .page-contact .container-flow, .page-news-list .container-flow, .page-news-single .container-flow, .page-novelty .container-flow, .page-privacy .container-flow, .page-products .container-flow { max-width: var(--max); margin: 0 auto; padding: 0 16px; }
.page-top .fade-up, .page-about .fade-up, .page-contact-thanks .fade-up, .page-contact .fade-up, .page-news-list .fade-up, .page-news-single .fade-up, .page-novelty .fade-up, .page-privacy .fade-up, .page-products .fade-up { opacity: 0; transform: translateY(10px); transition: opacity 0.4s ease, transform 0.4s ease; }
.page-top .fade-up.visible, .page-about .fade-up.visible, .page-contact-thanks .fade-up.visible, .page-contact .fade-up.visible, .page-news-list .fade-up.visible, .page-news-single .fade-up.visible, .page-novelty .fade-up.visible, .page-privacy .fade-up.visible, .page-products .fade-up.visible { opacity: 1; transform: translateY(0); }
.page-top .fd1, .page-about .fd1, .page-contact-thanks .fd1, .page-contact .fd1, .page-news-list .fd1, .page-news-single .fd1, .page-novelty .fd1, .page-privacy .fd1, .page-products .fd1 { transition-delay: 0.05s; }
.page-top .fd2, .page-about .fd2, .page-contact-thanks .fd2, .page-contact .fd2, .page-news-list .fd2, .page-news-single .fd2, .page-novelty .fd2, .page-privacy .fd2, .page-products .fd2 { transition-delay: 0.1s; }
.page-top .fd3, .page-about .fd3, .page-contact-thanks .fd3, .page-contact .fd3, .page-news-list .fd3, .page-news-single .fd3, .page-novelty .fd3, .page-privacy .fd3, .page-products .fd3 { transition-delay: 0.15s; }
.page-top .fd4, .page-about .fd4, .page-contact-thanks .fd4, .page-contact .fd4, .page-news-list .fd4, .page-news-single .fd4, .page-novelty .fd4, .page-privacy .fd4, .page-products .fd4 { transition-delay: 0.2s; }
.page-about .topbar-spacer, .page-contact-thanks .topbar-spacer, .page-contact .topbar-spacer, .page-news-list .topbar-spacer, .page-news-single .topbar-spacer, .page-novelty .topbar-spacer, .page-privacy .topbar-spacer, .page-products .topbar-spacer { height: var(--topbar-h); }
.page-about .page-hero, .page-contact-thanks .page-hero, .page-contact .page-hero, .page-news-list .page-hero, .page-news-single .page-hero, .page-novelty .page-hero, .page-privacy .page-hero, .page-products .page-hero { position: relative; min-height: 420px; overflow: hidden; padding-top: var(--topbar-h); box-sizing: border-box; }
.page-news-list .page-hero { position: relative; min-height: 320px; overflow: hidden; padding-top: var(--topbar-h); box-sizing: border-box; }
.page-about .page-hero-bg, .page-contact-thanks .page-hero-bg, .page-contact .page-hero-bg, .page-news-list .page-hero-bg, .page-news-single .page-hero-bg, .page-novelty .page-hero-bg, .page-privacy .page-hero-bg, .page-products .page-hero-bg { position: absolute; inset: 0; }
.page-news-list .page-hero-bg { position: absolute; inset: 0; background: url("../img/lead03.webp") center/cover no-repeat; }
.page-about .phbg-slide, .page-contact-thanks .phbg-slide, .page-contact .phbg-slide, .page-news-list .phbg-slide, .page-news-single .phbg-slide, .page-novelty .phbg-slide, .page-privacy .phbg-slide, .page-products .phbg-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.page-about .phbg-slide img, .page-contact-thanks .phbg-slide img, .page-contact .phbg-slide img, .page-news-list .phbg-slide img, .page-news-single .phbg-slide img, .page-novelty .phbg-slide img, .page-privacy .phbg-slide img, .page-products .phbg-slide img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .phbg-slide.active, .page-contact-thanks .phbg-slide.active, .page-contact .phbg-slide.active, .page-news-list .phbg-slide.active, .page-news-single .phbg-slide.active, .page-novelty .phbg-slide.active, .page-privacy .phbg-slide.active, .page-products .phbg-slide.active { opacity: 1; }
.page-about .phbg-1, .page-contact-thanks .phbg-1, .page-contact .phbg-1, .page-news-list .phbg-1, .page-news-single .phbg-1, .page-privacy .phbg-1 { background: linear-gradient(135deg, #C49828 0%, #8A6010 40%, #4A3008 100%); }
.page-about .phbg-2, .page-contact-thanks .phbg-2, .page-contact .phbg-2, .page-news-list .phbg-2, .page-news-single .phbg-2, .page-privacy .phbg-2 { background: linear-gradient(135deg, #7ABCA8 0%, #4A9A84 40%, #2A6A54 100%); }
.page-about .phbg-3, .page-contact-thanks .phbg-3, .page-contact .phbg-3, .page-news-list .phbg-3, .page-news-single .phbg-3, .page-privacy .phbg-3 { background: linear-gradient(135deg, #D4A570 0%, #A87040 40%, #6A3810 100%); }
.page-about .phbg-4, .page-contact-thanks .phbg-4, .page-contact .phbg-4, .page-news-list .phbg-4, .page-news-single .phbg-4, .page-privacy .phbg-4 { background: linear-gradient(135deg, #9AB0C8 0%, #6A88A8 40%, #3A5878 100%); }
.page-about .page-hero-overlay, .page-contact-thanks .page-hero-overlay, .page-contact .page-hero-overlay, .page-news-list .page-hero-overlay, .page-news-single .page-hero-overlay, .page-novelty .page-hero-overlay, .page-privacy .page-hero-overlay, .page-products .page-hero-overlay { position: absolute; inset: 0; z-index: 10; background: linear-gradient(rgba(38,34,31,0.14), rgba(38,34,31,0.65)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: calc(var(--topbar-h) + 20px) 20px 40px; text-align: center; }
.page-about .page-hero-overlay, .page-products .page-hero-overlay { position: absolute; inset: 0; z-index: 10; background: linear-gradient(rgba(38,34,31,0.08), rgba(38,34,31,0.62)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; padding: calc(var(--topbar-h) + 20px) 20px 48px; text-align: center; }
.page-news-list .page-hero-overlay { position: absolute; inset: 0; z-index: 10; background: linear-gradient(rgba(38,34,31,0.38), rgba(38,34,31,0.78)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: calc(var(--topbar-h) + 20px) 20px 40px; text-align: center; }
.page-about .page-hero-breadcrumb, .page-contact-thanks .page-hero-breadcrumb, .page-contact .page-hero-breadcrumb, .page-news-list .page-hero-breadcrumb, .page-news-single .page-hero-breadcrumb, .page-novelty .page-hero-breadcrumb, .page-privacy .page-hero-breadcrumb, .page-products .page-hero-breadcrumb { font-size: 11px; letter-spacing: 0.2em; color: rgba(255,255,255,0.5); text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.page-about .page-hero-en, .page-contact-thanks .page-hero-en, .page-contact .page-hero-en, .page-news-list .page-hero-en, .page-news-single .page-hero-en, .page-novelty .page-hero-en, .page-products .page-hero-en { font-size: 11px; letter-spacing: 0.45em; color: var(--gold-l); }
.page-privacy .page-hero-en { font-size: 11px; letter-spacing: 0.45em; text-transform: uppercase; color: var(--gold-l); }
.page-about .page-hero-h1, .page-contact-thanks .page-hero-h1, .page-contact .page-hero-h1, .page-news-list .page-hero-h1, .page-news-single .page-hero-h1, .page-novelty .page-hero-h1, .page-privacy .page-hero-h1, .page-products .page-hero-h1 { font-size: 32px; font-weight: 700; letter-spacing: 0.08em; color: var(--white); line-height: 1.3; }
.page-about .page-hero-h1, .page-products .page-hero-h1 { font-size: 40px; font-weight: 700; letter-spacing: 0.08em; color: var(--white); line-height: 1.3; }
.page-news-list .page-hero-h1 { font-size: 36px; font-weight: 700; letter-spacing: 0.08em; color: var(--white); line-height: 1.3; }
.page-contact-thanks .page-hero-sub, .page-contact .page-hero-sub, .page-news-single .page-hero-sub { font-size: 15px; color:var(--white); letter-spacing: 0.04em; }
.page-about .page-hero-sub, .page-products .page-hero-sub { font-size: 15px; color: var(--white); }
.page-about .page-hero-sub { font-size: 15px; color:var(--white); font-weight: bold; }
.page-products .page-hero-sub { font-size: 16px; color:var(--white); font-weight: bold; }
.page-novelty .page-hero-sub { font-size: 15px; color:var(--white); letter-spacing: 0.04em;font-weight: bold; }
.page-news-list .page-hero-sub { font-size: 15px; color:#fff; }
.page-news-list .page-hero-sub { font-size: 15px; color: var(--white);font-weight: bold; }
.page-privacy .page-hero-sub { font-size: 15px; color:var(--white); }
.page-about .page-hero-line, .page-contact-thanks .page-hero-line, .page-contact .page-hero-line, .page-news-list .page-hero-line, .page-news-single .page-hero-line, .page-novelty .page-hero-line, .page-privacy .page-hero-line, .page-products .page-hero-line { width: 40px; height: 1px; background: var(--gold-l); }
.page-about .ph-dots, .page-contact-thanks .ph-dots, .page-contact .ph-dots, .page-news-list .ph-dots, .page-news-single .ph-dots, .page-novelty .ph-dots, .page-privacy .ph-dots, .page-products .ph-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 20; }
.page-about .ph-dot, .page-contact-thanks .ph-dot, .page-contact .ph-dot, .page-news-list .ph-dot, .page-news-single .ph-dot, .page-novelty .ph-dot, .page-privacy .ph-dot, .page-products .ph-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.35); cursor: pointer; transition: all 0.3s; }
.page-about .ph-dot.active, .page-contact-thanks .ph-dot.active, .page-contact .ph-dot.active, .page-news-list .ph-dot.active, .page-news-single .ph-dot.active, .page-novelty .ph-dot.active, .page-privacy .ph-dot.active, .page-products .ph-dot.active { background: var(--gold-l); width: 20px; border-radius: 3px; }
.page-about .lead-section, .page-contact-thanks .lead-section, .page-contact .lead-section, .page-news-list .lead-section, .page-news-single .lead-section, .page-novelty .lead-section, .page-privacy .lead-section, .page-products .lead-section { padding: 72px 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.page-about .lead-inner, .page-contact-thanks .lead-inner, .page-contact .lead-inner, .page-news-list .lead-inner, .page-news-single .lead-inner, .page-novelty .lead-inner, .page-privacy .lead-inner, .page-products .lead-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: center; max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.page-about .lead-visual, .page-contact-thanks .lead-visual, .page-contact .lead-visual, .page-news-list .lead-visual, .page-news-single .lead-visual, .page-novelty .lead-visual, .page-privacy .lead-visual, .page-products .lead-visual { aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; background: linear-gradient(160deg, #E8C86A 0%, #B87A20 50%, #7A4A08 100%); position: relative; box-shadow: var(--shadow-lg); }
.page-about .lead-visual img, .page-contact-thanks .lead-visual img, .page-contact .lead-visual img, .page-news-list .lead-visual img, .page-news-single .lead-visual img, .page-novelty .lead-visual img, .page-privacy .lead-visual img, .page-products .lead-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .lead-visual::after, .page-contact-thanks .lead-visual::after, .page-contact .lead-visual::after, .page-news-list .lead-visual::after, .page-news-single .lead-visual::after, .page-novelty .lead-visual::after, .page-privacy .lead-visual::after, .page-products .lead-visual::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.05) 8px, rgba(255,255,255,0.05) 9px); }
.page-about .lead-visual-label, .page-contact-thanks .lead-visual-label, .page-contact .lead-visual-label, .page-news-list .lead-visual-label, .page-news-single .lead-visual-label, .page-novelty .lead-visual-label, .page-privacy .lead-visual-label, .page-products .lead-visual-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; color: rgba(255,255,255,0.5); font-size: 12px; font-weight: 600; letter-spacing: 0.1em; z-index: 2; }
.page-about .lead-text, .page-contact-thanks .lead-text, .page-contact .lead-text, .page-news-list .lead-text, .page-news-single .lead-text, .page-novelty .lead-text, .page-privacy .lead-text, .page-products .lead-text { display: flex; flex-direction: column; gap: 20px; }
.page-about .lead-en, .page-contact-thanks .lead-en, .page-contact .lead-en, .page-news-list .lead-en, .page-news-single .lead-en, .page-novelty .lead-en, .page-privacy .lead-en, .page-products .lead-en { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.page-about .lead-heading, .page-contact-thanks .lead-heading, .page-contact .lead-heading, .page-news-list .lead-heading, .page-news-single .lead-heading, .page-novelty .lead-heading, .page-privacy .lead-heading, .page-products .lead-heading { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1.6; letter-spacing: 0.05em; }
.page-about .lead-body, .page-contact-thanks .lead-body, .page-contact .lead-body, .page-news-list .lead-body, .page-news-single .lead-body, .page-novelty .lead-body, .page-privacy .lead-body, .page-products .lead-body { font-size: 14px; color: var(--dark); line-height: 2.5; border-left: 3px solid var(--gold); padding-left: 18px; }
.page-about .nv-btn, .page-contact-thanks .nv-btn, .page-contact .nv-btn, .page-news-list .nv-btn, .page-news-single .nv-btn, .page-novelty .nv-btn, .page-privacy .nv-btn, .page-products .nv-btn { display: inline-flex; align-items: center; gap: 0; background: var(--blue); color: var(--white); font-size: 16px; font-weight: 700; letter-spacing: 0.08em; padding: 14px 36px; border-radius: 999px; box-shadow: 0 2px 12px rgba(var(--blue-rgb), 0.5); position: relative; overflow: hidden; isolation: isolate; transition: color 0.4s; text-decoration: none; align-self: flex-start; }
.page-about .nv-btn::before, .page-contact-thanks .nv-btn::before, .page-contact .nv-btn::before, .page-news-list .nv-btn::before, .page-news-single .nv-btn::before, .page-novelty .nv-btn::before, .page-privacy .nv-btn::before, .page-products .nv-btn::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: #fff; border-radius: 50%; transform: translate(-50%,-50%); transition: width 1s, height 1s; opacity: 0; z-index: 1; }
.page-about .nv-btn:hover::before, .page-contact-thanks .nv-btn:hover::before, .page-contact .nv-btn:hover::before, .page-news-list .nv-btn:hover::before, .page-news-single .nv-btn:hover::before, .page-novelty .nv-btn:hover::before, .page-privacy .nv-btn:hover::before, .page-products .nv-btn:hover::before { width: 400px; height: 400px; opacity: 1; }
.page-about .nv-btn:hover, .page-contact-thanks .nv-btn:hover, .page-contact .nv-btn:hover, .page-news-list .nv-btn:hover, .page-news-single .nv-btn:hover, .page-novelty .nv-btn:hover, .page-privacy .nv-btn:hover, .page-products .nv-btn:hover { color: var(--blue); }
.page-about .nv-btn > *, .page-contact-thanks .nv-btn > *, .page-contact .nv-btn > *, .page-news-list .nv-btn > *, .page-news-single .nv-btn > *, .page-novelty .nv-btn > *, .page-privacy .nv-btn > *, .page-products .nv-btn > * { position: relative; z-index: 2; }
.page-about .arr, .page-contact-thanks .arr, .page-contact .arr, .page-news-list .arr, .page-news-single .arr, .page-novelty .arr, .page-privacy .arr { width: 20px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.page-products .arr { width: 20px; height: 1px; background: currentColor; position: relative; display: inline-block; vertical-align: middle; }
.page-about .arr::after, .page-contact-thanks .arr::after, .page-contact .arr::after, .page-news-list .arr::after, .page-news-single .arr::after, .page-novelty .arr::after, .page-privacy .arr::after { content: ""; position: absolute; right: 0; top: -3.5px; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }
.page-products .arr::after { content: ""; position: absolute; right: 0; top: 50%; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: translateY(-50%) rotate(45deg); }
.page-about .scene-section, .page-contact-thanks .scene-section, .page-contact .scene-section, .page-news-list .scene-section, .page-news-single .scene-section, .page-novelty .scene-section, .page-privacy .scene-section, .page-products .scene-section { padding: 72px 0; background: var(--cream-d); }
.page-about .scene-list, .page-contact-thanks .scene-list, .page-contact .scene-list, .page-news-list .scene-list, .page-news-single .scene-list, .page-novelty .scene-list, .page-privacy .scene-list, .page-products .scene-list { max-width: var(--max); margin: 56px auto 0; padding: 0 48px; display: flex; flex-direction: column; gap: 0; }
.page-about .scene-item, .page-contact-thanks .scene-item, .page-contact .scene-item, .page-news-list .scene-item, .page-news-single .scene-item, .page-novelty .scene-item, .page-privacy .scene-item, .page-products .scene-item { display: grid; grid-template-columns: 340px 1fr; align-items: stretch; border-radius: 20px; overflow: hidden; background: var(--white); box-shadow: var(--shadow); }
.page-about .scene-item.rev, .page-contact-thanks .scene-item.rev, .page-contact .scene-item.rev, .page-news-list .scene-item.rev, .page-news-single .scene-item.rev, .page-privacy .scene-item.rev, .page-products .scene-item.rev { grid-template-columns: 1fr 340px; }
.page-about .scene-item + .scene-item, .page-contact-thanks .scene-item + .scene-item, .page-contact .scene-item + .scene-item, .page-news-list .scene-item + .scene-item, .page-news-single .scene-item + .scene-item, .page-novelty .scene-item + .scene-item, .page-privacy .scene-item + .scene-item, .page-products .scene-item + .scene-item { margin-top: 32px; }
.page-about .scene-photo, .page-contact-thanks .scene-photo, .page-contact .scene-photo, .page-news-list .scene-photo, .page-news-single .scene-photo, .page-novelty .scene-photo, .page-privacy .scene-photo, .page-products .scene-photo { min-height: 260px; position: relative; overflow: hidden; }
.page-about .scene-photo-bg, .page-contact-thanks .scene-photo-bg, .page-contact .scene-photo-bg, .page-news-list .scene-photo-bg, .page-news-single .scene-photo-bg, .page-novelty .scene-photo-bg, .page-privacy .scene-photo-bg, .page-products .scene-photo-bg { position: absolute; inset: 0; }
.page-about .scene-photo-bg img, .page-contact-thanks .scene-photo-bg img, .page-contact .scene-photo-bg img, .page-news-list .scene-photo-bg img, .page-news-single .scene-photo-bg img, .page-novelty .scene-photo-bg img, .page-privacy .scene-photo-bg img, .page-products .scene-photo-bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .scene-photo-label, .page-contact-thanks .scene-photo-label, .page-contact .scene-photo-label, .page-news-list .scene-photo-label, .page-news-single .scene-photo-label, .page-novelty .scene-photo-label, .page-privacy .scene-photo-label, .page-products .scene-photo-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); text-align: center; color: rgba(255,255,255,0.55); font-size: 12px; font-weight: 600; letter-spacing: 0.12em; }
.page-about .scene-body, .page-contact-thanks .scene-body, .page-contact .scene-body, .page-news-list .scene-body, .page-news-single .scene-body, .page-novelty .scene-body, .page-privacy .scene-body, .page-products .scene-body { padding: 40px 48px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.page-about .scene-num, .page-contact-thanks .scene-num, .page-contact .scene-num, .page-news-list .scene-num, .page-news-single .scene-num, .page-novelty .scene-num, .page-privacy .scene-num, .page-products .scene-num { font-size: 11px; font-weight: 700; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; }
.page-about .scene-title, .page-contact-thanks .scene-title, .page-contact .scene-title, .page-news-list .scene-title, .page-news-single .scene-title, .page-novelty .scene-title, .page-privacy .scene-title, .page-products .scene-title { font-size: 22px; font-weight: 700; color: var(--dark); line-height: 1.5; letter-spacing: 0.04em; }
.page-about .scene-text, .page-contact-thanks .scene-text, .page-contact .scene-text, .page-news-list .scene-text, .page-news-single .scene-text, .page-privacy .scene-text, .page-products .scene-text { font-size: 14px; color: var(--dark); line-height: 2.3; }
.page-novelty .scene-text { font-size: 15px; color: var(--dark); }
.page-about .scene-tags, .page-contact-thanks .scene-tags, .page-contact .scene-tags, .page-news-list .scene-tags, .page-news-single .scene-tags, .page-novelty .scene-tags, .page-privacy .scene-tags, .page-products .scene-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.page-about .scene-tag, .page-contact-thanks .scene-tag, .page-contact .scene-tag, .page-news-list .scene-tag, .page-news-single .scene-tag, .page-novelty .scene-tag, .page-privacy .scene-tag, .page-products .scene-tag { font-size: 11px; color: var(--dark); border: 1px solid var(--dark); border-radius: 999px; padding: 3px 12px; font-weight: 600; letter-spacing: 0.04em; }
.page-about .phbg-corp, .page-contact-thanks .phbg-corp, .page-contact .phbg-corp, .page-news-list .phbg-corp, .page-news-single .phbg-corp, .page-privacy .phbg-corp, .page-products .phbg-corp { background: linear-gradient(135deg, #C8A898 0%, #A07860 40%, #7A5040 100%); }
.page-about .phbg-camp, .page-contact-thanks .phbg-camp, .page-contact .phbg-camp, .page-news-list .phbg-camp, .page-news-single .phbg-camp, .page-privacy .phbg-camp, .page-products .phbg-camp { background: linear-gradient(135deg, #88A8C8 0%, #5A7AA4 40%, #3A5A84 100%); }
.page-about .phbg-welfare, .page-contact-thanks .phbg-welfare, .page-contact .phbg-welfare, .page-news-list .phbg-welfare, .page-news-single .phbg-welfare, .page-privacy .phbg-welfare, .page-products .phbg-welfare { background: linear-gradient(135deg, #8AB890 0%, #5A9060 40%, #3A6840 100%); }
.page-about .scenes-grid-section, .page-contact-thanks .scenes-grid-section, .page-contact .scenes-grid-section, .page-news-list .scenes-grid-section, .page-news-single .scenes-grid-section, .page-privacy .scenes-grid-section, .page-products .scenes-grid-section { padding: 0; background: rgba(255,255,255,0.8); }
.page-about .scenes-grid, .page-contact-thanks .scenes-grid, .page-contact .scenes-grid, .page-news-list .scenes-grid, .page-news-single .scenes-grid, .page-novelty .scenes-grid, .page-privacy .scenes-grid, .page-products .scenes-grid { margin-top: 36px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.page-about .scene-card, .page-contact-thanks .scene-card, .page-contact .scene-card, .page-news-list .scene-card, .page-news-single .scene-card, .page-novelty .scene-card, .page-privacy .scene-card, .page-products .scene-card { border-radius: 16px; overflow: hidden; background: var(--white); box-shadow: 0 2px 16px rgba(43,31,14,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.page-about .scene-card:hover, .page-contact-thanks .scene-card:hover, .page-contact .scene-card:hover, .page-news-list .scene-card:hover, .page-news-single .scene-card:hover, .page-privacy .scene-card:hover, .page-products .scene-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.page-about .scene-card-img, .page-contact-thanks .scene-card-img, .page-contact .scene-card-img, .page-news-list .scene-card-img, .page-news-single .scene-card-img, .page-novelty .scene-card-img, .page-privacy .scene-card-img, .page-products .scene-card-img { aspect-ratio: 4/3; position: relative; overflow: hidden; }
.page-about .scene-card-img img, .page-contact-thanks .scene-card-img img, .page-contact .scene-card-img img, .page-news-list .scene-card-img img, .page-news-single .scene-card-img img, .page-novelty .scene-card-img img, .page-privacy .scene-card-img img, .page-products .scene-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.page-about .scene-card:hover .scene-card-img img, .page-contact-thanks .scene-card:hover .scene-card-img img, .page-contact .scene-card:hover .scene-card-img img, .page-news-list .scene-card:hover .scene-card-img img, .page-news-single .scene-card:hover .scene-card-img img, .page-privacy .scene-card:hover .scene-card-img img, .page-products .scene-card:hover .scene-card-img img { transform: scale(1.04); }
.page-about .scene-card-img-bg, .page-contact-thanks .scene-card-img-bg, .page-contact .scene-card-img-bg, .page-news-list .scene-card-img-bg, .page-news-single .scene-card-img-bg, .page-novelty .scene-card-img-bg, .page-privacy .scene-card-img-bg, .page-products .scene-card-img-bg { position: absolute; inset: 0; }
.page-about .scene-card-img-label, .page-contact-thanks .scene-card-img-label, .page-contact .scene-card-img-label, .page-news-list .scene-card-img-label, .page-news-single .scene-card-img-label, .page-novelty .scene-card-img-label, .page-privacy .scene-card-img-label, .page-products .scene-card-img-label { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); color: rgba(255,255,255,0.55); font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-align: center; }
.page-about .scene-card-body, .page-contact-thanks .scene-card-body, .page-contact .scene-card-body, .page-news-list .scene-card-body, .page-news-single .scene-card-body, .page-novelty .scene-card-body, .page-privacy .scene-card-body, .page-products .scene-card-body { padding: 14px 16px 18px; }
.page-about .scene-card-title, .page-contact-thanks .scene-card-title, .page-contact .scene-card-title, .page-news-list .scene-card-title, .page-news-single .scene-card-title, .page-privacy .scene-card-title, .page-products .scene-card-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.4;text-align: center; }
.page-novelty .scene-card-title { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0 0 6px; line-height: 1.8;text-align: center; }
.page-about .scene-card-text, .page-contact-thanks .scene-card-text, .page-contact .scene-card-text, .page-news-list .scene-card-text, .page-news-single .scene-card-text, .page-privacy .scene-card-text, .page-products .scene-card-text { font-size: 12px; color: var(--dark); line-height: 1.9; }
.page-novelty .scene-card-text { font-size: 12px; color: var(--dark); }
.page-about .scene-card.dim, .page-contact-thanks .scene-card.dim, .page-contact .scene-card.dim, .page-news-list .scene-card.dim, .page-news-single .scene-card.dim, .page-novelty .scene-card.dim, .page-privacy .scene-card.dim, .page-products .scene-card.dim { opacity: 0.55; }
.page-about .g1, .page-contact-thanks .g1, .page-contact .g1, .page-news-list .g1, .page-news-single .g1, .page-privacy .g1, .page-products .g1 { background:linear-gradient(135deg,#E8C86A,#A87A1A); }
.page-about .g2, .page-contact-thanks .g2, .page-contact .g2, .page-news-list .g2, .page-news-single .g2, .page-privacy .g2, .page-products .g2 { background:linear-gradient(135deg,#9AB8E0,#4A72A8); }
.page-about .g3, .page-contact-thanks .g3, .page-contact .g3, .page-news-list .g3, .page-news-single .g3, .page-privacy .g3, .page-products .g3 { background:linear-gradient(135deg,#C8A898,#7A5040); }
.page-about .g4, .page-contact-thanks .g4, .page-contact .g4, .page-news-list .g4, .page-news-single .g4, .page-privacy .g4, .page-products .g4 { background:linear-gradient(135deg,#8AB890,#3A6840); }
.page-about .g5, .page-contact-thanks .g5, .page-contact .g5, .page-news-list .g5, .page-news-single .g5, .page-privacy .g5, .page-products .g5 { background:linear-gradient(135deg,#E8A878,#A85830); }
.page-about .g6, .page-contact-thanks .g6, .page-contact .g6, .page-news-list .g6, .page-news-single .g6, .page-privacy .g6, .page-products .g6 { background:linear-gradient(135deg,#A898C8,#5840A8); }
.page-about .g7, .page-contact-thanks .g7, .page-contact .g7, .page-news-list .g7, .page-news-single .g7, .page-privacy .g7, .page-products .g7 { background:linear-gradient(135deg,#98C8B8,#388870); }
.page-about .g8, .page-contact-thanks .g8, .page-contact .g8, .page-news-list .g8, .page-news-single .g8, .page-privacy .g8, .page-products .g8 { background:linear-gradient(135deg,#C8C898,#887848); }
.page-about .g9, .page-contact-thanks .g9, .page-contact .g9, .page-news-list .g9, .page-news-single .g9, .page-privacy .g9, .page-products .g9 { background:linear-gradient(135deg,#B8B8B8,#686868); }
.page-about .g10, .page-contact-thanks .g10, .page-contact .g10, .page-news-list .g10, .page-news-single .g10, .page-privacy .g10, .page-products .g10 { background:linear-gradient(135deg,#B8C8A8,#607850); }
.page-about .g11, .page-contact-thanks .g11, .page-contact .g11, .page-news-list .g11, .page-news-single .g11, .page-privacy .g11, .page-products .g11 { background:linear-gradient(135deg,#C8A8A8,#885050); }
.page-about .g12, .page-contact-thanks .g12, .page-contact .g12, .page-news-list .g12, .page-news-single .g12, .page-privacy .g12, .page-products .g12 { background:linear-gradient(135deg,#A8B8C8,#486880); }
.page-about .lineup-section, .page-contact-thanks .lineup-section, .page-contact .lineup-section, .page-news-list .lineup-section, .page-news-single .lineup-section, .page-novelty .lineup-section, .page-privacy .lineup-section { padding: 72px 0; background: var(--cream); overflow: hidden; }
.page-products .lineup-section { padding: 72px 0; background: var(--white); overflow: hidden; }
.page-about .lineup-sub, .page-contact-thanks .lineup-sub, .page-contact .lineup-sub, .page-news-list .lineup-sub, .page-news-single .lineup-sub, .page-privacy .lineup-sub { font-size: 14px; color: var(--dark); text-align: center; margin-top: -12px; margin-bottom: 28px; }
.page-products .lineup-sub { font-size: 15px; color: var(--dark); text-align: left; margin:-12px auto 28px;max-width: 750px; }
.page-novelty .lineup-sub { font-size: 15px; color: var(--dark); text-align: center; margin-top: -12px; margin-bottom: 28px; }
.page-about .lc-wrap, .page-contact-thanks .lc-wrap, .page-contact .lc-wrap, .page-news-list .lc-wrap, .page-news-single .lc-wrap, .page-novelty .lc-wrap, .page-privacy .lc-wrap, .page-products .lc-wrap { position: relative; }
.page-about .lc-viewport, .page-contact-thanks .lc-viewport, .page-contact .lc-viewport, .page-news-list .lc-viewport, .page-news-single .lc-viewport, .page-novelty .lc-viewport, .page-privacy .lc-viewport { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scroll-behavior: smooth; gap: 20px; padding: 16px 0 20px; --lc-item-w: calc((100vw - 40px - 40px) / 3.3); padding-left: calc((100vw - var(--lc-item-w) * 3.3 - 20px * 2) / 2 + 10px); padding-right: calc((100vw - var(--lc-item-w) * 3.3 - 20px * 2) / 2 + 10px); scrollbar-width: none; }
.page-products .lc-viewport { overflow: hidden; position: relative; padding: 16px 0 20px; }
.page-about .lc-viewport::-webkit-scrollbar, .page-contact-thanks .lc-viewport::-webkit-scrollbar, .page-contact .lc-viewport::-webkit-scrollbar, .page-news-list .lc-viewport::-webkit-scrollbar, .page-news-single .lc-viewport::-webkit-scrollbar, .page-novelty .lc-viewport::-webkit-scrollbar, .page-privacy .lc-viewport::-webkit-scrollbar { display: none; }
.page-about .lc-slide, .page-contact-thanks .lc-slide, .page-contact .lc-slide, .page-news-list .lc-slide, .page-news-single .lc-slide, .page-privacy .lc-slide { flex: 0 0 var(--lc-item-w); scroll-snap-align: start; background: transparent; cursor: pointer; transition: transform 0.3s; }
.page-products .lc-slide { flex: 0 0 var(--lc-item-w); background: transparent; cursor: auto; transition: transform 0.3s; user-select: none; }
.page-novelty .lc-slide { flex: 0 0 var(--lc-item-w); scroll-snap-align: start; background: transparent; cursor: auto; transition: transform 0.3s; }
.page-about .lc-slide:hover, .page-contact-thanks .lc-slide:hover, .page-contact .lc-slide:hover, .page-news-list .lc-slide:hover, .page-news-single .lc-slide:hover, .page-privacy .lc-slide:hover { transform: translateY(-4px); }
.page-about .lc-slide-img, .page-contact-thanks .lc-slide-img, .page-contact .lc-slide-img, .page-news-list .lc-slide-img, .page-news-single .lc-slide-img, .page-novelty .lc-slide-img, .page-privacy .lc-slide-img, .page-products .lc-slide-img { aspect-ratio: 3/4; overflow: hidden; background: var(--cream-d); position: relative; border-radius: 14px; box-shadow: 0 2px 12px rgba(43,31,14,0.08); outline: 2px solid transparent; outline-offset: 2px; transition: box-shadow 0.3s, outline-color 0.25s; }
.page-about .lc-slide.active .lc-slide-img, .page-contact-thanks .lc-slide.active .lc-slide-img, .page-contact .lc-slide.active .lc-slide-img, .page-news-list .lc-slide.active .lc-slide-img, .page-news-single .lc-slide.active .lc-slide-img, .page-novelty .lc-slide.active .lc-slide-img, .page-privacy .lc-slide.active .lc-slide-img, .page-products .lc-slide.active .lc-slide-img { outline-color: var(--gold-l); box-shadow: 0 4px 20px rgba(147,123,67,0.35); }
.page-about .lc-slide:hover .lc-slide-img, .page-contact-thanks .lc-slide:hover .lc-slide-img, .page-contact .lc-slide:hover .lc-slide-img, .page-news-list .lc-slide:hover .lc-slide-img, .page-news-single .lc-slide:hover .lc-slide-img, .page-privacy .lc-slide:hover .lc-slide-img { box-shadow: var(--shadow); }
.page-about .lc-slide-img img, .page-contact-thanks .lc-slide-img img, .page-contact .lc-slide-img img, .page-news-list .lc-slide-img img, .page-news-single .lc-slide-img img, .page-novelty .lc-slide-img img, .page-privacy .lc-slide-img img, .page-products .lc-slide-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.page-about .lc-slide:hover .lc-slide-img img, .page-contact-thanks .lc-slide:hover .lc-slide-img img, .page-contact .lc-slide:hover .lc-slide-img img, .page-news-list .lc-slide:hover .lc-slide-img img, .page-news-single .lc-slide:hover .lc-slide-img img, .page-privacy .lc-slide:hover .lc-slide-img img { transform: scale(1.04); }
.page-about .lc-slide-info, .page-contact-thanks .lc-slide-info, .page-contact .lc-slide-info, .page-news-list .lc-slide-info, .page-news-single .lc-slide-info, .page-novelty .lc-slide-info, .page-privacy .lc-slide-info, .page-products .lc-slide-info { padding: 8px 2px 0; display: flex; flex-direction: column; gap: 3px; background: transparent; }
.page-about .lc-slide-origin, .page-contact-thanks .lc-slide-origin, .page-contact .lc-slide-origin, .page-news-list .lc-slide-origin, .page-news-single .lc-slide-origin, .page-novelty .lc-slide-origin, .page-privacy .lc-slide-origin, .page-products .lc-slide-origin { font-size: 10px; color: var(--light); letter-spacing: 0.06em; font-weight: 600; }
.page-about .lc-slide-name, .page-contact-thanks .lc-slide-name, .page-contact .lc-slide-name, .page-news-list .lc-slide-name, .page-news-single .lc-slide-name, .page-novelty .lc-slide-name, .page-privacy .lc-slide-name, .page-products .lc-slide-name { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.page-about .lc-arrow, .page-contact-thanks .lc-arrow, .page-contact .lc-arrow, .page-news-list .lc-arrow, .page-news-single .lc-arrow, .page-novelty .lc-arrow, .page-privacy .lc-arrow { display: none; position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--border-d); box-shadow: var(--shadow); align-items: center; justify-content: center; cursor: pointer; z-index: 10; color: var(--dark); transition: background 0.2s, color 0.2s; }
.page-products .lc-arrow { display: flex; position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--border-d); box-shadow: var(--shadow); align-items: center; justify-content: center; cursor: pointer; z-index: 10; color: var(--dark); transition: background 0.2s, color 0.2s; }
.page-about .lc-arrow:hover, .page-contact-thanks .lc-arrow:hover, .page-contact .lc-arrow:hover, .page-news-list .lc-arrow:hover, .page-news-single .lc-arrow:hover, .page-novelty .lc-arrow:hover, .page-privacy .lc-arrow:hover, .page-products .lc-arrow:hover { background: var(--dark); color: var(--white); }
.page-about .lc-arrow svg, .page-contact-thanks .lc-arrow svg, .page-contact .lc-arrow svg, .page-news-list .lc-arrow svg, .page-news-single .lc-arrow svg, .page-novelty .lc-arrow svg, .page-privacy .lc-arrow svg, .page-products .lc-arrow svg { width: 20px; height: 20px; }
.page-about .lc-prev, .page-contact-thanks .lc-prev, .page-contact .lc-prev, .page-news-list .lc-prev, .page-news-single .lc-prev, .page-novelty .lc-prev, .page-privacy .lc-prev, .page-products .lc-prev { left: 8px; }
.page-about .lc-next, .page-contact-thanks .lc-next, .page-contact .lc-next, .page-news-list .lc-next, .page-news-single .lc-next, .page-novelty .lc-next, .page-privacy .lc-next, .page-products .lc-next { right: 8px; }
.page-about .lc-arrow:disabled, .page-contact-thanks .lc-arrow:disabled, .page-contact .lc-arrow:disabled, .page-news-list .lc-arrow:disabled, .page-news-single .lc-arrow:disabled, .page-novelty .lc-arrow:disabled, .page-privacy .lc-arrow:disabled, .page-products .lc-arrow:disabled { opacity: 0.3; cursor: default; }
.page-about .lc-arrow:disabled:hover, .page-contact-thanks .lc-arrow:disabled:hover, .page-contact .lc-arrow:disabled:hover, .page-news-list .lc-arrow:disabled:hover, .page-news-single .lc-arrow:disabled:hover, .page-novelty .lc-arrow:disabled:hover, .page-privacy .lc-arrow:disabled:hover, .page-products .lc-arrow:disabled:hover { background: var(--white); color: var(--dark); }
.page-about .lc-thumbs, .page-contact-thanks .lc-thumbs, .page-contact .lc-thumbs, .page-news-list .lc-thumbs, .page-news-single .lc-thumbs, .page-novelty .lc-thumbs, .page-privacy .lc-thumbs, .page-products .lc-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; justify-content: center; }
.page-about .lc-thumb, .page-contact-thanks .lc-thumb, .page-contact .lc-thumb, .page-news-list .lc-thumb, .page-news-single .lc-thumb, .page-novelty .lc-thumb, .page-privacy .lc-thumb, .page-products .lc-thumb { width: 48px; height: 48px; border-radius: 8px; overflow: hidden; border: 1px solid transparent; padding: 0; background: none; cursor: pointer; transition: border-color 0.2s, transform 0.2s; flex-shrink: 0; }
.page-about .lc-thumb:hover, .page-contact-thanks .lc-thumb:hover, .page-contact .lc-thumb:hover, .page-news-list .lc-thumb:hover, .page-news-single .lc-thumb:hover, .page-novelty .lc-thumb:hover, .page-privacy .lc-thumb:hover, .page-products .lc-thumb:hover { transform: scale(1.1); }
.page-about .lc-thumb.active, .page-contact-thanks .lc-thumb.active, .page-contact .lc-thumb.active, .page-news-list .lc-thumb.active, .page-news-single .lc-thumb.active, .page-novelty .lc-thumb.active, .page-privacy .lc-thumb.active, .page-products .lc-thumb.active { border-color: var(--gold-l); }
.page-about .lc-thumb img, .page-contact-thanks .lc-thumb img, .page-contact .lc-thumb img, .page-news-list .lc-thumb img, .page-news-single .lc-thumb img, .page-novelty .lc-thumb img, .page-privacy .lc-thumb img, .page-products .lc-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .lc-shop-btn-wrap, .page-contact-thanks .lc-shop-btn-wrap, .page-contact .lc-shop-btn-wrap, .page-news-list .lc-shop-btn-wrap, .page-news-single .lc-shop-btn-wrap, .page-novelty .lc-shop-btn-wrap, .page-privacy .lc-shop-btn-wrap { text-align: center; margin-top: 28px; }
.page-products .lc-shop-btn-wrap { text-align: center; margin-top: 40px; display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; }
.page-about .lc-shop-btn-wrap .nv-btn, .page-contact-thanks .lc-shop-btn-wrap .nv-btn, .page-contact .lc-shop-btn-wrap .nv-btn, .page-news-list .lc-shop-btn-wrap .nv-btn, .page-news-single .lc-shop-btn-wrap .nv-btn, .page-novelty .lc-shop-btn-wrap .nv-btn, .page-privacy .lc-shop-btn-wrap .nv-btn, .page-products .lc-shop-btn-wrap .nv-btn { font-size: 11px; padding: 10px 24px; }
.page-about .voice-section, .page-contact-thanks .voice-section, .page-contact .voice-section, .page-news-list .voice-section, .page-news-single .voice-section, .page-novelty .voice-section, .page-privacy .voice-section, .page-products .voice-section { padding: 72px 0; background: var(--cream-d); overflow: hidden; }
.page-about .vc-wrap, .page-contact-thanks .vc-wrap, .page-contact .vc-wrap, .page-news-list .vc-wrap, .page-news-single .vc-wrap, .page-novelty .vc-wrap, .page-privacy .vc-wrap, .page-products .vc-wrap { margin-top: 12px; }
.page-about .vc-track, .page-contact-thanks .vc-track, .page-contact .vc-track, .page-news-list .vc-track, .page-news-single .vc-track, .page-privacy .vc-track, .page-products .vc-track { display: flex; gap: 14px; will-change: transform; cursor: grab; user-select: none; padding: 12px 0; }
.page-novelty .vc-track { display: flex; will-change: transform; }
.page-about .vc-track:active, .page-contact-thanks .vc-track:active, .page-contact .vc-track:active, .page-news-list .vc-track:active, .page-news-single .vc-track:active, .page-privacy .vc-track:active, .page-products .vc-track:active { cursor: grabbing; }
.page-about .vc-slide, .page-contact-thanks .vc-slide, .page-contact .vc-slide, .page-news-list .vc-slide, .page-news-single .vc-slide, .page-privacy .vc-slide, .page-products .vc-slide { flex: 0 0 72vw; flex-shrink: 0; display: flex; flex-direction: column; gap: 0; }
.page-novelty .vc-slide { flex: 0 0 100%; width: 100%; box-sizing: border-box; padding: 0 6vw; display: flex; flex-direction: column; gap: 0; }
.page-about .vc-slide-img, .page-contact-thanks .vc-slide-img, .page-contact .vc-slide-img, .page-news-list .vc-slide-img, .page-news-single .vc-slide-img, .page-privacy .vc-slide-img, .page-products .vc-slide-img { aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(43,31,14,0.10); position: relative; background: var(--cream); transition: box-shadow 0.3s; }
.page-novelty .vc-slide-img { aspect-ratio: 3/4; border-radius: 20px; overflow: hidden; box-shadow: 0 4px 24px rgba(43,31,14,0.10); position: relative; background: var(--cream); }
.page-about .vc-slide-img img, .page-contact-thanks .vc-slide-img img, .page-contact .vc-slide-img img, .page-news-list .vc-slide-img img, .page-news-single .vc-slide-img img, .page-privacy .vc-slide-img img, .page-products .vc-slide-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; transition: transform 0.5s ease; }
.page-novelty .vc-slide-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.page-about .vc-slide:hover .vc-slide-img, .page-contact-thanks .vc-slide:hover .vc-slide-img, .page-contact .vc-slide:hover .vc-slide-img, .page-news-list .vc-slide:hover .vc-slide-img, .page-news-single .vc-slide:hover .vc-slide-img, .page-privacy .vc-slide:hover .vc-slide-img, .page-products .vc-slide:hover .vc-slide-img { box-shadow: 0 8px 32px rgba(43,31,14,0.15); }
.page-about .vc-slide:hover .vc-slide-img img, .page-contact-thanks .vc-slide:hover .vc-slide-img img, .page-contact .vc-slide:hover .vc-slide-img img, .page-news-list .vc-slide:hover .vc-slide-img img, .page-news-single .vc-slide:hover .vc-slide-img img, .page-privacy .vc-slide:hover .vc-slide-img img, .page-products .vc-slide:hover .vc-slide-img img { transform: scale(1.03); }
.page-about .flow-section, .page-contact-thanks .flow-section, .page-contact .flow-section, .page-news-list .flow-section, .page-news-single .flow-section, .page-novelty .flow-section, .page-privacy .flow-section, .page-products .flow-section { padding: 72px 0; background: rgba(255,255,255,0.88); }
.page-about .flow-sub, .page-contact-thanks .flow-sub, .page-contact .flow-sub, .page-news-list .flow-sub, .page-news-single .flow-sub, .page-privacy .flow-sub, .page-products .flow-sub { font-size: 14px; color: var(--dark); text-align: center; margin-top: -12px; margin-bottom: 32px; }
.page-novelty .flow-sub { font-size: 15px; color: var(--dark); text-align: center; margin-top: -12px; margin-bottom: 32px; }
.page-about .flow-steps, .page-contact-thanks .flow-steps, .page-contact .flow-steps, .page-news-list .flow-steps, .page-news-single .flow-steps, .page-novelty .flow-steps, .page-privacy .flow-steps, .page-products .flow-steps { display: flex; align-items: flex-start; gap: 0; max-width: 1000px; margin: 0 auto; padding: 0 0; }
.page-about .flow-step, .page-contact-thanks .flow-step, .page-contact .flow-step, .page-news-list .flow-step, .page-news-single .flow-step, .page-novelty .flow-step, .page-privacy .flow-step, .page-products .flow-step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 8px; position: relative; }
.page-about .flow-step::after, .page-contact-thanks .flow-step::after, .page-contact .flow-step::after, .page-news-list .flow-step::after, .page-news-single .flow-step::after, .page-novelty .flow-step::after, .page-privacy .flow-step::after, .page-products .flow-step::after { content: "›"; position: absolute; right: -12px; top: 26px; transform: translateY(-50%); font-size: 22px; line-height: 1; color: var(--light); font-weight: 300; }
.page-about .flow-step:last-child::after, .page-contact-thanks .flow-step:last-child::after, .page-contact .flow-step:last-child::after, .page-news-list .flow-step:last-child::after, .page-news-single .flow-step:last-child::after, .page-novelty .flow-step:last-child::after, .page-privacy .flow-step:last-child::after, .page-products .flow-step:last-child::after { display: none; }
.page-about .flow-num, .page-contact-thanks .flow-num, .page-contact .flow-num, .page-news-list .flow-num, .page-news-single .flow-num, .page-privacy .flow-num, .page-products .flow-num { width: 52px; height: 52px; border-radius: 50%; background: var(--dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; letter-spacing: 0.05em; margin-bottom: 14px; }
.page-novelty .flow-num { width: 52px; height: 52px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; letter-spacing: 0.05em; margin-bottom: 14px; }
.page-about .flow-num.accent, .page-contact-thanks .flow-num.accent, .page-contact .flow-num.accent, .page-news-list .flow-num.accent, .page-news-single .flow-num.accent, .page-privacy .flow-num.accent, .page-products .flow-num.accent { background: var(--blue); }
.page-about .flow-body, .page-contact-thanks .flow-body, .page-contact .flow-body, .page-news-list .flow-body, .page-news-single .flow-body, .page-novelty .flow-body, .page-privacy .flow-body, .page-products .flow-body { display: flex; flex-direction: column; gap: 6px; }
.page-about .flow-title, .page-contact-thanks .flow-title, .page-contact .flow-title, .page-news-list .flow-title, .page-news-single .flow-title, .page-privacy .flow-title, .page-products .flow-title { font-size: 13px; font-weight: 700; color: var(--dark); }
.page-novelty .flow-title { font-size: 13px; font-weight: 700; color: var(--dark); margin: 0; }
.page-about .flow-title-s, .page-contact-thanks .flow-title-s, .page-contact .flow-title-s, .page-news-list .flow-title-s, .page-news-single .flow-title-s, .page-novelty .flow-title-s, .page-privacy .flow-title-s, .page-products .flow-title-s { font-size: 11px; font-weight: 400; color: var(--gold); }
.page-about .flow-text, .page-contact-thanks .flow-text, .page-contact .flow-text, .page-news-list .flow-text, .page-news-single .flow-text, .page-novelty .flow-text, .page-privacy .flow-text, .page-products .flow-text { font-size: 11px; color: var(--dark); line-height: 1.8; text-align: left; }
.page-about .flow-note, .page-contact-thanks .flow-note, .page-contact .flow-note, .page-news-list .flow-note, .page-news-single .flow-note, .page-novelty .flow-note, .page-privacy .flow-note, .page-products .flow-note { text-align: center; margin-top: 40px; font-size: 12px; color: var(--dark); }
.page-about .price-section, .page-contact-thanks .price-section, .page-contact .price-section, .page-news-list .price-section, .page-news-single .price-section, .page-novelty .price-section, .page-privacy .price-section, .page-products .price-section { padding: 72px 0; background: var(--cream); }
.page-about .price-sub, .page-contact-thanks .price-sub, .page-contact .price-sub, .page-news-list .price-sub, .page-news-single .price-sub, .page-privacy .price-sub, .page-products .price-sub { font-size: 14px; color: var(--dark); text-align: center; margin-top: -12px; margin-bottom: 32px; }
.page-novelty .price-sub { font-size: 15px; color: var(--dark); text-align: center; margin-top: -12px; margin-bottom: 32px; }
.page-about .price-grid, .page-contact-thanks .price-grid, .page-contact .price-grid, .page-news-list .price-grid, .page-news-single .price-grid, .page-novelty .price-grid, .page-privacy .price-grid, .page-products .price-grid { margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.page-about .price-card, .page-contact-thanks .price-card, .page-contact .price-card, .page-news-list .price-card, .page-news-single .price-card, .page-privacy .price-card { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.page-novelty .price-card, .page-products .price-card { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow);background: var(--white); }
.page-about .price-card-head, .page-contact-thanks .price-card-head, .page-contact .price-card-head, .page-news-list .price-card-head, .page-news-single .price-card-head, .page-privacy .price-card-head, .page-products .price-card-head { background: var(--dark); padding: 20px 24px; text-align: center; }
.page-novelty .price-card-head { background: var(--blue); padding: 20px 24px; text-align: center; }
.page-about .price-card-head-en, .page-contact-thanks .price-card-head-en, .page-contact .price-card-head-en, .page-news-list .price-card-head-en, .page-news-single .price-card-head-en, .page-novelty .price-card-head-en, .page-privacy .price-card-head-en, .page-products .price-card-head-en { font-size: 10px; font-weight: 700; color: var(--gold-l); letter-spacing: 0.4em; text-transform: uppercase; margin-bottom: 4px; }
.page-about .price-card-head-ja, .page-contact-thanks .price-card-head-ja, .page-contact .price-card-head-ja, .page-news-list .price-card-head-ja, .page-news-single .price-card-head-ja, .page-privacy .price-card-head-ja, .page-products .price-card-head-ja { font-size: 16px; font-weight: 700; color: var(--white); }
.page-novelty .price-card-head-ja { font-size: 16px; font-weight: 700; color: var(--white); margin: 0; }
.page-about .price-card-body, .page-contact-thanks .price-card-body, .page-contact .price-card-body, .page-news-list .price-card-body, .page-news-single .price-card-body, .page-novelty .price-card-body, .page-privacy .price-card-body, .page-products .price-card-body { background: var(--white); padding: 28px 24px; }
.page-about .price-table, .page-contact-thanks .price-table, .page-contact .price-table, .page-news-list .price-table, .page-news-single .price-table, .page-novelty .price-table, .page-privacy .price-table, .page-products .price-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.page-about .price-table th, .page-contact-thanks .price-table th, .page-contact .price-table th, .page-news-list .price-table th, .page-news-single .price-table th, .page-novelty .price-table th, .page-privacy .price-table th, .page-products .price-table th { text-align: left; padding: 10px 8px; font-weight: 700; color: var(--dark); border-bottom: 2px solid var(--border-d); }
.page-about .price-table td, .page-contact-thanks .price-table td, .page-contact .price-table td, .page-news-list .price-table td, .page-news-single .price-table td, .page-novelty .price-table td, .page-privacy .price-table td, .page-products .price-table td { padding: 12px 8px; color: var(--dark); border-bottom: 1px solid var(--border-d); vertical-align: top; line-height: 1.7; }
.page-about .price-table tr:last-child td, .page-contact-thanks .price-table tr:last-child td, .page-contact .price-table tr:last-child td, .page-news-list .price-table tr:last-child td, .page-news-single .price-table tr:last-child td, .page-novelty .price-table tr:last-child td, .page-privacy .price-table tr:last-child td, .page-products .price-table tr:last-child td { border-bottom: none; }
.page-about .price-table td:last-child, .page-contact-thanks .price-table td:last-child, .page-contact .price-table td:last-child, .page-news-list .price-table td:last-child, .page-news-single .price-table td:last-child, .page-privacy .price-table td:last-child { font-weight: 700; color: var(--blue); }
.page-novelty .price-table td:last-child, .page-products .price-table td:last-child {  }
.page-about .price-note, .page-contact-thanks .price-note, .page-contact .price-note, .page-news-list .price-note, .page-news-single .price-note, .page-privacy .price-note, .page-products .price-note { margin-top: 16px; padding: 12px 16px; background: var(--cream); border-radius: 8px; font-size: 12px; color: var(--dark); line-height: 1.9; }
.page-novelty .price-note { margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 12px; color: var(--dark); line-height: 1.9;border: 1px solid var(--border-d); }
.page-about .sched-list, .page-contact-thanks .sched-list, .page-contact .sched-list, .page-news-list .sched-list, .page-news-single .sched-list, .page-novelty .sched-list, .page-privacy .sched-list, .page-products .sched-list { display: flex; flex-direction: column; gap: 0; }
.page-about .sched-item, .page-contact-thanks .sched-item, .page-contact .sched-item, .page-news-list .sched-item, .page-news-single .sched-item, .page-novelty .sched-item, .page-privacy .sched-item, .page-products .sched-item { display: flex; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border-d); align-items: flex-start; }
.page-about .sched-item:last-child, .page-contact-thanks .sched-item:last-child, .page-contact .sched-item:last-child, .page-news-list .sched-item:last-child, .page-news-single .sched-item:last-child, .page-novelty .sched-item:last-child, .page-privacy .sched-item:last-child, .page-products .sched-item:last-child { border-bottom: none; }
.page-about .sched-spine, .page-contact-thanks .sched-spine, .page-contact .sched-spine, .page-news-list .sched-spine, .page-news-single .sched-spine, .page-novelty .sched-spine, .page-privacy .sched-spine, .page-products .sched-spine { width: 2px; background: var(--border-d); flex-shrink: 0; align-self: stretch; position: relative; }
.page-about .sched-spine.accent, .page-contact-thanks .sched-spine.accent, .page-contact .sched-spine.accent, .page-news-list .sched-spine.accent, .page-news-single .sched-spine.accent, .page-novelty .sched-spine.accent, .page-privacy .sched-spine.accent, .page-products .sched-spine.accent { background: var(--blue); }
.page-about .sched-dot, .page-contact-thanks .sched-dot, .page-contact .sched-dot, .page-news-list .sched-dot, .page-news-single .sched-dot, .page-novelty .sched-dot, .page-privacy .sched-dot, .page-products .sched-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--light); position: absolute; top: 2px; left: -5px; }
.page-about .sched-dot.accent, .page-contact-thanks .sched-dot.accent, .page-contact .sched-dot.accent, .page-news-list .sched-dot.accent, .page-news-single .sched-dot.accent, .page-novelty .sched-dot.accent, .page-privacy .sched-dot.accent, .page-products .sched-dot.accent { background: var(--blue); }
.page-about .sched-label, .page-contact-thanks .sched-label, .page-contact .sched-label, .page-news-list .sched-label, .page-news-single .sched-label, .page-novelty .sched-label, .page-privacy .sched-label, .page-products .sched-label { width: 96px; flex-shrink: 0; font-size: 12px; font-weight: 700; color: var(--dark); line-height: 1.5; padding-top: 2px; }
.page-about .sched-label.accent, .page-contact-thanks .sched-label.accent, .page-contact .sched-label.accent, .page-news-list .sched-label.accent, .page-news-single .sched-label.accent, .page-novelty .sched-label.accent, .page-privacy .sched-label.accent, .page-products .sched-label.accent { color: var(--blue); }
.page-about .sched-text, .page-contact-thanks .sched-text, .page-contact .sched-text, .page-news-list .sched-text, .page-news-single .sched-text, .page-novelty .sched-text, .page-privacy .sched-text, .page-products .sched-text { flex: 1; font-size: 12px; color: var(--dark); line-height: 1.9; }
.page-about .cta-btn-p>*, .cta-btn-s>*, .page-contact-thanks .cta-btn-p>*, .cta-btn-s>*, .page-contact .cta-btn-p>*, .cta-btn-s>*, .page-news-list .cta-btn-p>*, .cta-btn-s>*, .page-news-single .cta-btn-p>*, .cta-btn-s>*, .page-novelty .cta-btn-p>*, .cta-btn-s>*, .page-privacy .cta-btn-p>*, .cta-btn-s>*, .page-products .cta-btn-p>*, .cta-btn-s>* { position: relative; z-index: 2; }
.page-about .breadcrumb-bar, .page-contact-thanks .breadcrumb-bar, .page-contact .breadcrumb-bar, .page-news-list .breadcrumb-bar, .page-news-single .breadcrumb-bar, .page-novelty .breadcrumb-bar, .page-privacy .breadcrumb-bar, .page-products .breadcrumb-bar { background: rgba(255,255,255,0.92); border-bottom: 1px solid var(--border-d); padding: 10px 0; }
.page-about .breadcrumb-inner, .page-contact-thanks .breadcrumb-inner, .page-contact .breadcrumb-inner, .page-news-list .breadcrumb-inner, .page-news-single .breadcrumb-inner, .page-novelty .breadcrumb-inner, .page-privacy .breadcrumb-inner, .page-products .breadcrumb-inner { max-width: var(--max); margin: 0 auto; padding: 0 48px; display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--mid); letter-spacing: 0.04em; }
.page-about .breadcrumb-inner a, .page-contact-thanks .breadcrumb-inner a, .page-contact .breadcrumb-inner a, .page-news-list .breadcrumb-inner a, .page-news-single .breadcrumb-inner a, .page-novelty .breadcrumb-inner a, .page-privacy .breadcrumb-inner a, .page-products .breadcrumb-inner a { color: var(--mid); text-decoration: none; transition: color 0.2s; }
.page-about .breadcrumb-inner a:hover, .page-contact-thanks .breadcrumb-inner a:hover, .page-contact .breadcrumb-inner a:hover, .page-news-list .breadcrumb-inner a:hover, .page-news-single .breadcrumb-inner a:hover, .page-novelty .breadcrumb-inner a:hover, .page-privacy .breadcrumb-inner a:hover, .page-products .breadcrumb-inner a:hover { color: var(--gold); }
.page-about .breadcrumb-sep, .page-contact-thanks .breadcrumb-sep, .page-contact .breadcrumb-sep, .page-news-list .breadcrumb-sep, .page-news-single .breadcrumb-sep, .page-novelty .breadcrumb-sep, .page-privacy .breadcrumb-sep, .page-products .breadcrumb-sep { color: var(--light); font-size: 10px; }
.page-about .breadcrumb-current, .page-contact-thanks .breadcrumb-current, .page-contact .breadcrumb-current, .page-news-list .breadcrumb-current, .page-news-single .breadcrumb-current, .page-novelty .breadcrumb-current, .page-privacy .breadcrumb-current, .page-products .breadcrumb-current { color: var(--dark); font-weight: 600; }
.page-about .faq-section, .page-contact-thanks .faq-section, .page-contact .faq-section, .page-news-list .faq-section, .page-news-single .faq-section, .page-novelty .faq-section, .page-privacy .faq-section, .page-products .faq-section { padding: 72px 0; background: rgba(255,255,255,0.88); }
.page-about .faq-list, .page-contact-thanks .faq-list, .page-contact .faq-list, .page-news-list .faq-list, .page-news-single .faq-list, .page-novelty .faq-list, .page-privacy .faq-list, .page-products .faq-list { max-width: 760px; margin: 56px auto 0; padding: 0 48px; display: flex; flex-direction: column; gap: 0; }
.page-about .faq-item, .page-contact-thanks .faq-item, .page-contact .faq-item, .page-news-list .faq-item, .page-news-single .faq-item, .page-novelty .faq-item, .page-privacy .faq-item, .page-products .faq-item { border-bottom: 1px solid var(--border-d); }
.page-about .faq-item:first-child, .page-contact-thanks .faq-item:first-child, .page-contact .faq-item:first-child, .page-news-list .faq-item:first-child, .page-news-single .faq-item:first-child, .page-novelty .faq-item:first-child, .page-privacy .faq-item:first-child, .page-products .faq-item:first-child { border-top: 1px solid var(--border-d); }
.page-about .faq-q, .page-contact-thanks .faq-q, .page-contact .faq-q, .page-news-list .faq-q, .page-news-single .faq-q, .page-novelty .faq-q, .page-privacy .faq-q, .page-products .faq-q { width: 100%; display: flex; align-items: flex-start; gap: 16px; padding: 22px 0; background: none; border: none; cursor: pointer; text-align: left; font-family: inherit; color: var(--dark); }
.page-about .faq-q:hover .faq-q-text, .page-contact-thanks .faq-q:hover .faq-q-text, .page-contact .faq-q:hover .faq-q-text, .page-news-list .faq-q:hover .faq-q-text, .page-news-single .faq-q:hover .faq-q-text, .page-novelty .faq-q:hover .faq-q-text, .page-privacy .faq-q:hover .faq-q-text, .page-products .faq-q:hover .faq-q-text { color: var(--gold); }
.page-about .faq-q-label, .page-contact-thanks .faq-q-label, .page-contact .faq-q-label, .page-news-list .faq-q-label, .page-news-single .faq-q-label, .page-novelty .faq-q-label, .page-privacy .faq-q-label, .page-products .faq-q-label { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--gold); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; margin-top: 1px; }
.page-about .faq-q-text, .page-contact-thanks .faq-q-text, .page-contact .faq-q-text, .page-news-list .faq-q-text, .page-news-single .faq-q-text, .page-privacy .faq-q-text, .page-products .faq-q-text { flex: 1; font-size: 15px; font-weight: 700; line-height: 1.6; transition: color 0.2s; }
.page-novelty .faq-q-text { flex: 1; font-size: 15px; font-weight: 700; line-height: 1.6; transition: color 0.2s; margin: 0; }
.page-about .faq-icon, .page-contact-thanks .faq-icon, .page-contact .faq-icon, .page-news-list .faq-icon, .page-news-single .faq-icon, .page-novelty .faq-icon, .page-privacy .faq-icon, .page-products .faq-icon { flex-shrink: 0; width: 24px; height: 24px; position: relative; margin-top: 2px; }
.page-about .faq-icon::before, .faq-icon::after, .page-contact-thanks .faq-icon::before, .faq-icon::after, .page-contact .faq-icon::before, .faq-icon::after, .page-news-list .faq-icon::before, .faq-icon::after, .page-news-single .faq-icon::before, .faq-icon::after, .page-novelty .faq-icon::before, .faq-icon::after, .page-privacy .faq-icon::before, .faq-icon::after, .page-products .faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--mid); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.page-about .faq-icon::before, .page-contact-thanks .faq-icon::before, .page-contact .faq-icon::before, .page-news-list .faq-icon::before, .page-news-single .faq-icon::before, .page-novelty .faq-icon::before, .page-privacy .faq-icon::before, .page-products .faq-icon::before { width: 14px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.page-about .faq-icon::after, .page-contact-thanks .faq-icon::after, .page-contact .faq-icon::after, .page-news-list .faq-icon::after, .page-news-single .faq-icon::after, .page-novelty .faq-icon::after, .page-privacy .faq-icon::after, .page-products .faq-icon::after { width: 1.5px; height: 14px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.page-about .faq-item.open .faq-icon::after, .page-contact-thanks .faq-item.open .faq-icon::after, .page-contact .faq-item.open .faq-icon::after, .page-news-list .faq-item.open .faq-icon::after, .page-news-single .faq-item.open .faq-icon::after, .page-novelty .faq-item.open .faq-icon::after, .page-privacy .faq-item.open .faq-icon::after, .page-products .faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.page-about .faq-item.open .faq-q-text, .page-contact-thanks .faq-item.open .faq-q-text, .page-contact .faq-item.open .faq-q-text, .page-news-list .faq-item.open .faq-q-text, .page-news-single .faq-item.open .faq-q-text, .page-novelty .faq-item.open .faq-q-text, .page-privacy .faq-item.open .faq-q-text, .page-products .faq-item.open .faq-q-text { color: var(--gold); }
.page-about .faq-item.open .faq-q-label, .page-contact-thanks .faq-item.open .faq-q-label, .page-contact .faq-item.open .faq-q-label, .page-news-list .faq-item.open .faq-q-label, .page-news-single .faq-item.open .faq-q-label, .page-novelty .faq-item.open .faq-q-label, .page-privacy .faq-item.open .faq-q-label, .page-products .faq-item.open .faq-q-label { background: var(--dark); }
.page-about .faq-a-wrap, .page-contact-thanks .faq-a-wrap, .page-contact .faq-a-wrap, .page-news-list .faq-a-wrap, .page-news-single .faq-a-wrap, .page-novelty .faq-a-wrap, .page-privacy .faq-a-wrap, .page-products .faq-a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.35s ease; }
.page-about .faq-item.open .faq-a-wrap, .page-contact-thanks .faq-item.open .faq-a-wrap, .page-contact .faq-item.open .faq-a-wrap, .page-news-list .faq-item.open .faq-a-wrap, .page-news-single .faq-item.open .faq-a-wrap, .page-novelty .faq-item.open .faq-a-wrap, .page-privacy .faq-item.open .faq-a-wrap, .page-products .faq-item.open .faq-a-wrap { grid-template-rows: 1fr; }
.page-about .faq-a-inner, .page-contact-thanks .faq-a-inner, .page-contact .faq-a-inner, .page-news-list .faq-a-inner, .page-news-single .faq-a-inner, .page-novelty .faq-a-inner, .page-privacy .faq-a-inner, .page-products .faq-a-inner { overflow: hidden; }
.page-about .faq-a, .page-contact-thanks .faq-a, .page-contact .faq-a, .page-news-list .faq-a, .page-news-single .faq-a, .page-novelty .faq-a, .page-privacy .faq-a, .page-products .faq-a { display: flex; gap: 16px; align-items: flex-start; padding: 0 0 22px 0; }
.page-about .faq-a-label, .page-contact-thanks .faq-a-label, .page-contact .faq-a-label, .page-news-list .faq-a-label, .page-news-single .faq-a-label, .page-novelty .faq-a-label, .page-privacy .faq-a-label, .page-products .faq-a-label { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; letter-spacing: 0.04em; margin-top: 1px; }
.page-about .faq-a-text, .page-contact-thanks .faq-a-text, .page-contact .faq-a-text, .page-news-list .faq-a-text, .page-news-single .faq-a-text, .page-novelty .faq-a-text, .page-privacy .faq-a-text, .page-products .faq-a-text { flex: 1; font-size: 14px; color: var(--dark); line-height: 1.9; }
.page-about .vc-slide-info, .page-contact-thanks .vc-slide-info, .page-contact .vc-slide-info, .page-news-list .vc-slide-info, .page-news-single .vc-slide-info, .page-novelty .vc-slide-info, .page-privacy .vc-slide-info, .page-products .vc-slide-info { padding: 8px 2px 0; display: flex; flex-direction: column; gap: 3px; background: transparent; }
.page-about .vc-slide-name, .page-contact-thanks .vc-slide-name, .page-contact .vc-slide-name, .page-news-list .vc-slide-name, .page-news-single .vc-slide-name, .page-novelty .vc-slide-name, .page-privacy .vc-slide-name, .page-products .vc-slide-name { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.4; }
.page-about .vc-slide-sub, .page-contact-thanks .vc-slide-sub, .page-contact .vc-slide-sub, .page-news-list .vc-slide-sub, .page-news-single .vc-slide-sub, .page-privacy .vc-slide-sub, .page-products .vc-slide-sub { font-size: 10px; color: var(--light); letter-spacing: 0.06em; font-weight: 600; }
.page-novelty .vc-slide-sub { font-size: 10px; color: var(--gold); letter-spacing: 0.06em; font-weight: 600; }
.page-about .vc-nav, .page-contact-thanks .vc-nav, .page-contact .vc-nav, .page-news-list .vc-nav, .page-news-single .vc-nav, .page-novelty .vc-nav, .page-privacy .vc-nav, .page-products .vc-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; }
.page-about .vc-arrow, .page-contact-thanks .vc-arrow, .page-contact .vc-arrow, .page-news-list .vc-arrow, .page-news-single .vc-arrow, .page-privacy .vc-arrow, .page-products .vc-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--white); border: 1px solid var(--border-d); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dark); transition: background 0.2s, color 0.2s; flex-shrink: 0; }
.page-novelty .vc-arrow { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); border: 1px solid var(--border-d); box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dark); transition: background 0.2s, color 0.2s; flex-shrink: 0; }
.page-about .vc-arrow:hover, .page-contact-thanks .vc-arrow:hover, .page-contact .vc-arrow:hover, .page-news-list .vc-arrow:hover, .page-news-single .vc-arrow:hover, .page-novelty .vc-arrow:hover, .page-privacy .vc-arrow:hover, .page-products .vc-arrow:hover { background: var(--dark); color: var(--white); }
.page-about .vc-arrow:disabled, .page-contact-thanks .vc-arrow:disabled, .page-contact .vc-arrow:disabled, .page-news-list .vc-arrow:disabled, .page-news-single .vc-arrow:disabled, .page-novelty .vc-arrow:disabled, .page-privacy .vc-arrow:disabled, .page-products .vc-arrow:disabled { opacity: 0.3; cursor: default; }
.page-about .vc-arrow:disabled:hover, .page-contact-thanks .vc-arrow:disabled:hover, .page-contact .vc-arrow:disabled:hover, .page-news-list .vc-arrow:disabled:hover, .page-news-single .vc-arrow:disabled:hover, .page-novelty .vc-arrow:disabled:hover, .page-privacy .vc-arrow:disabled:hover, .page-products .vc-arrow:disabled:hover { background: var(--white); color: var(--dark); }
.page-about .vc-arrow svg, .page-contact-thanks .vc-arrow svg, .page-contact .vc-arrow svg, .page-news-list .vc-arrow svg, .page-news-single .vc-arrow svg, .page-novelty .vc-arrow svg, .page-privacy .vc-arrow svg, .page-products .vc-arrow svg { width: 20px; height: 20px; }
.page-about .vc-dots, .page-contact-thanks .vc-dots, .page-contact .vc-dots, .page-news-list .vc-dots, .page-news-single .vc-dots, .page-novelty .vc-dots, .page-privacy .vc-dots, .page-products .vc-dots { display: flex; align-items: center; gap: 8px; }
.page-about .vc-dot, .page-contact-thanks .vc-dot, .page-contact .vc-dot, .page-news-list .vc-dot, .page-news-single .vc-dot, .page-novelty .vc-dot, .page-privacy .vc-dot, .page-products .vc-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--light); border: none; padding: 0; cursor: pointer; transition: background 0.25s, width 0.25s, border-radius 0.25s; }
.page-about .vc-dot.active, .page-contact-thanks .vc-dot.active, .page-contact .vc-dot.active, .page-news-list .vc-dot.active, .page-news-single .vc-dot.active, .page-novelty .vc-dot.active, .page-privacy .vc-dot.active, .page-products .vc-dot.active { background: var(--gold); width: 20px; border-radius: 4px; }
.page-about .scenes-top, .page-contact-thanks .scenes-top, .page-contact .scenes-top, .page-news-list .scenes-top, .page-news-single .scenes-top, .page-novelty .scenes-top, .page-privacy .scenes-top, .page-products .scenes-top { padding: 72px 0 0; }
.page-about .scenes-top-inner, .page-contact-thanks .scenes-top-inner, .page-contact .scenes-top-inner, .page-news-list .scenes-top-inner, .page-news-single .scenes-top-inner, .page-novelty .scenes-top-inner, .page-privacy .scenes-top-inner, .page-products .scenes-top-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.page-about .scenes-top-left .section-label, .page-contact-thanks .scenes-top-left .section-label, .page-contact .scenes-top-left .section-label, .page-news-list .scenes-top-left .section-label, .page-news-single .scenes-top-left .section-label, .page-novelty .scenes-top-left .section-label, .page-privacy .scenes-top-left .section-label, .page-products .scenes-top-left .section-label { align-items: flex-start; margin-bottom: 16px; }
.page-about .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-contact-thanks .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-contact .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-news-list .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-news-single .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-novelty .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-privacy .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-products .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja { text-align: left; }
.page-about .scenes-sub, .page-contact-thanks .scenes-sub, .page-contact .scenes-sub, .page-news-list .scenes-sub, .page-news-single .scenes-sub, .page-privacy .scenes-sub, .page-products .scenes-sub { font-size: 14px; color: var(--dark); line-height: 2; text-align: left; }
.page-novelty .scenes-sub { font-size: 16px; color: var(--dark); text-align: left;line-height: 2; }
.page-about .scenes-top-right .scene-card, .page-contact-thanks .scenes-top-right .scene-card, .page-contact .scenes-top-right .scene-card, .page-news-list .scenes-top-right .scene-card, .page-news-single .scenes-top-right .scene-card, .page-novelty .scenes-top-right .scene-card, .page-privacy .scenes-top-right .scene-card, .page-products .scenes-top-right .scene-card { width: 100%; display: block !important; grid-template-columns: unset !important; }
.page-about .scenes-top-right .scene-card .scene-card-img, .page-contact-thanks .scenes-top-right .scene-card .scene-card-img, .page-contact .scenes-top-right .scene-card .scene-card-img, .page-news-list .scenes-top-right .scene-card .scene-card-img, .page-news-single .scenes-top-right .scene-card .scene-card-img, .page-novelty .scenes-top-right .scene-card .scene-card-img, .page-privacy .scenes-top-right .scene-card .scene-card-img, .page-products .scenes-top-right .scene-card .scene-card-img { aspect-ratio: 4/3 !important; min-height: unset !important; }
.page-about .scenes-top-right .scene-card .scene-card-body, .page-contact-thanks .scenes-top-right .scene-card .scene-card-body, .page-contact .scenes-top-right .scene-card .scene-card-body, .page-news-list .scenes-top-right .scene-card .scene-card-body, .page-news-single .scenes-top-right .scene-card .scene-card-body, .page-novelty .scenes-top-right .scene-card .scene-card-body, .page-privacy .scenes-top-right .scene-card .scene-card-body, .page-products .scenes-top-right .scene-card .scene-card-body { padding: 16px 20px 20px !important; justify-content: flex-start !important; }
.page-about .scenes-top-right .scene-card .scene-card-title, .page-contact-thanks .scenes-top-right .scene-card .scene-card-title, .page-contact .scenes-top-right .scene-card .scene-card-title, .page-news-list .scenes-top-right .scene-card .scene-card-title, .page-news-single .scenes-top-right .scene-card .scene-card-title, .page-privacy .scenes-top-right .scene-card .scene-card-title, .page-products .scenes-top-right .scene-card .scene-card-title { font-size: 15px !important; text-align: left !important; }
.page-novelty .scenes-top-right .scene-card .scene-card-title { font-size: 14px !important; text-align: left !important; }
.page-about .scenes-top-right .scene-card .scene-card-text, .page-contact-thanks .scenes-top-right .scene-card .scene-card-text, .page-contact .scenes-top-right .scene-card .scene-card-text, .page-news-list .scenes-top-right .scene-card .scene-card-text, .page-news-single .scenes-top-right .scene-card .scene-card-text, .page-novelty .scenes-top-right .scene-card .scene-card-text, .page-privacy .scenes-top-right .scene-card .scene-card-text, .page-products .scenes-top-right .scene-card .scene-card-text { font-size: 12px !important; text-align: left; }
.page-about .scenes-grid-section > .container > .scenes-grid, .page-contact-thanks .scenes-grid-section > .container > .scenes-grid, .page-contact .scenes-grid-section > .container > .scenes-grid, .page-news-list .scenes-grid-section > .container > .scenes-grid, .page-news-single .scenes-grid-section > .container > .scenes-grid, .page-novelty .scenes-grid-section > .container > .scenes-grid, .page-privacy .scenes-grid-section > .container > .scenes-grid, .page-products .scenes-grid-section > .container > .scenes-grid { margin-top: 36px; padding-bottom: 72px; }
.page-about .lead-blocks, .page-contact-thanks .lead-blocks, .page-contact .lead-blocks, .page-news-list .lead-blocks, .page-news-single .lead-blocks, .page-novelty .lead-blocks, .page-privacy .lead-blocks, .page-products .lead-blocks { background: transparent; }
.page-about .lead-block, .page-contact-thanks .lead-block, .page-contact .lead-block, .page-news-list .lead-block, .page-news-single .lead-block, .page-novelty .lead-block, .page-privacy .lead-block, .page-products .lead-block { display: grid; grid-template-columns: 1fr 1.3fr; align-items: stretch; padding: 48px 0; overflow: visible; }
.page-about .lb-right, .page-contact-thanks .lb-right, .page-contact .lb-right, .page-news-list .lb-right, .page-news-single .lb-right, .page-novelty .lb-right, .page-privacy .lb-right, .page-products .lb-right { grid-template-columns: 1.3fr 1fr; background: transparent; }
.page-about .lb-visual, .page-contact-thanks .lb-visual, .page-contact .lb-visual, .page-news-list .lb-visual, .page-news-single .lb-visual, .page-novelty .lb-visual, .page-privacy .lb-visual, .page-products .lb-visual { position: relative; min-height: 400px; overflow: hidden; }
.page-about .lb-visual img, .page-contact-thanks .lb-visual img, .page-contact .lb-visual img, .page-news-list .lb-visual img, .page-news-single .lb-visual img, .page-novelty .lb-visual img, .page-privacy .lb-visual img, .page-products .lb-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .lb-text, .page-contact-thanks .lb-text, .page-contact .lb-text, .page-news-list .lb-text, .page-news-single .lb-text, .page-novelty .lb-text, .page-privacy .lb-text, .page-products .lb-text { display: flex; flex-direction: column; justify-content: center; gap: 18px; padding: 56px 64px; }
.page-about .lb-en, .page-contact-thanks .lb-en, .page-contact .lb-en, .page-news-list .lb-en, .page-news-single .lb-en, .page-novelty .lb-en, .page-privacy .lb-en, .page-products .lb-en { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); }
.page-about .lb-heading, .page-contact-thanks .lb-heading, .page-contact .lb-heading, .page-news-list .lb-heading, .page-news-single .lb-heading, .page-novelty .lb-heading, .page-privacy .lb-heading, .page-products .lb-heading { font-size: 26px; font-weight: 700; color: var(--dark); line-height: 1.6; letter-spacing: 0.04em; }
.page-about .lb-body, .page-contact-thanks .lb-body, .page-contact .lb-body, .page-news-list .lb-body, .page-news-single .lb-body, .page-privacy .lb-body, .page-products .lb-body { font-size: 14px; color: var(--dark); line-height: 2.4; border-left: 3px solid var(--gold); padding-left: 18px; }
.page-novelty .lb-body { font-size: 15px; color: var(--dark); border-left: 3px solid var(--gold); padding-left: 18px;line-height: 2; }
.page-about .lb-cta, .page-contact-thanks .lb-cta, .page-contact .lb-cta, .page-news-list .lb-cta, .page-news-single .lb-cta, .page-novelty .lb-cta, .page-privacy .lb-cta, .page-products .lb-cta { display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 20px 20px 72px; text-align: center; background: transparent; }
.page-about .lb-cta-text, .page-contact-thanks .lb-cta-text, .page-contact .lb-cta-text, .page-news-list .lb-cta-text, .page-news-single .lb-cta-text, .page-novelty .lb-cta-text, .page-privacy .lb-cta-text, .page-products .lb-cta-text { font-size: 16px; color: var(--dark); line-height: 1.9; }
.page-about .lb-cta-row, .page-contact-thanks .lb-cta-row, .page-contact .lb-cta-row, .page-news-list .lb-cta-row, .page-news-single .lb-cta-row, .page-novelty .lb-cta-row, .page-privacy .lb-cta-row, .page-products .lb-cta-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; }
.page-about .lb-cta-sep, .page-contact-thanks .lb-cta-sep, .page-contact .lb-cta-sep, .page-news-list .lb-cta-sep, .page-news-single .lb-cta-sep, .page-novelty .lb-cta-sep, .page-privacy .lb-cta-sep, .page-products .lb-cta-sep { width: 0; height: 0; background: var(--border-d); flex-shrink: 0; }
.page-about .lb-cta-tel, .page-contact-thanks .lb-cta-tel, .page-contact .lb-cta-tel, .page-news-list .lb-cta-tel, .page-news-single .lb-cta-tel, .page-novelty .lb-cta-tel, .page-privacy .lb-cta-tel, .page-products .lb-cta-tel { display: flex; align-items: center; gap: 4px; text-decoration: none; color: var(--dark); transition: color 0.2s; }
.page-about .lb-cta-tel:hover, .page-contact-thanks .lb-cta-tel:hover, .page-contact .lb-cta-tel:hover, .page-news-list .lb-cta-tel:hover, .page-news-single .lb-cta-tel:hover, .page-novelty .lb-cta-tel:hover, .page-privacy .lb-cta-tel:hover, .page-products .lb-cta-tel:hover { color: var(--blue); }
.page-about .lb-cta-tel svg, .page-contact-thanks .lb-cta-tel svg, .page-contact .lb-cta-tel svg, .page-news-list .lb-cta-tel svg, .page-news-single .lb-cta-tel svg, .page-novelty .lb-cta-tel svg, .page-privacy .lb-cta-tel svg, .page-products .lb-cta-tel svg { color: var(--dark); flex-shrink: 0; }
.page-about .lb-cta-tel-num, .page-contact-thanks .lb-cta-tel-num, .page-contact .lb-cta-tel-num, .page-news-list .lb-cta-tel-num, .page-news-single .lb-cta-tel-num, .page-novelty .lb-cta-tel-num, .page-privacy .lb-cta-tel-num, .page-products .lb-cta-tel-num { font-size: 35px; font-weight: 800; letter-spacing: 0.04em; font-family: "Inter", sans-serif; line-height: 1.2; }
.page-about .lb-cta-tel-hours, .page-contact-thanks .lb-cta-tel-hours, .page-contact .lb-cta-tel-hours, .page-news-list .lb-cta-tel-hours, .page-news-single .lb-cta-tel-hours, .page-novelty .lb-cta-tel-hours, .page-privacy .lb-cta-tel-hours, .page-products .lb-cta-tel-hours { font-size: 11px; color: var(--dark); letter-spacing: 0.06em; white-space: nowrap; }
.page-about .news-left .section-label, .page-contact-thanks .news-left .section-label, .page-contact .news-left .section-label, .page-news-list .news-left .section-label, .page-news-single .news-left .section-label, .page-novelty .news-left .section-label, .page-privacy .news-left .section-label, .page-products .news-left .section-label { margin-bottom: 0; }
.page-about .news-left .section-label, .page-contact-thanks .news-left .section-label, .page-contact .news-left .section-label, .page-news-list .news-left .section-label, .page-news-single .news-left .section-label, .page-novelty .news-left .section-label, .page-privacy .news-left .section-label, .page-products .news-left .section-label { margin-bottom: 8px; }
.page-about .news-left .about-link, .page-contact-thanks .news-left .about-link, .page-contact .news-left .about-link, .page-news-list .news-left .about-link, .page-news-single .news-left .about-link, .page-novelty .news-left .about-link, .page-privacy .news-left .about-link, .page-products .news-left .about-link { margin-top: 0 !important; flex-shrink: 0; }
.page-about .ab-catch-section { padding: 72px 0 40px; background: var(--white); text-align: center; }
.page-about .ab-catch-logo { margin-bottom: 28px; display: flex; justify-content: center; }
.page-about .ab-catch-logo svg { height: 72px; width: auto; color: var(--dark); }
.page-about .ab-catch-copy { font-size: 28px; font-weight: 800; letter-spacing: 0.08em; color: var(--dark); margin-bottom: 16px; line-height: 1.4; }
.page-about .ab-catch-line { width: 40px; height: 2px; background: var(--gold); margin: 0 auto; }
.page-about .ab-intro-section { padding: 0 0 80px;background: var(--white); }
.page-about .ab-intro-visual-wrap { position: relative; max-width: 1200px; margin: 0 auto; width: 90%; }
.page-about .ab-intro-photo { width: 100%; aspect-ratio: 16/7; border-radius: 16px; overflow: hidden; position: relative; }
.page-about .ab-intro-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .ab-intro-inner { position: relative; max-width: 820px; width: 86%; margin: 0 auto; margin-top: -7%; background: var(--white); border-radius: 16px; padding: 48px 46px; box-shadow: 0 8px 48px rgba(43,31,14,0.10); z-index: 2; }
.page-about .ab-intro-lead { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 28px; border-left: 3px solid var(--gold); padding-left: 16px; }
.page-about .ab-intro-list { font-size: 16px; color: var(--dark); line-height: 2; margin: 10px 0 10px 0; padding-left: 1.1em; list-style-position: outside; list-style: disc; }
.page-about .ab-intro-body { font-size: 15px; color: var(--dark); padding: 6px 0; }
.page-about .ab-why-section { padding: 80px 0; background: var(--cream-d); }
.page-about .ab-why-inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: center; }
.page-about .ab-why-visual { aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; position: relative; box-shadow: var(--shadow-lg); }
.page-about .ab-why-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .ab-why-text { display: flex; flex-direction: column; gap: 20px; }
.page-about .ab-why-lead { font-size: 16px; color: var(--dark); }
.page-about .ab-why-list { display: flex; flex-direction: column; gap: 12px; }
.page-about .ab-why-item { display: flex; gap: 14px; align-items: flex-start; background: var(--white); border-radius: 12px; padding: 18px 18px; box-shadow: 0 2px 12px rgba(43,31,14,0.06); }
.page-about .ab-why-icon { width: 36px; height: 36px; border-radius: 50%; background: var(--cream-d); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); font-size: 16px; font-weight: 900; }
.page-about .ab-why-item-text { flex: 1; }
.page-about .ab-why-item-label { font-size: 18px; color: var(--gold); font-weight: 800; text-transform: uppercase; margin-bottom: 2px; }
.page-about .ab-why-item-body { font-size: 13px; color: var(--dark); line-height: 2; }
.page-about .ab-message-section { padding: 80px 0; background: var(--white); }
.page-about .ab-message-inner { display: grid; grid-template-columns: 280px 1fr; gap: 56px; align-items: flex-start; max-width: 960px; margin: 0 auto; }
.page-about .ab-message-profile { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.page-about .ab-message-photo { width: 280px; aspect-ratio: 100/87; border-radius: 12px; overflow: hidden; position: relative; }
.page-about .ab-message-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .ab-message-name-en { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.page-about .ab-message-role { font-size: 14px; letter-spacing: 0.06em; text-align: center;line-height: 1.5; margin: 0; }
.page-about .ab-message-name { font-size: 18px; font-weight: 700; color: var(--dark); text-align: center; letter-spacing: 0.08em;line-height: 1.5; margin: 0; }
.page-about .ab-message-text { display: flex; flex-direction: column; gap: 16px; padding-top: 4px; }
.page-about .ab-message-lead { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.7; }
.page-about .ab-message-body { font-size: 15px; color: var(--dark); line-height: 1.8; }
.page-about .ab-panorama { width: 100%; aspect-ratio: 16/4; position: relative; overflow: hidden; }
.page-about .ab-panorama img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .ab-history-section { padding: 80px 0; background: var(--cream-d); }
.page-about .ab-history-inner { max-width: 720px; margin: 0 auto; }
.page-about .ab-timeline { display: flex; flex-direction: column; }
.page-about .ab-tl-item { display: flex; gap: 0; align-items: stretch; }
.page-about .ab-tl-year { width: 80px; flex-shrink: 0; padding: 0 16px 0 0; text-align: right; padding-top: 0; display: flex; align-items: flex-start; justify-content: flex-end; }
.page-about .ab-tl-year-text { font-size: 13px; font-weight: 700; color: var(--mid); font-family: "Inter", sans-serif; line-height: 1; padding-top: 2px; }
.page-about .ab-tl-item.milestone .ab-tl-year-text { color: var(--dark); }
.page-about .ab-tl-line { width: 1px; background: var(--border-d); position: relative; flex-shrink: 0; }
.page-about .ab-tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--light); position: absolute; top: 3px; left: -5px; }
.page-about .ab-tl-item.milestone .ab-tl-dot { width: 14px; height: 14px; background: var(--dark); top: 1px; left: -7px; }
.page-about .ab-tl-item.award .ab-tl-dot { width: 14px; height: 14px; background: var(--gold); top: 1px; left: -7px; box-shadow: 0 0 0 3px rgba(147,123,67,0.2); }
.page-about .ab-tl-item:last-child .ab-tl-line { background: transparent; }
.page-about .ab-tl-body { flex: 1; padding: 0 0 28px 24px; color: var(--dark); line-height: 1.9; margin-top: -4px; }
.page-about .ab-tl-item:last-child .ab-tl-body { padding-bottom: 0; }
.page-about .ab-tl-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--dark); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; padding: 2px 10px; border-radius: 3px; margin-left: 6px; vertical-align: middle; }
.page-about .ab-tl-badge.gold { background: var(--gold); }
.page-about .ab-tl-sub { color: var(--mid); font-size: 12px; }
.page-about .ab-tl-tag { display: inline-block; background: var(--cream-d); border: 1px solid var(--border-d); border-radius: 2px; padding: 1px 8px; font-size: 12px; color: var(--mid); margin-right: 4px; }
.page-about .ab-company-section { padding: 80px 0; background: var(--white); }
.page-about .ab-company-table { width: 100%; border-collapse: collapse; max-width: 720px; margin: 0 auto; }
.page-about .ab-company-table tr { border-bottom: 1px solid var(--border-d); }
.page-about .ab-company-table tr:last-child { border-bottom: none; }
.page-about .ab-company-table th { padding: 16px 0; font-size: 15px; font-weight: 700; color: var(--mid); text-align: left; width: 180px; vertical-align: top; }
.page-about .ab-company-table td { padding: 16px 0; font-size: 15px; color: var(--dark); }
.page-about .ab-map-section { padding: 80px 0; background: var(--cream-d); }
.page-about .ab-map-inner { display: grid; grid-template-columns: 1fr 1.6fr; gap: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.page-about .ab-map-frame { min-height: 320px; background: #e8e4dc; position: relative; overflow: hidden; }
.page-about .ab-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.page-about .ab-map-frame-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #e8e4dc, #d8d0c4); font-size: 12px; color: var(--mid); letter-spacing: 0.1em; }
.page-about .ab-map-info { display: flex; flex-direction: column; gap: 0; justify-content: flex-start; }
.page-about .ab-map-info-photo { width: 100%; aspect-ratio: 16/7; overflow: hidden; position: relative; flex-shrink: 0; }
.page-about .ab-map-info-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-about .ab-map-info-photo-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #C8A888 0%, #8A6840 50%, #5A3818 100%); }
.page-about .ab-map-info-body { padding: 28px 36px 32px; display: flex; flex-direction: column; gap: 16px; }
.page-about .ab-map-name { font-size: 16px; font-weight: 700; color: var(--dark); letter-spacing: 0.04em; margin: 0; }
.page-about .ab-map-detail { font-size: 13px; color: var(--dark); }
.page-about .ab-map-link { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--border-d); border-radius: 8px; padding: 10px 18px; font-size: 12px; font-weight: 700; color: var(--dark); text-decoration: none; transition: all 0.2s; align-self: flex-start; }
.page-about .ab-map-link:hover { border-color: var(--gold); color: var(--gold); }
.page-about .ab-shop-section { padding: 80px 0; background: var(--white); }
.page-about .ab-shop-inner { display: grid; grid-template-columns: 1fr 1fr 1.1fr; gap: 24px; align-items: stretch; }
.page-about .ab-shop-photo { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; background: linear-gradient(135deg, #8AB890, #3A6840); position: relative; }
.page-about .ab-shop-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-about .ab-shop-map-frame { border-radius: 16px; overflow: hidden; min-height: 240px; background: linear-gradient(135deg, #c8c4bc, #a8a49c); position: relative; }
.page-about .ab-shop-map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.page-about .ab-shop-map-placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 11px; color: var(--mid); letter-spacing: 0.08em; }
.page-about .ab-shop-info { display: flex; flex-direction: column; gap: 16px; justify-content: center; padding: 8px 0; }
.page-about .ab-shop-name { font-size: 20px; font-weight: 800; color: var(--dark); letter-spacing: 0.04em; }
.page-about .ab-shop-detail { font-size: 13px; color: var(--mid); }
.page-about .ab-shop-link { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: var(--white); padding: 12px 24px; border-radius: 999px; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-decoration: none; transition: opacity 0.2s; align-self: flex-start; box-shadow: 0 2px 12px rgba(var(--blue-rgb), 0.45); }
.page-about .ab-shop-link:hover { opacity: 0.85; }
.page-about / .hero-btn-arr { width: 24px; height: 1px; background: currentColor; position: relative; display: inline-block; margin-left: 14px; }
.page-about .ab-map-heading { font-size: 22px; font-weight: 700; color: var(--dark); letter-spacing: 0.06em; text-align: center; margin-top: 56px; }
.page-products .lineup-hero-wrap { max-width: var(--max); margin: 0 auto 0; padding: 0 48px; }
.page-products .lineup-hero-catch { padding: 0 0 32px; text-align: center; }
.page-products .lineup-hero-catch-logo { margin-bottom: 24px; display: flex; justify-content: center; }
.page-products .lineup-hero-catch-logo svg { height: 72px; width: auto; color: var(--dark); }
.page-products .lineup-hero-catch-copy { font-size: 28px; font-weight: 800; letter-spacing: 0.08em; color: var(--dark); margin-bottom: 16px; line-height: 1.4; }
.page-products .lineup-hero-catch-line { width: 40px; height: 2px; background: var(--gold); margin: 0 auto 0; }
.page-products .lineup-hero-photo { width: 100%; aspect-ratio: 16/6;max-width: 750px;margin: 0 auto; border-radius: 16px; overflow: hidden; position: relative;margin-bottom: 32px; }
.page-products .lineup-hero-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-products .lineup-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 0 38px 0; }
.page-products .lineup-feature-item { background: var(--white); border-radius: 12px; padding: 20px 16px; text-align: center; border: 1px solid var(--border-d); }
.page-products .lineup-feature-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.page-products .lineup-feature-text { font-size: 15px; font-weight: 400; color: var(--dark); line-height: 1.7; }
.page-products .popup-band { max-width: 920px; width: calc(100% - 80px); margin: 40px auto 40px; background: var(--cream); border: 1px solid var(--border-d); padding: 56px 0; border-radius: 20px; }
.page-products .popup-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.page-products .popup-text-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: start; margin-bottom: 36px; }
.page-products .popup-text-col {  }
.page-products .popup-label-en { font-family: var(--font-cor); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.page-products .popup-heading { font-size: 20px; font-weight: 700; color: var(--dark); letter-spacing: 0.04em; margin: 0; }
.page-products .popup-body { font-size: 13px; margin: 0; }
.page-products .popup-slide-col { position: relative; }
.page-products .popup-track-wrap { overflow: hidden; }
.page-products .popup-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
.page-products .popup-track::-webkit-scrollbar { display: none; }
.page-products .popup-card { flex: 0 0 78%; scroll-snap-align: start; background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 2px 16px rgba(43,31,14,0.07); }
.page-products .popup-card-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream); }
.page-products .popup-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-products .popup-card-body { padding: 14px 16px 16px; }
.page-products .popup-card-date { font-family: var(--font-cor); font-size: 11px; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 4px; }
.page-products .popup-card-name { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.5; }
/* news投稿へのリンク化。既存の .news-item:hover と同じopacityフェードに準拠し、
   下線・色変更等の新規デザインは追加しない */
.page-products .popup-card-name a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.page-products .popup-card-name a:hover { opacity: 0.65; }
.page-products .popup-arrow { display: flex; position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; background: var(--white); border: 1px solid var(--border-d); align-items: center; justify-content: center; cursor: pointer; color: var(--dark); z-index: 5; box-shadow: 0 2px 10px rgba(43,31,14,0.1); transition: background 0.2s, color 0.2s, border-color 0.2s; }
.page-products .popup-arrow:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.page-products .popup-arrow svg { width: 18px; height: 18px; }
.page-products .popup-prev { left: -20px; }
.page-products .popup-next { right: -20px; }
.page-products .popup-arrow:disabled { opacity: 0.35; cursor: default; }
.page-products .popup-arrow:disabled:hover { background: var(--white); color: var(--dark); border-color: var(--border-d); }
.page-products .popup-dots { display: flex; gap: 6px; justify-content: center; margin-top: 16px; }
.page-products .popup-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-d); border: none; padding: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.page-products .popup-dot.active { background: var(--gold); transform: scale(1.3); }
.page-products .lc-track { display: flex; gap: 20px; will-change: transform; cursor: grab; transition: transform 0.45s cubic-bezier(0.25,0.1,0.25,1); --lc-item-w: calc((100vw - 40px - 40px) / 3.3); padding-left: calc((100vw - var(--lc-item-w) * 3.3 - 20px * 2) / 2 + 10px); padding-right: calc((100vw - var(--lc-item-w) * 3.3 - 20px * 2) / 2 + 10px); }
.page-products .lc-track:active { cursor: grabbing; }
.page-products .lineup-features-heading { font-size: 24px; font-weight: 700; color: var(--dark); letter-spacing: 0.06em; text-align: center; margin: 20px auto -20px; }
.page-products .lineup-features-body { font-size: 15px; text-align: left; max-width: 750px; margin: 0;padding: 0 12px; }
.page-products .rice-type-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 28px auto 0; max-width: 1000px; padding: 0 40px; text-align: left; }
.page-products .rice-type-card { background: var(--white); border-radius: 16px; overflow: hidden; border: 1px solid var(--border-d); box-shadow: 0 2px 12px rgba(43,31,14,0.05); }
.page-products .rice-type-card-img { position: relative; aspect-ratio: 2/1; overflow: hidden; background: var(--cream); }
.page-products .rice-type-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-products .rice-type-card-body { padding: 18px 20px 20px; }
.page-products .rice-type-card-title { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: 0.05em; }
.page-products .rice-type-card-text { font-size: 13px; margin: 0; }
.page-novelty .price-table td span, .page-products .price-table td span { font-size:11px; }
.page-novelty .order-example, .page-products .order-example { margin-top: 32px; border-top: 1px solid var(--border-d); padding-top: 32px; }
.page-novelty .order-example-label, .page-products .order-example-label { font-size: 13px; letter-spacing: 0.25em; color: var(--gold); text-transform: uppercase; font-weight: 700; margin-bottom: 16px; text-align: center; }
.page-novelty .order-example-grid, .page-products .order-example-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.page-novelty .order-ex-card, .page-products .order-ex-card { border-radius: 12px; padding: 20px 20px 16px; border: 1px solid var(--border-d); }
.page-novelty .order-ex-title, .page-products .order-ex-title { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 4px; letter-spacing: 0.02em; }
.page-novelty .order-ex-sub, .page-products .order-ex-sub { font-size: 11px; margin-bottom: 14px; }
.page-novelty .order-ex-rows, .page-products .order-ex-rows { display: flex; flex-direction: column; gap: 0; }
.page-novelty .order-ex-row, .page-products .order-ex-row { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; border-bottom: 1px solid var(--border-d); font-size: 12px; color: var(--dark); }
.page-novelty .order-ex-row:last-child, .page-products .order-ex-row:last-child { border-bottom: none; }
.page-novelty .order-ex-row-val, .page-products .order-ex-row-val { font-weight: 600; text-align: right; }
.page-novelty .order-ex-total, .page-products .order-ex-total { margin-top: 12px; padding-top: 10px; border-top: 2px solid var(--dark); display: flex; justify-content: space-between; align-items: baseline; }
.page-novelty .order-ex-total-label, .page-products .order-ex-total-label { font-size: 13px; font-weight: 700; color: var(--dark); }
.page-novelty .order-ex-total-val, .page-products .order-ex-total-val { font-size: 16px; font-weight: 800; color: var(--dark); }
.page-novelty .order-ex-total-unit, .page-products .order-ex-total-unit { font-size: 11px; margin-top: 2px; text-align: right; }
.page-novelty .sched-thead, .page-products .sched-thead { display: flex; gap: 16px; padding: 10px 8px; border-bottom: 2px solid var(--border-d); margin-bottom: 0; }
.page-novelty .sched-thead-label, .page-products .sched-thead-label { width: 96px; flex-shrink: 0; font-size: 13px; font-weight: 700; color: var(--dark); }
.page-novelty .sched-thead-spacer, .page-products .sched-thead-spacer { width: 2px; flex-shrink: 0; }
.page-novelty .sched-thead-text, .page-products .sched-thead-text { flex: 1; font-size: 13px; font-weight: 700; color: var(--dark); }
.page-products .prod-section { padding: 80px 0; background: var(--white); }
.page-products .prod-section.bg-cream { background: var(--cream-d); }
.page-products .prod-features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 40px; }
.page-products .prod-feature-item { background: var(--cream); border-radius: 12px; padding: 18px 16px; text-align: center; border: 1px solid var(--border-d); }
.page-products .prod-feature-icon { font-size: 24px; margin-bottom: 8px; }
.page-products .prod-feature-label { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 4px; }
.page-products .prod-feature-text { font-size: 13px; color: var(--dark); font-weight: 600; line-height: 1.5; }
.page-products .prod-carousel-wrap { position: relative; overflow: hidden; margin: 0 -20px; padding: 0 20px; }
.page-products .prod-carousel-track { display: flex; gap: 16px; transition: transform 0.4s ease; }
.page-products .prod-bottle-card { flex: 0 0 160px; display: flex; flex-direction: column; align-items: center; background: var(--white); border: 1px solid var(--border-d); border-radius: 12px; overflow: hidden; cursor: pointer; transition: box-shadow 0.2s; text-decoration: none; color: var(--dark); }
.page-products .prod-bottle-card:hover { box-shadow: 0 4px 24px rgba(43,31,14,0.12); }
.page-products .prod-bottle-img { width: 100%; aspect-ratio: 1; background: var(--cream-d); position: relative; overflow: hidden; }
.page-products .prod-bottle-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-products .prod-bottle-bg { position: absolute; inset: 0; }
.page-products .prod-bottle-name { font-size: 13px; font-weight: 700; color: var(--dark); text-align: center; padding: 10px 8px; line-height: 1.4; }
.page-products .prod-bottle-area { font-size: 11px; color: var(--mid); text-align: center; padding: 0 8px 10px; }
.page-products .prod-carousel-arrows { display: flex; justify-content: center; gap: 12px; margin-top: 24px; }
.page-products .prod-arr-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid var(--border-d); background: var(--white); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--dark); transition: all 0.2s; }
.page-products .prod-arr-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-products .prod-carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.page-products .prod-carousel-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--border-d); cursor: pointer; transition: all 0.3s; }
.page-products .prod-carousel-dot.active { background: var(--gold); width: 18px; border-radius: 3px; }
.page-products .prod-shop-link { display: inline-flex; align-items: center; gap: 10px; background: var(--blue); color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.06em; padding: 14px 32px; border-radius: 999px; box-shadow: 0 2px 12px rgba(var(--blue-rgb), 0.45); text-decoration: none; transition: opacity 0.2s; margin-top: 32px; }
.page-products .prod-shop-link:hover { opacity: 0.85; }
.page-products .prod-arr-inline { width: 20px; height: 1px; background: currentColor; position: relative; display: inline-block; }
.page-products .prod-arr-inline::after { content: ""; position: absolute; right: 0; top: -3.5px; width: 7px; height: 7px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }
.page-products .onigiri-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;margin-bottom: 50px; }
.page-products .onigiri-carousel-track { display: flex; gap: 12px; transition: transform 0.4s ease; }
.page-products .onigiri-card { flex: 0 0 calc(33.333% - 12px); border-radius: 12px; overflow: hidden; position: relative; aspect-ratio: 1; background: var(--cream-d); }
.page-products .onigiri-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-products .onigiri-card-bg { position: absolute; inset: 0; }
.page-products .onigiri-card-label { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(38,34,31,0.7)); color: var(--white); font-size: 11px; font-weight: 700; padding: 20px 6px 10px; text-align: center; }
.page-products .onigiri-text { display: flex; flex-direction: column; gap: 10px; }
.page-products .onigiri-text h3 { font-size: 20px; font-weight: 800;margin-bottom: 8px; }
.page-products .onigiri-lead { font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.5; letter-spacing: 0.04em; }
.page-products .onigiri-body { font-size: 14px; color: var(--dark); }
.page-products .prod-detail-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--dark); text-decoration: none; border-bottom: 1px solid var(--border-d); padding-bottom: 4px; transition: border-color 0.2s, color 0.2s; align-self: flex-start; }
.page-products .prod-detail-link:hover { border-color: var(--gold); color: var(--gold); }
.page-products .bisque-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.page-products .bisque-photo { aspect-ratio: 4/3; border-radius: 20px; overflow: hidden; position: relative; background: linear-gradient(135deg, #C4986A 0%, #8A5A30 50%, #6A3818 100%); }
.page-products .bisque-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-products .bisque-text { display: flex; flex-direction: column; gap: 10px; }
.page-products .bisque-text h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.page-products .bisque-lead { font-size: 15px; font-weight: 800; color: var(--dark); line-height: 1.5; letter-spacing: 0.04em; }
.page-products .bisque-body { font-size: 14px; color: var(--dark); }
.page-products .novelty-cta-band { background: var(--dark); position: relative; overflow: hidden; padding: 64px 0; }
.page-products .novelty-cta-band::before { content: ""; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23937B43' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.page-products .novelty-cta-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.page-products .novelty-cta-photo { aspect-ratio: 4/3; border-radius: 16px; overflow: hidden; position: relative; background: linear-gradient(135deg, #8AB890 0%, #3A6840 100%); }
.page-products .novelty-cta-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-products .novelty-cta-text { display: flex; flex-direction: column; gap: 18px; }
.page-products .novelty-cta-en { font-size: 11px; letter-spacing: 0.35em; color: var(--gold-l); text-transform: uppercase; }
.page-products .novelty-cta-heading { font-size: 26px; font-weight: 800; color: var(--white); line-height: 1.5; letter-spacing: 0.04em; }
.page-products .novelty-cta-body { font-size: 13px; color: rgba(255,255,255,0.75); }
.page-products .novelty-cta-btn { display: inline-flex; align-items: center; gap: 12px; background: var(--gold); color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: 0.08em; padding: 14px 32px; border-radius: 999px; text-decoration: none; transition: opacity 0.2s; align-self: flex-start; box-shadow: 0 2px 16px rgba(147,123,67,0.5); }
.page-products .novelty-cta-btn:hover { opacity: 0.85; }
.page-products .milling-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 32px; }
.page-products .milling-card { border-radius: 16px; overflow: hidden; background: var(--white); border: 1px solid var(--border-d); }
.page-products .milling-card-img { aspect-ratio: 4/3; position: relative; }
.page-products .milling-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.page-products .milling-card-bg { position: absolute; inset: 0; }
.page-products .milling-card-body { padding: 20px 20px 24px; }
.page-products .milling-card-title { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.page-products .milling-card-text { font-size: 13px; color: var(--mid); line-height: 1.9; }
.page-news-list .about-link::before, .page-products .about-link::before { content: ""; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.page-news-list .about-link:hover::before, .page-products .about-link:hover::before { transform: scaleX(1); }
.page-novelty .scenes-grid-section { padding: 0; background: rgba(255,255,255,0.8); }
.page-novelty .vc-viewport { width: 100%; max-width: 1200px; margin: 0 auto; background: var(--white); border-radius: 16px; overflow: hidden; }
.page-novelty .vc-track-area { overflow: hidden; }
.page-novelty .lb-body-list { font-size: 16px; color: var(--dark); line-height: 2; margin: 14px 0 14px 0; padding-left: 1.1em; list-style-position: outside; list-style: disc; }
.page-contact-thanks .contact-hero, .page-contact .contact-hero { position: relative; min-height: 280px; overflow: hidden; padding-top: var(--topbar-h); box-sizing: border-box; }
.page-contact-thanks .contact-hero-bg, .page-contact .contact-hero-bg { position: absolute; inset: 0; background: url("../img/lead03.webp") center/cover no-repeat; }
.page-contact-thanks .contact-hero-overlay, .page-contact .contact-hero-overlay { position: absolute; inset: 0; z-index: 10; background: linear-gradient(rgba(38,34,31,0.45), rgba(20,16,10,0.70)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: calc(var(--topbar-h) + 20px) 20px 40px; text-align: center; }
.page-contact-thanks .contact-hero-en, .page-contact .contact-hero-en { font-size: 11px; letter-spacing: 0.45em; color: var(--gold-l); }
.page-contact-thanks .contact-hero-ttl, .page-contact .contact-hero-ttl { font-size: 38px; font-weight: 700; letter-spacing: 0.1em; color: var(--white); }
.page-contact-thanks .contact-hero-line, .page-contact .contact-hero-line { width: 40px; height: 1px; background: var(--gold-l); }
.page-contact-thanks .contact-section, .page-contact .contact-section { background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.page-contact-thanks .contact-inner, .page-contact .contact-inner { max-width: 760px; margin: 0 auto; padding: 64px 48px 80px; }
.page-contact-thanks .contact-intro, .page-contact .contact-intro { text-align: center; margin-bottom: 48px; }
.page-contact .contact-intro-text { font-size: 15px; color: var(--dark); line-height: 2.2; margin-bottom: 20px; }
.page-contact-thanks .contact-intro-text { font-size: 14px; color: var(--mid); line-height: 2.3; margin-bottom: 20px; }
.page-contact .contact-tel-info { display: inline-flex; align-items: center; gap: 0 20px; padding: 16px 32px; background: var(--cream); border-radius: 16px; color: var(--dark); flex-wrap: wrap; justify-content: center; }
.page-contact-thanks .contact-tel-info { display: inline-flex; align-items: center; gap: 24px; padding: 14px 32px; background: var(--cream); border-radius: 12px; border: 1px solid var(--border-d); font-size: 13px; color: var(--dark); flex-wrap: wrap; justify-content: center; gap: 8px 24px; }
.page-contact .contact-tel-num-wrap { display: flex; align-items: center; gap: 8px; font-size: 34px; font-weight: 800; letter-spacing: 0.02em; line-height: 1; }
.page-contact .contact-tel-num-wrap svg { width: 28px; height: 28px; flex-shrink: 0; color: var(--dark); }
.page-contact .contact-tel-num-wrap a { color: var(--dark); text-decoration: none; }
.page-contact .contact-tel-sep { color: var(--light); font-size: 22px; margin: 0 4px; }
.page-contact-thanks .contact-tel-sep { color: var(--light); }
.page-contact .contact-tel-hours { font-size: 12px; color: var(--dark); letter-spacing: 0.03em; white-space: nowrap; }
.page-contact-thanks .cf-field, .page-contact .cf-field { margin-bottom: 24px; }
.page-contact-thanks .cf-label, .page-contact .cf-label { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.page-contact-thanks .cf-required, .page-contact .cf-required { font-size: 10px; font-weight: 700; color: var(--white); background: #C0392B; border-radius: 3px; padding: 2px 8px; letter-spacing: 0.04em; }
.page-contact .cf-optional { font-size: 10px; font-weight: 700; color: var(--mid); background: var(--cream-b); border-radius: 3px; padding: 2px 8px; letter-spacing: 0.04em; }
.page-contact-thanks .cf-optional { font-size: 10px; font-weight: 700; color: var(--mid); background: var(--cream-d); border-radius: 3px; padding: 2px 8px; letter-spacing: 0.04em; }
.page-contact-thanks .cf-input, .page-contact .cf-input { width: 100%; height: 48px; border: 1.5px solid var(--border-d); border-radius: 8px; background: var(--white); padding: 0 16px; font-size: 14px; font-family: inherit; color: var(--dark); transition: border-color 0.2s, box-shadow 0.2s; appearance: none; }
.page-contact-thanks .cf-input:focus, .page-contact .cf-input:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(var(--blue-rgb),0.12); }
.page-contact-thanks .cf-input::placeholder, .page-contact .cf-input::placeholder { color: var(--light); }
.page-contact-thanks .cf-input.half, .page-contact .cf-input.half { max-width: 340px; }
.page-contact-thanks .cf-textarea, .page-contact .cf-textarea { width: 100%; min-height: 160px; border: 1.5px solid var(--border-d); border-radius: 8px; background: var(--white); padding: 14px 16px; font-size: 14px; font-family: inherit; color: var(--dark); resize: vertical; transition: border-color 0.2s, box-shadow 0.2s; }
.page-contact-thanks .cf-textarea:focus, .page-contact .cf-textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(var(--blue-rgb),0.12); }
.page-contact-thanks .cf-textarea::placeholder, .page-contact .cf-textarea::placeholder { color: var(--light); }
.page-contact .cf-radio-group { display: block; }
/* .wpcf7-list-item は .cf-radio-group の直接の子ではなく
   .wpcf7-form-control-wrap > .wpcf7-form-control.wpcf7-radio の子であるため、
   flex/gapはこの階層（.wpcf7-radio）に指定する必要がある */
.page-contact .cf-radio-group .wpcf7-radio {
  display: flex; flex-wrap: wrap; row-gap: 12px; column-gap: 10px;
}
.page-contact .cf-radio-group .wpcf7-list-item {
  margin: 0;
}
.page-contact-thanks .cf-radio-group { display: flex; flex-direction: column; gap: 10px; }
.page-contact .cf-radio-label { display: inline-flex; align-items: center; gap: 10px; padding: 10px 16px; border: 1.5px solid var(--border-d); border-radius: 10px; font-size: 13px; color: var(--dark); cursor: pointer; transition: border-color 0.2s, background 0.2s; white-space: nowrap; }
.page-contact-thanks .cf-radio-label { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1.5px solid var(--border-d); border-radius: 10px; font-size: 13px; color: var(--dark); cursor: pointer; transition: border-color 0.2s, background 0.2s; }
.page-contact .cf-radio-label:hover { border-color: var(--blue); background: var(--cream-b); }
.page-contact-thanks .cf-radio-label:hover { border-color: var(--gold); background: var(--cream); }
.page-contact-thanks .cf-radio-label input[type="radio"], .page-contact .cf-radio-label input[type="radio"] { display: none; }
.page-contact-thanks .cf-radio-dot, .page-contact .cf-radio-dot { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--light); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s; }
.page-contact .cf-radio-label input[type="radio"]:checked ~ .cf-radio-dot { border-color: var(--blue); }
.page-contact-thanks .cf-radio-label input[type="radio"]:checked ~ .cf-radio-dot { border-color: var(--gold); }
.page-contact .cf-radio-label input[type="radio"]:checked ~ .cf-radio-dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); display: block; }
.page-contact-thanks .cf-radio-label input[type="radio"]:checked ~ .cf-radio-dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); display: block; }
.page-contact .cf-radio-label input[type="radio"]:checked + span + .cf-radio-dot { border-color: var(--blue); }
.page-contact-thanks .cf-radio-label input[type="radio"]:checked + span + .cf-radio-dot { border-color: var(--gold); }
.page-contact .cf-radio-checked { border-color: var(--blue) !important; background: var(--cream-b) !important; }
.page-contact-thanks .cf-radio-checked { border-color: var(--gold) !important; background: #FBF7ED !important; }
.page-contact .cf-radio-inner { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }
.page-contact-thanks .cf-radio-inner { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.page-contact-thanks .cf-divider, .page-contact .cf-divider { border: none; border-top: 1px solid var(--border-d); margin: 28px 0; }
.page-contact-thanks .cf-privacy, .page-contact .cf-privacy { padding: 18px 20px; background: var(--cream); border-radius: 12px; border: 1px solid var(--border-d); margin-bottom: 32px; }
.page-contact-thanks .cf-privacy-text, .page-contact .cf-privacy-text { font-size: 12px; color: var(--mid); line-height: 2; margin-bottom: 14px; }
.page-contact-thanks .cf-privacy-text a, .page-contact .cf-privacy-text a { color: var(--blue); border-bottom: 1px solid var(--blue); text-decoration: none; }
.page-contact-thanks .cf-check-label, .page-contact .cf-check-label { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; color: var(--dark); cursor: pointer; }
.page-contact-thanks .cf-check-label input[type="checkbox"], .page-contact .cf-check-label input[type="checkbox"] { display: none; }
.page-contact-thanks .cf-checkbox, .page-contact .cf-checkbox { width: 22px; height: 22px; border: 2px solid var(--light); border-radius: 5px; background: var(--white); flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: border-color 0.2s, background 0.2s; }
.page-contact .cf-check-label input[type="checkbox"]:checked + .cf-checkbox { border-color: var(--blue); background: var(--blue); }
.page-contact-thanks .cf-check-label input[type="checkbox"]:checked + .cf-checkbox { border-color: var(--gold); background: var(--gold); }
.page-contact-thanks .cf-check-label input[type="checkbox"]:checked + .cf-checkbox::after, .page-contact .cf-check-label input[type="checkbox"]:checked + .cf-checkbox::after { content: ""; width: 12px; height: 8px; border-left: 2.5px solid #fff; border-bottom: 2.5px solid #fff; transform: rotate(-45deg); margin-top: -2px; display: block; }
.page-contact-thanks .cf-submit-wrap, .page-contact .cf-submit-wrap { text-align: center; }
.page-contact-thanks .cf-submit, .page-contact .cf-submit { display: inline-flex; align-items: center; gap: 12px; background: var(--dark); color: var(--white); font-size: 15px; font-weight: 700; letter-spacing: 0.08em; padding: 16px 56px; border-radius: 999px; border: none; cursor: pointer; font-family: inherit; position: relative; overflow: hidden; isolation: isolate; transition: color 0.4s; box-shadow: 0 4px 20px rgba(43,31,14,0.2); }
.page-contact .cf-submit::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--blue); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.7s, height 0.7s; opacity: 1; z-index: 1; }
.page-contact-thanks .cf-submit::before { content: ""; position: absolute; top: 50%; left: 50%; width: 0; height: 0; background: var(--gold); border-radius: 50%; transform: translate(-50%,-50%); transition: width 0.7s, height 0.7s; opacity: 1; z-index: 1; }
.page-contact-thanks .cf-submit:hover::before, .page-contact .cf-submit:hover::before { width: 500px; height: 500px; }
.page-contact-thanks .cf-submit:hover, .page-contact .cf-submit:hover { color: var(--white); }
.page-contact-thanks .cf-submit > *, .page-contact .cf-submit > * { position: relative; z-index: 2; }
.page-contact .cf-submit-note { margin-top: 12px; font-size: 12px; color: var(--mid); }
.page-contact-thanks .cf-submit-note { margin-top: 12px; font-size: 12px; color: var(--light); }

/* ===== CF7実マークアップ対応（旧 .cf-radio-label / .cf-radio-dot / .cf-radio-checked / .cf-check-label / .cf-checkbox はCF7が生成しないため無効化。削除せず残置し、以下の新ルールで上書きする） ===== */
.page-contact .cf-radio-group .wpcf7-list-item {
  display: inline-flex; align-items: center; padding: 10px 16px;
  border: 1.5px solid var(--border-d); border-radius: 10px;
  font-size: 13px; color: var(--dark);
  transition: border-color 0.2s, background 0.2s; white-space: nowrap;
}
.page-contact .cf-radio-group .wpcf7-list-item:hover { border-color: var(--blue); background: var(--cream-b); }
.page-contact .cf-radio-group label { display: inline-flex; align-items: center; gap: 10px; cursor: pointer; }
.page-contact .cf-radio-group input[type="radio"] { display: none; }
.page-contact .cf-radio-group .wpcf7-list-item-label::after {
  content: ""; width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--light); box-sizing: border-box; flex-shrink: 0;
  display: inline-block; margin-left: 10px; vertical-align: middle;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.page-contact .cf-radio-group .wpcf7-list-item:has(input:checked) {
  border-color: var(--blue); background: var(--cream-b);
}
.page-contact .cf-radio-group .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label::after {
  border-color: var(--blue);
  box-shadow: inset 0 0 0 5px var(--blue);
}
.page-contact .cf-privacy .wpcf7-list-item { display: flex; align-items: center; }
.page-contact .cf-privacy label { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 700; color: var(--dark); cursor: pointer; }
.page-contact .cf-privacy input[type="checkbox"] { display: none; }
.page-contact .cf-privacy .wpcf7-list-item-label::before {
  content: ""; width: 22px; height: 22px; border-radius: 5px;
  border: 2px solid var(--light); background: var(--white); box-sizing: border-box;
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s; margin-right: 12px;
}
.page-contact .cf-privacy .wpcf7-list-item:has(input:checked) .wpcf7-list-item-label::before {
  border-color: var(--blue); background: var(--blue);
  box-shadow: inset 0 0 0 2px var(--white);
}

/* ===== 確認画面（#cfConfirmScreen） ===== */
.page-contact .cf-confirm-heading { font-size: 18px; font-weight: 700; color: var(--dark); margin: 0 0 24px; text-align: center; }
.page-contact .cf-screen-confirm { border: 1px solid var(--border-d); border-radius: 12px; padding: 32px; }

/* ===== 確認画面の戻る/送信ボタン ===== */
.page-contact .cf-submit-back {
  background: var(--cream-b); color: var(--mid); box-shadow: none;
}
.page-contact .cf-submit-back::before { background: var(--border-d); }
.page-contact .cf-submit-back:hover { color: var(--dark); }
.page-contact .cf-submit-wrap-confirm {
  display: flex; flex-direction: row; gap: 16px; justify-content: center; align-items: center;
  width: 100%; position: relative;
}
/* CF7自身のJS(index.js)が [submit class:has-spinner] の直後に
   <span class="wpcf7-spinner">を実行時に動的挿入する。visibility:hiddenだが
   margin:0 24pxで幅を占有するため、flexの中央寄せが送信ボタン側にずれて見える。
   絶対配置にしてレイアウト計算から除外する（送信中の見た目自体は維持） */
.page-contact .cf-submit-wrap-confirm .wpcf7-spinner {
  position: absolute; margin: 0; right: -32px; top: 50%; transform: translateY(-50%);
}

.page-contact-thanks .thanks-section, .page-contact .thanks-section { background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.page-contact-thanks .thanks-inner, .page-contact .thanks-inner { max-width: 640px; margin: 0 auto; padding: 80px 48px 100px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.page-contact-thanks .thanks-icon, .page-contact .thanks-icon { width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--dark); display: flex; align-items: center; justify-content: center; }
.page-contact-thanks .thanks-icon::after, .page-contact .thanks-icon::after { content: ""; width: 28px; height: 18px; border-left: 3px solid var(--dark); border-bottom: 3px solid var(--dark); transform: rotate(-45deg); margin-top: -6px; display: block; }
.page-contact-thanks .thanks-heading, .page-contact .thanks-heading { font-size: 24px; font-weight: 700; color: var(--dark); letter-spacing: 0.04em; }
.page-contact .thanks-text { font-size: 14px; color: var(--mid); line-height: 2.4; }
.page-contact-thanks .thanks-text { font-size: 15px; line-height: 2.2; }
.page-contact-thanks .thanks-back, .page-contact .thanks-back { display: inline-flex; align-items: center; gap: 10px; border: 1.5px solid var(--border-d); border-radius: 999px; padding: 12px 32px; font-size: 13px; font-weight: 600; color: var(--dark); text-decoration: none; transition: all 0.2s; margin-top: 8px; }
.page-contact-thanks .thanks-back:hover, .page-contact .thanks-back:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }
.page-contact .thanks-countdown { font-size: 12px; color: var(--light); }
.page-contact .cf-radio-checked .cf-radio-dot { border-color: var(--gold); }
.page-contact .cf-radio-checked .cf-radio-dot::after { content: ""; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); display: block; }
.page-contact-thanks .contact-tel-info a { color: var(--dark); font-weight: 700; text-decoration: none; }
.page-news-list .nl-section { padding: 64px 0 100px;background: #fff; }
.page-news-list .nl-filter-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 48px; }
.page-news-list .nl-filter-btn { display: inline-flex; align-items: center; padding: 7px 18px; border-radius: 999px; border: 1.5px solid var(--border-d); font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--mid); background: transparent; cursor: pointer; transition: all 0.2s; }
.page-news-list .nl-filter-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-news-list .nl-filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.page-news-list .nl-list { border-top: 1px solid var(--border-d); max-width: 800px; margin: 0 auto; }
.page-news-list .nl-item { display: flex; align-items: flex-start; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border-d); text-decoration: none; color: var(--dark); transition: opacity 0.2s; }
.page-news-list .nl-item:hover { opacity: 0.75; }
.page-news-list .nl-item-thumb { width: 160px; aspect-ratio: 4/3; border-radius: 8px; overflow: hidden; position: relative; flex-shrink: 0; }
.page-news-list .nl-item-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-news-list .nl-thumb-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-news-list .nl-item-body { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.page-news-list .nl-item-meta { display: flex; align-items: center; gap: 10px; }
.page-news-list .nl-item-date { font-size: 12px; font-family: "Inter", sans-serif; letter-spacing: 0.1em; color: var(--gold); white-space: nowrap; }
.page-news-list .nl-item-cat { font-size: 10px; letter-spacing: 0.12em; font-weight: 800; color: var(--gold); border: 1px solid var(--border); border-radius: 2px; padding: 3px 10px; white-space: nowrap; }
.page-news-list .nl-item-title { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 2.2; margin: 0; }
.page-news-list .nl-item-excerpt { font-size: 13px; line-height:2; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.page-news-list .nl-item-arr { width: 32px; height: 32px; border-radius: 50%; border: 1.5px solid var(--border-d); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--mid); align-self: center; transition: border-color 0.2s, color 0.2s; }
.page-news-list .nl-item:hover .nl-item-arr { border-color: var(--gold); color: var(--gold); }
.page-news-list .nl-pagination { margin-top: 56px; display: flex; justify-content: center; align-items: center; gap: 6px; }
.page-news-list .nl-page-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: 8px; border: 1.5px solid var(--border-d); font-size: 13px; font-weight: 700; color: var(--mid); cursor: pointer; background: transparent; transition: all 0.2s; text-decoration: none; }
.page-news-list .nl-page-btn:hover { border-color: var(--gold); color: var(--gold); }
.page-news-list .nl-page-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.page-news-list .nl-page-btn.arrow { color: var(--light); }
.page-news-list .nl-page-btn.arrow:hover { color: var(--gold); border-color: var(--gold); }
.page-news-single .article-hero, .page-privacy .article-hero { position: relative; min-height: 320px; overflow: hidden; padding-top: var(--topbar-h); box-sizing: border-box; }
.page-news-single .article-hero-bg, .page-privacy .article-hero-bg { position: absolute; inset: 0; background: url("../img/lead03.webp") center/cover no-repeat; }
.page-news-single .article-hero-overlay, .page-privacy .article-hero-overlay { position: absolute; inset: 0; z-index: 10; background: linear-gradient(rgba(38,34,31,0.38), rgba(38,34,31,0.78)); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; padding: calc(var(--topbar-h) + 20px) 20px 40px; text-align: center; }
.page-news-single .article-hero-en, .page-privacy .article-hero-en { font-size: 11px; letter-spacing: 0.45em; color: var(--gold-l); }
.page-news-single .article-hero-title, .page-privacy .article-hero-title { font-size: 36px; font-weight: 700; letter-spacing: 0.08em; color: var(--white); line-height: 1.3; }
.page-news-single .article-hero-line, .page-privacy .article-hero-line { width: 40px; height: 1px; background: var(--gold-l); }
.page-news-single .article-hero-sub { font-size: 15px; color: #fff;font-weight: bold; }
.page-privacy .article-hero-sub { font-size: 15px; color: var(--white);font-weight: bold; }
.page-news-single .article-wrap, .page-privacy .article-wrap { max-width: 800px; margin: 0 auto; padding: 56px 48px 80px; }
.page-news-single .article-meta, .page-privacy .article-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-bottom: 20px; }
.page-news-single .article-date, .page-privacy .article-date { font-size: 12px; color: var(--light); letter-spacing: 0.08em; font-family: "Inter", sans-serif; }
.page-news-single .article-cat, .page-privacy .article-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; color: var(--gold); border: 1px solid var(--border); border-radius: 999px; padding: 3px 12px; }
.page-news-single .article-title, .page-privacy .article-title { font-size: 28px; font-weight: 700; color: var(--dark); line-height: 1.6; letter-spacing: 0.04em; margin-bottom: 28px; border-bottom: 1px solid var(--border-d); padding-bottom: 24px; }
.page-news-single .article-share, .page-privacy .article-share { display: flex; align-items: center; gap: 10px; margin-bottom: 36px; }
.page-news-single .share-label, .page-privacy .share-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; color: var(--mid); text-transform: uppercase; }
.page-news-single .share-btn, .page-privacy .share-btn { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-decoration: none; transition: opacity 0.2s; }
.page-news-single .share-btn:hover, .page-privacy .share-btn:hover { opacity: 0.75; }
.page-news-single .share-btn.fb, .page-privacy .share-btn.fb { background: #1877F2; }
.page-news-single .share-btn.x, .page-privacy .share-btn.x { background: #000; }
.page-news-single .share-btn.line, .page-privacy .share-btn.line { background: #06C755; }
.page-news-single .share-btn svg, .page-privacy .share-btn svg { width: 16px; height: 16px; fill: #fff; }
.page-news-single .article-body, .page-privacy .article-body { font-size: 15px; color: var(--dark); line-height: 2.2; }
.page-news-single .article-body h2, .page-privacy .article-body h2 { font-size: 20px; font-weight: 700; color: var(--dark); line-height: 1.5; letter-spacing: 0.04em; margin: 48px 0 20px; padding: 14px 20px;border-left: 4px solid var(--gold); border-radius: 0 8px 8px 0; }
.page-news-single .article-body p, .page-privacy .article-body p { margin-bottom: 20px; }
.page-news-single .article-body img, .page-privacy .article-body img { width: auto!important; height: auto; display: block; border-radius: 12px; margin: 32px 0; max-width: 100%;}
.page-news-single .article-body iframe, .page-privacy .article-body iframe { display: block; width: 100%; max-width: 100%; height: auto; aspect-ratio: 16 / 9; border-radius: 8px; margin: 32px 0; border: none; }
.page-news-single .article-img-placeholder, .page-privacy .article-img-placeholder { width: 100%; aspect-ratio: 16/9; border-radius: 12px; background: linear-gradient(135deg, #D4C8A8 0%, #A89878 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 0.1em; font-weight: 600; margin: 32px 0; box-shadow: 0 4px 24px rgba(43,31,14,0.1); }
.page-news-single .article-pagination, .page-privacy .article-pagination { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border-d); }
.page-news-single .pagination-link { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; color: var(--dark); font-size: 11px; font-weight: 800; letter-spacing: 0.12em; transition: color 0.2s; }
.page-privacy .pagination-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dark); font-size: 13px; font-weight: 600; transition: color 0.2s; max-width: 45%; }
.page-news-single .pagination-link:hover, .page-privacy .pagination-link:hover { color: var(--gold); }
.page-news-single .pagination-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.page-privacy .pagination-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--light); }
.page-news-single .pagination-link:hover svg, .page-privacy .pagination-link:hover svg { color: var(--gold); }
.page-privacy .article-body ul { padding-left: 1.5em; margin-bottom: 20px; }
.page-privacy .article-body li { margin-bottom: 8px; line-height: 1.9; }
.page-privacy .article-body a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.page-privacy .article-body a:hover { opacity: 0.75; }
.page-privacy .pagination-link.prev { flex-direction: row; }
.page-privacy .pagination-link.next { flex-direction: row-reverse; text-align: right; }
.page-privacy .pagination-title { font-size: 12px; color: var(--mid); line-height: 1.6; }
.page-privacy .pagination-center a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border-d); color: var(--mid); font-size: 11px; text-decoration: none; transition: all 0.2s; }
.page-privacy .pagination-center a:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

@media (min-width: 1380px) {
  :root { --nav-h: 100px; }
  .about-strip-photo { width: 380px; height: 280px; }
  .page-about .hero-catch, .page-contact-thanks .hero-catch, .page-contact .hero-catch, .page-news-list .hero-catch, .page-news-single .hero-catch, .page-novelty .hero-catch, .page-privacy .hero-catch, .page-products .hero-catch { font-size: 64px; }
  .page-top .hero-catch { font-size: 88px; }
  .page-about .hero, .page-contact-thanks .hero, .page-contact .hero, .page-news-list .hero, .page-news-single .hero, .page-novelty .hero, .page-privacy .hero, .page-products .hero { max-height: 1080px; min-height: 980px; }
  .page-about .bottle-item img, .page-contact-thanks .bottle-item img, .page-contact .bottle-item img, .page-news-list .bottle-item img, .page-news-single .bottle-item img, .page-novelty .bottle-item img, .page-privacy .bottle-item img, .page-products .bottle-item img { max-width: 254px; }
  .page-about .bottle-item-onigiri img, .page-contact-thanks .bottle-item-onigiri img, .page-contact .bottle-item-onigiri img, .page-news-list .bottle-item-onigiri img, .page-news-single .bottle-item-onigiri img, .page-novelty .bottle-item-onigiri img, .page-privacy .bottle-item-onigiri img, .page-products .bottle-item-onigiri img { max-width: 800px; }
  .page-about .hero-bottles-grid, .page-contact-thanks .hero-bottles-grid, .page-contact .hero-bottles-grid, .page-news-list .hero-bottles-grid, .page-news-single .hero-bottles-grid, .page-novelty .hero-bottles-grid, .page-privacy .hero-bottles-grid, .page-products .hero-bottles-grid { padding: 0 32px 40px 0; }
  .page-about .hero-bottles-grid .bottle-item img, .page-contact-thanks .hero-bottles-grid .bottle-item img, .page-contact .hero-bottles-grid .bottle-item img, .page-news-list .hero-bottles-grid .bottle-item img, .page-news-single .hero-bottles-grid .bottle-item img, .page-novelty .hero-bottles-grid .bottle-item img, .page-privacy .hero-bottles-grid .bottle-item img, .page-products .hero-bottles-grid .bottle-item img { max-width: 148px; }
  .page-about .bottles-row, .page-contact-thanks .bottles-row, .page-contact .bottles-row, .page-news-list .bottles-row, .page-news-single .bottles-row, .page-novelty .bottles-row, .page-privacy .bottles-row, .page-products .bottles-row { gap: 16px; margin-bottom: -36px; }
  .page-about .hero-card-inner, .page-contact-thanks .hero-card-inner, .page-contact .hero-card-inner, .page-news-list .hero-card-inner, .page-news-single .hero-card-inner, .page-novelty .hero-card-inner, .page-privacy .hero-card-inner, .page-products .hero-card-inner { background: rgba(255,255,255,0.86); }
  .page-about .lc-viewport, .page-contact-thanks .lc-viewport, .page-contact .lc-viewport, .page-news-list .lc-viewport, .page-news-single .lc-viewport, .page-privacy .lc-viewport { --lc-item-w: calc((min(var(--max), 100vw) - 96px - 20px * 4) / 5); gap: 20px; }
  .page-novelty .lc-viewport { --lc-item-w: calc((min(var(--max), 100vw) - 96px - 20px * 5) / 6); gap: 20px; }
  .page-about .vc-slide, .page-contact-thanks .vc-slide, .page-contact .vc-slide, .page-news-list .vc-slide, .page-news-single .vc-slide, .page-privacy .vc-slide, .page-products .vc-slide { flex: 0 0 320px; }
  .page-products .lc-track { --lc-item-w: calc((min(var(--max), 100vw) - 96px - 20px * 5) / 6); }
}
@media (max-width: 767px) {
  .announce { display: none; }
  .hero-topbar-spacer { height: 0; }
  :root { --nav-h: 0px; --bar-h: 0px; --topbar-h: 0px; }
  .about-strip { margin-top: 60px; }
  .about-strip-photo { width: 160px; height: 120px; border-radius: 16px; }
  .about-strip-track { gap: 6px; }
  .about-visual { aspect-ratio: 4/3; border-radius: 38px; }
  .about-badge { right: 0; font-size: 11px; padding: 14px 16px; }
  .about-badge strong { font-size: 22px; }
  .page-about .about-kv, .page-contact-thanks .about-kv, .page-contact .about-kv, .page-news-list .about-kv, .page-news-single .about-kv, .page-novelty .about-kv, .page-privacy .about-kv, .page-products .about-kv { font-size: 32px; }
  .page-top .about-kv { font-size: 29px; }
  .section-label-ja { font-size: 20px; }
  .page-top .section-label-ja-sm { font-size: 15px; }
  .products { padding: 72px 0; }
  .page-about .brand-grid, .page-contact-thanks .brand-grid, .page-contact .brand-grid, .page-news-list .brand-grid, .page-news-single .brand-grid, .page-novelty .brand-grid, .page-privacy .brand-grid, .page-products .brand-grid { grid-template-columns: 1fr; gap: 20px; margin-left: -20px; margin-right: -20px; }
  .page-top .brand-grid { grid-template-columns: 1fr; gap: 20px; margin-left: -20px; margin-right: -20px; padding: 0; }
  .brand-grid .brand-card:nth-child(odd) { border-radius: 0 40px 40px 0; margin-right: 32px; margin-left: 0; }
  .page-top .brand-grid .brand-card:nth-child(odd) .brand-card-body { padding-left: 38px; }
  .brand-grid .brand-card:nth-child(even) { border-radius: 40px 0 0 40px; margin-left: 32px; margin-right: 0; }
  .page-top .brand-grid .brand-card:nth-child(even) .brand-card-body { padding-right: 38px; }
  .brand-card { border-radius: 38px; }
  .btob { padding: 0 0 72px; }
  .btob-inner { grid-template-columns: 1fr; }
  .btob-visual { min-height: 260px; }
  .btob-copy { padding: 36px 24px; }
  .btob-heading { font-size: 22px; }
  .news .container { padding: 40px 24px; width: 92%; border-radius: 16px; }
  .news-inner { grid-template-columns: 1fr; gap: 32px; }
  .news-left { position: static; display: flex; justify-content: space-between; align-items: flex-end; }
  .news-left .section-label { margin-bottom: 0; }
  .news-left .about-link { margin-top: 0 !important; flex-shrink: 0; }
  .news-item { grid-template-columns: 1fr; gap: 6px; padding: 16px 0; }
  .news-date-cat { display: flex; align-items: center; gap: 8px; }
  .news-cat { display: inline-block; width: auto; }
  .page-mesh::before { content: ""; position: fixed; top: 0; left: 0; right: 0; height: 30vh; background: linear-gradient( to bottom, rgba(255,255,255,0.82) 0%, rgba(255,255,255,0.40) 40%, rgba(255,255,255,0) 100% ); z-index: 1; pointer-events: none; }
  .hero-catch-l2 { display: inline-block; }
  .novelty-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }
  .novelty-text { order: 1; }
  .novelty-visual { order: 2; aspect-ratio: 4/3; border-radius: 38px; }
  .page-about .hero, .page-contact-thanks .hero, .page-contact .hero, .page-news-list .hero, .page-news-single .hero, .page-novelty .hero, .page-privacy .hero, .page-products .hero { height: calc(100vh - var(--bottom-nav)); min-height: calc(560px - var(--bottom-nav)); max-height: none; }
  .page-top .hero { padding-bottom: 120px; }
  .page-top .hero-upper { padding: 24px 32px 20px;text-align: center; }
  .page-top .hero-catch { font-size: 9.2vw; margin-left: 0; }
  .page-top .hero-catch-punct { display: none; }
  .page-top .hero-sub { font-size: 3.5vw; }
  .page-top .hero-deco { font-size: clamp(32px, 12vw, 72px);font-weight: 200;opacity: 0.1; }
  .page-top .hero-slide-wrap { width: calc(100% - 32px); aspect-ratio: 4 / 3; border-radius: 12px; overflow: visible; }
  .page-top .hero-card-wrap { left: 12px; bottom: -100px; width: calc(100% - 24px); }
  .page-about .hero-card-inner, .page-contact-thanks .hero-card-inner, .page-contact .hero-card-inner, .page-news-list .hero-card-inner, .page-news-single .hero-card-inner, .page-novelty .hero-card-inner, .page-privacy .hero-card-inner, .page-products .hero-card-inner { padding: 14px 4px 0; backdrop-filter: none; -webkit-backdrop-filter: none; background: none; box-shadow: none; max-width: 100%; }
  .page-top .hero-card-inner { padding: 12px 14px 10px; border-radius: 10px; }
  .page-top .hero-card-inner { text-align: center; }
  .page-top .hero-card-title { font-size: 15px; }
  .page-about .hero-card-text, .page-contact-thanks .hero-card-text, .page-contact .hero-card-text, .page-news-list .hero-card-text, .page-news-single .hero-card-text, .page-novelty .hero-card-text, .page-privacy .hero-card-text, .page-products .hero-card-text { font-size: 12px; line-height: 1.8; }
  .page-top .hero-card-text { font-size: 13px; margin-bottom: 8px; }
  .page-top .hero-card-inner .hero-btn { display: flex; justify-content: center; }
  .page-about .hero-news, .page-contact-thanks .hero-news, .page-contact .hero-news, .page-news-list .hero-news, .page-news-single .hero-news, .page-novelty .hero-news, .page-privacy .hero-news, .page-products .hero-news { padding: 0 16px; gap: 10px; }
  .page-about .hero-news, .page-contact-thanks .hero-news, .page-contact .hero-news, .page-news-list .hero-news, .page-news-single .hero-news, .page-novelty .hero-news, .page-privacy .hero-news, .page-products .hero-news { backdrop-filter: none; -webkit-backdrop-filter: none; }
  .page-top .hero-news { padding: 0 20px; }
  body { padding-bottom: var(--bottom-nav); }
  .page-top .footer .container { padding: 0 20px; }
  .page-about .back-to-top, .page-contact-thanks .back-to-top, .page-contact .back-to-top, .page-news-list .back-to-top, .page-news-single .back-to-top, .page-novelty .back-to-top, .page-privacy .back-to-top, .page-products .back-to-top { right: 16px; bottom: calc(var(--bottom-nav) + env(safe-area-inset-bottom) + 16px); width: 40px; height: 40px; }
  .page-top .back-to-top { right: 16px; bottom: calc(var(--bottom-nav) + env(safe-area-inset-bottom) + 16px); width: 46px; height: 46px; }
  .page-about .bottle-item img, .page-contact-thanks .bottle-item img, .page-contact .bottle-item img, .page-news-list .bottle-item img, .page-news-single .bottle-item img, .page-novelty .bottle-item img, .page-privacy .bottle-item img, .page-products .bottle-item img { max-width: 128px; }
  .page-about .bottle-item-onigiri img, .page-contact-thanks .bottle-item-onigiri img, .page-contact .bottle-item-onigiri img, .page-news-list .bottle-item-onigiri img, .page-news-single .bottle-item-onigiri img, .page-novelty .bottle-item-onigiri img, .page-privacy .bottle-item-onigiri img, .page-products .bottle-item-onigiri img { max-width: 420px; margin-bottom: -20px; }
  .page-about .hero-bottles-grid, .page-contact-thanks .hero-bottles-grid, .page-contact .hero-bottles-grid, .page-news-list .hero-bottles-grid, .page-news-single .hero-bottles-grid, .page-novelty .hero-bottles-grid, .page-privacy .hero-bottles-grid, .page-products .hero-bottles-grid { top: auto; bottom: 200px; height: 240px; width: 100%; padding: 0 8px; justify-content: center; }
  .page-about .hero-bottles-grid .bottle-item img, .page-contact-thanks .hero-bottles-grid .bottle-item img, .page-contact .hero-bottles-grid .bottle-item img, .page-news-list .hero-bottles-grid .bottle-item img, .page-news-single .hero-bottles-grid .bottle-item img, .page-novelty .hero-bottles-grid .bottle-item img, .page-privacy .hero-bottles-grid .bottle-item img, .page-products .hero-bottles-grid .bottle-item img { max-width: 64px; }
  .page-about .bottles-row, .page-contact-thanks .bottles-row, .page-contact .bottles-row, .page-news-list .bottles-row, .page-news-single .bottles-row, .page-novelty .bottles-row, .page-privacy .bottles-row, .page-products .bottles-row { gap: 4px; margin-bottom: -38px; }
  .page-about .hero-bottles, .page-contact-thanks .hero-bottles, .page-contact .hero-bottles, .page-news-list .hero-bottles, .page-news-single .hero-bottles, .page-novelty .hero-bottles, .page-privacy .hero-bottles, .page-products .hero-bottles { top: auto; bottom: 205px; height: 190px; width: 100%; justify-content: center; padding: 0 12px; gap: 8px; }
  .page-about .hero-bottles, .page-contact-thanks .hero-bottles, .page-contact .hero-bottles, .page-news-list .hero-bottles, .page-news-single .hero-bottles, .page-novelty .hero-bottles, .page-privacy .hero-bottles, .page-products .hero-bottles { z-index: 2; }
  .page-about .b-lg, .page-contact-thanks .b-lg, .page-contact .b-lg, .page-news-list .b-lg, .page-news-single .b-lg, .page-novelty .b-lg, .page-privacy .b-lg, .page-products .b-lg { width: 64px; height: 165px; font-size: 10px; }
  .page-about .b-md, .page-contact-thanks .b-md, .page-contact .b-md, .page-news-list .b-md, .page-news-single .b-md, .page-novelty .b-md, .page-privacy .b-md, .page-products .b-md { width: 56px; height: 145px; font-size: 10px; }
  .page-about .b-sm, .page-contact-thanks .b-sm, .page-contact .b-sm, .page-news-list .b-sm, .page-news-single .b-sm, .page-novelty .b-sm, .page-privacy .b-sm, .page-products .b-sm { width: 48px; height: 125px; font-size: 10px; }
  .page-about .bottle-label, .page-contact-thanks .bottle-label, .page-contact .bottle-label, .page-news-list .bottle-label, .page-news-single .bottle-label, .page-novelty .bottle-label, .page-privacy .bottle-label, .page-products .bottle-label { font-size: 9px; }
  .page-about .hero-card, .page-contact-thanks .hero-card, .page-contact .hero-card, .page-news-list .hero-card, .page-news-single .hero-card, .page-novelty .hero-card, .page-privacy .hero-card, .page-products .hero-card { gap: 12px; }
  .page-about .hero-card-tag, .page-contact-thanks .hero-card-tag, .page-contact .hero-card-tag, .page-news-list .hero-card-tag, .page-news-single .hero-card-tag, .page-novelty .hero-card-tag, .page-privacy .hero-card-tag, .page-products .hero-card-tag { font-size: 14px; }
  .page-about .hero-left, .page-contact-thanks .hero-left, .page-contact .hero-left, .page-news-list .hero-left, .page-news-single .hero-left, .page-novelty .hero-left, .page-privacy .hero-left, .page-products .hero-left { height: 100%; padding: 20px 20px 64px; max-width: 100%; justify-content: flex-start; }
  .page-about .hero-en, .page-contact-thanks .hero-en, .page-contact .hero-en, .page-news-list .hero-en, .page-news-single .hero-en, .page-novelty .hero-en, .page-privacy .hero-en, .page-products .hero-en { font-size: 11px; margin-bottom: 12px; }
  .page-about .hero-btn, .page-contact-thanks .hero-btn, .page-contact .hero-btn, .page-news-list .hero-btn, .page-news-single .hero-btn, .page-novelty .hero-btn, .page-privacy .hero-btn, .page-products .hero-btn { font-size: 12px; padding: 10px 28px; }
  .page-about .hero-cards-viewport, .page-contact-thanks .hero-cards-viewport, .page-contact .hero-cards-viewport, .page-news-list .hero-cards-viewport, .page-news-single .hero-cards-viewport, .page-novelty .hero-cards-viewport, .page-privacy .hero-cards-viewport, .page-products .hero-cards-viewport { margin-top: auto; }
  .page-about .hero-controls, .page-contact-thanks .hero-controls, .page-contact .hero-controls, .page-news-list .hero-controls, .page-news-single .hero-controls, .page-novelty .hero-controls, .page-privacy .hero-controls, .page-products .hero-controls { display: none; }
  .page-about .hero-news-date, .hero-news-link, .page-contact-thanks .hero-news-date, .hero-news-link, .page-contact .hero-news-date, .hero-news-link, .page-news-list .hero-news-date, .hero-news-link, .page-news-single .hero-news-date, .hero-news-link, .page-novelty .hero-news-date, .hero-news-link, .page-privacy .hero-news-date, .hero-news-link, .page-products .hero-news-date, .hero-news-link { display: none; }
  .page-about .hero-news-text, .page-contact-thanks .hero-news-text, .page-contact .hero-news-text, .page-news-list .hero-news-text, .page-news-single .hero-news-text, .page-novelty .hero-news-text, .page-privacy .hero-news-text, .page-products .hero-news-text { font-size: 11px; }
  .page-about .hero-arrow, .page-contact-thanks .hero-arrow, .page-contact .hero-arrow, .page-news-list .hero-arrow, .page-news-single .hero-arrow, .page-novelty .hero-arrow, .page-privacy .hero-arrow, .page-products .hero-arrow { background: rgba(255,255,255,0.92); backdrop-filter: none; -webkit-backdrop-filter: none; }
  .page-top .container, .page-about .container, .page-contact-thanks .container, .page-contact .container, .page-news-list .container, .page-news-single .container, .page-novelty .container, .page-privacy .container, .page-products .container { padding: 0 20px; }
  .page-about .container-flow, .page-contact-thanks .container-flow, .page-contact .container-flow, .page-news-list .container-flow, .page-news-single .container-flow, .page-novelty .container-flow, .page-privacy .container-flow, .page-products .container-flow { padding: 0 20px; }
  .page-about .topbar-spacer, .page-contact-thanks .topbar-spacer, .page-contact .topbar-spacer, .page-news-list .topbar-spacer, .page-news-single .topbar-spacer, .page-novelty .topbar-spacer, .page-privacy .topbar-spacer, .page-products .topbar-spacer { height: 0; }
  .page-about .page-hero, .page-contact-thanks .page-hero, .page-contact .page-hero, .page-news-list .page-hero, .page-news-single .page-hero, .page-novelty .page-hero, .page-privacy .page-hero, .page-products .page-hero { min-height: 260px; height: auto; padding-top: 0; padding-bottom: 0; }
  .page-about .page-hero { min-height: 260px; height: auto; padding-top: 0; }
  .page-products .page-hero { min-height: 260px; padding-top: 0; }
  .page-news-list .page-hero { min-height: 200px; height: auto; padding-top: 0; }
  .page-about .page-hero-overlay, .page-contact .page-hero-overlay, .page-news-list .page-hero-overlay, .page-news-single .page-hero-overlay, .page-privacy .page-hero-overlay { justify-content: flex-end; padding: 64px 20px 36px; }
  .page-about .page-hero-overlay, .page-contact-thanks .page-hero-overlay, .page-novelty .page-hero-overlay, .page-products .page-hero-overlay { justify-content: flex-end; padding: 24px 20px 76px; }
  .page-news-list .page-hero-overlay { justify-content: flex-end; padding: 60px 20px 32px; }
  .page-about .page-hero-h1, .page-contact-thanks .page-hero-h1, .page-contact .page-hero-h1, .page-news-list .page-hero-h1, .page-news-single .page-hero-h1, .page-novelty .page-hero-h1, .page-privacy .page-hero-h1, .page-products .page-hero-h1 { font-size: 22px; }
  .page-about .page-hero-h1, .page-products .page-hero-h1 { font-size: 26px; }
  .page-news-list .page-hero-h1 { font-size: 24px; }
  .page-about .page-hero-sub, .page-contact-thanks .page-hero-sub, .page-contact .page-hero-sub, .page-news-list .page-hero-sub, .page-news-single .page-hero-sub, .page-novelty .page-hero-sub, .page-privacy .page-hero-sub, .page-products .page-hero-sub { font-size: 13px; }
  .page-about .lead-section, .page-contact-thanks .lead-section, .page-contact .lead-section, .page-news-list .lead-section, .page-news-single .lead-section, .page-novelty .lead-section, .page-privacy .lead-section, .page-products .lead-section { padding: 44px 0; }
  .page-about .lead-inner, .page-contact-thanks .lead-inner, .page-contact .lead-inner, .page-news-list .lead-inner, .page-news-single .lead-inner, .page-novelty .lead-inner, .page-privacy .lead-inner, .page-products .lead-inner { grid-template-columns: 1fr; gap: 36px; padding: 0 20px; }
  .page-about .lead-heading, .page-contact-thanks .lead-heading, .page-contact .lead-heading, .page-news-list .lead-heading, .page-news-single .lead-heading, .page-novelty .lead-heading, .page-privacy .lead-heading, .page-products .lead-heading { font-size: 22px; }
  .page-about .scene-section, .page-contact-thanks .scene-section, .page-contact .scene-section, .page-news-list .scene-section, .page-news-single .scene-section, .page-novelty .scene-section, .page-privacy .scene-section, .page-products .scene-section { padding: 44px 0; }
  .page-about .scene-list, .page-contact-thanks .scene-list, .page-contact .scene-list, .page-news-list .scene-list, .page-news-single .scene-list, .page-novelty .scene-list, .page-privacy .scene-list, .page-products .scene-list { padding: 0 20px; gap: 24px; }
  .page-about .scene-item, .scene-item.rev, .page-contact-thanks .scene-item, .scene-item.rev, .page-contact .scene-item, .scene-item.rev, .page-news-list .scene-item, .scene-item.rev, .page-news-single .scene-item, .scene-item.rev, .page-novelty .scene-item, .scene-item.rev, .page-privacy .scene-item, .scene-item.rev, .page-products .scene-item, .scene-item.rev { grid-template-columns: 1fr; }
  .page-about .scene-item.rev .scene-photo, .page-contact-thanks .scene-item.rev .scene-photo, .page-contact .scene-item.rev .scene-photo, .page-news-list .scene-item.rev .scene-photo, .page-news-single .scene-item.rev .scene-photo, .page-novelty .scene-item.rev .scene-photo, .page-privacy .scene-item.rev .scene-photo, .page-products .scene-item.rev .scene-photo { order: -1; }
  .page-about .scene-photo, .page-contact-thanks .scene-photo, .page-contact .scene-photo, .page-news-list .scene-photo, .page-news-single .scene-photo, .page-novelty .scene-photo, .page-privacy .scene-photo, .page-products .scene-photo { min-height: 240px; }
  .page-about .scene-body, .page-contact-thanks .scene-body, .page-contact .scene-body, .page-news-list .scene-body, .page-news-single .scene-body, .page-novelty .scene-body, .page-privacy .scene-body, .page-products .scene-body { padding: 28px 24px; }
  .page-about .scene-title, .page-contact-thanks .scene-title, .page-contact .scene-title, .page-news-list .scene-title, .page-news-single .scene-title, .page-novelty .scene-title, .page-privacy .scene-title, .page-products .scene-title { font-size: 18px; }
  .page-about .scenes-grid-section, .page-contact-thanks .scenes-grid-section, .page-contact .scenes-grid-section, .page-news-list .scenes-grid-section, .page-news-single .scenes-grid-section, .page-novelty .scenes-grid-section, .page-privacy .scenes-grid-section, .page-products .scenes-grid-section { padding: 0; }
  .page-about .scenes-grid, .page-contact-thanks .scenes-grid, .page-contact .scenes-grid, .page-news-list .scenes-grid, .page-news-single .scenes-grid, .page-novelty .scenes-grid, .page-privacy .scenes-grid, .page-products .scenes-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 36px; }
  .page-about .lineup-section, .page-contact-thanks .lineup-section, .page-contact .lineup-section, .page-news-list .lineup-section, .page-news-single .lineup-section, .page-novelty .lineup-section, .page-privacy .lineup-section, .page-products .lineup-section { padding: 44px 0; }
  .page-about .lc-thumb, .page-contact-thanks .lc-thumb, .page-contact .lc-thumb, .page-news-list .lc-thumb, .page-news-single .lc-thumb, .page-novelty .lc-thumb, .page-privacy .lc-thumb, .page-products .lc-thumb { width: 40px; height: 40px; border-radius: 6px; }
  .page-about .voice-section, .page-contact-thanks .voice-section, .page-contact .voice-section, .page-news-list .voice-section, .page-news-single .voice-section, .page-novelty .voice-section, .page-privacy .voice-section, .page-products .voice-section { padding: 44px 0; }
  .page-about .flow-section, .page-contact-thanks .flow-section, .page-contact .flow-section, .page-news-list .flow-section, .page-news-single .flow-section, .page-novelty .flow-section, .page-privacy .flow-section, .page-products .flow-section { padding: 44px 0; }
  .page-about .flow-steps, .page-contact-thanks .flow-steps, .page-contact .flow-steps, .page-news-list .flow-steps, .page-news-single .flow-steps, .page-novelty .flow-steps, .page-privacy .flow-steps, .page-products .flow-steps { flex-direction: column; gap: 0; }
  .page-about .flow-step, .page-contact-thanks .flow-step, .page-contact .flow-step, .page-news-list .flow-step, .page-news-single .flow-step, .page-novelty .flow-step, .page-privacy .flow-step, .page-products .flow-step { flex-direction: row; text-align: left; padding: 0 0 36px 0; gap: 20px; align-items: flex-start; }
  .page-about .flow-step::after, .page-contact-thanks .flow-step::after, .page-contact .flow-step::after, .page-news-list .flow-step::after, .page-news-single .flow-step::after, .page-novelty .flow-step::after, .page-privacy .flow-step::after, .page-products .flow-step::after { content: "↓"; right: auto; left: 0; width: 44px; text-align: center; top: auto; bottom: 8px; font-size: 16px; color: var(--light); }
  .page-about .flow-num, .page-contact-thanks .flow-num, .page-contact .flow-num, .page-news-list .flow-num, .page-news-single .flow-num, .page-novelty .flow-num, .page-privacy .flow-num, .page-products .flow-num { margin-bottom: 0; width: 44px; height: 44px; min-width: 44px; font-size: 11px; align-self: flex-start; }
  .page-about .price-section, .page-contact-thanks .price-section, .page-contact .price-section, .page-news-list .price-section, .page-news-single .price-section, .page-novelty .price-section, .page-privacy .price-section, .page-products .price-section { padding: 44px 0; }
  .page-about .price-grid, .page-contact-thanks .price-grid, .page-contact .price-grid, .page-news-list .price-grid, .page-news-single .price-grid, .page-novelty .price-grid, .page-privacy .price-grid, .page-products .price-grid { grid-template-columns: 1fr; gap: 20px; }
  .page-about .breadcrumb-inner, .page-contact-thanks .breadcrumb-inner, .page-contact .breadcrumb-inner, .page-news-list .breadcrumb-inner, .page-news-single .breadcrumb-inner, .page-novelty .breadcrumb-inner, .page-privacy .breadcrumb-inner, .page-products .breadcrumb-inner { padding: 0 20px; font-size: 11px; }
  .page-about .flow-body, .page-contact-thanks .flow-body, .page-contact .flow-body, .page-news-list .flow-body, .page-news-single .flow-body, .page-novelty .flow-body, .page-privacy .flow-body, .page-products .flow-body { padding-top: 10px; }
  .page-about .faq-section, .page-contact-thanks .faq-section, .page-contact .faq-section, .page-news-list .faq-section, .page-news-single .faq-section, .page-novelty .faq-section, .page-privacy .faq-section, .page-products .faq-section { padding: 44px 0; }
  .page-about .faq-list, .page-contact-thanks .faq-list, .page-contact .faq-list, .page-news-list .faq-list, .page-news-single .faq-list, .page-novelty .faq-list, .page-privacy .faq-list, .page-products .faq-list { padding: 0 20px; margin-top: 36px; }
  .page-about .faq-q-text, .page-contact-thanks .faq-q-text, .page-contact .faq-q-text, .page-news-list .faq-q-text, .page-news-single .faq-q-text, .page-novelty .faq-q-text, .page-privacy .faq-q-text, .page-products .faq-q-text { font-size: 14px; }
  .page-about .faq-a, .page-contact-thanks .faq-a, .page-contact .faq-a, .page-news-list .faq-a, .page-news-single .faq-a, .page-novelty .faq-a, .page-privacy .faq-a, .page-products .faq-a { padding: 0 0 20px 0; }
  .page-about .faq-a-text, .page-contact-thanks .faq-a-text, .page-contact .faq-a-text, .page-news-list .faq-a-text, .page-news-single .faq-a-text, .page-novelty .faq-a-text, .page-privacy .faq-a-text, .page-products .faq-a-text { font-size: 13px; }
  .page-about .scenes-top, .page-contact-thanks .scenes-top, .page-contact .scenes-top, .page-news-list .scenes-top, .page-news-single .scenes-top, .page-novelty .scenes-top, .page-privacy .scenes-top, .page-products .scenes-top { padding: 44px 0 0; }
  .page-about .scenes-top-inner, .page-contact-thanks .scenes-top-inner, .page-contact .scenes-top-inner, .page-news-list .scenes-top-inner, .page-news-single .scenes-top-inner, .page-novelty .scenes-top-inner, .page-privacy .scenes-top-inner, .page-products .scenes-top-inner { grid-template-columns: 1fr; gap: 24px; }
  .page-about .scenes-top-left .section-label, .page-contact-thanks .scenes-top-left .section-label, .page-contact .scenes-top-left .section-label, .page-news-list .scenes-top-left .section-label, .page-news-single .scenes-top-left .section-label, .page-novelty .scenes-top-left .section-label, .page-privacy .scenes-top-left .section-label, .page-products .scenes-top-left .section-label { align-items: center; }
  .page-about .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-contact-thanks .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-contact .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-news-list .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-news-single .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-novelty .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-privacy .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja, .page-products .scenes-top-left .section-label-en, .scenes-top-left .section-label-ja { text-align: center; }
  .page-about .scenes-sub, .page-contact-thanks .scenes-sub, .page-contact .scenes-sub, .page-news-list .scenes-sub, .page-news-single .scenes-sub, .page-privacy .scenes-sub, .page-products .scenes-sub { text-align: center; font-size: 13px; }
  .page-novelty .scenes-sub { text-align: center; font-size: 14px; }
  .page-about .scenes-grid-section > .container > .scenes-grid, .page-contact-thanks .scenes-grid-section > .container > .scenes-grid, .page-contact .scenes-grid-section > .container > .scenes-grid, .page-news-list .scenes-grid-section > .container > .scenes-grid, .page-news-single .scenes-grid-section > .container > .scenes-grid, .page-novelty .scenes-grid-section > .container > .scenes-grid, .page-privacy .scenes-grid-section > .container > .scenes-grid, .page-products .scenes-grid-section > .container > .scenes-grid { padding-bottom: 44px; }
  .page-about .lead-block, .page-contact-thanks .lead-block, .page-contact .lead-block, .page-news-list .lead-block, .page-news-single .lead-block, .page-novelty .lead-block, .page-privacy .lead-block, .page-products .lead-block { padding: 36px 0; }
  .page-about .lead-block, .page-contact-thanks .lead-block, .page-contact .lead-block, .page-news-list .lead-block, .page-news-single .lead-block, .page-novelty .lead-block, .page-privacy .lead-block, .page-products .lead-block { grid-template-columns: 1fr; }
  .page-about .lb-visual, .page-contact-thanks .lb-visual, .page-contact .lb-visual, .page-news-list .lb-visual, .page-news-single .lb-visual, .page-novelty .lb-visual, .page-privacy .lb-visual, .page-products .lb-visual { min-height: 260px; }
  .page-about .lb-text, .page-contact-thanks .lb-text, .page-contact .lb-text, .page-news-list .lb-text, .page-news-single .lb-text, .page-novelty .lb-text, .page-privacy .lb-text, .page-products .lb-text { padding: 32px 20px; }
  .page-about .lb-heading, .page-contact-thanks .lb-heading, .page-contact .lb-heading, .page-news-list .lb-heading, .page-news-single .lb-heading, .page-novelty .lb-heading, .page-privacy .lb-heading, .page-products .lb-heading { font-size: 20px; }
  .page-about .lb-right, .page-contact-thanks .lb-right, .page-contact .lb-right, .page-news-list .lb-right, .page-news-single .lb-right, .page-novelty .lb-right, .page-privacy .lb-right, .page-products .lb-right { grid-template-columns: 1fr; }
  .page-about .lb-left .lb-visual, .page-contact-thanks .lb-left .lb-visual, .page-contact .lb-left .lb-visual, .page-news-list .lb-left .lb-visual, .page-news-single .lb-left .lb-visual, .page-novelty .lb-left .lb-visual, .page-privacy .lb-left .lb-visual, .page-products .lb-left .lb-visual { order: -1; width: 82vw; margin-left: 0; border-radius: 0 16px 16px 0; overflow: hidden; }
  .page-about .lb-left .lb-visual img, .page-contact-thanks .lb-left .lb-visual img, .page-contact .lb-left .lb-visual img, .page-news-list .lb-left .lb-visual img, .page-news-single .lb-left .lb-visual img, .page-novelty .lb-left .lb-visual img, .page-privacy .lb-left .lb-visual img, .page-products .lb-left .lb-visual img { border-radius: 0 16px 16px 0; }
  .page-about .lb-right .lb-visual, .page-contact-thanks .lb-right .lb-visual, .page-contact .lb-right .lb-visual, .page-news-list .lb-right .lb-visual, .page-news-single .lb-right .lb-visual, .page-novelty .lb-right .lb-visual, .page-privacy .lb-right .lb-visual, .page-products .lb-right .lb-visual { order: -1; width: 82vw; margin-left: auto; border-radius: 16px 0 0 16px; overflow: hidden; }
  .page-about .lb-right .lb-visual img, .page-contact-thanks .lb-right .lb-visual img, .page-contact .lb-right .lb-visual img, .page-news-list .lb-right .lb-visual img, .page-news-single .lb-right .lb-visual img, .page-novelty .lb-right .lb-visual img, .page-privacy .lb-right .lb-visual img, .page-products .lb-right .lb-visual img { border-radius: 16px 0 0 16px; }
  .page-about .lb-cta, .page-contact-thanks .lb-cta, .page-contact .lb-cta, .page-news-list .lb-cta, .page-news-single .lb-cta, .page-novelty .lb-cta, .page-privacy .lb-cta, .page-products .lb-cta { padding: 40px 20px; }
  .page-about .lb-cta-row, .page-contact-thanks .lb-cta-row, .page-contact .lb-cta-row, .page-news-list .lb-cta-row, .page-news-single .lb-cta-row, .page-novelty .lb-cta-row, .page-privacy .lb-cta-row, .page-products .lb-cta-row { flex-direction: column; gap: 20px; }
  .page-about .lb-cta-sep, .page-contact-thanks .lb-cta-sep, .page-contact .lb-cta-sep, .page-news-list .lb-cta-sep, .page-news-single .lb-cta-sep, .page-novelty .lb-cta-sep, .page-privacy .lb-cta-sep, .page-products .lb-cta-sep { width: 40px; height: 1px; }
  .page-about .lb-cta-tel-num, .page-contact-thanks .lb-cta-tel-num, .page-contact .lb-cta-tel-num, .page-news-list .lb-cta-tel-num, .page-news-single .lb-cta-tel-num, .page-novelty .lb-cta-tel-num, .page-privacy .lb-cta-tel-num, .page-products .lb-cta-tel-num { font-size: 22px; }
  .page-about .ab-catch-section { padding: 48px 0 40px; }
  .page-about .ab-catch-copy { font-size: 20px; }
  .page-about .ab-intro-section { padding: 0 0 60px; }
  .page-about .ab-intro-visual-wrap { width: 100%; }
  .page-about .ab-intro-photo { border-radius: 0; aspect-ratio: 4/3; }
  .page-about .ab-intro-inner { width: 90%; margin-top: -40px; padding: 32px 20px; border-radius: 12px; }
  .page-about .ab-intro-lead { font-size: 18px; }
  .page-about .ab-intro-list { font-size: 15px; }
  .page-about .ab-why-section { padding: 48px 0; }
  .page-about .ab-why-inner { grid-template-columns: 1fr; gap: 36px; }
  .page-about .ab-why-lead { font-size: 15px; }
  .page-about .ab-why-item-label { font-size: 16px; }
  .page-about .ab-message-section { padding: 48px 0; }
  .page-about .ab-message-inner { grid-template-columns: 1fr; gap: 32px; }
  .page-about .ab-message-photo { width: 260px; }
  .page-about .ab-message-lead { font-size: 15px; }
  .page-about .ab-panorama { aspect-ratio: 16/7; }
  .page-about .ab-history-section { padding: 48px 0; }
  .page-about .ab-tl-body { font-size: 13px; }
  .page-about .ab-company-section { padding: 48px 0; }
  .page-about .ab-company-table th, .ab-company-table td { font-size: 12px; padding: 12px 0; }
  .page-about .ab-company-table th { width: 120px; }
  .page-about .ab-map-section { padding: 48px 0; }
  .page-about .ab-map-inner { grid-template-columns: 1fr; }
  .page-about .ab-map-info-body { padding: 20px 20px 24px; }
  .page-about .ab-map-detail { font-size: 12px; }
  .page-about .ab-map-link { display: none; }
  .page-about .ab-shop-section { padding: 48px 0; }
  .page-about .ab-shop-inner { grid-template-columns: 1fr; gap: 16px; }
  .page-about .ab-map-heading { font-size: 18px; }
  .page-products .lineup-hero-wrap { padding: 0; }
  .page-products .lineup-hero-catch { padding: 8px 0 0; }
  .page-products .lineup-hero-catch-copy { font-size: 20px; }
  .page-products .lineup-hero-catch-line { margin-bottom: 28px; }
  .page-products .lineup-hero-photo { border-radius: 0; aspect-ratio: 5/2; }
  .page-products .lineup-features { grid-template-columns: repeat(2, 1fr); margin: 0 20px 0; }
  .page-products .lineup-feature-item { padding: 18px 12px; }
  .page-products .lineup-feature-text { font-size: 14px; }
  .page-products .popup-band { padding: 40px 0; width: 100%; border-radius: 0; }
  .page-products .popup-inner { padding: 0 20px; }
  .page-products .popup-text-row { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
  .page-products .popup-heading { font-size: 17px; }
  .page-products .popup-arrow { width: 32px; height: 32px; background: rgba(255,255,255,0.92); }
  .page-products .popup-arrow svg { width: 15px; height: 15px; }
  .page-products .popup-prev { left: 4px; }
  .page-products .popup-next { right: 4px; }
  .page-products .rice-type-cards { grid-template-columns: 1fr; margin: 24px auto 0; gap: 24px; padding: 0; text-align: left; }
  .page-products .rice-type-card { display: block; width: 88%; margin: 0 auto; }
  .page-products .rice-type-card-img { flex: unset; width: 100%; aspect-ratio: 4/3; }
  .page-products .rice-type-card-body { padding: 16px 18px 18px; }
  .page-novelty .order-example-grid, .page-products .order-example-grid { grid-template-columns: 1fr; }
  .page-products .prod-section { padding: 48px 0; }
  .page-products .prod-features { grid-template-columns: repeat(2, 1fr); }
  .page-products .prod-bottle-card { flex: 0 0 130px; }
  .page-products .onigiri-layout { grid-template-columns: 1fr; gap: 0; }
  .page-products .onigiri-card { flex: 0 0 calc(50% - 8px); }
  .page-products .bisque-layout { grid-template-columns: 1fr; gap: 32px; }
  .page-products .novelty-cta-band { padding: 48px 0; }
  .page-products .novelty-cta-inner { grid-template-columns: 1fr; gap: 28px; }
  .page-products .novelty-cta-heading { font-size: 20px; }
  .page-products .milling-grid { grid-template-columns: 1fr; gap: 16px; }
  .page-novelty .vc-viewport { background: none; border-radius: 0; }
  .page-novelty .lb-body-list { font-size: 15px; }
  .page-contact-thanks .contact-hero, .page-contact .contact-hero { min-height: 180px; padding-top: 0; }
  .page-contact-thanks .contact-hero-overlay, .page-contact .contact-hero-overlay { padding: 36px 20px 28px; }
  .page-contact-thanks .contact-hero-ttl, .page-contact .contact-hero-ttl { font-size: 26px; }
  .page-contact-thanks .contact-inner, .page-contact .contact-inner { padding: 40px 20px 60px; }
  .page-contact .contact-tel-info { flex-direction: column; gap: 10px; padding: 16px 24px; }
  .page-contact-thanks .contact-tel-info { padding: 12px 20px; font-size: 12px; }
  .page-contact .contact-tel-sep { display: none; }
  .page-contact .contact-tel-num-wrap { font-size: 28px; gap: 8px; }
  .page-contact .contact-tel-num-wrap svg { width: 22px; height: 22px; }
  .page-contact .contact-tel-hours { font-size: 11px; }
  .page-contact-thanks .cf-submit, .page-contact .cf-submit { padding: 14px 40px; font-size: 14px; }
  .page-contact .cf-submit-wrap-confirm { flex-direction: column-reverse; gap: 12px; }
  .page-contact .cf-submit-wrap-confirm .cf-submit { width: 100%; justify-content: center; }
  .page-contact-thanks .thanks-inner, .page-contact .thanks-inner { padding: 56px 20px 72px; }
  .page-contact-thanks .thanks-heading, .page-contact .thanks-heading { font-size: 20px; }
  .page-news-list .nl-section { padding: 40px 0 80px; }
  .page-news-list .nl-filter-bar { gap: 8px; margin-bottom: 32px; }
  .page-news-list .nl-filter-btn { font-size: 11px; padding: 6px 14px; }
  .page-news-list .nl-item-thumb { width: 100px; }
  .page-news-list .nl-item-title { font-size: 13px; }
  .page-news-list .nl-item-excerpt { font-size: 13px; }
  .page-news-list .nl-item-date { font-size: 11px; }
  .page-news-list .nl-item-arr { display: none; }
  .page-news-single .article-hero, .page-privacy .article-hero { min-height: 200px; height: auto; padding-top: 0; }
  .page-news-single .article-hero-overlay, .page-privacy .article-hero-overlay { justify-content: flex-end; padding: 60px 20px 32px; }
  .page-news-single .article-hero-title, .page-privacy .article-hero-title { font-size: 24px; }
  .page-news-single .article-hero-sub, .page-privacy .article-hero-sub { font-size: 13px; }
  .page-news-single .article-wrap, .page-privacy .article-wrap { padding: 36px 20px 60px; }
  .page-news-single .article-title, .page-privacy .article-title { font-size: 20px; margin-bottom: 20px; padding-bottom: 18px; }
  .page-news-single .article-body h2, .page-privacy .article-body h2 { font-size: 17px; margin: 36px 0 16px; }
  .page-privacy .article-pagination { flex-direction: column; gap: 20px; }
  .page-privacy .pagination-link { max-width: 100%; }
  .page-privacy .pagination-center { order: -1; }
}

@keyframes stripScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes mbDrift1 {
  0%,100% { transform: translate(0,0) scale(1); }
  35% { transform: translate(160px, 120px) scale(1.08); }
  70% { transform: translate(60px, -80px) scale(0.94); }
}

@keyframes mbDrift2 {
  0%,100% { transform: translate(0,0) scale(1); }
  40% { transform: translate(-140px, -100px) scale(1.1); }
  75% { transform: translate(-60px, 80px) scale(0.96); }
}

@keyframes mbDrift3 {
  0%,100% { transform: translate(0,0) scale(1); }
  30% { transform: translate(-100px, -120px) scale(1.06); }
  65% { transform: translate(80px, 60px) scale(0.92); }
}

@media (max-width: 1400px) and (min-width: 768px) {
  .page-top .hero-sub { font-size: 20px; }
}

@keyframes heroCatchIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes heroZoom {
  from { transform: scale(1.06); }
  to { transform: scale(1.0); }
}

@media (min-width: 767px) and (hover: hover) {
  .page-about .hero, .page-contact-thanks .hero, .page-contact .hero, .page-news-list .hero, .page-news-single .hero, .page-novelty .hero, .page-privacy .hero, .page-products .hero { max-height: 880px; min-height: 680px; }
  .page-about .hero-catch, .page-contact-thanks .hero-catch, .page-contact .hero-catch, .page-news-list .hero-catch, .page-news-single .hero-catch, .page-novelty .hero-catch, .page-privacy .hero-catch, .page-products .hero-catch { font-size: 56px; text-align: left; }
}

@keyframes kenBurns {
  from { transform: scale(1.07) translateX(12px) translateY(-6px); }
  to { transform: scale(1.0) translateX(0) translateY(0); }
}

@media (max-width: 767px) {
  @keyframes kenBurns {
    from { transform: scale(1.07); }
    to { transform: scale(1.0); }
  }
}

@media (max-width: 480px) {
  .page-about .bottle-item img, .page-contact-thanks .bottle-item img, .page-contact .bottle-item img, .page-news-list .bottle-item img, .page-news-single .bottle-item img, .page-novelty .bottle-item img, .page-privacy .bottle-item img, .page-products .bottle-item img { max-width: 100px; }
  .page-about .bottle-item-onigiri img, .page-contact-thanks .bottle-item-onigiri img, .page-contact .bottle-item-onigiri img, .page-news-list .bottle-item-onigiri img, .page-news-single .bottle-item-onigiri img, .page-novelty .bottle-item-onigiri img, .page-privacy .bottle-item-onigiri img, .page-products .bottle-item-onigiri img { max-width: 330px; }
}

@keyframes hFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1400px) {
  .page-about .hero-sub, .page-contact-thanks .hero-sub, .page-contact .hero-sub, .page-news-list .hero-sub, .page-news-single .hero-sub, .page-novelty .hero-sub, .page-privacy .hero-sub, .page-products .hero-sub { font-size: 22px; }
}

@media (max-width: 766px) {
  .page-about .hero-sub, .page-contact-thanks .hero-sub, .page-contact .hero-sub, .page-news-list .hero-sub, .page-news-single .hero-sub, .page-novelty .hero-sub, .page-privacy .hero-sub, .page-products .hero-sub { font-size: 3.7vw; text-align: center; letter-spacing: 0.1em; }
}

@media (min-width: 768px) and (hover: hover) {
  .page-about .lc-viewport, .page-contact-thanks .lc-viewport, .page-contact .lc-viewport, .page-news-list .lc-viewport, .page-news-single .lc-viewport, .page-privacy .lc-viewport { --lc-item-w: calc((min(var(--max), 100vw) - 96px - 20px * 3) / 4); padding-left: max(48px, (100vw - var(--max)) / 2 + 48px); padding-right: max(48px, (100vw - var(--max)) / 2 + 48px); gap: 20px; }
  .page-novelty .lc-viewport { --lc-item-w: calc((min(var(--max), 100vw) - 96px - 20px * 4) / 5); padding-left: max(48px, (100vw - var(--max)) / 2 + 48px); padding-right: max(48px, (100vw - var(--max)) / 2 + 48px); gap: 20px; }
  .page-about .lc-arrow, .page-contact-thanks .lc-arrow, .page-contact .lc-arrow, .page-news-list .lc-arrow, .page-news-single .lc-arrow, .page-novelty .lc-arrow, .page-privacy .lc-arrow { display: flex; }
  .page-about .vc-track, .page-contact-thanks .vc-track, .page-contact .vc-track, .page-news-list .vc-track, .page-news-single .vc-track, .page-privacy .vc-track, .page-products .vc-track { gap: 24px; padding: 20px 0; }
  .page-about .vc-slide, .page-contact-thanks .vc-slide, .page-contact .vc-slide, .page-news-list .vc-slide, .page-news-single .vc-slide, .page-privacy .vc-slide, .page-products .vc-slide { flex: 0 0 clamp(240px, 28vw, 340px); }
  .page-novelty .vc-slide { padding: 0 12px; }
  .page-about .vc-slide-img, .page-contact-thanks .vc-slide-img, .page-contact .vc-slide-img, .page-news-list .vc-slide-img, .page-news-single .vc-slide-img, .page-novelty .vc-slide-img, .page-privacy .vc-slide-img, .page-products .vc-slide-img { border-radius: 24px; }
  .page-about .lb-left .lb-visual img, .page-contact-thanks .lb-left .lb-visual img, .page-contact .lb-left .lb-visual img, .page-news-list .lb-left .lb-visual img, .page-news-single .lb-left .lb-visual img, .page-novelty .lb-left .lb-visual img, .page-privacy .lb-left .lb-visual img, .page-products .lb-left .lb-visual img { border-radius: 0 16px 16px 0; }
  .page-about .lb-right .lb-visual img, .page-contact-thanks .lb-right .lb-visual img, .page-contact .lb-right .lb-visual img, .page-news-list .lb-right .lb-visual img, .page-news-single .lb-right .lb-visual img, .page-novelty .lb-right .lb-visual img, .page-privacy .lb-right .lb-visual img, .page-products .lb-right .lb-visual img { border-radius: 16px 0 0 16px; }
  .page-about .lb-cta-tel, .page-contact-thanks .lb-cta-tel, .page-contact .lb-cta-tel, .page-news-list .lb-cta-tel, .page-news-single .lb-cta-tel, .page-novelty .lb-cta-tel, .page-privacy .lb-cta-tel, .page-products .lb-cta-tel { pointer-events: none; cursor: default; }
  .page-about .lb-cta-tel:hover, .page-contact-thanks .lb-cta-tel:hover, .page-contact .lb-cta-tel:hover, .page-news-list .lb-cta-tel:hover, .page-news-single .lb-cta-tel:hover, .page-novelty .lb-cta-tel:hover, .page-privacy .lb-cta-tel:hover, .page-products .lb-cta-tel:hover { color: var(--dark); }
  .page-products .popup-card { flex: 0 0 calc((100% - 32px) / 3); }
  .page-products .lc-track { --lc-item-w: calc((min(var(--max), 100vw) - 96px - 20px * 4) / 5); padding-left: max(48px, (100vw - var(--max)) / 2 + 48px); padding-right: max(48px, (100vw - var(--max)) / 2 + 48px); }
  .page-novelty .vc-viewport { padding: 32px 0; }
}

@media (min-width: 768px) and (max-width: 1600px) and (hover: hover) {
  .page-about .lead-section, .page-contact-thanks .lead-section, .page-contact .lead-section, .page-news-list .lead-section, .page-news-single .lead-section, .page-novelty .lead-section, .page-privacy .lead-section, .page-products .lead-section { padding-left: 0; padding-right: 0; overflow: hidden; }
  .page-about .lead-inner, .page-contact-thanks .lead-inner, .page-contact .lead-inner, .page-news-list .lead-inner, .page-news-single .lead-inner, .page-novelty .lead-inner, .page-privacy .lead-inner, .page-products .lead-inner { max-width: none; margin: 0; padding: 0; gap: 56px; }
  .page-about .lead-visual, .page-contact-thanks .lead-visual, .page-contact .lead-visual, .page-news-list .lead-visual, .page-news-single .lead-visual, .page-novelty .lead-visual, .page-privacy .lead-visual, .page-products .lead-visual { border-radius: 0 20px 20px 0; align-self: stretch; aspect-ratio: unset; }
  .page-about .lead-visual img, .page-contact-thanks .lead-visual img, .page-contact .lead-visual img, .page-news-list .lead-visual img, .page-news-single .lead-visual img, .page-novelty .lead-visual img, .page-privacy .lead-visual img, .page-products .lead-visual img { border-radius: 0 20px 20px 0; }
  .page-about .lead-text, .page-contact-thanks .lead-text, .page-contact .lead-text, .page-news-list .lead-text, .page-news-single .lead-text, .page-novelty .lead-text, .page-privacy .lead-text, .page-products .lead-text { padding: 0 48px 0 0; max-width: 640px; }
  .page-about .lead-block, .page-contact-thanks .lead-block, .page-contact .lead-block, .page-news-list .lead-block, .page-news-single .lead-block, .page-novelty .lead-block, .page-privacy .lead-block, .page-products .lead-block { grid-template-columns: 45vw 1fr; }
  .page-about .lb-right, .page-contact-thanks .lb-right, .page-contact .lb-right, .page-news-list .lb-right, .page-news-single .lb-right, .page-novelty .lb-right, .page-privacy .lb-right, .page-products .lb-right { grid-template-columns: 1fr 45vw; }
}

@media (min-width: 1601px) {
  .page-about .lead-block, .page-contact-thanks .lead-block, .page-contact .lead-block, .page-news-list .lead-block, .page-news-single .lead-block, .page-novelty .lead-block, .page-privacy .lead-block, .page-products .lead-block { max-width: var(--max); margin: 0 auto; }
  .page-novelty .lb-left .lb-visual img, .lb-right .lb-visual img { border-radius: 16px; }
}

@media (min-width: 768px) and (max-width: 1100px) and (hover: hover) {
  .page-about .lb-text, .page-contact-thanks .lb-text, .page-contact .lb-text, .page-news-list .lb-text, .page-news-single .lb-text, .page-novelty .lb-text, .page-privacy .lb-text, .page-products .lb-text { padding: 40px 40px; }
}

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 56px 48px;
  max-width: var(--max); margin: 0 auto;
}

@media (max-width: 767px) {
.about-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 20px; }

}

.scene-item.rev { grid-template-columns: 1fr 340px; }

@media (max-width: 767px) {
.scene-item, .scene-item.rev { grid-template-columns: 1fr; }

.scene-item.rev .scene-photo { order: -1; }

}