:root {
    --font-ja-gothic: "Century Gothic Pro", "Century Gothic", "Kozuka Gothic Pro", "小塚ゴシック Pro", "Yu Gothic", "Meiryo", sans-serif;
    
    --font-ja-mincho: "Kozuka Mincho Pro", "小塚明朝 Pro", "Yu Mincho", "Hiragino Mincho ProN", serif;
    
    --font-en: "Century Gothic Pro", "Century Gothic", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-ja-gothic);
    font-size: 12px;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    min-height: 100vh;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.sidebar {
    min-width: 300px;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    position: relative;
}

.sidebar-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    pointer-events: none; /* 讓點擊穿透到圖片 */
    font-family: var(--font-ja-mincho); /* 指定使用 Mincho (M) */
    font-size: 2em; /* 字體縮小 */
    font-weight: 100;
    writing-mode: vertical-rl; /* 改為垂直書寫 */
    letter-spacing: 0.05em;
    color: #fff; /* 改為白色 */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3); /* 改為深色陰影以利閱讀 */
}

/* 左邊圖片容器 - 垂直3分割 */
.image-stack {
    display: flex;
    flex-direction: column;
    gap: 0; /* 移除圖片間距 */
    flex-grow: 1; /* 填滿剩餘空間 */
    height: 100%;
    position: relative; /* 為了定位遮罩 */
}

.image-stack::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 灰色半透明遮罩 */
    pointer-events: none;
}

.image-item {
    flex: 1; /* 三張圖平均分配高度 */
    background-color: #ddd;
    background-position: center;
    background-size: cover;
    min-height: 200px; /* 確保有最小高度 */
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-family: var(--font-en);
}

.main-content {
    min-width: 300px;
    padding: 40px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 20px;
}

.top-bar-text {
    font-family: var(--font-ja-gothic);
    font-size: 0.8rem;
    line-height: 1.6;
    color: #333;
    padding-top: 15px;
    padding-left: 40px;
    font-weight: 800;
}

.top-bar-logos {
    display: flex;
    gap: 15px;
    margin-left: auto;
}

