@charset "UTF-8";
/* ----------------------------------------------------------------
レスポンシブ：タブレット
---------------------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .wrapper {
        width: 100%;
        padding: 0 30px;
    }

    /* --------------------------------
    共有コンポーネント
    -------------------------------- */
    /* 見出し */
    .page-ttl {
        padding-top:150px;
    }

    .page-ttl h2 {
        font-size: 2.25rem;
    }

    .page-ttl-img {
        right: -12px;
        width: 80px;
    }

    .page-ttl-sub {
        padding:150px 0 38px;
    }
    
    .page-ttl-sub h2 {
        font-size: 2.375rem;
    }

    .sec-ttl {
        font-size: 2rem;
        padding-bottom: 50px;
    }

    .sub-sec-ttl {
        padding-bottom: 15px;
    }

    /* セクション上下余白 */
    .sec {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .sub-sec {
        padding: 80px 0;
    }

    /* ボタン */
    .btn {
        min-width: 320px;
        padding: 12px 0;
        font-size: 0.875rem;
    }


    /* ヘッダー
    ------------------------------- */
    .header {
        padding: 15px 0;
    }

    .header-logo img {
        width: 140px;
    }

    .header-link {
        gap: 20px;
        font-size: 1rem;
    }

    .header-icon {
        font-size: 1.5rem;
        gap: 10px;
    }

    .header-nav {
        display: none !important;
    }

    .header-sp-control {
        display: flex;
        gap: 15px;
    }

    /* ドロワーメニュー */
    .drawer-toggle {
        display: flex;
        align-items: center;
        gap: 5px;
        background-color: transparent;
        border: 1px solid;
        border-radius: 50px;
        padding: 8px 15px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .drawer-toggle:hover,
    .drawer-toggle:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .drawer-toggle-txt {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
    }

    .drawer-toggle-icon {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1;
    }

    .drawer-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh; 
        height: 100dvh; 
        z-index: 9999;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s 0.3s, opacity 0.3s ease;
    }

    .drawer-menu.is-open {
        visibility: visible;
        opacity: 1;
        transition: visibility 0s 0s, opacity 0.3s ease;
    }

    .drawer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }

    .drawer-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 400px;
        height: 100vh; 
        height: 100dvh; 
        transform: translateX(100%);
        background: var(--color-secondary);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-sizing: border-box;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .drawer-menu.is-open .drawer-content {
        transform: translateX(0);
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: rgba(255, 255, 255, 0.4);
    }

    .drawer-logo img {
        width: 140px;
    }
    
    .drawer-header-control {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .drawer-close {
        display: flex;
        align-items: center;
        gap: 5px;
        background-color: var(--color-text);
        border: 1px solid;
        border-radius: 50px;
        padding: 8px 15px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .drawer-close:hover,
    .drawer-close:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .drawer-close-txt {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
        color: var(--color-white);
    }

    .drawer-close-icon {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1;
        color: var(--color-white);
    }

    .drawer-nav {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .drawer-category-card {
        display: flex;
        flex-direction: column;
        gap: 45px;
        padding: 45px 0 30px;
    }

    .drawer-card-img {
        width: 100%;
        padding-bottom: 15px;
    }

    .drawer-card-txt {
        display: flex;
        justify-content: space-between;
        font-size: 1.125rem;
    }

    .drawer-link {
        display: flex;
        flex-direction: column;
        font-size: 1.125rem;
        gap: 10px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--color-white);
    }

    .drawer-footer {
        padding-top: 30px;
    }

    .drawer-footer-link {
        display: flex;
        flex-direction: column;
        gap: 5px;
        color: var(--color-white);
    }

    .drawer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 50px 0 25px;
        padding: 50px 0px 80px;
        margin-top: auto;
    }

    .drawer-sns {
        justify-content: flex-start;
        font-size: 1.125rem;
        gap: 10px;
    }

    .drawer-copyright {
        color: var(--color-white);
    }

    body.drawer-open {
        overflow: hidden;
    }


    /* mv
    ------------------------------- */
    .mv-logo {
        width: 100px;
        bottom: 30px;
        left: 30px;
    }

    .mv-ttl {
        font-size: 2.25rem;
        bottom: 30px;
        left: 170px;
    }

    .mv-scroll {
        font-size: 1rem;
        bottom: 30px;
        right: 30px;
    }

    .mv-scroll::after {
        height: 50px;
    }


    /* セクション01 カテゴリー
    ------------------------------- */
    .category-ac-nav {
        flex-direction: column;
        gap: 15px;
    }

    .category-nav-item {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 100px;
        margin-bottom: 15px;
    }

    .category-nav-item:hover {
        flex: none;
    }
    
    .category-ac-nav:has(.category-nav-item:hover) .category-nav-item:not(:hover) {
        flex: none;
    }

    .category-ttl {
        padding: 30px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .category-ttl-txt {
        flex: 1;
    }

    .category-ja-txt {
        margin-bottom: 8px;
    }

    .category-en-txt {
        font-size: 1.25rem;
    }

    .category-main-link {
        display: none;
    }

    .category-sub-menu {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 1;
        visibility: visible;
        transform: none;
        overflow: hidden;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .category-sub-menu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 0;
        padding: 0 30px;
        overflow: hidden;
    }

    .category-nav-item.active .category-sub-menu {
        grid-template-rows: 1fr !important;
    }

    .category-sub-menu li {
        margin-bottom: 15px;
    }
    
    .category-sub-menu li:first-child {
        margin-top: 20px;
    }
    
    .category-sub-menu li:last-child {
        margin-bottom: 20px;
    }

    .guide-ttl {
        font-size: 1.125rem;
    }

    .guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guide-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .step-num {
        font-size: 1rem;
    }

    .step-ttl {
        font-size: 1rem;
    }


    /* セクション02 スライド
    ------------------------------- */
    .sec02-slideshow img {
        width: 220px;
        margin: 0 8px;
    }


    /* セクション03 メッセージ
    ------------------------------- */
    .msg-content {
        max-width: 75%; 
    }

    .msg-ttl {
        font-size: 1.5rem;
        padding-bottom: 30px;
    }

    .msg-txt {
        font-size: 1rem;
        width: 100%;
        padding-bottom: 40px;
    }

    .msg-img {
        width: 100px;
        margin-right: 45px;
    }


    /* セクション04 よくある質問
    ------------------------------- */
    .sec-04 {
        padding: 80px 0 150px;
    }

    .faq-content {
        max-width: 75%; 
    }

    .faq-ttl {
        font-size: 1.5rem;
        padding-bottom: 30px;
    }

    .faq-list {
        padding-bottom: 30px;
    }

    .faq-q {
        padding: 12px 12px;
    }

    .icon-q {
        width: 28px;
        height: 28px;
        margin-right: 20px;
        font-size: 0.9375rem;
    }

    .q-txt {
        font-size: 1rem;
    }

    .toggle-arrow {
        width: 10px;
        height: 10px;
    }

    .icon-a {
        width: 28px;
        height: 28px;
        margin-right: 20px;
        font-size: 0.9375rem;
    }

    .a-txt {
        font-size: 0.875rem;
    }

    .faq-btn {
        width: 100%;
    }
    
    .faq-btn .btn {
        flex: 1;
        min-width: 0;
    }

    .faq-img {
        width: 100px;
        margin-left: 35px;
    }


/* 
----------------------------------------------------------------
カスタムオーダー
---------------------------------------------------------------- */
    .full-layout-container {
        display: block;
        padding-top: 50px;
    }

    .menu-main-content {
        width: 100%;
        margin: 0 auto;
    }

    /* セクション01 カスタムリンク
    ------------------------------- */
    .custom-link-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .custom-link-item {
        height: 200px;
    }

    .custom-txt-en {
        font-size: 1.125rem;
    }

    .custom-txt-ja {
        font-size: 1rem;
    }

    .custom-txt-en,
    .custom-txt-ja {
        position: relative;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .custom-link-item:hover .custom-txt-en,
    .custom-link-item:hover .custom-txt-ja {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }


    /* セクション02 カスタムメニュー
    ------------------------------- */
    .menu-list {
        padding-top: 50px;
    }

    .sec-ttl-txt {
        font-size: 1.125rem;
        padding-bottom: 25px;
    }

    .menu-grid {
        gap: 50px;
    }

    .menu-item {
        gap: 10px;
    }

    .menu-ttl {
        font-size: 1.125rem;
    }


    /* サイドバー/ガイド
    ------------------------------- */
    .menu-container, 
    .guide-sidebar-container {
        display: none;
    }


    /* サイドバー
    ------------------------------- */
    .sp-filter-control {
        display: block;
        position: sticky;
        top: 78px; 
        z-index: 990;
        margin: 0;
        background-color: rgba(179, 208, 215, 0.4);
        backdrop-filter: blur(15px);
    }

    .sp-filter-btn {
        width: 100%;
        padding: 20px 0 20px 30px;
        color: var(--color-text);
        border-top: 1px solid var(--color-secondary);
        border-bottom: 1px solid var(--color-secondary);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        font-size: 1rem;
        cursor: pointer;
    }

    .sidebar-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        visibility: hidden;
        transition: visibility 0.4s;
    }
    .sidebar-drawer.is-open {
        visibility: visible;
    }

    .sidebar-drawer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.4s;
    }
    .sidebar-drawer.is-open .sidebar-drawer-overlay {
        opacity: 1;
    }

    .sidebar-drawer-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background-color: var(--color-bg);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    }
    .sidebar-drawer.is-open .sidebar-drawer-content {
        transform: translateX(0);
    }

    .sidebar-drawer-header {
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--color-secondary);
        color: var(--color-white);
    }
    .sidebar-drawer-header h2 { font-size: 1.25rem; }
    .sidebar-drawer-close {
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--color-white);
        line-height: 1;
    }

    .sidebar-drawer-body {
        padding: 20px;
        overflow-y: auto;
    }
    
    .sidebar-drawer .side-nav-item {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .sidebar-drawer .side-nav-header {
        padding: 15px 0;
    }


    /* ガイドボタン
    ------------------------------- */
    .sp-order-controls {
        display: block !important;
    }

    .sp-guide-fab {
        display: flex;
        opacity: 1;
        visibility: visible;
        position: fixed;
        z-index: 1001;
        transition: transform 0.3s ease, bottom 0.2s ease-out;
        right: 30px;
        bottom: 90px;
        width: 63px;
        height: 63px;
        border-radius: 8px;
        background-color: var(--color-accent);
        color: var(--color-text-light);
        border: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
    }

    .sp-guide-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.6);
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }
    .sp-guide-content {
        background-color: var(--color-bg);
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 16px;
        padding: 35px 30px 30px;
        position: relative;
    }

    .sp-guide-content h3 {
        font-size: 1.5rem;
        padding-bottom: 20px;
        color: var(--color-text-light);
    }

    .sp-guide-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.875rem;
        background: none;
        border: none;
        color: var(--color-text-light);
    }

    .guide-item {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 20px 25px;
    }


