@import url('https://fonts.googleapis.com/css2?family=Poltawski+Nowy&display=swap');
:root {
    /* ==========================================
       CONTAINER SETTINGS
       ========================================== */
    
    --container-padding-x: clamp(60px, 4vw, 80px);
    --container-width-mobile: 90%;
  
 /* ==========================================
       COLOR PALETTE
       ========================================== */
    
    /* Primary Colors */
    --color-primary: #144E2A;
    --color-secondary: #053602;
    --color-text: #A4C2A4;
    
    /* Background Colors */
    --color-background: #EAF0EA;
        
    /* Border Colors with Opacity */
    --color-primary-border: rgba(20, 78, 42, 0.5);
    --color-misty-border: rgba(164, 194, 164, 0.5);
    --color-green-border: rgba(234, 240, 234, 0.5);
    
    /* ==========================================
       BORDER RADIUS
       ========================================== */
    
    --radius-sm: clamp(2px, 0.214rem, 3px);
    --radius-md: clamp(3px, 0.357rem, 5px);
  
    /* ==========================================
       TYPOGRAPHY - FONTS
       ========================================== */
    
    --font-latin: 'Poltawski Nowy', serif;
    --font-japanese-gothic: 'MFW-HiraKakuProN-W3',sans-serif;
    --font-japanese-gothic-b: "MFW-HiraKakuProN-W6",sans-serif;
    
/* ==========================================
       TYPOGRAPHY - UNIFIED FONT SIZES
       欧文・和文統一サイズ
       ========================================== */
    
       --font-size-xl: clamp(60px, 5.61rem, 90px);      /* 大見出し */
       --font-size-l: clamp(30px, 3.157rem, 40px);       /* 中見出し */
       --font-size-lm: clamp(28px, 1.777rem, 28px);       /* 中小見出し */
       --font-size-m: clamp(21px, 1.333rem, 21px);        /* 小見出し */
       --font-size-ms: clamp(16px, 1rem, 16px);       /* 極小見出し */
       --font-size-base: clamp(14px, 0.875rem, 14px);    /* 本文 */
       --font-size-s: clamp(12px, 0.75rem, 12px);     /* 極小テキスト */
       --font-size-xs: clamp(10px, 0.625rem, 10px);  /* または適切なサイズ */
   }

/* PC（769px以上）では電話番号リンクを無効化 */
@media (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        color: inherit;
        text-decoration: none;
    }
}

/* ==========================================
   BASE STYLES
   ========================================== */
html {
    scrollbar-gutter: stable;
  
}

body {
    font-family: var(--font-japanese-gothic);
    font-size: var(--font-size-base);
    line-height: 1.75;
    letter-spacing: 0.01em;
    color: var(--color-text);
    background-color: var(--color-primary);
}

a {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}