.logo-box {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.logo-box img {
    height: 100%;
    width: auto;
}

.main-content h1 {
    font-family: var(--font-en);
    margin-bottom: 20px;
}

.bottom-bar {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: #000;
    text-align: center;
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: 0.05em;
    font-size:3em;

    z-index: 1;
    pointer-events: none;
}

.bottom-bar span {
    color: #b30000;
}

.footer {
    color: #000;
   
    text-align: center;
    padding: 20px 0;
    font-size: 0.7rem;
    font-family: var(--font-en);
  
}

.inner-container {
    max-width: 980px;
    margin: 0 auto;
}

.badge {
    text-align: center;
    color: #b30000;
    font-family: var(--font-ja-gothic);
    font-weight: 700;
    font-size: 2em;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}

.subtitle {
    text-align: center;
    font-size: 18px;
    margin-bottom: 8px;
}

.title {
    text-align: center;
    font-size: 64px;
    letter-spacing: 2px;
    margin: 10px 0 20px;
    font-family: var(--font-en);
}

.title span {
    color: #b30000;
}

.period {
    text-align: center;
    background: #2b1a1a;
    color: #fff;
    display: inline-block;
    padding: 10px 24px;
    margin: 0 auto 30px;
    font-size: 14px;
}

.center {
    text-align: center;
}

.br-sp {
    display: none;
}

.banner-wrap {
    text-align: center;
    margin-bottom: 30px;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.banner-wrap img {
    max-width: 100%;
    height: auto;
}

.lead {
    font-family: var(--font-ja-mincho);
    font-weight: 500;
    font-size: 20px;
    line-height: 1.8;
    letter-spacing: 0;
    text-align: center;
    margin-bottom: 30px;
}

.lead span {
    text-decoration: underline;
}

.box {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 30px 40px;
    margin-bottom: 40px;
    font-family: var(--font-ja-gothic);
    font-weight: 600;
      font-size: 1.2em;
    line-height: 30px;
    letter-spacing: 0;
    text-align: center;
}

.creation-text {
    font-family: var(--font-ja-gothic);
    font-weight: 500;
    line-height: 30px;
    letter-spacing: 0;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #A00E15;
    line-height: 1.6;
}

.flex {
    display: flex;
    gap: 40px;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.text {
    flex: 1;
}

.text h3 {
    font-family: var(--font-ja-mincho);
    font-weight: 700;
    font-size: 1.7em; 
    line-height: 1.5;  
    letter-spacing: 0;
}

.text p {
    font-family: var(--font-ja-gothic);
    font-weight: 500;
    font-size: 1.2em;
    line-height: 2;
    letter-spacing: 0.02em;
    margin-top: 24px;
    color: #3E3A39;
}

.image {
    flex: 1;
    position: relative;
}

.image img {
    width: 75%;
    display: block;
    margin: 0 auto;
}

.label {
    position: absolute;
    bottom: 10%;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #b30000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.label.a { left: 25%; }
.label.b { right: 20%; }

.note {
    background: #F2EFEF;
    border-radius: 20px;
    padding: 30px 40px;
    font-size: 1.2em;
    line-height: 1.8;
    margin-top: 40px;
    color: #000000;
}

@media (min-width: 769px) {
    .container {
        display: block;
        position: relative;
    }
    
    .sidebar {
        position: fixed;
        top: 0;
        left: 0;
        width: 33.3333%;
        height: 100vh;
        z-index: 10;
    }

    .top-bar, .main-content {
        margin-left: 33.3333%;
        width: 66.6667%;
    }

    .footer {
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
    }
    
    .top-bar {
        order: 1;
        background-color: #fff;
        position: relative;
        z-index: 30;
        margin-bottom: 0;
        border-bottom: none;
        justify-content: flex-end;
    }
    
    .sidebar {
        order: 2;
    }
    
    .main-content {
        order: 3;
    }
    
    .footer {
        order: 4;
    }

    .sidebar, .main-content {
        width: 100%;
    }

    .sidebar {
        padding: 0;
        min-height: 50vh;
    }
    



.image img {
    width: 65%;

}

    
    .image-item {
        min-height: 250px;
    }
    
    .top-bar-text {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 15px;
        color: #fff;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
        pointer-events: none;
        background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
        text-align: center;
        font-weight: 400;
    }

    .flex {
        flex-direction: column-reverse;
        width: 100%;
    }
    .title {
        font-size: 44px;
    }

    .banner-wrap {
        width: 100%;
    }

    .badge {
        font-size: 1.5em;
        margin-bottom: 30px;
    }

    .lead {
        font-size: 1.5em;
    }

    .br-sp {
        display: block;
    }

    .box {
        font-size: 1.1em;
        text-align: left;
        line-height: 1.7;
        font-weight: 500;
    }
}

.tasting-section {
    padding: 80px 0px;
    background: #fff;
}

.wrap {
    max-width: 1100px;
    margin: 0 auto;
}

.sec-title {
    font-size: 2.6em;
    letter-spacing: .05em;
    text-align: left;
    font-weight: 400;
    font-family: var(--font-en);
}

.sec-sub {
    font-size: 1em;
    margin-top: 6px;
    margin-bottom: 50px;
    text-align: left;
}

.sec-category {
    text-align: center;
    font-family: var(--font-ja-mincho);
    font-weight: 500;
    font-size: 1.6667em;
    line-height: 1.8;
    letter-spacing: 0.02em;
    margin-bottom: 60px;
}

.menu-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 100px;
}

.menu-block {
    text-align: center;
    width: calc(50% - 50px);
}

.menu-img {
    width: 320px;
    height: 320px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-info {
    display: inline-block;
    text-align: left;
    margin-bottom: 20px;
}

.menu-name {
    font-family: var(--font-ja-mincho);
    font-weight: 500;
    font-size: 1.7em;
    line-height: 1.8;
    letter-spacing: 0.02em;
    text-align: center;
}

.menu-desc {
    font-family: var(--font-ja-gothic);
    font-weight: 400;
    font-size: 1em;
    line-height: 3;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.menu-price {
    font-size: 13px;
    color: #b30000;
    margin-bottom: 20px;
}

.shop-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.shop {
    background: #A00E15;
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    margin-bottom: 10px;
    font-size: 13px;
    display: inline-block;
    width: 360px;
    border: 1px solid #4E0508;
    text-align: center;
    transition: all 0.3s ease;
}

.shop::before {
    content: "\f3c5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 6px;
}

.shop:hover {
    background: #BDBCBC;
    border: 1px solid #9D9D9D;
    cursor: pointer;
}

@media (max-width: 768px) {
    .menu-wrap {
        gap: 60px;
    }

    .menu-block {
        width: 100%;
    }

    .menu-img {
        width: 260px;
        height: 260px;
    }

    .sec-title {
        font-size: 2.2em;
    }
}

.washoku-section {
    padding: 0px 20px 100px 20px;
}

.washoku-wrap {
    display: flex;
    align-items: center;
    gap: 80px;
}

.washoku-left {
    text-align: center;
    flex: 1.2;
}

.washoku-img {
    width: 360px;
    height: 360px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
}

.washoku-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-detail {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    font-size: 13px;
    line-height: 1.9;
}

.washoku-right {
    display: flex;
    justify-content: center;
    flex: 0.8;
}

.voice {
    text-align: center;
    margin-top: 120px;
}

.voice-title {
    font-size: 3em;
    letter-spacing: .05em;
    margin-bottom: 24px;
    font-family: var(--font-en);
    line-height: 1.2;
}

.voice-title span {
    color: #b30000;
}

.voice-text {
    font-family: var(--font-ja-mincho);
font-weight: 400;
font-size: 1.5em;
line-height: 2;
text-align: center;

    line-height: 2;
}

@media (max-width: 768px) {
    .washoku-wrap {
        flex-direction: column;
        gap: 50px;
  
    }

    .washoku-left {
        text-align: center;
    }

    .washoku-img {
        width: 280px;
        height: 280px;
        margin: 0 auto 24px;
    }

    .washoku-right {
        justify-content: center;
        margin-top: -50px;
    }

  

    .voice-text {
        font-size: 1.4em;
    }
}

.credit-band {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 36px 20px;
}

.credit-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.credit-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo-main {
    height: 130px;
}

.logo-sub {
    height: 160px;
}

.credit-right {
    text-align: left;
}

.credit-line {
    font-size: 14px;
    margin: 0 0 10px;
}

.credit-line:last-child {
    margin-bottom: 0;
}

.credit-sep {
    border-top: 1px solid #ccc;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .credit-inner {
        flex-direction: column;
        gap: 24px;
    }

    .credit-right {
        text-align: center;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}