/* 
----------------------------------------------------------------
アバウト
---------------------------------------------------------------- */
    /* セクション01 ブランド
    ------------------------------- */
    .brand-txt {
        width: 100%;
    }


    /* セクション02 コンセプト
    ------------------------------- */
.concept-list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

    .concept-item,
    .concept-item:nth-child(even) {
        flex-direction: column;
        min-height: auto;
    }

    .concept-img-part,
    .concept-txt-part {
        width: 100%;
    }

    .concept-txt-part {
        padding: 40px 0 0;
    }

    .concept-num {
        padding-bottom: 15px;
    }

    .concept-item-ttl {
        font-size: 1.25rem;
        padding-bottom: 15px;
    }


    /* セクション03 カンパニー
    ------------------------------- */
    .company {
        padding: 80px 0 150px;
    }

    .company-sub-ttl {
        font-weight: 400;
    }


/* 
----------------------------------------------------------------
お問い合わせ
---------------------------------------------------------------- */
    /* セクション01 お問い合わせ
    ------------------------------- */
    .contact-board {
        padding: 50px;
    }

    .contact-lead {
        padding-bottom:50px;
    }

    .form-item {
        padding-bottom: 35px;
    }
    
    .form-label {
        font-size: 1rem;
        padding-bottom: 10px;
    }

    .badge {
        font-size: 0.875rem;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 15px 25px;
        font-size: 0.875rem;
}

    .form-textarea {
        height: 180px;
    }

    .privacy-box {
        padding: 20px;
    }

    .privacy-agree {
        gap: 10px;
        padding: 25px 0;
    }

    #agree {
        width: 20px;
        height: 20px;
    }

    #agree:checked::after {
        left: 5px;
        top: 2px;
        width: 6px;
        height: 10px;
    }

    .privacy-agree label {
        font-size: 1rem;
    }

    .submit-btn {
        padding: 15px 80px;
        font-size: 1rem;
    }