.wp-block-image.size-full img {
    width: 100%;
    max-width: inherit;
    border-radius: var(--radius-sm);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

dt {
    margin: 0;
    padding: 0;
    font-weight: normal;
}


/* スクロールアニメーション用クラス */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .scroll-fade.is-visible {
    opacity: 1;
    transform: translateY(0);
  }



/* ==========================================
   CONTAINER UTILITY CLASSES
   ========================================== */

.container {
    width: 100%;
    padding-left: var(--container-padding-x);
    padding-right: var(--container-padding-x);
}

@media (max-width: 900px) {
    .container {
        width: var(--container-width-mobile);
        padding-left: 0;
        padding-right: 0;
        margin: 0 auto;
    }
}

/* ==========================================
   LAYOUT
   ========================================== */

.wrapper {
    display: flex;
    justify-content: space-between;
}

.post-header {
    width: 32%;
    position: sticky;
    top: 280px;
    padding-bottom: 280px;
    align-self: flex-start;
    max-height: 100vh;
    color: var(--color-text);
}

.post-content {
    width: 57%;
}

@media (max-width: 900px) {
    .wrapper {
        display: block;
    }
    .post-header {
        width: 100%;
        top: 0;
        padding: 0;
        max-height: inherit;
        position: static;
        margin-bottom: 30px;
    }

    .post-content {
        width: 100%;
    }
}

/* ==========================================
   POST META & CATEGORIES
   ========================================== */

.post-meta {
    display: flex;
    align-items: center;
    gap: 1em;
    font-size: var(--font-size-s);
    margin: 15px 0 10px 0;
}

.topics-list .post-meta {
    margin:16px 0 10px 0;
    gap:5px 0;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.post-category {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1em;
    margin-right: 1em;;
}

.cat-item {
    font-family: var(--font-latin);
    text-transform: lowercase;
    font-size: var(--font-size-base);
}

.cat-item::before{
    content:'';
    width:0.4em;
    height: 0.4em;
    background:var(--color-text);
    border-radius: 50em;
    display: inline-block;
    margin-right: 0.2em;
}

@media (max-width: 900px) {
    .post-meta {
        margin: 25px 0 10px 0;
    }
}

@media (min-width: 769px) {

    .topic-item .post-thumbnail{
    mask-image: radial-gradient(#fff 100%, #fff 100%);
    border-radius: var(--radius-sm);
    }

    .topic-item .post-thumbnail a img {
    transition: filter 0.4s ease, transform 0.4s ease;
    }
    
    .topic-item .post-thumbnail a:hover img {
    transform: scale(1.02);
    }
}

.topic-sticky figure:before {
    content: 'PICK UP';
    position: absolute;
    right: -60px;
    top: -27px;
    background: var(--color-primary);
    z-index: 1;
    transform: rotate(30deg);
    width: 180px;
    padding-top: 30px;
    text-align: center;
    font-size: var(--font-size-xs);
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in all;
}
.topic-sticky figure:after {
    content: '';
    position: absolute;
    left: -15px;
    bottom: -20px;
    background: var(--color-primary);
    z-index: 1;
    transform: rotate(30deg);
    width: 85px;
    height: 40px;
    transition: .3s ease-in all;
}
@media screen and (min-width:640.2px) {
.topic-sticky figure:hover:before {
    right: -100px;
    top: -65px;
    opacity: 0;
}
.topic-sticky figure:hover:after {        
    left: -30px;
    bottom: -50px;
    opacity: 0;
}
}

/* ==========================================
   BORDER RADIUS UTILITY CLASSES
   ========================================== */

.rounded-sm {
    border-radius: var(--radius-sm);
}

.rounded-md {
    border-radius: var(--radius-md);
}

/* ==========================================
   TYPOGRAPHY UTILITY CLASSES
   統一命名規則: .text-{size}-{font-type}
   ========================================== */

/* XLサイズ (大見出し) */
.text-xl-latin {
    font-family: var(--font-latin);
    font-size: var(--font-size-xl);

}

/* Lサイズ (中見出し) */
.text-l-latin {
    font-family: var(--font-latin);
    font-size: var(--font-size-l);

}

/* LMサイズ (中小見出し) */
.text-lm-latin {
    font-family: var(--font-latin);
    font-size: var(--font-size-lm);
}

/* Mサイズ (中小見出し) */
.text-lm-gothic {
    font-family: var(--font-japanese-gothic-b);
    font-size: var(--font-size-m);
}

/* BASEサイズ (本文) */
.text-base-gothic {
    font-family: var(--font-japanese-gothic);
    font-size: var(--font-size-base);
}

/* Sサイズ (小テキスト) */
.text-s-gothic {
    font-family: var(--font-japanese-gothic);
    font-size: var(--font-size-s);
}

.text-s-latin {
    font-family: var(--font-latin);
    font-size: var(--font-size-s);

}

/* XSサイズ (極小テキスト) */
.text-xs-gothic {
    font-family: var(--font-japanese-gothic);
    font-size: var(--font-size-s);
}

.text-xs-latin {
    font-family: var(--font-latin);
    font-size: var(--font-size-s);

}

/* 2XSサイズ (最小テキスト) */
.text-2xs-gothic {
    font-family: var(--font-japanese-gothic);
    font-size: var(--font-size-s);
}

.text-2xs-latin {
    font-family: var(--font-latin);
    font-size: var(--font-size-s);

}

/* 3XSサイズ (固定最小) */
.text-3xs-gothic {
    font-family: var(--font-japanese-gothic);
    font-size: var(--font-size-3xs);
}

.text-3xs-latin {
    font-family: var(--font-latin);
    font-size: var(--font-size-3xs);

}

/* ==========================================
   TOP BANNER
   ========================================== */

.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background-color:var(--color-secondary);
    color:  var(--color-text);
    padding: 5px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

@media (max-width: 900px) {
    .top-banner {
        padding: 10px 20px 10px 20px;
        align-items: flex-end;
        height: 78px;
    }
}

.top-banner.hidden {
    transform: translateY(-100%);
}

.top-banner-content {
    display: flex;
    align-items: center;
    gap: 1em;
    font-size: var(--font-size-s);
    line-height: 1.4;
}

@media (max-width: 900px) {
    .top-banner-content {
        justify-content: space-between;
    }
}

.top-banner-content span {
    display: block;
    width: fit-content;
    flex-shrink: 0;
}

.top-banner-content a {
    text-decoration: underline;
}

@media (min-width: 769px) {
.top-banner-content a:hover {
    text-decoration: none;
}
}

.top-banner-close {
    background: none;
    border: none;
    font-size: var(--font-size-m);
    position: relative;
    top: -1px;
    left: 1em;
    width: 1.1em;
    cursor: pointer;
}

@media (max-width: 900px) {
    .top-banner-close {
        left: 0;
    }
}

/* ==========================================
   HEADER
   ========================================== */

header#mainHeader {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header#mainHeader.with-banner {
    top: 34px;
}


@media (max-width: 900px) {
    header#mainHeader.with-banner {
        top: 78px;
    }
}
@media (max-width: 768px) {
    .logo{
    display: none;
    }
}

@media (min-width: 769px) {
    .pc-none {
      display: none;
    }
  }

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 60px;
    gap: 40px;
}

@media (max-width: 900px) {
    nav {
        padding: 8px 20px;
    }
}


/* ==========================================
   NAVIGATION LINKS
   ========================================== */

.nav-link {
    font-family: var(--font-latin);
    font-size: var(--font-size-ms);
    text-decoration: none;
    transition: opacity 0.3s;
    color: var(--color-background);
}

@media (min-width: 769px) {
.nav-link:hover {
    opacity: 0.7;
}
}


/* ==========================================
   RESERVE BUTTON
   ========================================== */

/* 共通スタイル */
.btn-reserve {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0px 60px 0 24px;
    height: 48px;
    border: 1px solid var(--color-green-border);
    border-radius: 100px;
    color: var(--color-background);
    font-size: var(--font-size-s);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s ease;
    gap: 8px;
}

#mainHeader .btn-reserve {
    width:172px;
    font-family: var(--font-latin);
    text-transform: uppercase;
}

/* すりガラスバージョン */
.btn-reserve--glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border:none;
    padding: 0px 60px 0 40px;
    height: 80px;
    width:290px;
}

.btn-reserve--glass span{
    font-size: var(--font-size-base);
    font-family: var(--font-latin);
    text-transform: uppercase;
}

/* 円形の矢印エリア */
.btn-reserve::before {
    content: '';
    position: absolute;
    right: 0;
    width: 48px;
    height: 48px;
    background: transparent;
    border: 1px solid var(--color-green-border);
    border-radius: 50%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                background 0.6s ease;
}

.btn-reserve.btn-reserve--glass::before {
    width:80px;
    height: 80px;
}

/* 矢印 */
.btn-reserve::after {
    content: '';
    position: absolute;
     right: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    background-color: var(--color-green-border);
  width: 8px;
  height: 8px;
  clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);

}

.btn-reserve.btn-reserve--glass::after{
    right:35px;
}

@media (min-width: 769px) {

#mainHeader .btn-reserve:hover{
    width:178px;
}

.btn-reserve.btn-reserve--glass:hover {
    width:298px;
}

.btn-reserve:hover::before {
    background: var(--color-text);
}

.btn-reserve:hover::after{
    color: var(--color-secondary);
}
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    #mainHeader .btn-reserve{
        position: absolute;
        top:10px;
        right:5%;
    }

    .reservation-buttons li:last-of-type a{
        position: relative;
        display: inline-flex;
        align-items: center;
        flex-direction: column;
        border-radius: 100px;
        color: var(--color-background);
        font-size: var(--font-size-s);
        text-decoration: none;
        cursor: pointer;
        transition: all 0.4s ease;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border:none;
        padding: 0px 60px 0 0;
        height: 80px;
        width:290px;
    }

    /* 円形の矢印エリア */
    .reservation-buttons li:last-of-type a::before {
    content: '';
    position: absolute;
    right: 0;
    width: 80px;
    height: 80px;
    background: transparent;
    border: 1px solid var(--color-text);
    border-radius: 50%;
}

