/* ==========================================================================
   NATURALLY - Common Styles
   ========================================================================== */

/* CSS RESET & NORMALIZE
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: "Zen Kaku Gothic New", sans-serif;
    background-color: white;
    color: #000;
    line-height: 1.8;
    overflow-x: hidden;
}

a img:hover {
    opacity: 0.8;
}

img.text {
    object-fit: cover;
}

/* CSS CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */
:root {
    /* Brand Colors */
    --color-brand-gold: #DAA520;
    --color-brand-number: #CDAC52;
    --color-brand-brown: #8B4513;
    --color-brand-red: #DC3545;
    --color-brand-blue: #17a2b8;
    --color-brand-dark: #2C2C2C;

    /* Colors */
    --color-primary: var(--color-brand-gold);
    --color-secondary: var(--color-brand-red);
    --color-accent: #F8F9FA;

    --color-text-primary: #000;
    --color-text-secondary: #666666;
    --color-text-light: #999999;
    --color-text-inverse: #ffffff;

    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f9f9f9;
    --color-bg-hero: #ffffff;

    --color-border: #666;
    --color-border-light: #e0e0e0;

    /* Typography */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;
    --font-size-hero: 4rem;

    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Layout */
    --container-max-width: 1200px;
    --border-radius-sm: 0.25rem;
    --border-radius: 0.375rem;
    --border-radius-lg: 0.5rem;
    --border-radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
}

/* font
   ========================================================================== */
.zen-kaku-gothic-new-regular {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.zen-kaku-gothic-new-bold {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Oljzij Urwdin Light';
    /* フォントに任意の名前を付けます */
    src: url('../font/oljzij-urwdin-light.ttf') format('truetype');
    /* フォントファイルのパスと形式を指定 */
    font-weight: normal;
    /* フォントの太さを指定 (任意) */
    font-style: normal;
    /* フォントのスタイルを指定 (任意) */
}

@font-face {
    font-family: 'Oljzij Urwdin Medium';
    /* フォントに任意の名前を付けます */
    src: url('../font/oljzij-urwdin-medium.ttf') format('truetype');
    /* フォントファイルのパスと形式を指定 */
    font-weight: normal;
    /* フォントの太さを指定 (任意) */
    font-style: normal;
    /* フォントのスタイルを指定 (任意) */
}

@font-face {
    font-family: 'Urwdin din demi';
    /* フォントに任意の名前を付けます */
    src: url('../font/urw-din-demi.otf') format('truetype');
    /* フォントファイルのパスと形式を指定 */
    font-weight: normal;
    /* フォントの太さを指定 (任意) */
    font-style: normal;
    /* フォントのスタイルを指定 (任意) */
}

@font-face {
    font-family: 'adobe-garamond-pro-bold';
    /* フォントに任意の名前を付けます */
    src: url('../font/adobe-garamond-pro-bold.otf') format('truetype');
    /* フォントファイルのパスと形式を指定 */
    font-weight: normal;
    /* フォントの太さを指定 (任意) */
    font-style: normal;
    /* フォントのスタイルを指定 (任意) */
}

.mt80 {
    margin-top: 80px;
}

.sp {
    display: none;
}

.logo_sp {
    display: none;
}

@media (max-width: 768px) {

    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .logo_sp {
        display: flex;
    }
}

/* LAYOUT COMPONENTS
   ========================================================================== */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 80px 20px 20px;
}

/* HEADER COMPONENTS
   ========================================================================== */
.header {
    position: relative;

    margin: 40px 52px 6vw 0;
}

.logo {
    padding: 0 40px 0 0;
    text-align: right;
}

.header.pc .logo {
    position: relative;
    z-index: 3;
}

.logo img {
    width: 180px;
}

.nline__subtop__wrap {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
}

.nline__subtop__wrap img {
    max-width: 100vw;
}

.menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 101;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.side-text {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 12px;
    color: var(--color-text-light);
    letter-spacing: 2px;
    z-index: 50;
}

/* RIGHT SIDEBAR COMPONENTS
   ========================================================================== */
.right-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 52px;
    height: 100vh;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0 40px;
}

.right-sidebar__online-shop {
    color: #000000;
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 300;
    letter-spacing: 0;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transition: color var(--transition-fast);
    font-family: 'Oljzij Urwdin Light';
    flex-grow: 1;
}

.right-sidebar__online-shop img {
    width: 18px;
    margin-bottom: 5px;
    margin-right: 7px;
}

.right-sidebar__online-shop:hover {
    color: var(--color-primary);
}

.right-sidebar__burger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: transform var(--transition-fast);
    position: fixed;
    /* 画面全体に対して位置を固定 */
    top: 50%;
    /* 上から50%の位置 */
    right: 10px;
    /* 左から50%の位置 */
    transform: translate(0, -50%);
    /* 要素自身の幅・高さの半分だけ戻して中央に */
}