/* 
----------------------------------------------------------------
ご利用ガイド
---------------------------------------------------------------- */
    .user-guide-sec {
        padding: 35px 0 80px;
        display: flex;
        flex-direction: column;
    }


    /* サイドバー
    ------------------------------- */
    .user-guide-sidebar {
        padding: 0 0 25px 30px;
        margin-bottom: 30px;
        display: block !important;
        width: 100% !important;
        position: sticky;
        top: 78px;
        z-index: 900;
        background-color: var(--color-bg);
        border-bottom: 1px solid #ddd;
    }

    .sidebar-sticky-content {
        position: static;
        width: 100%;
    }

    .user-guide-sidebar li {
        padding-bottom: 10px;
    }

    .user-guide-sidebar .side-main-icon {
        display: none !important;
    }

    .user-guide-sidebar li.is-current .sub-nav-ttl {
        font-weight: 400;
    }


    /* セクション01 ご利用ガイド
    ------------------------------- */
    .user-guide h2 {
        padding-bottom: 10px;
    }

    .user-guide-item {
        gap: 40px;
    }


/* 
----------------------------------------------------------------
特定商取引法に基づく表記
---------------------------------------------------------------- */
    /* セクション01 リスト
    ------------------------------- */
    .law-row dt {
        padding-bottom: 8px;
    }


