    @charset "UTF-8";

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

    body {
        line-height: 2.0;
        font-size: 16px;
        font-family: 'Be Vietnam Pro', 'Noto Sans JP', sans-serif;
        font-weight: 400;
        letter-spacing: 0.05em;
        color: #111;
        margin: 0;
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden;
        width: 100%;
    }
    a, a:link, a:visited { color: #0068B7; transition: all 0.3s ease; }
    a:hover { text-decoration: none; opacity: 0.7; }
    img { max-width: 100%; height: auto; vertical-align: bottom; }
    .pc { display: block; }
    .mb { display: none; }
    
    /* Responsive Switch */
    @media screen and (max-width: 768px) {
        .pc { display: none; }
        .mb { display: block; }
    }

    /* --- Loading Screen --- */
    #loader-bg {
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        left: 0;
        background: #a9a9a9; 
        z-index: 9999;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: opacity 1.0s ease, visibility 1.0s ease;
    }

    #loader-bg.loaded {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    #loader {
        text-align: center;
        color: #fff;
    }

    .loader-text-wrap {
        opacity: 0;
        animation: logoFadeIn 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    }

    @keyframes logoFadeIn {
        0% { opacity: 0; transform: translateY(15px); }
        100% { opacity: 1; transform: translateY(0); }
    }
    
    /* Page Top Button */
    #pagescroll a {
        background: #333;
        border-radius: 2px;
        box-sizing: border-box;
        color: #FFF;
        font-family: 'Be Vietnam Pro', sans-serif;
        font-size: 0.7rem;
        font-weight: 400;
        letter-spacing: 0.15em;
        z-index: 999;
        position: fixed;
        top: 99%;
        right: 1%;
        width: 50px;
        height: 50px;
        margin: -60px 0 0 -50px;
        opacity: 0.8;
        padding: 18px 0 0;
        text-align: center;
        text-decoration: none;
        transition: background 0.3s ease;
    }
    #pagescroll a:before {
        content: '';
        position: absolute;
        top: 12px;
        left: 50%;
        width: 8px;
        height: 8px;
        border-left: solid 1px #FFF;
        border-top: solid 1px #FFF;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        margin: 0 0 0 -5px;
    }
    #pagescroll a:hover {
        background: #000;
    }
    
    /* --- Header (Seamless & Fixed) --- */
    header {
        position: fixed;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
        transition: background-color 0.5s ease, padding 0.5s ease, box-shadow 0.5s ease;
    }
    
    /* Scrolled State */
    header.scrolled {
        background-color: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0,0,0,0.03);
    }
    
    header .logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 25px 40px;
        background: transparent;
        transition: padding 0.5s ease;
    }
    header.scrolled .logo {
        padding: 15px 40px;
    }
    
    header .logo h1 { margin: 0; width: 220px; line-height: 1; }
    
    header .logo h1 img {
        height: auto;
        width: 100%;
        filter: brightness(0) invert(1);
        transition: filter 0.5s ease;
    }
    header.scrolled .logo h1 img {
        filter: none; 
    }
    
    header .logo .contact-area { display: flex; align-items: center; }
    
    header .logo .tel { 
        font-size: 1.1rem; 
        font-weight: 400;
        margin-right: 30px;
        font-family: 'Be Vietnam Pro', sans-serif;
        color: #fff;
        text-shadow: 0 0 4px rgba(0,0,0,0.3);
        transition: color 0.5s ease;
        letter-spacing: 0.1em;
    }
    header.scrolled .logo .tel {
        color: #333;
        text-shadow: none;
    }
    
    header .logo .btn-contact {
        background: #fff; 
        color: #000; 
        padding: 12px 25px; 
        text-decoration: none; 
        font-size: 0.85rem;
        font-weight: 500;
        letter-spacing: 0.05em;
        border-radius: 2px;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background 0.3s, color 0.3s, opacity 0.3s;
    }
    header .logo .btn-contact svg {
        width: 16px;
        height: 16px;
        fill: currentColor;
    }
    
    header.scrolled .logo .btn-contact {
        background: #000; 
        color: #fff;
    }
    header .logo .btn-contact:hover {
        opacity: 0.8;
    }
    
    header .navi { 
        background-color: transparent; 
        border-top: 1px solid rgba(255,255,255,0.15);
        transition: border-color 0.5s ease;
    }
    header.scrolled .navi { 
        border-top: 1px solid rgba(0,0,0,0.05); 
    }
    
    header .navi ul {
        display: flex; justify-content: center; list-style: none; margin: 0; padding: 0;
    }
    header .navi ul li a {
        color: #FFF;
        display: block; 
        padding: 18px 40px; 
        text-decoration: none; 
        font-size: 0.85rem; 
        font-weight: 400;
        letter-spacing: 0.15em;
        font-family: 'Be Vietnam Pro', sans-serif;
        text-shadow: 0 0 4px rgba(0,0,0,0.3);
        transition: color 0.5s ease, opacity 0.3s;
    }
    header.scrolled .navi ul li a {
        color: #333;
        text-shadow: none;
    }
    header .navi ul li a:hover {
        opacity: 0.6;
    }
    
    /* --- Main Sections --- */
    main section { padding: 0; text-align: center; }
    main .inner { width: 100%; max-width: 1200px; margin: 0 auto; }
    
    /* --- Visual (Hero) Swiper --- */
    

    .hero {
        width: 100%;
        height: 95vh;
        min-height: 550px;
        position: relative;
        overflow: hidden;
    }
    
    .hero-text {
        position: absolute;
        top: 50%;
        left: 50%; 
        transform: translate(-50%, -50%); 
        z-index: 10;
        text-align: center; 
        color: #fff;
        pointer-events: none;
        text-shadow: 0 0 30px rgba(0,0,0,0.2);
    }
    
    .hero-title {
        font-family: 'Be Vietnam Pro', sans-serif;
        color: #fff;
        font-size: 4rem;
        font-weight: 100;
        letter-spacing: 0.25em;
        margin: 0;
        line-height: 1;
    }
    
    .hero-title::after {
        content: "";
        display: block;
        width: 40px;
        height: 1px;
        background: rgba(255,255,255,0.6);
        margin: 20px auto 20px; 
    }
    
    .hero-subtitle {
        font-family: 'Be Vietnam Pro', sans-serif;
        font-size: 1rem;
        font-weight: 300;
        letter-spacing: 0.4em;
        text-transform: uppercase;
        margin: 0;
        padding-left: 2px;
        opacity: 0.9;
    }
    
    .swiper {
        width: 100%;
        height: 100%;
    }
    
    .swiper-slide {
        overflow: hidden;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    
    .swiper-slide picture {
        display: block;
        width: 100%;
        height: 100%;
    }
    
    .swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: brightness(0.85);
    }

    
    /* Sections with Titles */
    .content-section { padding: 120px 0; }
    .section-title { margin-bottom: 80px; }
    
    main h2 {
        font-size: 2.8rem;
        font-weight: 300;
        line-height: 1;
        margin: 0 0 50px;
        padding: 0;
        text-align: center;
        font-family: 'Be Vietnam Pro', sans-serif;
        letter-spacing: 0.2em;
        color: #222;
    }
    
    /* Concept Section */
    .concept-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 80px;
    }
    .concept-container + .concept-container {
        margin-top: 140px;
    }
    
    .concept-text { width: 45%; }
    .concept-text h3 {
        font-size: 1.8rem;
        font-weight: 400;
        margin: 0 0 30px;
        line-height: 1.5;
        font-family: 'Be Vietnam Pro', sans-serif;
        letter-spacing: 0.1em;
    }
    .concept-text p {
        font-size: 0.95rem;
        line-height: 2.2;
        margin-bottom: 25px;
        color: #444;
    }
    .concept-image { width: 50%; }
    .concept-image img { width: 100%; height: auto; display: block; }
    