/* 矢印 */
.reservation-buttons li:last-of-type a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    z-index: 1;
    background-color: var(--color-green-border);
    width: 8px;
    height: 8px;
    clip-path: polygon(40% 0, 90% 50%, 40% 100%, 30% 90%, 70% 50%, 30% 10%);
}
}

/* ==========================================
   NAVIGATION MENU
   ========================================== */

   .nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-left: auto;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
}

/* ==========================================
   HAMBURGER MENU
   ========================================== */

.hamburger {
    display: block;
    background: none;
    border: none;
    padding: 8px;
    position: absolute;
    top: 20px;
    left:5%;
    width: 30px;
    height: 24px;
    cursor: pointer;
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-background);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger-line:nth-child(1) {
    top: 4px;
}

.hamburger-line:nth-child(2) {
    top: 11px;
}

.hamburger-line:nth-child(3) {
    top: 18px;
}

.active .hamburger-line:nth-child(1) {
    top: 11px;
    transform: rotate(26deg);
}

.active .hamburger-line:nth-child(2){
    top: 11px;
    transform: rotate(-26deg);
}

.active .hamburger-line:nth-child(3) {
    opacity: 0;
}

/* ==========================================
   MOBILE MENU
   ========================================== */

/* .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;    
    background-color: rgba(14, 30, 13, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
} */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(14, 30, 13, 0.6);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
} */
.mobile-menu-overlay.active {
    visibility: visible;
    pointer-events: auto;
    z-index: 9999;
}


/* .mobile-menu-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width:220px;
    background-color: var(--color-secondary);
    padding: 150px 25px 40px;
    transform: translateX(-100%);
    opacity: 0;
    transition: all 0.2s ease;
} */
.mobile-menu-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 220px;
    background-color: var(--color-secondary);
    padding: 150px 25px 40px;
    transform: none;
    opacity: 1;
}

/* 
.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
    opacity: 1;
} */

.mobile-menu-close {
    position: absolute;
    top: 95px;
    left: 30px;
    background: none;
    border: none;
    color: var(--color-background);
    font-size: 30px;
    width: 35px;
    height: 35px;
    z-index: 999;
    cursor: pointer;
}

.no-banner .mobile-menu-close{
    top: 25px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
    margin-top: 30px;
}

.mobile-nav-links li { /*****/
  overflow: hidden;
}

.mobile-nav-links a {
    color: var(--color-text);
    font-family: var(--font-latin);
    font-size: var(--font-size-m);
    text-decoration: none;
    display: inline-block;  /*****/
    will-change: transform;  /*****/
}

.mobile-sns-title {
    color: rgba(230, 228, 216, 0.5);
    margin-bottom: 10px;
    font-family: var(--font-latin);
}

.mobile-sns-links {
    display: flex;
    gap: 15px;
}

.mobile-sns-links svg {
    width: 24px;
    height: 24px;
}

.btn-reserve.btn-mini{
    font-family: var(--font-latin);
    font-size: var(--font-size-ms);
    height: 38px;
    background:var(--color-text);
    color:var(--color-secondary);
    padding: 0px 50px 0 24px;
}

.mobile-menu-content .btn-reserve{
    font-family: var(--font-latin);
    text-transform: uppercase;
    height: 38px;
    background:var(--color-text);
    color:var(--color-secondary);
}

.btn-reserve.btn-mini::before,
.mobile-menu-content .btn-reserve::before {
    content: '';
    position: absolute;
    right: -1px;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid var(--color-secondary);
    border-radius: 50%;
 }

 .btn-reserve.btn-mini::after,
 .mobile-menu-content .btn-reserve::after{
    background-color: var(--color-secondary);
    right:14px;
}

@media (min-width: 769px) {
    .btn-reserve.btn-mini:hover{
        background:transparent;
        color:var(--color-text);
        padding: 0px 50px 0 34px;
    }

    .btn-reserve.btn-mini:hover::before{
        border-color:var(--color-text);
    }

    .btn-reserve.btn-mini:hover::after{
    background-color: var(--color-text);
}

.btn-reserve:hover::after{
   background-color: var(--color-secondary);
}

}

/* ==========================================
   MAIN
   ========================================== */

main{
    margin-top: 80px;
}

main.with-banner {
    margin-top: 120px;
}

.page-id-2 main,
.page-id-2 main.with-banner {
    margin-top: -80px;
}
.single main {
    margin-top: 0;
}

.single main.with-banner {
    margin-top: 38px;
}


@media (max-width: 900px) {

    main,
    .single main {
        margin-top: 100px;
    }

    main.with-banner,
    .single main.with-banner {
        margin-top: 180px;
    }

}
/* ==========================================
   POST LIST
   ========================================== */

.topics-list-area{
    margin-bottom: 120px;
}

.topics-list{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:80px 24px;
}