/* 
----------------------------------------------------------------
プライバシーポリシー
---------------------------------------------------------------- */
    /* セクション01 リスト
    ------------------------------- */
    .privacy p {
        padding-bottom: 40px;
    }

    .privacy-row {
        padding: 40px 0;
    }

    .privacy-btn .btn {
        min-width: 300px;
    }


    /* フッター
    ------------------------------- */
    .footer {
        padding-top: 80px;
    }

    .footer::after {
        height: 100px;
        background-size: auto 100px;
    }

    .footer-top {
        padding-bottom: 40px;
    }

    .footer-left {
        flex: 0 0 180px;
        max-width: 180px;
    }

    .footer-logo img {
        width: 150px;
        padding-bottom: 30px;
    }

    .footer-sns {
        gap: 10px;
    }

    .footer-sns a {
        font-size: 1.5rem;
    }

    .footer-right {
        flex: 1;
        max-width: 480px;
        grid-template-columns:120px 120px 120px;
        gap: 15px 40px;
    }

    .column-ttl {
        font-size: 1.125rem;
        padding-bottom: 15px;
    }

    .column-nav li {
        padding-bottom: 10px;
        font-size: 0.875rem;
    }

    .footer-bottom {
        padding: 30px 0;
    }

    .footer-info {
        gap: 15px;
    }


    /* バックグラウンドアニメーション
    ------------------------------- */
    .bg-flower-01 {
        width: 700px;
        height: 700px;
        top: 5%;
        left: -15%;
    }
    
    .bg-flower-02 {
        width: 350px;
        height: 350px;
        top: 50%;
        right: -5%;
    }
    
    .bg-flower-03 {
        width: 600px;
        height: 600px;
        top: 35%;
        left: -15%;
    }
    
    .bg-flower-04 {
        width: 600px;
        height: 600px;
        top: 50%;
        right: -20%;
    }


    /* トップへ戻るボタン
    ------------------------------- */
    .pagetop {
        font-size: 0.875rem;
    }


    /* -------------------------------
    注文ページ（woocommerce）
    ------------------------------- */
    .product-price {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .product-description {
        margin-bottom: 30px !important;
    }

    .variations tbody {
        grid-template-columns: repeat(1,1fr);
        gap: 25px;
    }

    .variations {
        margin-bottom: 35px;
    }

    .quantity {
        padding-bottom: 35px;
    }

    .recommend-section {
        padding-top: 50px;
    }

    .recommend-grid-img span {
        position: static;
        transform: none;
        color: var(--color-text-light);
        font-size: 1.25rem;
        opacity: 1;
        display: block;
        padding-top: 15px;
    }
    
    .recommend-grid-img::after {
        display: none;
    }
    
    .recommend-grid-img:hover img {
        transform: none;
    }

    body.birth-series-product .recommend-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* 
----------------------------------------------------------------
レスポンシブ：スマホ
---------------------------------------------------------------- */
@media screen and (max-width: 767px) {
    .wrapper {
        width: 100%;
        padding: 0 20px;
    }

    /* --------------------------------
    共通設定
    -------------------------------- */
    .block {
        display: inline;
    }

    /* --------------------------------
    共有コンポーネント
    -------------------------------- */
    /* 見出し */
    .page-ttl {
        padding-top:135px;
    }

    .page-ttl h2 {
        font-size: 2rem;
    }

    .page-ttl-img {
        right: -6px;
        width: 70px;
    }

    .page-ttl-sub {
        padding:135px 0 44px;
    }
    
    .page-ttl-sub h2 {
        font-size: 1.75rem;
    }

    .sec-ttl {
        font-size: 2rem;
        padding-bottom: 50px;
    }

    .sec-ttl {
        font-size: 2rem;
        padding-bottom: 50px;
    }

    /* セクション上下余白 */
    .sec {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .sub-sec {
        padding: 50px 0;
    }

    /* ボタン */
    .btn {
        min-width: 100%;
        padding: 12px 0;
        font-size: 0.875rem;
    }


    /* ヘッダー
    ------------------------------- */
    .header {
        padding: 15px 0;
    }

    .header-logo img {
        width: 140px;
    }

    .header-link {
        gap: 20px;
        font-size: 1rem;
    }

    .header-icon {
        font-size: 1.5rem;
        gap: 10px;
    }

    .header-nav {
        display: none !important;
    }

    .header-sp-control {
        display: flex;
        gap: 15px;
    }

    /* ドロワーメニュー */
    .drawer-toggle {
        display: flex;
        align-items: center;
        gap: 5px;
        background-color: transparent;
        border: 1px solid;
        border-radius: 50px;
        padding: 8px 15px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .drawer-toggle:hover,
    .drawer-toggle:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .drawer-toggle-txt {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
    }

    .drawer-toggle-icon {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1;
    }

    .drawer-menu {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        z-index: 9999;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s 0.3s, opacity 0.3s ease;
    }

    .drawer-menu.is-open {
        visibility: visible;
        opacity: 1;
        transition: visibility 0s 0s, opacity 0.3s ease;
    }

    .drawer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        cursor: pointer;
    }

    .drawer-content {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(100%); 
        background: var(--color-secondary);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        box-sizing: border-box;
    }

    .drawer-menu.is-open .drawer-content {
        transform: translateX(0);
    }

    .drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        background-color: rgba(255, 255, 255, 0.4);
    }

    .drawer-logo img {
        width: 140px;
    }
    
    .drawer-header-control {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .drawer-close {
        display: flex;
        align-items: center;
        gap: 5px;
        background-color: var(--color-text);
        border: 1px solid;
        border-radius: 50px;
        padding: 8px 15px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .drawer-close:hover,
    .drawer-close:active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .drawer-close-txt {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
        color: var(--color-white);
    }

    .drawer-close-icon {
        font-size: 1rem;
        font-weight: 300;
        line-height: 1;
        color: var(--color-white);
    }

    .drawer-nav {
        display: flex;
        flex-direction: column;
        padding: 0 20px;
    }

    .drawer-category-card {
        display: flex;
        flex-direction: column;
        gap: 45px;
        padding: 45px 0 30px;
    }

    .drawer-card-img {
        width: 100%;
        padding-bottom: 15px;
    }

    .drawer-card-txt {
        display: flex;
        justify-content: space-between;
        font-size: 1.125rem;
    }

    .drawer-link {
        display: flex;
        flex-direction: column;
        font-size: 1.125rem;
        gap: 10px;
        padding-bottom: 30px;
        border-bottom: 1px solid var(--color-white);
    }

    .drawer-footer {
        padding-top: 30px;
    }

    .drawer-footer-link {
        display: flex;
        flex-direction: column;
        gap: 5px;
        color: var(--color-white);
    }

    .drawer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        padding: 50px 0 25px;
    }

    .drawer-sns {
        justify-content: flex-start;
        font-size: 1.125rem;
        gap: 10px;
    }

    .drawer-copyright {
        color: var(--color-white);
    }

    body.drawer-open {
        overflow: hidden;
    }


    /* mv
    ------------------------------- */
    .mv {
        height: 100vh;
        height: 100dvh;
    }
    .mv-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 20%);
    }
    
    .mv-logo,
    .mv-ttl {
        position: static;
        left: auto;
        bottom: auto;
    }
    
    .mv-logo {
        width: 100px;
        filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.8))
        drop-shadow(0 0 50px rgba(0, 0, 0, 0.6));
    }
    
    .mv-ttl {
        font-size: 1.375rem;
        line-height: 1.6;
        text-align: center;
        text-shadow: 
        0 0 20px rgba(0, 0, 0, 0.9),
        0 0 40px rgba(0, 0, 0, 0.7),
        2px 2px 10px rgba(0, 0, 0, 0.8);
        white-space: normal;
    }
    
    .mv-scroll {
        position: absolute;
        font-size: 0.75rem;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
        gap: 8px;
    }
    
    .mv-scroll::after {
        height: 35px;
    }


    /* セクション01 カテゴリー
    ------------------------------- */
    .category-ac-nav {
        flex-direction: column;
        gap: 15px;
    }

    .category-nav-item {
        flex: none;
        width: 100%;
        height: auto;
        min-height: 100px;
        margin-bottom: 15px;
    }

    .category-nav-item:hover {
        flex: none;
    }
    
    .category-ac-nav:has(.category-nav-item:hover) .category-nav-item:not(:hover) {
        flex: none;
    }

    .category-ttl {
        padding: 30px 30px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .category-ttl-txt {
        flex: 1;
    }

    .category-ja-txt {
        margin-bottom: 8px;
    }

    .category-en-txt {
        font-size: 1.25rem;
    }

    .category-main-link {
        display: none;
    }

    .category-sub-menu {
        position: relative;
        bottom: auto;
        left: auto;
        padding: 0;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 1;
        visibility: visible;
        transform: none;
        overflow: hidden;
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .category-sub-menu ul {
        display: flex;
        flex-direction: column;
        gap: 0;
        min-height: 0;
        padding: 0 30px;
        overflow: hidden;
    }

    .category-nav-item.active .category-sub-menu {
        grid-template-rows: 1fr !important;
    }

    .category-sub-menu li {
        margin-bottom: 15px;
    }
    
    .category-sub-menu li:first-child {
        margin-top: 20px;
    }
    
    .category-sub-menu li:last-child {
        margin-bottom: 20px;
    }

    .guide-ttl {
        font-size: 1.125rem;
    }

    .guide-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .guide-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }

    .step-num {
        font-size: 1rem;
    }

    .step-ttl {
        font-size: 1rem;
    }


    /* セクション02 スライド
    ------------------------------- */
    .sec02-slideshow img {
        width: 180px;
        margin: 0 6px;
    }


    /* セクション03 メッセージ
    ------------------------------- */
    .sec-03 {
        padding-bottom: 35px;
    }
    
    #msg > .wrapper > .flex-content {
        flex-direction: column;
    }

    .msg-content {
        width: 100%; 
    }

    .msg-ttl {
        font-size: 1.5rem;
        padding-bottom: 25px;
    }

    .msg-txt {
        font-size: 0.9375rem;
        width: 100%;
        padding-bottom: 40px;
    }

    .msg-img {
        width: 80px;
        padding-top: 50px;
        margin: 0 auto;
    }


    /* セクション04 よくある質問
    ------------------------------- */
    .sec-04 {
        padding: 80px 0 80px;
    }

    #faq {
        scroll-margin-top: 80px;
    }

    #faq > .wrapper > .flex-content {
        flex-direction: column;
    }

    .faq-content {
        width: 100%; 
    }

    .faq-ttl {
        font-size: 1.25rem;
        padding-bottom: 25px;
    }

    .faq-list {
        padding-bottom: 20px;
    }

    .faq-q {
        padding: 12px 12px;
    }

    .icon-q {
        width: 28px;
        height: 28px;
        margin-right: 20px;
        font-size: 0.9375rem;
    }

    .q-txt {
        font-size: 1rem;
    }

    .toggle-arrow {
        width: 10px;
        height: 10px;
    }

    .icon-a {
        width: 28px;
        height: 28px;
        margin-right: 20px;
        font-size: 0.9375rem;
    }

    .a-txt {
        font-size: 0.875rem;
    }

    .faq-btn {
        width: 100%;
        flex-direction: column;
    }

    .faq-img {
        width: 80px;
        padding-top: 50px;
        margin: 0 auto;
    }


