.lounge-slideshow {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    aspect-ratio: 3 / 1;
    overflow: hidden;
    margin-bottom: 1.6rem;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide-item.active {
    opacity: 1;
}

.hero {
    position: relative;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 0;
    max-width: 45rem;
    width: 100%;
    box-sizing: border-box;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(var(--color-bg-body-number), var(--color-bg-body-number)),
        var(--hero-bg-image);
    background-size: 100% 100%, 80% auto;
    background-position: center, center top;
    background-repeat: no-repeat;
    filter: blur(2px);
    z-index: -1;
}


.store-subtitle {
    letter-spacing: 0.4rem;
    color: var(--color-gold);
    padding-top: 6.4rem;
    margin-bottom: 0;
}

.store-title {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    font-family: var(--font-en), serif;
    margin: 0 auto 0;
    text-shadow: 0px 0.8rem 1.6rem rgba(0, 0, 0, 0.6);
}

.store-description {
    line-height: 1.8;
    letter-spacing: 0.2rem;
    margin-bottom: 2.4rem;
}

.store-details {
    border-top: 1px solid var(--color-gold-light);
    border-bottom: 1px solid var(--color-gold-light);
    width: 90%;
    max-width: 45rem;
    margin: 0 auto 2.4rem;
}

.detail-item {
    color: var(--color-text-light);
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin: 0.4rem auto;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #b8860b);
    color: #222;
    padding: 18px 50px;
    margin-bottom: 2.4rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(212, 175, 55, 0.4);
}

.screen-width-box {
    width: 100vw;
    max-width: 60rem;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    background: none;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.NEWS-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
}

.left-text {
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.right-link {
    text-decoration: none;
    color: var(--color-gold);
    font-weight: bold;
    display: flex;
    gap: 8px;
}

.right-link:hover span {
    transform: translateX(5px);
    transition: transform 0.2s;
}

.scroll-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 0 20px;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.news-box {
    width: 200px;
    height: auto;
    background-color: transparent;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    color: var(--color-text-light);
    text-align: left;
}

.news-img {
    width: 200px;
    height: 110px;
    background-color: transparent;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-title {
    font-size: 12px;
    width: 200px;
    margin: 8px 0 4px;
    min-height: 36px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    line-height: 1.5;
    word-break: break-all;
    white-space: normal;
}

.news-time {
    font-size: 11px;
    width: 200px;
    margin-bottom: 1px;
}

.new-badge {
    display: inline-block;
    background-color: #ff4757;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 4px;
    line-height: 1;
    vertical-align: middle;
    margin-right: 5px;
}

.glance {
    width: 100%;
    max-width: 60rem;
    padding: 2.4rem 2rem;
    margin: 0 auto;
    box-sizing: border-box;
}

.glance-list {
    border-top: 1px solid var(--color-gold-light);
    margin-bottom: 2rem;
}

.glance-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.4rem 1.6rem;
    border-bottom: 1px solid var(--color-gold-light);
    text-decoration: none;
    transition: background-color 0.3s;
}

.glance-row:hover,
.glance-row:active {
    background-color: var(--color-gold-light);
    opacity: 1;
}

.glance-icon {
    flex-shrink: 0;
    width: 2rem;
    height: 1.4rem;
    fill: var(--color-gold);
}

.glance-label {
    flex-shrink: 0;
    width: 6.4rem;
    font-size: 1.2rem;
    color: var(--color-gold);
}

.glance-value {
    flex: 1;
    font-size: 1.4rem;
    color: var(--color-text-light);
    font-weight: bold;
}

.glance-arrow {
    flex-shrink: 0;
    color: var(--color-gold);
    font-size: 1.1rem;
    opacity: 0.7;
}

.content-image {
    display: block;
    height: auto;
    max-width: 80%;
    max-height: 16rem;
    object-fit: contain;
    z-index: -1;
}

.align-left {
    margin-left: 0;
    margin-right: auto;
}

.align-right {
    margin-left: auto;
    margin-right: 0;
    transform: rotate(180deg);
}

.contents {
    width: 100%;
    max-width: 60rem;
    padding: 0 2rem;
    margin: 0 auto;
    box-sizing: border-box;
}

.title {
    margin: 0.4rem auto 1.6rem;
    color: var(--color-gold);
    font-family: var(--font-en), serif;
    font-size: 2.4rem;
    letter-spacing: 0.4rem;
    text-align: center;
    border-bottom: 1px solid var(--color-gold);
}

.title-top-margin {
    margin: 8rem auto 1.6rem;
    color: var(--color-gold);
    font-family: var(--font-en), serif;
    font-size: 2.4rem;
    letter-spacing: 0.4rem;
    text-align: center;
    border-bottom: 1px solid var(--color-gold);
}

.text {
    color: var(--color-text-light);
    margin: 0 2rem;
    line-height: 1.8;
    text-align: left;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-no-margin {
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.8;
    text-align: left;
}

.padding {
    padding: 0 2rem;
}

.no-wrap {
    white-space: nowrap;
}

.img-style {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
    margin-top: 2rem;
}

.amp {
    font-family: "Noto Serif JP", "Hiragino Mincho ProN", serif;
    font-style: normal;
}


.price-accordion {
    margin-top: 0.4rem;
}

.price-accordion-toggle {
    border-bottom: 1px solid #444;
    color: var(--color-gold);
    padding: 1.4rem 0 1.9rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.price-accordion-icon {
    width: 2rem;
    height: 2rem;
    fill: var(--color-gold);
    transition: transform 0.3s;
    transform-origin: center;
}

.price-accordion.active .price-accordion-icon {
    transform: rotate(45deg);
}

.option-row {
    padding: 0;
    border-bottom: 1px solid #444;
}

.option-row-last {
    border-bottom: none;
}

.option-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.option-main strong {
    font-size: 1.6rem;
}

.option-price {
    font-size: 1.6rem;
}

.option-row .desc {
    display: block;
    margin-top: 0.4rem;
}

.table {
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    border-collapse: collapse;
}

.menu-item th {
    padding: 1.6rem 0 0.4rem;
    vertical-align: top;
    border-bottom: 1px solid var(--color-gold);
}

.menu-bottom-item {
    border-bottom: 1px solid #444;
}

.desc {
    display: block;
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 0.4rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 2rem;
}

.menu-box {
    width: 100%;
    height: 20rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    box-sizing: border-box;
}

.menu-image {
    height: 20rem;
    aspect-ratio: 2 / 3;
    flex-shrink: 1;
    flex-basis: 12rem;
    min-width: 6rem;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu-content {
    height: 20rem;
    flex: 1 1 16rem;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.menu-box-reverse {
    flex-direction: row-reverse;
}

.menu-title {
    font-family: var(--font-en), serif;
    font-size: 1.8rem;
    padding: 0;
    margin: 0;
    white-space: nowrap;
}

.menu-title-jp {
    font-size: 1.2rem;
    padding: 0;
    margin: -1rem 0 0.4rem;
}

.menu-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.tag {
    font-size: 1rem;
    font-weight: bold;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background-color: var(--color-gold);
    color: var(--color-text-dark);
    white-space: nowrap;
}

.menu-text {
    color: #ccc;
    font-size: 1.4rem;
    line-height: 1.6;
    padding: 0 0 0.8rem;
    margin: 0;
}

.menu-price {
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
}

.btn-detail {
    display: block;
    width: fit-content;
    margin: 2rem auto;
    padding: 1.2rem 3.2rem;
    font-size: 1.6rem;
    background: none;
    background-color: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    text-decoration: none;
    transition: 0.3s;
    text-align: center;
}

.btn-detail:hover {
    background: var(--color-gold);
    color: #000;
}

.google-calendar-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 70%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.google-calendar-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .google-calendar-container {
        padding-top: 110%;
    }
}

.blog-table {
    width: 100%;
    max-width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 0;
    border: 1px solid #e5e7eb;
    border-radius: 0;
    background-color: #ffffff;
    box-sizing: border-box;
    margin-bottom: 2rem;
}

.blog-row {
    border-bottom: 1px solid #e5e7eb;
}

.blog-row:last-child {
    border-bottom: none;
}

.blog-cell {
    padding: 0;
    margin: 0;
    width: 100%;
}

.blog-card {
    display: flex;
    width: 100%;
    height: 7rem;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
    transition: background-color 0.2s ease;
}

.blog-card:hover {
    background-color: #f9fafb;
}

.card-image-wrapper {
    height: 7rem;
    aspect-ratio: 20 / 11;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
}

.card-content {
    flex: 1;
    padding: 0.75rem 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    box-sizing: border-box;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.new-blog-badge {
    display: inline-block;
    background-color: #ff4757;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: bold;
    padding: 0.1rem 0.5rem;
    border-radius: 0.3rem;
    line-height: 1;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.card-date {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0;
}

.card-title {
    font-size: 1rem;
    font-weight: bold;
    color: #111827;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    overflow: hidden;
}

.card-description {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0.2rem 0 0 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-clamp: 1;
    overflow: hidden;
}

.faq-category {
    background-color: var(--color-bg-main-nav);
    border: 1px solid var(--color-gold-light);
    border-radius: 0;
    margin-top: -1px;
}

.faq-category:first-of-type {
    margin-top: 0;
}

.faq-category-btn {
    color: var(--color-text-light);
    padding: 16px 20px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.faq-category-btn::after {
    content: "+";
    color: #ddd;
    font-size: 16px;
    font-weight: normal;
    transition: transform 0.3s;
}

.faq-category-btn:hover {
    background-color: var(--color-gold-light);
    color: var(--color-gold);
}

.faq-category.active .faq-category-btn {
    color: var(--color-gold);
    background-color: var(--color-gold-light);
}

.faq-category.active .faq-category-btn::after {
    transform: rotate(45deg);
}

.faq-category-content {
    background-color: var(--color-bg-body);
}

.faq-category.active .faq-category-content {
    border-top: 1px solid var(--color-gold-light);
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    background: none;
    border-radius: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    color: var(--color-text-light);
    padding: 14px 20px;
    font-size: 14px;
    transition: color 0.3s;
}

.faq-question::after {
    content: "+";
    color: #ddd;
    font-size: 14px;
    font-weight: normal;
    transition: transform 0.3s;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-item.active .faq-question {
    color: var(--color-gold);
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    background-color: var(--color-bg-body-number);
}

.faq-item.active .faq-answer {
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer p {
    padding: 12px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-light);
}

.faq-link {
    color: var(--color-gold);
    text-decoration: underline;
}

.faq-link:hover {
    opacity: 0.8;
}

/* ーーーーーーーーーーレビューーーーーーーーーーー */
.elfsight-app-1388d371-4fdc-47c1-8dc6-0be9c10606ed {
    max-width: 100%;
}

.eapps-widget-toolbar,
.eapps-widget-floating-toolbar {
    display: none !important;
}

/* ーーーーーーーーーー追加－－－－－－－－－－ */
.event-notice {
    border: 1px solid var(--color-gold-light);
    background: rgba(255, 255, 255, 0.02);
}

.event-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.event-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    border-bottom: 1px solid #333;
    list-style: none;
}

.event-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.event-date {
    font-size: 1.2rem;
    color: var(--color-gold);
}

.event-title-link {
    color: var(--color-text-light);
    text-decoration: underline;
    font-size: 1.4rem;
}

.event-title-text {
    color: var(--color-text-light);
    font-size: 1.4rem;
}

.event-coming-soon {
    color: #888;
    font-size: 1.4rem;
    margin: 0;
}

/* 共通のタップ領域（四角） */
.event-block {
    display: flex;
    align-items: center;
    padding: 0.8rem;
    /* ← ここが “1ブロックの余白” */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* リンク時はブロック全体がタップ可能 */
.event-block--link {
    text-decoration: none;
    color: inherit;
}

/* 左側（内容） */
.event-left {
    display: flex;
    flex-direction: column;
}

/* 右側（>） */
.event-right {
    margin-left: auto;
}

.event-arrow {
    font-size: 18px;
    color: #d4af37;
}

.event-date,
.event-title-text {
    display: block;
}


/* ーーーーーーーーーー追加－－－－－－－－－－ */
.today-hours {
    text-align: center;
    margin-top: 1.6rem;
    padding: 1rem;
    border-top: 1px solid var(--color-gold-light);
    border-bottom: 1px solid var(--color-gold-light);
}

.today-hours-label {
    display: block;
    font-size: 1.1rem;
    color: var(--color-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.4rem;
}

.today-hours-value {
    display: block;
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-weight: bold;
}