@media (max-width: 900px) {
    .topics-list{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .topics-list{
        grid-template-columns: 1fr 1fr;
        gap:40px 16px;
    }
}

.topics-header{
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pagination{
    margin-top:70px;
}

.page-numbers{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:1em;
}

/* ==========================================
   POST CONTENT
   ========================================== */

.post-content {
    padding-bottom: 120px;
}

@media (max-width: 900px) {
    .post-content {
        padding-bottom: 30px;
    }
}
.modal-body h2,
.modal-body p,
.modal-body figure,
.modal-body ul,
.modal-body ol,
.post-content p,
.post-content figure,
.post-content ul,
.post-content ol {
    margin-bottom: 2em;
}

.modal-body ul li,
.post-content ul li {
    list-style-type: disc;
    margin-left: 1.2em;
}

.modal-body ol li,
.post-content ol li {
    list-style: decimal;
    margin-left: 1.2em;
}

.modal-body p a,
.post-content p a {
    color: var(--color-text);
    text-decoration: underline;
}
@media (min-width: 769px) {
  .modal-body p a:hover,
.post-content p a:hover {
    text-decoration: none;
}
}

.post-content h2{
    font-size: var(--font-size-lm);
}

.post-content h3{
    font-size: var(--font-size-lm);
}


.post-content p.back {
    text-align: center;
}

.post-content img {
    border-radius: var(--radius-sm);
}

.post-thumbnail img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

hr {
    border:none;
    border-bottom: 1px solid var(--color-misty-border);
    margin: 80px 0 30px 0;
}

/* ==========================================
   RESERVATION SECTION
   ========================================== */

.reservation-section {
    position: relative;
    padding: 120px 0;
    background-image: url('img/reserve.webp');
    background-size: cover;
    background-position: center;
}

@media (max-width: 900px) {
    .reservation-section {
        background-image: url('img/reserve-m.jpg');
    }
}

.reservation-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.reservation-content .text-lm-latin {
    margin-bottom: 12px;
}

.reservation-text {
    margin-bottom: 30px;
}

.reservation-buttons {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
}

@media (max-width: 900px) {
    .reservation-buttons {
        max-width: inherit;
    }
}

.reservation-buttons li:first-of-type {
    margin-bottom: 30px;
}

.reservation-tel {
    font-family: var(--font-latin);
    font-size: var(--font-size-m);
    display: block;
}

.reservation-hours {
    font-size: var(--font-size-s);
    display: block;
}

@media (max-width: 900px) {
    .reservation-buttons li:first-of-type {
        margin-bottom: 15px;
    }
    .reservation-tel {
        font-size: var(--font-size-ms);
        padding-top: 14px;
    }
}

/* ==========================================
   FOOTER
   ========================================== */

#footer {
    background-color: var(--color-secondary);
    padding-top: 40px;
    padding-bottom: 60px;
}

#footer .container {
    display: flex;
    justify-content: space-between;
}

.footer-logo-section {
    order: 1;
}

.footer-nav-section {
    order: 2;
}

.footer-related-section {
    order: 3;
    width: 305px;
}

/* Mobile Layout */
@media (max-width: 900px) {
    #footer .container {
        flex-direction: column;
    }
    .footer-nav-section {
        order: 1;
    }

    .footer-related-section {
        order: 2;
        /* margin: 0 auto 64px auto; */
        width: 100%;
    }

    .footer-logo-section {
        order: 3;
    }

    #footer {
        padding:80px 0 100px 0;
    }
}

/* Footer Logo Section */
.footer-logo-section {
    text-align: center;
}

.footer-logo {
    margin-bottom: 12px;
}

.footer-copyright {
    font-size: var(--font-size-s);
    color: var(--color-misty-border);
}

/* Footer Navigation Section */
.footer-nav-section {
    display: flex;
    gap: 6.5em;
}

@media (max-width: 900px) {
    .footer-nav-section {
        flex-direction: column;
        gap: 20px;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-nav-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1em;
    }
}

.footer-nav-links li {
    margin-bottom: 10px;
}

.footer-nav-links li a {
    color: var(--color-text);
    font-family: var(--font-latin);
    transition: opacity 0.3s;
    text-decoration: none;
}

@media (min-width: 769px) {
.footer-nav-links a:hover {
    opacity: 0.7;
}
}
/* Footer SNS Section */

@media (max-width: 900px) {
    .footer-sns-section {
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 34px;
        gap: 1em;
    }
}

.footer-sns-title {
    margin-bottom: 14px;
    color: var(--color-misty-border);
    font-weight: 400;
    font-family: var(--font-latin);
}

.footer-sns-section dd {
    margin-bottom: 15px;
}

.footer-sns-section dd a {
    display: flex;
    align-items: center;
    gap: 1em;
    color: var(--color-text);
    transition: opacity 0.3s;
    font-size: var(--font-size-s);
    text-decoration: underline;
}

@media (min-width: 769px) {
.footer-sns-section dd a:hover {
    opacity: 0.7;
    text-decoration: none;
}
}

.footer-sns-section dd svg {
    width: 20px;
    height: 20px;
}

/* Footer Related Section */

.footer-related-title {
    font-family: var(--font-latin);
    margin-bottom: 10px;
}

.footer-related-image {
    margin-bottom: 10px;
}

.footer-related-image img {
    border-radius: var(--radius-md);
    transition: 0.5s;
}

@media (min-width: 769px) {
.footer-related-image a img:hover {
    transform: translateY(5px);
}
}

@media (max-width: 900px) {
    .footer-related-image img {
        width: 100%;
    }
}

.footer-related-text {
    font-size: var(--font-size-s);
}


/* ==========================================
   TOPICS SECTION
   ========================================== */

   .topics-section{
    padding: 120px 0;
}

.topics-section .container{
    display: grid;
    grid-template-columns: 1fr 3fr;
}

.topics-grid-wrapper {
    position: relative;
}

.topics-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 80px 24px;
}

.topics-title{
    font-family: var(--font-latin);
    font-size: var(--font-size-l);

    color: var(--color-primary);
}

.topics-subtitle{
    margin-bottom: 40px;
}

/* ナビゲーションボタン（デフォルトは非表示） */
.topics-nav {
    display: none;
}

@media (max-width: 900px) {
    .topics-section .container{
        grid-template-columns: 1fr;
    }
    
    .topics-subtitle{
        margin-bottom:0;
    }
    
    .topics-subtitle br{
        display: none;
    }
    
    /* グリッドをフレックスに変更してスクロール可能にする */
    .topics-grid-wrapper {
        position: relative;
        overflow: hidden;
        margin: 0 -20px; /* コンテナの余白を相殺 */
        padding: 0 20px;
    }
    
    .topics-grid {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px; /* スクロールバー分の余白 */
    }
    
    .topics-grid::-webkit-scrollbar {
        display: none;
    }
    
    .topic-card {
        flex: 0 0 calc(50% - 8px); /* 2列表示 */
        scroll-snap-align: start;
    }
    
    /* ナビゲーションボタン */
    .topics-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top:0;
        width: 36px;
        height:36px;
        background-color: var(--color-background2);
        color:var(--color-background); 
        border: none;
        border-radius: 50%;
        line-height: 1;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        user-select: none;
        margin-top: calc((100vw * 0.7 - 8px) * 0.75 / 2 - 16px);
    }
    
    .topics-nav:hover {
        background-color: var(--color-primary);
    }
    
    .topics-nav:active {
        background-color:var(--color-primary);
        transform: translateY(-20%) scale(0.95);
    }
    
    .topics-nav:disabled,
    .topics-nav.disabled {
        opacity: 0.5;
        pointer-events: none;
    }
    
    .topics-nav-prev {
        left: 5px;
    }
    
    .topics-nav-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .topics-grid{
        gap: 16px;
    }
    
    .topic-card {
        flex: 0 0 calc(50% - 8px);
    }
}