/* 
----------------------------------------------------------------
カスタムオーダー
---------------------------------------------------------------- */
    .full-layout-container {
        display: block;
        padding: 35px 0 80px;
    }

    .menu-main-content {
        width: 100%;
        margin: 0 auto;
    }

    /* セクション01 カスタムリンク
    ------------------------------- */
    .custom-link-grid {
        grid-template-columns: repeat(1,1fr);
    }

    .custom-link-item {
        height: 150px;
    }

    .custom-txt-en {
        font-size: 1.125rem;
    }

    .custom-txt-ja {
        font-size: 1rem;
    }

    .custom-txt-en,
    .custom-txt-ja {
        position: relative;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .custom-link-item:hover .custom-txt-en,
    .custom-link-item:hover .custom-txt-ja {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }


    /* セクション02 カスタムメニュー
    ------------------------------- */
    .menu-list {
        padding-top: 50px;
    }

    .sub-sec-ttl {
        padding-bottom: 25px;
    }

    .sec-ttl-txt {
        font-size: 1rem;
        padding-bottom: 25px;
    }

    .menu-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 50px 25px;
    }

    .menu-item {
        gap: 10px;
    }

    .menu-grid > a:nth-child(2n+1) .menu-item.fade-in {
        transition-delay: 0s;
    }
    
    .menu-grid > a:nth-child(2n+2) .menu-item.fade-in {
        transition-delay: 0.2s;
    }

    .menu-ttl {
        font-size: 1rem;
    }

    .menu-txt {
        font-size: 0.875rem;
    }

    .menu-amount {
        font-size: 1rem;
    }


    /* サイドバー/ガイド
    ------------------------------- */
    .menu-container, 
    .guide-sidebar-container {
        display: none;
    }


    /* サイドバー
    ------------------------------- */
    .sp-filter-control {
        display: block;
        position: sticky;
        top: 78px; 
        z-index: 990;
        margin: 0;
        background-color: rgba(179, 208, 215, 0.4);
        backdrop-filter: blur(15px);
    }

    .sp-filter-btn {
        width: 100%;
        padding: 20px 0 20px 15px;
        color: var(--color-text);
        border-top: 1px solid var(--color-secondary);
        border-bottom: 1px solid var(--color-secondary);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 10px;
        font-size: 1rem;
        cursor: pointer;
    }

    .sidebar-drawer {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2000;
        visibility: hidden;
        transition: visibility 0.4s;
    }
    .sidebar-drawer.is-open {
        visibility: visible;
    }

    .sidebar-drawer-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        transition: opacity 0.4s;
    }
    .sidebar-drawer.is-open .sidebar-drawer-overlay {
        opacity: 1;
    }

    .sidebar-drawer-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 300px;
        height: 100%;
        background-color: var(--color-bg);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    }
    .sidebar-drawer.is-open .sidebar-drawer-content {
        transform: translateX(0);
    }

    .sidebar-drawer-header {
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--color-secondary);
        color: var(--color-white);
    }
    .sidebar-drawer-header h2 { font-size: 1.25rem; }
    .sidebar-drawer-close {
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--color-white);
        line-height: 1;
    }

    .sidebar-drawer-body {
        padding: 20px;
        overflow-y: auto;
    }
    
    .sidebar-drawer .side-nav-item {
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .sidebar-drawer .side-nav-header {
        padding: 15px 0;
    }


    /* ガイドボタン
    ------------------------------- */
    .sp-order-controls {
        display: block !important;
    }
    
    .sp-guide-fab {
        display: flex;
        opacity: 1;
        visibility: visible;
        position: fixed;
        z-index: 1001;
        transition: transform 0.3s ease, bottom 0.2s ease-out;
        right: 15px;
        bottom: 70px;
        display: flex;
        width: 60px;
        height: 60px;
        border-radius: 8px;
        background-color: var(--color-accent);
        color: var(--color-text-light);
        border: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
    }

    .sp-guide-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.6);
        z-index: 2000;
        display: none;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .guide-item {
        gap: 15px
    }

    .sp-guide-content {
        background-color: var(--color-bg);
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 16px;
        padding: 35px 20px 30px;
        position: relative;
    }

    .sp-guide-content h3 {
        font-size: 1.5rem;
        padding-bottom: 15px;
        color: var(--color-text-light);
    }

    .sp-guide-close {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 1.875rem;
        background: none;
        border: none;
        color: var(--color-text-light);
    }