/*
.right-sidebar__burger:hover {
    transform: scale(1.1);
}
*/
.right-sidebar__burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.right-sidebar__burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.right-sidebar__burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.burger-line {
    width: 20px;
    height: 2px;
    background-color: #000000;
    transition: all var(--transition-fast);
}


.right-sidebar__page-top {
    /* color: #000000;
    text-decoration: none;
    font-size: var(--font-size-sm);
    letter-spacing: 0.1em;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: vertical-rl;
    flex-grow: 1;
    text-align: right;*/
    cursor: pointer;
}

.right-sidebar__page-top img {
    width: 18px;
}

.right-sidebar__page-top:hover {
    color: var(--color-primary);
}

/* Mobile/Overlay Menu */
.overlay-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-slow);
}

.overlay-menu.active {
    opacity: 1;
    visibility: visible;
}

.overlay-menu__content {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    gap: var(--space-8);
    /*align-items: center;*/
    justify-items: center;
    max-width: 900px;
    width: 100%;
    position: relative;
    font-family: 'Oljzij Urwdin Light', sans-serif;
}

.overlay-menu__logo {
    padding: 5px;
}

.overlay-menu__logo .logo {
    /*transform: scale(1.2);*/
}

.overlay-menu__logo .logo img {
    width: 255px;
}

.overlay-menu__column__wrap {
    display: grid;
    grid-template-columns: 50% 25% 25%;
    gap: var(--space-8);
    align-items: center;
    justify-items: center;
}

.overlay-menu__column {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    justify-self: start;
}

.overlay-menu__column:first-of-type {
    grid-column: 2;

}

.overlay-menu__column:last-of-type {
    grid-column: 3;

}


.overlay-menu__link {
    /*color: #000000;
    
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    letter-spacing: 0.025em;
    border-bottom: 1px solid transparent;
    transition: all var(--transition-fast);
    */
    height: 18px;
    position: relative;
    text-decoration: none;
    vertical-align: middle;
}

.overlay-menu__link img {
    height: 18px;
}

.overlay-menu__link::before {
    content: '';
    background: #000000;
    width: 1px;
    height: 18px;
    position: absolute;
    top: 0;
    left: -30px;

}


.overlay-menu__link:hover {
    color: var(--color-primary);

}

.overlay-menu__link--special {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.overlay-menu__link--special::after {
    content: '↗';
    font-size: var(--font-size-sm);
    transition: transform var(--transition-fast);
}

.overlay-menu__link--special:hover::after {
    transform: translate(2px, -2px);
}

.overlay-menu__footer {
    display: none;
}

.overlay-menu__social {
    position: fixed;
    left: 55px;
    bottom: 35px;
    display: flex;
    gap: var(--space-3);
    z-index: 1001;
}

.overlay-menu__social-link {
    color: #000000;
    font-size: var(--font-size-2xl);
    transition: color var(--transition-fast);
    text-decoration: none;
}

.overlay-menu__social-link img {
    width: 30px;
}

.overlay-menu__social-link:hover {
    color: var(--color-primary);
}

.overlay-menu__copyright {
    position: fixed;
    left: 50%;
    bottom: 35px;
    transform: translateX(-50%);
    /*font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    letter-spacing: 0.05em;*/
    z-index: 1001;
}

.overlay-menu__copyright img {
    height: 13px;
}

.overlay-menu__close {
    position: fixed;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: var(--font-size-5xl);
    font-weight: 100;
    color: #000000;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 1001;

}

.overlay-menu__close img {
    width: 20px;
}

/*
.overlay-menu__close:hover {
    color: var(--color-primary);
    transform: translateY(-50%) rotate(90deg);
}
*/

/* PAGE TITLE
   ========================================================================== */
.page-title {
    margin: 70px 0 0 50px;
}

/*
.page-title h1 {
    font-size: var(--font-size-xl);
    font-weight: bold;
    color: #000;
    letter-spacing: 1px;
}
    .page-title .en {
    font-size: 12px;
    color: var(--color-text-light);
    margin-top: 5px;
    font-family: 'Oljzij Urwdin Light';
}

    */

.page-title h1 {
    line-height: 1;
    margin-bottom: 10px;

}

.page-title h1 img {
    height: 18px;
}

.page-title .en {
    line-height: 1;
}

.page-title .en img {
    height: 15px;
}


/* SECTION TITLE
   ========================================================================== */
.section-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-text-primary);
    margin-bottom: 60px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-title img {
    height: 29px;
}

.section-title .en {
    font-size: 14px;
    color: var(--color-text-light);
    margin-left: 20px;
    font-weight: normal;
    font-family: 'Oljzij Urwdin Light';
}

/* CTA BUTTON
   ========================================================================== */