@media (min-width: 901px) {
    #topics .btn-reserve.sp-block{
        display: none!important;
    }
}

/* ===== SVG Definitions ===== */
.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ===== Wave Divider Styles ===== */
.wave-divider {
    position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.wave-divider.is-animated path {
  transition: none;
}

.wave-divider[data-position="top"] {
    margin-top: -58px;
}

.wave-divider[data-position="bottom"] {
    margin-top: -58px;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100px;
}

/* 各セクションごとの波の色設定 */
.top-topics-section + .wave-divider svg {
    color: var(--color-secondary);
}

#about + .wave-divider svg,
.access-info-section + .wave-divider svg,
.menu-section + .wave-divider svg {
    color: var(--color-primary);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .wave-divider {
        height: 60px;
    }
    
    .wave-divider svg {
        height: 60px;
    }
}

/* SVGパスのトランジション */
.wave-divider path {
    transition: d 0.3s ease-out;
}

/* ===== Wave Clip Styles ===== */
.wave-clip-bottom {
    position: relative;
    clip-path: url(#wave-clip-bottom);
    -webkit-clip-path: url(#wave-clip-bottom);
    padding-bottom: 180px !important;
}

.wave-clip-top {
    position: relative;
    clip-path: url(#wave-clip-top);
    -webkit-clip-path: url(#wave-clip-top);
    padding-top: 100px;
    margin-top: -100px;
}

/* セクション間の重なり調整 */
.wave-clip-bottom + .slideshow-container,
.wave-clip-bottom + section {
    margin-top: -80px;
}

@media (max-width: 768px) {
    .wave-clip-bottom {
        padding-bottom: 120px !important;
    }
    
    .wave-clip-top {
        padding-top: 60px;
        margin-top: -60px;
    }
    
    .wave-clip-bottom + .slideshow-container,
    .wave-clip-bottom + section {
        margin-top: -40px;
    }
}

/* フォールバック */
@supports not (clip-path: url(#wave-clip-bottom)) {
    .wave-clip-bottom,
    .wave-clip-top {
        clip-path: none;
        -webkit-clip-path: none;
    }
}

/* ===== Hero Section ===== */
.hero-section {
    position: relative;
    height: 280vh;
    width: 100%;
    background: #000;
}

.hero-fixed-elements {
    position: fixed;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    z-index: 10;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (max-width: 900px) {
    .hero-fixed-elements {
        height: 120vh;
        height: 120svh;
    }
}


/* Hero Section の最後で固定 */
.hero-fixed-elements.is-bottom {
    position: absolute;
    top: auto;
    bottom: 0;
}

.hero-images-container {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

.hero-image {
    position: relative;
    width: 100%;
    height: 120vh;
    /* overflow: visible; */
    overflow: hidden;
}

.hero-image-inner {
  position: absolute;
  top: -20vh;
  left: 0;
  width: 100%;
  height: 160vh;
  will-change: transform, clip-path;
  transform: translateZ(0);
}


/* z-indexで重なり順を制御 */
.hero-image:nth-child(1) {
    z-index: 4;
}

.hero-image:nth-child(2) {
    z-index: 3;
    margin-top: -40vh;
}

.hero-image:nth-child(3) {
    z-index: 2;
    margin-top: -40vh;
}

.hero-image:nth-child(4) {
    z-index: 1;
    margin-top: -40vh;
}

.hero-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* 波形クリップパスを画像に適用 */
/* .hero-image.wave-bottom img {
    clip-path: url(#wave-clip-1);
}

.hero-image:nth-child(2).wave-bottom img {
    clip-path: url(#wave-clip-2);
}

.hero-image:nth-child(3).wave-bottom img {
    clip-path: url(#wave-clip-3);
} */
 /* 波形クリップパスを hero-image-inner に適用 */
.hero-image.wave-bottom .hero-image-inner {
  clip-path: url(#wave-clip-1);
}

.hero-image:nth-child(2).wave-bottom .hero-image-inner {
  clip-path: url(#wave-clip-2);
}

.hero-image:nth-child(3).wave-bottom .hero-image-inner {
  clip-path: url(#wave-clip-3);
}


.scroll {
    position: absolute;
    z-index: 5;
    top: 104vh;
    top: 104svh;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--font-size-s);
    color: var(--color-background);
}

@media (min-width:769px) {
    .scroll {
        display: none;
    }
}

/* Center Logo */
.hero-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.hero-center-logo img {
    animation: blurFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    filter: blur(15px);
    opacity: 0;
}

@keyframes blurFadeIn {
    0% {
        filter: blur(15px);
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        filter: blur(0);
        opacity: 1;
        transform: scale(1);
    }
}

.hero-side-text {
    color: var(--color-background);
    animation: blurFadeIn 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-side-text-left .hero-side-label {
    margin-right: 13em;
}

@media (max-width: 500px) {
    .hero-side-text {
        font-size: var(--font-size-s);
    }
    .hero-center-logo img {
        width: 100px;
    }
    .hero-side-text-left .hero-side-label {
        margin-right: 11em;
    }
}

/* Hero Banner */
.hero-banner {
    position: absolute;
    top: 78vh;
    left: 4%;
    z-index: 10;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 430px;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
    color: var(--color-primary);
}

.hero-banner:hover {
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .hero-banner {
        top:90vh;
        top: 90svh;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
    }
}

.hero-banner-image {
    width: 105px;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.hero-banner-image img {
    aspect-ratio: 1/1;
    object-fit: cover;
}

.hero-banner-content {
    flex: 1;
    padding: 8px 15px;
    height: 105px;
    background-color: var(--color-background);
}

.hero-banner-label {
    font-family: var(--font-latin);
    font-size: var(--font-size-s);
    border: 1px solid var(--color-primary);
    border-radius: 1em;
    padding: 0 5px;
    margin-bottom: 10px;
    line-height: 1.1;
    display: inline-block;
}

.hero-banner-text {
    font-size: var(--font-size-s);
    line-height: 1.4;
}

.hero-banner-arrow {
    background-color: var(--color-background);
    height: 105px;
    padding: 0 5px;
    border-radius: 0 3px 3px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .hero-banner-image {
        width: 87px;
    }
    .hero-banner-content,
    .hero-banner-arrow {
        height: 87px;
    }
    .hero-banner-text {
        font-size: var(--font-size-s);
    }
}

/* ===== Modal Styles ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.is-active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 600px;
    max-height: 90vh;
    z-index: 1;
    transform: scale(0.9);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .modal-content {
        max-width: 90%;
        max-height: 90vh;
    }
}

.modal.is-active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.modal-body {
    background: var(--color-primary);
    padding: 20px;
    border-radius: var(--radius-sm);
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.modal-body img {
    max-width: 100%;
    height: auto;
    display: block;
}

.modal-close {
    position: absolute;
    top: 5px;
    right: 10px;
    background: var(--color-secondary);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    z-index: 2;
    transition: background 0.2s ease;
    color: var(--color-background);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-close:hover {
    background: #f0f0f0;
    color: var(--color-primary);
}

.modal.is-closing {
    opacity: 0;
}

.modal.is-closing .modal-content {
    transform: scale(0.9);
    opacity: 0;
}

/* ===== Slideshow ===== */
.slideshow-container {
    width: 100%;
    overflow: hidden;
}

.slideshow-wrapper {
    display: flex;
}

.slide {
    flex-shrink: 0;
    overflow: hidden;
    width: calc(100% / 3);
}

.slide img {
    width: 100%;
    aspect-ratio: 4/7;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .slide {
        width: 100%;
    }
}

/* ===== Access Info ===== */
.access-info-section {
    background-color: var(--color-primary);
}

.access-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

@media (max-width: 768px) {
    .access-info-container {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.access-column {
    padding: 120px 0;
}

.section-title {
    font-size: var(--font-size-lm);
    font-family: var(--font-latin);
    margin-bottom: 50px;
}

.access-info-container,
.access-column {
    position: relative;
}

.access-info-container::after {
    content: '';
    height: 100%;
    width: 1px;
    background: var(--color-misty-border);
    position: absolute;
    top: 0;
    left: calc(50% - 1px);
}

.access-column:first-of-type {
    padding-right: 40px;
}

.access-info-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.info-block {
    font-size: var(--font-size-s);
}

@media (max-width: 768px) {
    .access-info-area {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .access-info-container::after {
        display: none;
    }
    .access-column {
        padding: 50px 0 80px 0;
    }
    .access-column:first-of-type {
        padding-right: 0;
        position: relative;
        padding-bottom: 30px;
    }
    .access-column:first-of-type::after {
        content: '';
        height: 1px;
        width: 110%;
        background: var(--color-misty-border);
        position: absolute;
        bottom: 0;
        left: -5%;
    }
    .section-title {
        margin-bottom: 30px;
    }
    .info-block {
        font-size: var(--font-size-base);
    }
    .info-block dl {
        display: flex;
        gap: 20px;
    }
    .info-block dt {
        flex-shrink: 0;
        width: 6em;
    }
}

.label {
    opacity: 0.7;
    margin-bottom: 10px;
}

.access-content {
    margin-bottom: 24px;
}

.access-content .btn-mini {
    margin-top: 15px;
}

.access-font-b {
    font-size: var(--font-size-base);
    margin-bottom: 5px;
    display: block;
}

.access-en {
    opacity: 0.7;
    line-height: 1.65;
}

.access-en .label {
    font-size: var(--font-size-base);
    font-family: var(--font-latin);
}

/* ===== Menu Section ===== */
.menu-section {
    background-color: var(--color-secondary);
}

.menu-intro {
    padding-top: 80px;
    padding-bottom: 120px;
}

.menu-title {
    font-family: var(--font-latin);
    font-size: var(--font-size-l);
    line-height: 1.3;
}

.menu-hours {
    margin-bottom: 50px;
}

.menu-description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.description-title {
    margin-bottom: 10px;
}

.description-jp .description-title {
    font-family: var(--font-japanese-gothic-b);
}

.description-en {
    opacity: 0.7;
}

.description-en .description-title {
    font-family: var(--font-latin);
    font-size: var(--font-size-ms);
}

.menu-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.menu-card {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 2 / 1.3;
    transition: transform 0.3s ease;
}

.menu-card-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.4s ease;
    z-index: 1;
}

.menu-card:hover .menu-card-overlay,
.menu-card:focus .menu-card-overlay {
    background-color: rgba(0, 0, 0, 0);
}

.menu-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 90%;
}

.menu-card-text {
    display: inline-block;
    font-family: var(--font-latin);
    padding: 12px 24px;
    border: 1px solid rgb(164 194 164 / .5);
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (min-width: 769px) {
    .menu-card:hover .menu-card-text,
    .menu-card:focus .menu-card-text {
        background-color: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.9);
        transform: scale(1.05);
        backdrop-filter: blur(4px);
    }
}

@media (max-width: 768px) {
    .menu-description {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .menu-intro {
        padding: 120px 0 100px 0;
    }
    .menu-hours {
        margin-bottom: 40px;
    }
    .description-jp,
    .description-en {
        margin-bottom: 30px;
    }
    .description-title {
        margin-bottom: 20px;
    }
    .menu-cards {
        grid-template-columns: 1fr;
    }
    .menu-card-text {
        padding: 12px 24px;
    }
}

/* ===== Topics Section ===== */
.top-topics-section {
    padding: 80px 0 120px 0;
}

.top-topics-section .container {
    display: grid;
    grid-template-columns: 1fr 3fr;
}

@media (max-width: 768px) {
    .top-topics-section {
        padding: 80px 0;
    }
    .top-topics-section .container {
        grid-template-columns: 1fr;
    }
    .top-topics-header .btn-mini {
        display: none;
    }
}

.top-topic-btn {
    width: 140px;
    margin-top: 24px;
}

@media (min-width: 768px) {
    .top-topic-btn {
        display: none !important;
    }
}

.top-topics-section .topics-title {
    color: var(--color-text);
}

.top-topics-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.top-topic-item {
    border-bottom: 1px solid var(--color-misty-border);
}

.top-topic-link {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 16px;
    transition: 0.5s all;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .top-topic-link {
        gap: 20px;
    }
}

.top-topic-link:hover,
.top-topic-link:focus,
.pickup .top-topic-link {
    background: #175C31;
    outline: none;
}

.pickup .top-topic-link:after {
    content:'PICK UP';
    background: var(--color-text);
    color: var(--color-primary);
    position: absolute;
    right: -30px;
    top: -20px;
    z-index: 1;
    transform: rotate(30deg);
    width: 95px;
    padding-top: 30px;
    text-align: center;
    font-size: var(--font-size-xs);
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in all;
}

.top-topic-thumbnail {
    width: 64px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
    .top-topic-thumbnail {
        width: 54px;
    }
}

.top-topic-thumbnail img {
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-sm);
}

.top-topic-content {
    flex: 1;
}

.top-topic-content .post-category {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-right: 0;
}

.top-topic-content .post-date {
    opacity: 0.5;
}

.topic-arrow {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    color: rgba(232, 232, 232, 0.6);
}

/* ===== Deep Green Section ===== */
.deep-green-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    overflow: hidden;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    background-color: var(--color-primary);
    padding: 64px 24px 44px 24px;
    border-radius: var(--radius-md);
}

.cocktail-image {
    position: relative;
}

.cocktail-image figure {
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .cocktail-image figure {
        margin-bottom: 60px;
    }
}

.animated-text-top,
.animated-text-bottom {
    font-family: var(--font-latin);
    font-size: var(--font-size-xl);
    color: var(--color-text);
    line-height: 1;
    z-index: 2;
}

@media (max-width: 768px) {
    .animated-text-top,
    .animated-text-bottom {
        font-size: 60px;
    }
}

.animated-text-top {
    position: absolute;
    top: -0.5em;
    left: 0;
}

.animated-text-bottom {
    position: absolute;
    bottom: -0.3em;
    right: 0;
}

.text-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    mix-blend-mode: hard-light;
}

.text-char.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.box-header {
    text-align: right;
}

.about-title {
    font-family: var(--font-latin);
    font-size: var(--font-size-m);
    color: var(--color-text);
}

.cocktail-image img {
    aspect-ratio: 2/2;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

@media (max-width: 768px) {
    .cocktail-image img {
        aspect-ratio: 1/1;
    }
}

.description-ja h3 {
    font-family: var(--font-japanese-gothic-b);
    margin-bottom: 20px;
}

.description-en h3 {
    font-family: var(--font-latin);
    font-size: var(--font-size-ms);
    margin-bottom: 10px;
}

.description-ja {
    margin-bottom: 30px;
}

.description-en {
    opacity: 0.7;
}

/* ==========================================
   PARALLAX STYLES
   ========================================== */

/* パララックス用の画像ラッパー */
.parallax-item {
    position: relative;
    overflow: hidden;
}

.parallax-image-wrapper {
    position: relative;
    width: 100%;
    height: 130%;
    top: -15%;
    will-change: transform;
    transition: none;
}

.parallax-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* About内画像のパララックス */
.deep-green-image.parallax-item {
    position: relative;
    overflow: hidden;
    height: 330px;
}

.deep-green-image.parallax-item .parallax-image-wrapper {
    height: 130%;
    top: -15%;
}

/* Aboutセクション背景のパララックス */
.reservation-section.parallax-section,
.background-image.parallax-section {
    background-attachment: scroll;
    will-change: background-position;
}

/* モバイルではパララックスを軽くする */
@media (max-width: 768px) {
    .parallax-image-wrapper {
        height: 120% !important;
        top: -10% !important;
    }
    .reservation-section.parallax-section,
    .background-image.parallax-section {
        background-size: cover;
    }
}

/* ==========================================
   CONTACT FORM STYLES
   ========================================== */


/* 入力画面のみ表示 */
.mw_wp_form_confirm .flow01,
.mw_wp_form_input .flow02 {
    display: none;
}


p.contact-lead a{
    text-decoration: none;
    font-size: var(--font-size-m);
    font-family: var(--font-latin);
}

/* フローチャート */
.flow_chart {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    margin: 40px 0 60px 0;
    list-style: none;
    position: relative;
    width: 100%;
}

.flow_chart li {
    position: relative;
    padding: 4px 30px 4px 30px;
    margin: 0 !important;
    background-color: #c4c4c4;
    flex: 1;
    color: var(--color-secondary);
    font-size: var(--font-size-base);
    transition: all 0.3s ease;
    list-style: none !important;
    text-align: center;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%, 25px 50%);
    margin-left: -24px !important;
}

/* 最初のli */
.flow_chart li:first-child {
    margin-left: 0 !important;
    padding-left: 30px;
    clip-path: polygon(0 0, calc(100% - 25px) 0, 100% 50%, calc(100% - 25px) 100%, 0 100%);
}

/* 最後のli */
.flow_chart li:last-child {
    padding-right: 30px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25px 50%);
}

/* 最初かつ最後（1つだけの場合） */
.flow_chart li:first-child:last-child {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    margin-left: 0 !important;
}

/* アクティブなステップ */
.flow_chart li.active {
    background-color:var(--color-secondary);
    color:var(--color-background);
    font-weight: normal;
    z-index: 2;
}

/* 矢印は削除 */
.flow_chart li::after {
    display: none;
}

@media (max-width: 768px) {
    .flow_chart {
        gap: 0;
        margin: 30px 0 40px 0;
    }
    
    .flow_chart li {
        padding: 12px 20px 12px 20px;
        font-size: var(--font-size-s);
        clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
        margin-left: -18px !important;
    }
    
    .flow_chart li:first-child {
        margin-left: 0 !important;
        padding-left: 20px;
        clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
    }
    
    .flow_chart li:last-child {
        padding-right: 20px;
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 18px 50%);
    }
    
    .flow_chart li:first-child:last-child {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        margin-left: 0 !important;
    }
}

/* フォームテーブル */
.form_table {
    margin-bottom: 60px;
}

.form_table dl {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-misty-border);
    align-items: center;
}

.form_table dt {
    font-weight: normal;
    padding-top: 12px;
}

.form_table dt.required {
    position: relative;
}

/* 必須ラベル */
.form_table dt.required::after {
    content: '必須';
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background-color: var(--color-text);
    color: var(--color-secondary);
    font-size: var(--font-size-xs);
    border-radius: 3px;
    vertical-align: middle;
}

.form_table dd {
    margin: 0;
}

/* フォーム入力欄 */
.form_table input[type="text"],
.form_table input[type="email"],
.form_table input[type="tel"],
.form_table textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-misty-border);
    border-radius: var(--radius-sm);
    background-color: rgba(234, 240, 234, 0.5);
    color: var(--color-secondary);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

.form_table input[type="text"]:focus,
.form_table input[type="email"]:focus,
.form_table input[type="tel"]:focus,
.form_table textarea:focus {
    outline: none;
    border-color: var(--color-background);
    background-color: rgba(234, 240, 234, 0.8);
}

.form_table textarea {
    min-height: 150px;
    resize: vertical;
}

/* ラジオボタン */
.form_table input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 24px;
    height: 24px;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.form_table .mwform-radio-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form_table .mwform-radio-field label {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 6px 20px 6px 50px;
    transition: all 0.3s ease;
    user-select: none;
}

/* カスタムラジオボタン（丸）の外枠 */
.form_table .mwform-radio-field label::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border: 2px solid var(--color-text);
    border-radius: 50%;
    background-color: rgba(234, 240, 234, 0.8);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* チェック時の内側の丸 - :has()を使用 */
.form_table .mwform-radio-field label:has(input[type="radio"]:checked)::after {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    transition: all 0.3s ease;
    pointer-events: none;
}


@media (max-width: 900px) {
    .form_table dl {
        grid-template-columns:1fr;
    }

    .form_table .mwform-radio-field label {
        padding: 10px 16px 10px 45px;
    }
    
    .form_table input[type="radio"] {
        left: 12px;
        width: 22px;
        height: 22px;
    }
    
    .form_table .mwform-radio-field label::before {
        left: 12px;
        width: 22px;
        height: 22px;
    }
    
    .form_table .mwform-radio-field label:has(input[type="radio"]:checked)::after {
        left: 17px;
        width: 10px;
        height: 10px;
    }
}

/* チェックボックスも同様に修正 */
.privacy-ck input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 28px;
    height: 28px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
}

.privacy-ck label:has(input[type="checkbox"]:checked)::before {
    background-color: var(--color-text);
    border-color: var(--color-text);
}

.privacy-ck label:has(input[type="checkbox"]:checked)::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 14px;
    border-right: 3px solid var(--color-secondary);
    border-bottom: 3px solid var(--color-secondary);
    pointer-events: none;
}
/* プライバシーセクション */
.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: var(--font-size-m);
    font-family: var(--font-japanese-gothic-b);
    margin-bottom: 20px;
    color: var(--color-text);
}

.privacy-intro {
    margin-bottom: 24px;
    line-height: 1.8;
}

/* チェックボックスカスタムスタイル */
.privacy-ck {
    margin: 30px 0;
}

.privacy-ck input[type="checkbox"] {
    display: none;
}

.privacy-ck label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 40px;
    font-size: var(--font-size-base);
    line-height: 1.6;
    user-select: none;
    transition: opacity 0.3s ease;
}

.privacy-ck label:hover {
    opacity: 0.7;
}

.privacy-ck label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: 2px solid var(--color-text);
    border-radius: var(--radius-sm);
    background-color: rgba(234, 240, 234, 0.3);
    transition: all 0.3s ease;
}

.privacy-ck input[type="checkbox"]:checked + label::before {
    background-color: var(--color-text);
    border-color: var(--color-text);
}

.privacy-ck input[type="checkbox"]:checked + label::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 8px;
    height: 14px;
    border-right: 3px solid var(--color-secondary);
    border-bottom: 3px solid var(--color-secondary);
}

/* プライバシースクロールエリア */
.privacy-scroll-area {
    max-height: 200px;
    overflow-y: scroll;
    padding: 24px;
    background-color: rgba(5, 54, 2, 0.3);
    border: 1px solid var(--color-misty-border);
    border-radius: var(--radius-md);
    margin-top: 20px;
    font-size: var(--font-size-s);
    line-height: 1.8;
}

.privacy-scroll-area::-webkit-scrollbar {
    width: 8px;
}

.privacy-scroll-area::-webkit-scrollbar-track {
    background: rgba(164, 194, 164, 0.1);
    border-radius: 4px;
}

.privacy-scroll-area::-webkit-scrollbar-thumb {
    background: var(--color-text);
    border-radius: 4px;
}

.privacy-scroll-area::-webkit-scrollbar-thumb:hover {
    background: rgba(164, 194, 164, 0.8);
}

.privacy-scroll-area h3 {
    font-size: var(--font-size-base);
    font-family: var(--font-japanese-gothic-b);
    margin-bottom: 16px;
    margin-top: 32px;
    color: var(--color-text);
}

.privacy-scroll-area h3:first-child {
    margin-top: 0;
}

.privacy-scroll-area h4 {
    font-size: var(--font-size-s);
    font-family: var(--font-japanese-gothic-b);
    margin-bottom: 12px;
    margin-top: 24px;
    color: var(--color-text);
}

.privacy-scroll-area p {
    margin-bottom: 16px;
}

.privacy-scroll-area ul,
.privacy-scroll-area ol {
    margin-bottom: 16px;
    padding-left: 1.5em;
}

.privacy-scroll-area ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}

.privacy-scroll-area ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
}

.privacy-scroll-area a {
    color: var(--color-text);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

@media (min-width: 769px) {
    .privacy-scroll-area a:hover {
        opacity: 0.7;
        text-decoration: none;
    }
}

.privacy-scroll-area .ggl {
    padding-left: 1em;
}

/* ボタングループ */
.btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

.btn-group input[type="submit"],
.btn-group button {
    min-width: 200px;
    display: inline-flex;
    align-items: center;
    padding:0 24px;
    height: 48px;
    border: 1px solid var(--color-text);
    border-radius: 100px;
    color: var(--color-text);
    font-size: var(--font-size-s);
    text-align: center;
    transition: all 0.4s ease;
}


@media (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* 確認画面用のテキスト */
.flow02 {
    text-align: center;
    margin: 40px 0;
    font-size: var(--font-size-base);
    line-height: 1.8;
}

/* エラーメッセージ */
.error {
    color: var(--color-text) !important;
    font-size: var(--font-size-s) !important;
    margin-top: 8px;
    background: #2d6d2a;
    padding: .2rem .4rem;
    display: inline-block !important;
}