/* 
----------------------------------------------------------------
バースシリーズ
---------------------------------------------------------------- */
    /* セクション01 カスタムリンク
    ------------------------------- */
    .birth-link-grid {
        display: grid;
        grid-template-columns: repeat(1,1fr);
        gap: 0;
    }


/* 
----------------------------------------------------------------
アバウト
---------------------------------------------------------------- */
    /* アバウトリンク
    ------------------------------- */
    .abt-link {
        padding: 25px 0;
        font-size: 1.125rem;
    }

    .abt-link li {
        gap: 50px;
    }


    /* セクション01 ブランド
    ------------------------------- */
    #brand {
        scroll-margin-top: 80px;
    }

    .brand h2 {
        padding-bottom: 100px;
    }

    .brand-txt {
        font-size: 0.9375rem;
        width: 100%;
    }


    /* セクション02 コンセプト
    ------------------------------- */
    #concept {
        scroll-margin-top: 80px;
    }

    .concept {
        padding-bottom: 35px;
    }

    .concept-list {
        display: flex;
        flex-direction: column;
        gap: 75px;
    }

    .concept-item,
    .concept-item:nth-child(even) {
        flex-direction: column;
        min-height: auto;
    }

    .concept-img-part,
    .concept-txt-part {
        width: 100%;
    }

    .concept-txt-part {
        padding: 40px 0 0;
    }

    .concept-img-bg {
        padding: 40px;
    }

    .concept-label {
        bottom: 10px;
        right: 10px;
        font-size: 1rem;
    }

    .concept-num {
        padding-bottom: 10px;
    }

    .concept-item-ttl {
        gap: 10px;
        padding-bottom: 10px;
    }

    .concept-item-ttl img {
        width: 25px;
        height: 25px;
    }

    .concept-item-ttl h3 {
        font-size: 1.25rem;
    }

    .concept-item-txt {
        font-size: 0.9375rem;
    }


    /* セクション03 カンパニー
    ------------------------------- */
    #company {
        scroll-margin-top: 80px;
    }

    .company {
        padding: 80px 0;
    }

    .company-sub-ttl {
        font-size: 1.25rem;
        font-weight: 400;
    }

    .company-row {
        flex-direction: column;
        padding: 20px 0;
    }

    .company-row dt {
        width: 100%;
        padding-bottom: 8px;
        padding-left: 0;
        font-size: 0.875rem;
    }

    .company-row dd {
        width: 100%;
    }