.cta-section {
    text-align: center;
    margin: 80px 0 60px 0;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 110px;
    border: 2px solid var(--color-text-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: var(--font-size-base);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 60px;
    background-color: #fff;

}

.cta-button:hover {
    background: var(--color-text-primary);
    color: white;
}

.cta-button01 {
    display: inline-block;
    padding: 15px 92px;
    border: 2px solid var(--color-text-primary);
    color: var(--color-text-primary);
    text-decoration: none;
    font-size: var(--font-size-base);
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-radius: 60px;
    background-color: #fff;
}

.cta-button01:hover {
    background: var(--color-text-primary);
    color: white;
}

.confirm_form .cta-button01 {

    background-color: var(--color-brand-gold);
}

.confirm_form .cta-button01:hover {
    background: var(--color-text-primary);
    color: white;
}

/* FOOTER
   ========================================================================== */
.footer {
    background: white;
    padding: 40px 20px;
    text-align: center;

    margin-top: 80px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px;
}

.footer-info {
    /*  font-size: 12px;
    color: var(--color-text-secondary);*/
    line-height: 1;
}

.footer-info img {
    height: 13px;

}

.footer-info span img {
    height: 10px;

}


@media (min-width: 768px) {
    .mobile-footer {
        display: none;
    }
}

/* RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
    body {
        overflow: visible;
    }

    .layout__header {
        width: 100%;
        position: relative;
        left: 0;
        height: 75px;
    }

    .header_sp_wrap {
        padding: 14px 23px;
    }

    .header_sp_wrap .header {
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: var(--space-4);
        align-items: center;
        grid-template-rows: auto;
        position: relative;
        margin: 0;

    }

    .header_sp_wrap .logo {
        text-align: left;
        padding: 0;
    }

    .nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .container {
        padding: 0;

    }

    .right-sidebar {
        display: none;
    }


    .side-text {
        display: none;
    }

    .logo__img img {
        width: 138px;
    }

    .overlay-menu {
        align-items: start;
        height: 100svh;
    }

    .overlay-menu__logo {
        padding: 0;
    }

    .overlay-menu__logo .logo {
        display: none;
    }

    .overlay-menu__content {
        display: block;
        /* align-items: center; */
        justify-items: start;
        max-width: 100vw;
        width: 100%;
        height: 100vh;
        position: relative;
        font-family: 'Oljzij Urwdin Light', sans-serif;
    }

    .overlay-menu__logo .logo_sp {
        margin: 14px 23px;
        width: calc(100vw - 100px);
        justify-content: flex-end;
        align-items: center;
    }

    .overlay-menu__logo .logo_sp img.header_sp_over_img {
        width: 138px;
    }

    .header_sp__online-shop {
        /*color: #000000;
        text-decoration: none;
        font-size: 11px;
        font-weight: 300;
        letter-spacing: 0;
        transition: color var(--transition-fast);
        font-family: 'Oljzij Urwdin Light';*/
        flex-grow: 1;
        vertical-align: middle;
        white-space: nowrap;
        text-align: right;
    }

    .overlay-menu__content .header_sp__online-shop {
        margin-right: -2.8px;
        margin-bottom: -1px;
    }

    .header_sp__online-shop img.cart_icon {
        width: 18px;
        margin-right: 5px;
    }

    .header_sp__online-shop img.text {
        width: 70px;
    }

    .overlay-menu__content .header_sp__online-shop img.text {
        margin-right: 1px;
    }

    .header_sp__burger {
        display: flex;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        transition: transform var(--transition-fast);

    }

    .overlay-menu__column {
        position: absolute;
        top: calc(50% - 80px);
        transform: translateY(-50%);
        left: 65px;
    }

    .overlay-menu__column:last-of-type {
        right: 25px;
        left: auto;
    }

    .overlay-menu__link::before {
        left: -15px;

    }


    .overlay-menu__social {
        left: 20px;
        bottom: 70px;
    }

    .overlay-menu__copyright {
        bottom: 20px;
        white-space: nowrap;
        font-size: 10px;
    }

    .overlay-menu__close {
        right: 21px;
        top: 38px;
    }


    .header_sp__online-shop:hover {
        color: var(--color-primary);
    }

    .page-title.sp {
        margin: 15px 0 25px 25px;
    }

    .page-title.sp h1 {
        font-size: var(--font-size-base);
    }

    .page-title.sp .en {
        font-size: 12px;
        color: var(--color-text-light);
        margin-top: 0;
        font-family: 'Oljzij Urwdin Light';
    }

    .cta-button {
        padding: 13px 70px;
    }

    .mobile-footer {
        text-align: center;
    }

    .mobile-footer__copyright {
        font-size: 10px;
        text-align: center;
        line-height: 1;
        margin: 30px 0 10px;
    }

    .mobile-footer__copyright img {
        max-width: 70vw;
        height: auto;
    }

    .footer {
        margin-top: 0;
    }

    .overlay-menu__copyright img {
        max-width: 70vw;
        height: auto;
    }

}