/* Lineup Grid Styles (修正版) */
    .lineup-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
    }
    .lineup-item {
        width: 260px;
        margin-bottom: 20px;
        text-align: left;
    }
    .lineup-item a {
        display: block;
        color: #333;
        text-decoration: none;
        transition: opacity 0.3s;
    }
    
    .lineup-thumb {
        width: 260px;
        height: 312px;
        background: #f5f5f5;
        margin-bottom: 20px;
        /* 親要素で枠を固定し、はみ出した部分（拡大時）を隠す */
        overflow: hidden; 
        position: relative;
    }
    
    .img-wrap {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .lineup-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        /* ▼変更点：滑らかな拡大のためのトランジション（0.6秒） */
        transition: transform 0.6s ease;
        transform: scale(1.0); /* 初期状態 */
    }

    /* ▼変更点：マウスホバー時に画像を1.1倍に拡大 */
    .lineup-item a:hover .lineup-thumb img {
        transform: scale(1.1);
        opacity: 1; /* 透明度は変えない */
    }
    
    /* ※以前あった .img-hover 関連のCSSはすべて削除しました */

    .lineup-caption { font-size: 0.9rem; line-height: 1.6; }
    .lineup-name {
        font-weight: 500;
        margin: 0;
        font-family: 'Be Vietnam Pro', 'Noto Sans JP', sans-serif;
        letter-spacing: 0.08em;
    }
    .lineup-size {
        font-size: 0.75rem;
        color: #777;
        margin: 8px 0 0;
        font-family: 'Be Vietnam Pro', sans-serif;
        letter-spacing: 0.05em;
    }
    
    /* Catalog Embed */
    .catalog-section { background: #fcfcfc; padding: 120px 0; }
    .iframe-wrapper {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 56.25%;
        background: #fff;
        box-shadow: 0 20px 50px rgba(0,0,0,0.03);
        overflow: hidden;
    }
    .iframe-wrapper iframe {
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%; border: none;
    }
    
    /* Contact Footer */
    .contact-section { padding: 120px 0; background: #fff; }
    .contact-btn-large {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: #111;
        color: #fff !important;
        padding: 22px 90px;
        font-size: 1.0rem;
        font-weight: 400;
        text-decoration: none;
        letter-spacing: 0.2em;
        margin-top: 40px;
        transition: background 0.3s, transform 0.3s, opacity 0.3s;
        border: 1px solid #111;
    }
    .contact-btn-large:visited {
        color: #fff !important;
    }
    .contact-btn-large:hover {
        background: #fff;
        color: #111 !important;
        opacity: 1;
    }
    .contact-btn-large svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }
    
    /* Footer */
    footer { background: #1a1a1a; color: #777; padding: 60px 0; text-align: center; font-size: 0.75rem; }
    footer a, footer a:link, footer a:visited { 
        color: #fff; 
        margin: 0 20px; 
        text-decoration: none; 
        letter-spacing: 0.1em; 
        transition: opacity 0.3s; 
    }
    footer a:hover { opacity: 0.7; }
    footer small {
        font-family: 'Be Vietnam Pro', sans-serif;
        letter-spacing: 0.15em;
        margin-top: 30px;
        display: block;
        color: #555;
    }
    
    /* Mobile Adjustments */
    @media screen and (max-width: 768px) {
        header .logo { padding: 15px 20px; }
        header.scrolled .logo { padding: 15px 20px; }
        
        header .logo h1 { width: 160px; }
        header .logo .contact-area { display: none; }
        
        header .navi { 
            display: block; 
            background: rgba(0,0,0,0.6);
            border-top: none;
        }
        header.scrolled .navi {
            background: rgba(255,255,255,0.85);
        }
        header .navi ul {
            justify-content: space-evenly;
            padding: 8px 0;
        }
        header .navi ul li a {
            padding: 5px;
            font-size: 0.7rem;
        }
        
        /* Hero Title SP */
        .hero-text {
            left: 50%; 
            transform: translate(-50%, -50%); 
        }
        
        .hero-title {
            font-size: 2.5rem; 
            letter-spacing: 0.15em;
        }
    
        .hero-subtitle {
            font-size: 0.8rem;
            letter-spacing: 0.2em;
        }

        .hero {
            height: auto; 
            min-height: 0;
            aspect-ratio: 1 / 1;
        }
        
        .content-section { padding: 80px 0; }
        .section-title { margin-bottom: 50px; }
        main h2 { font-size: 2.2rem; }

        main .inner {
            padding-left: 15px;
            padding-right: 15px;
        }
        
        .concept-container { 
            display: flex; 
            flex-direction: column; 
            gap: 40px; 
        }
        .concept-container + .concept-container { margin-top: 80px; }
        
        .concept-text { 
            width: 100%; 
            margin-bottom: 0; 
            padding: 0 10px; 
            box-sizing: border-box; 
            order: 1; 
        }
        .concept-text h3 { font-size: 1.5rem; margin-bottom: 20px; }
        .concept-image { 
            width: 100%; 
            order: 2; 
        }
        
        .iframe-wrapper { padding-bottom: 120%; }
        
        .lineup-list { gap: 15px; }
        .lineup-item { width: 47%; max-width: 280px; margin-bottom: 25px; }
        .lineup-thumb { width: 100%; height: auto; aspect-ratio: 280 / 336; margin-bottom: 12px; }
        .lineup-name { font-size: 0.8rem; }
        .lineup-size { font-size: 0.65rem; }
        
        .contact-btn-large { padding: 18px 40px; width: 70%; box-sizing: border-box; }
    }

    .fade-up {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 2.2s cubic-bezier(0.25, 1, 0.5, 1), transform 2.2s cubic-bezier(0.25, 1, 0.5, 1);
        will-change: opacity, transform;
    }

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

    .delay-100 { transition-delay: 0.1s; }
    .delay-200 { transition-delay: 0.2s; }
    .delay-300 { transition-delay: 0.3s; }
    .delay-400 { transition-delay: 0.4s; }
    .delay-500 { transition-delay: 0.5s; }

    /* ▼▼▼ パララックス用CSS ▼▼▼ */
    .p-photo {
        position: relative;
        width: 100%;
        height: 400px;
        overflow: hidden;
        margin-bottom: 0;
    }
    .p-photo__inner {
        width: 100%;
        height: 100%;
        position: relative;
    }
    .p-photo__img {
        position: absolute;
        top: -20%;
        left: 0;
        width: 100%;
        height: 140%;
        will-change: transform;
    }
    .p-photo__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    @media screen and (max-width: 768px) {
        .p-photo {
            height: 250px;
        }
    }

    .floating-btn {
        position: fixed;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background-color: #000;
        color: #fff !important;
        padding: 20px 10px;
        z-index: 9990;
        
        writing-mode: vertical-rl;
        text-orientation: upright;
        white-space: nowrap;
        
        font-family: 'Be Vietnam Pro', 'Noto Sans JP', sans-serif;
        font-size: 0.9rem;
        letter-spacing: 0.15em;
        text-decoration: none;
        border-top-left-radius: 6px;
        border-bottom-left-radius: 6px;
        box-shadow: -4px 0 15px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
        line-height: 1;
    }
    .floating-btn:hover {
        background-color: #333;
        padding-right: 16px;
        opacity: 1;
    }
    
    @media screen and (max-width: 768px) {
        .floating-btn {
            font-size: 0.75rem;
            padding: 16px 8px;
            letter-spacing: 0.1em;
        }
    }
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    overflow-y: auto; 
    padding: 20px;
}

.modal-content {
    background: #fff;
    width: 100%;
    max-width: 900px; 
    margin: 40px auto;
    position: relative;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* close-btn */
.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    text-align: center;
    line-height: 40px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    transition: background 0.3s;
}
.modal-close-btn:hover {
    background: #000;
}

#modal-body {
    line-height: 1.8;
}