/* 
----------------------------------------------------------------
お問い合わせ
---------------------------------------------------------------- */
    /* セクション01 お問い合わせ
    ------------------------------- */
    .contact-board {
        padding: 35px 25px;
    }

    .contact-ttl {
        font-size: 1.25rem;
        padding-bottom: 15px;
        font-weight: 400;
    }

    .contact-lead {
        font-size: 0.875rem;
        padding: 20px 0 25px;
    }

    .form-item {
        padding-bottom: 30px;
    }
    
    .form-label {
        font-size: 0.9375rem;
        padding-bottom: 10px;
        gap: 10px;
    }

    .badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .form-input,
    .form-textarea {
        width: 100%;
        padding: 15px;
        font-size: 0.875rem;
}

    .form-textarea {
        height: 180px;
    }

    .privacy-box {
        padding: 20px;
    }

    .privacy-agree {
        gap: 10px;
        padding: 25px 0;
    }

    #agree {
        width: 20px;
        height: 20px;
    }

    #agree:checked::after {
        left: 5px;
        top: 2px;
        width: 6px;
        height: 10px;
    }

    .privacy-agree label {
        font-size: 0.9375rem;
    }

    .submit-btn {
        width: 100%;
        padding: 15px 0;
        font-size: 0.9375rem;
    }


/* 
----------------------------------------------------------------
ご利用ガイド
---------------------------------------------------------------- */
    .user-guide-sec {
        padding: 35px 0 80px;
        display: flex;
        flex-direction: column;
    }


    /* サイドバー
    ------------------------------- */
    .user-guide-sidebar {
        padding: 0 0 25px 20px;
        margin-bottom: 30px;
        display: block !important;
        width: 100% !important;
        position: sticky;
        top: 78px;
        z-index: 900;
        background-color: var(--color-bg);
        border-bottom: 1px solid #ddd;
        font-size: 0.9375rem;
    }

    .sidebar-sticky-content {
        position: static;
        width: 100%;
    }

    .user-guide-sidebar li {
        padding-bottom: 10px;
    }

    .user-guide-sidebar .side-main-icon {
        display: none !important;
    }

    .user-guide-sidebar li.is-current .sub-nav-ttl {
        font-weight: 400;
    }


    /* セクション01 ご利用ガイド
    ------------------------------- */
    .user-guide h2 {
        font-size: 1.25rem;
        padding-bottom: 10px;
    }

    .user-guide-item {
        gap: 40px;
    }

    .user-guide-txt {
        padding: 25px 25px 15px;
    }

    .user-guide-txt h3 {
        font-size: 1rem;
    }

    .user-guide-txt p {
        font-size: 0.875rem;
        padding-bottom: 10px;
        line-height: 1.7;
    }