/* loading... */
.modal-loader {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    color: #fff;
}

/* ▼▼▼ LINEUP modal　▼▼▼ */
.modal-product-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px; 
    align-items: flex-start;
    text-align: left;
}
.modal-col-left {
    width: calc(50% - 20px); 
    box-sizing: border-box;
}
.modal-col-right {
    width: calc(50% - 20px);
    box-sizing: border-box;
}
.modal-col-left .product-details_media,
.modal-col-left .js-single-swiper,
.modal-col-left .swiper,
.modal-col-left .swiper-wrapper,
.modal-col-left figure,
.modal-col-left picture, 
.modal-col-left .slide-media {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important; 
    display: block !important;
}
.modal-col-left .swiper-slide {
    width: 100% !important;
    opacity: 1 !important;
    transform: none !important;
    display: block !important;
    margin: 0 0 30px 0 !important;
    height: auto !important;
    position: relative !important;
}
.modal-col-left img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important; 
    min-width: 0 !important;    
    object-fit: contain !important; 
    display: block;
}
.modal-col-left .swiper-controller,
.modal-col-left .thumb-wrapper {
    display: none !important;
}
.modal-col-left .slide-title {
    font-size: 0.8rem;
    color: #666;
    margin-top: 5px;
    margin-bottom: 0;
}
/* PC title */
.modal-col-right h1.product-title {
    font-size: 1.8rem; margin-bottom: 30px; padding-bottom: 10px;
    border-bottom: 1px solid #ddd; line-height: 1.4; overflow-wrap: break-word;
}
/* spec */
.modal-col-right table {
    width: 100%; border-collapse: collapse; font-size: 0.9rem; margin-bottom: 30px;
    table-layout: fixed;
}
.modal-col-right th, .modal-col-right td {
    padding: 12px 10px; border-bottom: 1px solid #eee; text-align: left; vertical-align: top;
    word-wrap: break-word; overflow-wrap: break-word; word-break: break-word;
}
.modal-col-right th { width: 30%; font-weight: bold; color: #333; background-color: #f9f9f9; }

/* icon */
.modal-col-right .standard { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start; }
.modal-col-right .standard div {
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    margin: 0; background: #fff; border: 1px solid #ddd;
    border-radius: 4px; overflow: hidden; min-width: 45px; vertical-align: top;
}
.modal-col-right .standard div::before {
    display: block; width: 100%; padding: 3px 0; font-size: 0.65rem;
    font-weight: bold; color: #fff; text-align: center; line-height: 1; background-color: #666;
}
.modal-col-right .standard div span { display: block; padding: 5px 8px; font-size: 0.9rem; font-weight: 500; color: #333; line-height: 1; white-space: nowrap; }

.modal-col-right .standard .clothes::before { content: "size"; background-color: #333; }
.modal-col-right .standard .shoes::before { content: "shoes"; background-color: #555; }
.modal-col-right .standard .heel::before { content: "heel"; background-color: #777; }
.modal-col-right .standard .shaft::before { content: "shaft.S"; background-color: #999; }
.modal-col-right .standard .rearShaft::before { content: "shaft.H"; background-color: #999; }

.modal-col-right dl { margin-top: 20px; }
.modal-col-right dt h2 {
    font-size: 1.1rem; font-weight: 500; color: #222; margin: 0 0 10px 0;
    padding-bottom: 5px; border-bottom: 1px solid #eee; line-height: 1.4; text-align: left;
}
.modal-col-right dd { margin-left: 0; font-size: 0.9rem; line-height: 1.8; color: #333; }
.modal-col-right .product-details_component { margin-top: 30px; padding-top: 20px; border-top: 1px dashed #eee; }
.modal-col-right .packshot-alternative img { width: 100%; height: auto; display: block; margin-bottom: 10px; border: 1px solid #f0f0f0; }
.modal-col-right .packshot-alternative p { font-size: 0.8rem !important; color: #666 !important; margin-bottom: 0 !important; }

/* ▼▼▼ sp ▼▼▼ */
.modal-title-sp { display: none; } 

@media screen and (max-width: 768px) {
    .modal-product-wrapper {
        display: block;
        gap: 0;
    }
    .modal-col-left {
        width: 100% !important;
        max-width: none !important; 
        padding: 0 !important;
        margin: 0 -15px 30px -15px !important;
        width: calc(100% + 30px) !important;
    }
    .modal-col-right {
        width: 100%;
        padding: 0;
    }
    .modal-title-sp {
        display: block; font-size: 1.5rem; margin-bottom: 20px; padding-bottom: 10px;
        border-bottom: 1px solid #ddd; line-height: 1.4; text-align: left; width: 100%;
    }
    .modal-col-right h1.product-title { display: none; }
    .modal-col-right table, .modal-col-right tbody, .modal-col-right tr, .modal-col-right th, .modal-col-right td {
        display: block; width: 100%;
    }
    .modal-col-right th { background-color: #f5f5f5; border-bottom: none; padding: 8px 10px; }
    .modal-col-right td { padding: 10px 10px 20px; border-bottom: 1px solid #eee; }
}

/* ▼▼▼ inquiry modal ▼▼▼ */
#item-modal.modal-overlay {
    padding-top: 50px;
}
#bownow-embed-wrapper {
    width: 100%;
    margin-top: 40px;
    background: #fff; 
}

/* iframe */
#bownow-embed-wrapper iframe {
    width: 100% !important;
    max-width: 800px !important; 
    margin: 0 auto !important;
    display: block;
    min-height: 500px; 
}
#confirm-modal .modal-content-confirm {
    max-width: 600px; 
    text-align: center;
    padding: 60px 20px;
    height: auto; 
}
.confirm-msg {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 40px;
    line-height: 1.6;
    font-family: 'Be Vietnam Pro', 'Noto Sans JP', sans-serif;
}
.confirm-btn {
    width: 100%;
    max-width: 380px;
    margin-top: 0; 
    display: inline-flex;
    justify-content: center;
}

.confirm-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #888;
}

@media screen and (max-width: 768px) {
    #confirm-modal .modal-content-confirm {
        padding: 50px 20px;
        margin: 100px auto; 
        width: 90%;
    }
    .confirm-msg {
        font-size: 1.0rem;
        margin-bottom: 30px;
    }
    .confirm-btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 0.9rem;
    }
}

/* ▼▼▼ footer contents ▼▼▼ */
.modal-footer-content {
    width: 100%;
    padding: 10px 0; 
    text-align: left;
    font-size: 0.85rem; 
    line-height: 1.8;
    box-sizing: border-box;
    word-wrap: break-word; 
    overflow-wrap: break-word;
}

.modal-footer-content img {
    max-width: 100%;
    height: auto;
}

/* title */
.modal-footer-content h2 {
    font-size: 1.3rem; 
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
    text-align: center;
    font-weight: 500;
}

/* === 会社概要テーブル（PC/共通） === */
.modal-footer-content table {
    width: 100%;
    border-collapse: collapse;
    border-top: 1px solid #ccc;
    border-left: 1px solid #ccc;
    margin-bottom: 30px;
    table-layout: fixed; 
}

.modal-footer-content th,
.modal-footer-content td {
    padding: 12px;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    word-break: break-all; 
    overflow-wrap: break-word;
}

.modal-footer-content th {
    background: #f9f9f9;
    width: 25%; 
    font-weight: bold;
    color: #333;
    font-size: 0.85rem;
}
.modal-footer-content td {
    font-size: 0.85rem;
}

.modal-footer-content h3 {
    font-size: 1.0rem;
    margin: 25px 0 10px;
    border-left: 3px solid #333;
    padding-left: 10px;
    font-weight: 500;
}
.modal-footer-content h4 {
    font-size: 0.9rem;
    margin: 20px 0 8px;
    font-weight: bold;
}
.modal-footer-content p {
    margin-bottom: 1.2em;
}

/* === スマホ・タブレット対応（768px以下） === */
@media screen and (max-width: 768px) {
    
    .modal-footer-content {
        font-size: 0.8rem; 
    }

    .modal-footer-content table,
    .modal-footer-content tbody,
    .modal-footer-content tr,
    .modal-footer-content th,
    .modal-footer-content td {
        display: block;
        width: 100%;
        box-sizing: border-box; 
    }

    .modal-footer-content table {
        border-left: none;
        border-right: none;
    }

    .modal-footer-content th {
        width: 100%;
        background: #eee;
        padding: 8px 10px;
        border-right: none; 
        border-left: 1px solid #ccc; 
        border-right: 1px solid #ccc;
    }

    .modal-footer-content td {
        width: 100%;
        padding: 10px 10px 20px;
        border-right: none;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc;
        margin-bottom: -1px; 
    }
    .lineup_list, .lineup-container { /* ←実際のクラス名に変更してください */
    display: flex !important;
    flex-wrap: wrap !important;
  }
  /* 個々のアイテム（liなど）に指定 */
  .lineup_list li, .lineup-item { /* ←実際のクラス名に変更してください */
    width: 50% !important; /* 強制的に半分（2列）にする */
    margin-right: 0 !important; /* 余計な余白を消す */
    margin-left: 0 !important;
    box-sizing: border-box !important; /* 枠線を含めた幅計算にする */
  }
}

body.no-scroll {
    overflow: hidden !important;
    width: 100% !important; 
    box-sizing: border-box;
}
/* --- モーダル内のレンタル価格エリアの装飾（スペック表風に修正） --- */
.modal-col-right .price-list {
    /* 枠、背景をリセット */
    background: none;
    border: none;
    border-radius: 0;
    
    /* スペック表の行と同じスタイルにする */
    padding: 0;
    margin-bottom: 0; /* すぐ下のテーブルとくっつける */
    border-top: 1px solid #eee; /* テーブルの上線 */
    border-bottom: 1px solid #eee; /* テーブルの区切り線 */
    
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9rem; /* スペック表と同じフォントサイズ */
    width: 100%;
}

/* すぐ下のテーブルの上線を消して、一体化させる */
.modal-col-right .price-list + table {
    border-top: none;
}

/* 「レンタル価格」というラベル（テーブルのth風） */
.modal-col-right .price-category {
    margin: 0;
    /* スペック表のthと同じスタイル */
    width: 30%; /* テーブルのthと同じ幅 */
    padding: 12px 10px;
    background-color: #f9f9f9; /* テーブルヘッダーの背景色 */
    font-weight: bold;
    color: #333;
    box-sizing: border-box;
    flex-shrink: 0;
}
.modal-col-right .price-category::after {
    content: ""; /* コロン削除 */
}

/* 価格部分（テーブルのtd風） */
.modal-col-right .price {
    margin: 0;
    /* スペック表のtdと同じスタイル */
    width: 70%; /* 残りの幅 */
    padding: 12px 10px;
    font-weight: normal; /* 普通の太さ */
    font-size: 0.9rem; /* 大きさを揃える */
    color: #333;
    box-sizing: border-box;
}

/* スマホ表示時の調整（スペック表のスマホ表示に合わせる） */
@media screen and (max-width: 768px) {
    .modal-col-right .price-list {
        display: block;
        border-top: none;
        border-bottom: none;
    }
    
    /* スマホでのラベル（th風） */
    .modal-col-right .price-category {
        width: 100%;
        padding: 8px 10px;
        background-color: #f5f5f5; /* スマホのth背景色 */
        border-bottom: none;
    }
    
    /* スマホでの価格（td風） */
    .modal-col-right .price {
        width: 100%;
        padding: 10px 10px 20px;
        border-bottom: 1px solid #eee;
        font-size: 0.9rem;
    }
    
    /* スマホではテーブルの上線を復活させる */
    .modal-col-right .price-list + table {
        border-top: 1px solid #eee;
    }
}