/* 
----------------------------------------------------------------
特定商取引法に基づく表記
---------------------------------------------------------------- */
    /* セクション01 リスト
    ------------------------------- */
    .law-row dt {
        font-size: 1rem;
        padding-bottom: 8px;
    }

    .law-row dd {
        font-size: 0.875rem;
    }


/* 
----------------------------------------------------------------
プライバシーポリシー
---------------------------------------------------------------- */
    /* セクション01 リスト
    ------------------------------- */
    .privacy p {
        font-size: 0.875rem;
        padding-bottom: 40px;
    }

    .privacy-row {
        padding: 40px 0;
    }

    .privacy-row dt {
        font-size: 1.25rem;
        font-weight: 400;
    }

    .privacy-row dd {
        font-size: 0.875rem;
        color: var(--color-text-light);
        line-height: 1.7;
    }

    .privacy-row dd ol {
        font-size: 0.875rem;
    }

    .privacy-btn .btn {
        min-width: 100%;
    }


    /* フッター
    ------------------------------- */
    .footer {
        padding-top: 50px;
    }

    .footer::after {
        height: 80px;
        background-size: auto 80px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        padding-bottom: 40px;
    }

    .footer-left {
        max-width: 100%;
        padding-bottom: 40px;
    }

    .footer-logo img {
        width: 120px;
        padding-bottom: 20px;
    }

    .footer-sns {
        gap: 15px;
    }

    .footer-sns a {
        font-size: 1.5rem;
    }

    .footer-right {
        max-width: 100%;
        grid-template-columns:120px 120px;
        gap: 25px 55px;
    }

    .column-ttl {
        font-size: 1.125rem;
        padding-bottom: 15px;
    }

    .column-nav li {
        padding-bottom: 10px;
        font-size: 0.875rem;
    }

    .footer-bottom {
        padding: 30px 0;
    }

    .footer-bottom-content {
        flex-direction: column-reverse;
    }

    .footer-info {
        gap: 20px;
        padding-bottom: 20px;
    }


    /* -------------------------------
    バックグラウンドアニメーション
    ------------------------------- */
    .bg-flower-01 {
        width: 450px;
        height: 450px;
        top: 0%;
        left: -30%;
    }
    
    .bg-flower-02 {
        width: 300px;
        height: 300px;
        top: 50%;
        right: -15%;
    }
    
    .bg-flower-03 {
        width: 450px;
        height: 450px;
        top: 55%;
        left: -30%;
    }
    
    .bg-flower-04 {
        width: 450px;
        height: 450px;
        top: 65%;
        right: -30%;
    }


    /* -------------------------------
    トップへ戻るボタン
    ------------------------------- */
    .pagetop {
        font-size: 0.875rem;
        right: 15px;
        bottom: 15px;
        padding-top: 3px;
    }


    /* -------------------------------
    注文ページ（woocommerce）
    ------------------------------- */
    .product-flex-layout {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    .product-images {
        flex: 1;
        max-width: 100%;
        width: calc(100% + 60px);
    }

    .woocommerce-product-gallery {
        margin: 0;
    }

    .flex-viewport {
        border-radius: 8px !important;
    }

    .flex-control-thumbs {
        padding: 0 30px;
        margin-top: 20px;
    }

    .product-title {
        font-size: 2rem;
        padding-bottom: 15px;
    }

    .product-price {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .product-description {
        font-size: 0.9375rem;
        margin-bottom: 30px !important;
    }

    .variations tbody {
        grid-template-columns: repeat(1,1fr);
        gap: 25px;
    }

    .variations {
        margin-bottom: 35px;
    }

    .variations select {
        font-size: 0.9375rem;
    }

    .quantity {
        padding-bottom: 35px;
    }

    .recommend-section {
        padding-top: 50px;
    }

    .recommend-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .recommend-section h2 {
        font-size: 1.5rem;
        padding-bottom: 20px;
    }
    
    .recommend-grid-img {
        cursor: default;
    }
    
    .recommend-grid-img span {
        position: static;
        transform: none;
        color: var(--color-text-light);
        font-size: 1.25rem;
        opacity: 1;
        display: block;
        padding-top: 15px;
    }
    
    .recommend-grid-img::after {
        display: none;
    }
    
    .recommend-grid-img:hover img {
        transform: none;
    }

    body.birth-series-product .recommend-grid {
        grid-template-columns: 1fr;
    }
}

