/* カスタマイズ用CSS */
/*改行指定*/
.br_span{
display: inline-block;
}

/* EC-CUBE4の横幅制限を解除 */
.ec-layoutRole .ec-layoutRole__contents {
    max-width: none !important;
    width: 100% !important;
    padding: 0 20px !important;
}

/* ヒーローカルーセル */
.hero-carousel {
    position: relative;
    height: 400px;
    margin-bottom: 50px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: none;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.slide-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
    max-width: 50%;
}

.slide-text h2 {
    font-size: 2.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-btn {
    display: inline-block;
    padding: 15px 35px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-shadow: none;
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.carousel-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.carousel-dot.active {
    background: white;
    transform: scale(1.2);
}

/* 商品グリッド - PC基準 */
.product-grid {
    margin-bottom: 50px;
    overflow: hidden;
    width: 100%;
    max-width: none;
}

.product-grid:after {
    content: "";
    display: table;
    clear: both;
}

.product-card {
    float: left;
    width: calc(25% - 22.5px);
    height: 35vh; /* PC基準: 35vh */
    margin-right: 30px;
    margin-bottom: 30px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}

.product-card:nth-child(4n) {
    margin-right: 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #7fb069;
    background: #f8fcf6;
}

.product-image {
    position: relative;
    height: 15vh; /* PC基準: 20vh (35vhの57.1%比率) */
    overflow: hidden;
    background: #f8f8f8;
    cursor: pointer;
}

.product-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-image-wrapper {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(127, 176, 105, 0.4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.more-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.product-info {
    padding: 15px 10px;
    height: 15vh; /* PC基準: 15vh (35vhの42.9%比率) */
    position: relative;
}

.product-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.5rem; /* PC基準: 1.5rem */
    line-height: 1.9rem; /* PC基準: 1.9rem */
    font-weight: bold;
    cursor: pointer;
}

.product-name a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-name a:hover {
    color: #4a7c59;
    text-decoration: none;
}

.product-spec {
    margin-bottom: 0.1em;
    font-size: 1.3rem; /* PC基準: 1.3rem */
    color: #666;
}

.spec-label {
    font-weight: bold;
    color: #333;
}

.product-price {
    margin-bottom: 1rem;
}

.product-price .price {
    font-size: 1.4rem; /* PC基準: 1.4rem */
    font-weight: bold;
    color: #dc3545;
    margin-right: 4px;
}

.product-price .price-range {
    font-size: 1.4rem; /* PC基準: 1.4rem */
    color: #dc3545;
    font-weight: bold;
}

.product-description {
    font-size: 1.2rem; /* PC基準: 1.2rem */
    line-height: 1.5rem; /* PC基準: 1.5rem */
    color: #666;
    margin-top: 10px;
    height: 3.0rem; /* PC基準: 3.0rem */
    overflow: hidden;
}

/* 検索ナビゲーション */
.ec-searchnavRole {
    margin-bottom: 40px;
    width: 100%;
    max-width: none;
}

.ec-searchnavRole__infos {
    overflow: hidden;
    margin-top: 20px;
    padding: 15px 0;
    border-top: 1px solid #e0e0e0;
}

.ec-searchnavRole__counter {
    float: left;
    color: #666;
    font-size: 1.5rem;
    line-height: 36px;
}

.ec-searchnavRole__actions {
    float: right;
}

.ec-select select {
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: white;
    margin-left: 10px;
    color: #333;
}

.ec-select select:focus {
    border-color: #4a7c59;
    outline: none;
}

/* トピックパス */
.ec-topicpath {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.9rem;
    overflow: hidden;
}

.ec-topicpath li {
    float: left;
}

.ec-topicpath__item {
    color: #666;
}

.ec-topicpath__item a {
    color: #4a7c59;
    text-decoration: none;
}

.ec-topicpath__item a:hover {
    text-decoration: underline;
}

.ec-topicpath__item--active {
    color: #333;
    font-weight: bold;
}

.ec-topicpath__divider {
    margin: 0 10px;
    color: #ccc;
}

/* 高級感のあるサイドメニューのスタイル */
.luxury-category-menu {
    background: linear-gradient(135deg, #31673f 0%, #006036 100%);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(208, 226, 190, 0.3);
    overflow: visible;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    border: 1px solid #006036;
    margin-right: 22px;
}

.luxury-category-header {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    padding: 20px;
    border-bottom: 1px solid #333;
}

.luxury-category-title {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.luxury-category-content {
    padding: 8px 0;
}

.luxury-nav {
    display: block;
    border-radius:5%;
}

/* リストのデフォルトスタイルをリセット */
.luxury-nav-list,
.luxury-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.luxury-nav-item {
    position: relative;
    border-bottom: none;
}

.luxury-nav-item:last-child {
    border-bottom: none;
}

.luxury-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.luxury-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.luxury-nav-link:hover::before {
    left: 100%;
}

.luxury-nav-link:hover {
    background: rgba(255, 215, 0, 0);
    color: #ffd700;
    transform: translateX(8px);
    box-shadow: inset 3px 0 0 #ffd700;
}

.nav-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-arrow {
    font-size: 18px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #999;
}

.luxury-nav-item:hover .nav-arrow {
    transform: translateX(4px);
    color: #ffd700;
}

/* サブメニューのスタイル */
.luxury-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 250px;
    background: linear-gradient(135deg, #b9d08b 0%, #b9d08b 100%);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.5);
    border-radius: 0 8px 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-20px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: none;
    border-left: none;
    list-style-type: none;
}

.luxury-nav-item:hover > .luxury-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.luxury-submenu-item {
    border-bottom:1px solid #fff;
    position: relative;
}

.luxury-submenu-item:last-child {
    border-bottom: none;
}

.luxury-submenu .luxury-nav-link {
    padding: 14px 18px;
    font-size: 13px;
    color: #fff;
}

.luxury-submenu .luxury-nav-link:hover {
    background: rgba(255, 215, 0, 0);
    color: #ffdb16;
    transform: translateX(4px);
    box-shadow: inset 2px 0 0 #ffd700;
}

/* 深いレベルのサブメニュー */
.luxury-submenu .luxury-submenu {
    top: 0;
    left: 100%;
    border-radius: 0 8px 8px 0;
}

.luxury-submenu-item:hover > .luxury-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ホバー時のアニメーション効果 */
@keyframes luxuryGlow {
    0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.3); }
}

.luxury-nav-link:hover {
    animation: luxuryGlow 2s ease-in-out infinite;
}

/* スクロールバーのカスタマイズ（Webkit系ブラウザ） */
.luxury-category-content::-webkit-scrollbar {
    width: 6px;
}

.luxury-category-content::-webkit-scrollbar-track {
    background: #2a2a2a;
}

.luxury-category-content::-webkit-scrollbar-thumb {
    background: #555;
    border-radius: 3px;
}

.luxury-category-content::-webkit-scrollbar-thumb:hover {
    background: #777;
}

/* ======================
   レスポンシブ対応（4列表示対応）
   ====================== */

/* タブレット (1024px以下) - PC比率の約80%、4列表示維持 */
@media (max-width: 1024px) {
    .ec-layoutRole .ec-layoutRole__contents {
        padding: 0 15px !important;
    }
    
    .product-card {
        width: calc(25% - 18px); /* 4列表示：マージン調整 (30px × 0.8 = 24px, しかし4列なので18pxに調整) */
        height: 28vh; /* 35vh × 0.8 = 28vh */
        margin-right: 24px; /* 30px × 0.8 = 24px */
        margin-bottom: 24px; /* 30px × 0.8 = 24px */
    }
    
    .product-card:nth-child(4n) {
        margin-right: 0;
    }
    
    .product-image {
        height: 16vh; /* 20vh × 0.8 = 16vh */
    }
    
    .product-info {
        height: 12vh; /* 15vh × 0.8 = 12vh */
        padding: 12px 8px; /* 15px × 0.8 = 12px, 10px × 0.8 = 8px */
    }
    
    .product-name {
        font-size: 1.2rem; /* 1.5rem × 0.8 = 1.2rem */
        line-height: 1.52rem; /* 1.9rem × 0.8 = 1.52rem */
        margin-bottom: 0.4rem; /* 0.5rem × 0.8 = 0.4rem */
    }
    
    .product-spec {
        font-size: 1.04rem; /* 1.3rem × 0.8 = 1.04rem */
        margin-bottom: 0.08em; /* 0.1em × 0.8 = 0.08em */
    }
    
    .product-price .price,
    .product-price .price-range {
        font-size: 1.12rem; /* 1.4rem × 0.8 = 1.12rem */
    }
    
    .product-price {
        margin-bottom: 0.8rem; /* 1rem × 0.8 = 0.8rem */
    }
    
    .product-description {
        font-size: 0.96rem; /* 1.2rem × 0.8 = 0.96rem */
        line-height: 1.2rem; /* 1.5rem × 0.8 = 1.2rem */
        height: 2.4rem; /* 3.0rem × 0.8 = 2.4rem */
    }
    
    .more-label {
        font-size: 0.96rem; /* 1.2rem × 0.8 = 0.96rem */
    }
}

/* スマートフォン (768px以下) - PC比率の約60%、4列表示維持 */
@media (max-width: 768px) {
    .hero-carousel {
        height: 300px;
        margin-bottom: 30px;
    }
    
    .slide-text {
        position: absolute;
        top: 50%;
        left: 20px;
        right: 20px;
        transform: translateY(-50%);
        max-width: none;
        text-align: center;
    }
    
    .slide-text h2 {
        font-size: 2rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .product-card {
        width: calc(25% - 13.5px); /* 4列表示：マージン調整 (30px × 0.6 = 18px, しかし4列なので13.5pxに調整) */
        height: 21vh; /* 35vh × 0.6 = 21vh */
        margin-right: 8px; /* 30px × 0.6 = 18px */
        margin-bottom: 12px; /* 30px × 0.6 = 18px */
    }
    
    .product-card:nth-child(4n) {
        margin-right: 0;
    }
    
    .product-image {
        height: 12vh; /* 20vh × 0.6 = 12vh */
    }
    
    .product-info {
        height: 9vh; /* 15vh × 0.6 = 9vh */
        padding: 9px 6px; /* 15px × 0.6 = 9px, 10px × 0.6 = 6px */
    }
    
    .product-name {
        font-size: 0.9rem; /* 1.5rem × 0.6 = 0.9rem */
        line-height: 1.14rem; /* 1.9rem × 0.6 = 1.14rem */
        margin-bottom: 0.3rem; /* 0.5rem × 0.6 = 0.3rem */
    }
    
    .product-spec {
        font-size: 0.78rem; /* 1.3rem × 0.6 = 0.78rem */
        margin-bottom: 0.06em; /* 0.1em × 0.6 = 0.06em */
    }
    
    .product-price .price,
    .product-price .price-range {
        font-size: 0.84rem; /* 1.4rem × 0.6 = 0.84rem */
    }
    
    .product-price {
        margin-bottom: 0.6rem; /* 1rem × 0.6 = 0.6rem */
    }
    
    .product-description {
        font-size: 0.72rem; /* 1.2rem × 0.6 = 0.72rem */
        line-height: 0.9rem; /* 1.5rem × 0.6 = 0.9rem */
        height: 1.8rem; /* 3.0rem × 0.6 = 1.8rem */
    }
    
    .more-label {
        font-size: 0.72rem; /* 1.2rem × 0.6 = 0.72rem */
    }
    
    .ec-searchnavRole__infos {
        overflow: visible;
    }
    
    .ec-searchnavRole__counter,
    .ec-searchnavRole__actions {
        float: none;
        display: block;
        margin-bottom: 15px;
    }
    
    .ec-searchnavRole__counter {
        line-height: normal;
        font-size: 0.9rem; /* 1.5rem × 0.6 = 0.9rem */
    }
    
    /* サブメニューのモバイル対応 */
    .luxury-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        left: 0;
        min-width: auto;
        background: #333;
        box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
        border-radius: 0;
        border: none;
        border-top: 1px solid #444;
        margin-top: 0;
        display: none;
    }
    
    .luxury-nav-item:hover > .luxury-submenu {
        display: block;
    }
    
    .luxury-submenu .luxury-nav-link {
        padding-left: 35px;
        background: #333;
    }
    
    .luxury-submenu .luxury-nav-link:hover {
        background: #444;
        transform: none;
        box-shadow: inset 3px 0 0 #ffd700;
    }
}

/* 小さなスマートフォン (480px以下) - PC比率の約50%、4列表示維持 */
@media (max-width: 480px) {
    .product-card {
        width: calc(25% - 11.25px); /* 4列表示：マージン調整 (30px × 0.5 = 15px, しかし4列なので11.25pxに調整) */
        height: 17.5vh; /* 35vh × 0.5 = 17.5vh */
        margin-right: 8px; /* 30px × 0.5 = 15px */
        margin-bottom: 11px; /* 30px × 0.5 = 15px */
    }
    
    .product-card:nth-child(4n) {
        margin-right: 0;
    }
    
    .product-image {
        height: 10vh; /* 20vh × 0.5 = 10vh */
    }
    
    .product-info {
        height: 7.5vh; /* 15vh × 0.5 = 7.5vh */
        padding: 7.5px 5px; /* 15px × 0.5 = 7.5px, 10px × 0.5 = 5px */
    }
    
    .product-name {
        font-size: 0.75rem; /* 1.5rem × 0.5 = 0.75rem */
        line-height: 0.95rem; /* 1.9rem × 0.5 = 0.95rem */
        margin-bottom: 0.25rem; /* 0.5rem × 0.5 = 0.25rem */
    }
    
    .product-spec {
        font-size: 0.65rem; /* 1.3rem × 0.5 = 0.65rem */
        margin-bottom: 0.05em; /* 0.1em × 0.5 = 0.05em */
    }
    
    .product-price .price,
    .product-price .price-range {
        font-size: 0.7rem; /* 1.4rem × 0.5 = 0.7rem */
    }
    
    .product-price {
        margin-bottom: 0.5rem; /* 1rem × 0.5 = 0.5rem */
    }
    
    .product-description {
        font-size: 0.6rem; /* 1.2rem × 0.5 = 0.6rem */
        line-height: 0.75rem; /* 1.5rem × 0.5 = 0.75rem */
        height: 1.5rem; /* 3.0rem × 0.5 = 1.5rem */
    }
    
    .more-label {
        font-size: 0.6rem; /* 1.2rem × 0.5 = 0.6rem */
    }
    
    .slide-text {
        left: 15px;
        right: 15px;
    }
    
    .slide-text h2 {
        font-size: 1.6rem;
    }
    
    .ec-searchnavRole__counter {
        font-size: 0.75rem; /* 1.5rem × 0.5 = 0.75rem */
    }
}

/* ドロワーメニューの基本スタイル */
.ec-drawerRole {
    background-color: #fff !important;
    color: #333 !important;
}

.ec-drawerRole.is_active {
    display: block !important;
    visibility: visible !important;
}

/* カテゴリリストのスタイル */
.ec-categoryNavSP {
    background-color: #fff !important;
}

.ec-categoryNavSP .ec-itemNav {
    color: #333 !important;
    background-color: transparent !important;
}

/* スマートフォン用ドロワーメニューのスタイル */
.ec-categoryNavSP {
    background-color: #fff;
    color: #333;
    padding: 0;
    margin: 0;
}

.ec-itemNav {
    width: 100%;
}

.ec-itemNavList {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

.ec-itemNavItem {
    border-bottom: 1px solid #e0e0e0;
}

.ec-itemNavItem:last-child {
    border-bottom: none;
}

.ec-itemNavLink {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    background-color: #fff;
    transition: background-color 0.3s ease;
    font-size: 16px;
}

.ec-itemNavLink:hover,
.ec-itemNavLink:focus {
    background-color: #f8f9fa;
    color: #4a7c59;
    text-decoration: none;
}

.ec-itemNavChild {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.ec-itemNavChildItem {
    border-bottom: 1px solid #e0e0e0;
}

.ec-itemNavChildItem:last-child {
    border-bottom: none;
}

.ec-itemNavChildLink {
    display: block;
    padding: 12px 20px 12px 40px;
    color: #666;
    text-decoration: none;
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
    font-size: 14px;
}

.ec-itemNavChildLink:hover,
.ec-itemNavChildLink:focus {
    background-color: #e9ecef;
    color: #4a7c59;
    text-decoration: none;
}

/* デスクトップでは通常のサイドメニューを表示、スマホでは非表示 */
@media (min-width: 769px) {
    .ec-categoryNavSP {
        display: none;
    }
    .ec-categoryNavPC {
        display: block;
    }
}

/* スマートフォンでは通常のサイドメニューを非表示、ドロワー用を表示 */
@media (max-width: 768px) {
    .ec-categoryNavPC {
        display: none;
    }
    .ec-categoryNavSP {
        display: block;
    }
}

/* ドロワーメニューが開いている時の強制表示 */
.ec-drawerRole.is_active .ec-categoryNavSP {
    display: block !important;
    visibility: visible !important;
    background-color: #fff !important;
    color: #333 !important;
}

.ec-drawerRole.is_active .ec-itemNavList {
    background-color: #fff !important;
}

.ec-drawerRole.is_active .ec-itemNavLink {
    background-color: #fff !important;
    color: #333 !important;
}

/* ======================
   #drawer用（SP用）スタイル
   ====================== */

/* ドロワーメニューの基本設定 */
.drawer-category-menu {
    background-color: #ffffff;
    color: #333333;
    width: 100%;
    height: 100%;
}

.drawer-category-header {
    background-color: #f8f9fa;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    text-align: center;
}

.drawer-category-title {
    color: #333333;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.drawer-category-content {
    padding: 0;
    background-color: #ffffff;
}

.drawer-nav {
    display: block;
    width: 100%;
}

/* リストのスタイル */
.drawer-nav-list,
.drawer-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.drawer-nav-item {
    border-bottom: 1px solid #e0e0e0;
}

.drawer-nav-item:last-child {
    border-bottom: none;
}

/* リンクのスタイル */
.drawer-nav-link {
    display: block;
    padding: 16px 20px;
    color: #333333;
    text-decoration: none;
    background-color: #ffffff;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 500;
    border: none;
    width: 100%;
    text-align: left;
}

.drawer-nav-link:hover,
.drawer-nav-link:focus,
.drawer-nav-link:active {
    background-color: #f8f9fa;
    color: #4a7c59;
    text-decoration: none;
}

/* サブメニューのスタイル */
.drawer-submenu {
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.drawer-submenu-item {
    border-bottom: 1px solid #e0e0e0;
}

.drawer-submenu-item:last-child {
    border-bottom: none;
}

.drawer-submenu .drawer-nav-link {
    padding: 12px 20px 12px 40px;
    font-size: 14px;
    background-color: #f8f9fa;
    color: #666666;
}

.drawer-submenu .drawer-nav-link:hover,
.drawer-submenu .drawer-nav-link:focus,
.drawer-submenu .drawer-nav-link:active {
    background-color: #e9ecef;
    color: #4a7c59;
    text-decoration: none;
}

/* ドロワーが開いている時の強制スタイル */
.ec-drawerRole .drawer-category-menu {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.ec-drawerRole .drawer-nav-link {
    background-color: #ffffff !important;
    color: #333333 !important;
}

.ec-drawerRole .drawer-nav-link:hover {
    background-color: #f8f9fa !important;
    color: #4a7c59 !important;
}

.ec-drawerRole .drawer-submenu {
    background-color: #f8f9fa !important;
}

.ec-drawerRole .drawer-submenu .drawer-nav-link {
    background-color: #f8f9fa !important;
    color: #666666 !important;
}

.ec-drawerRole .drawer-submenu .drawer-nav-link:hover {
    background-color: #e9ecef !important;
    color: #4a7c59 !important;
}

/*紹介文及び申し込みに関するCSS*/

/* ===== YUKUEサービス紹介セクション ===== */

/* ヒーロー部分（①） */
/* 改行完全対応版 - 最も確実（黄色） */
.yukue-highlight-multiline {
  position: relative;
  display: inline;
  z-index: 0;
}

.yukue-highlight-multiline::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -2px;
  right: -2px;
  height: 45%;
/*  background: linear-gradient(transparent 55%, rgba(255, 235, 59, 0.4) 55%)*/
  background: linear-gradient(90deg, 
    rgba(255, 235, 59, 0.25) 0%,
    rgba(255, 235, 59, 0.6) 50%,
    rgba(255, 235, 59, 0.5) 100%
  );
  z-index: -1;
  border-radius: 3px 2px 3px 1px;
  transform: scaleX(0);
  transform-origin: left;
  animation: markerDraw 0.8s ease-out 0.5s forwards;
}

@keyframes markerDraw {
  to { transform: scaleX(1); }
}

/* 改行完全対応版 - 最も確実（ピンク色） */
.yukue-highlight-multiline_p {
  position: relative;
  display: inline;
  z-index: 0;
}

.yukue-highlight-multiline_p::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -2px;
  right: -2px;
  height: 45%;
/*  background: linear-gradient(transparent 55%, rgba(255, 235, 59, 0.4) 55%)*/
  background: linear-gradient(90deg, 
    rgba(255, 20, 147, 0.25) 0%,
    rgba(255, 20, 147, 0.6) 50%,
    rgba(255, 20, 147, 0.5) 100%
  );
  z-index: -1;
  border-radius: 3px 2px 3px 1px;
  transform: scaleX(0);
  transform-origin: left;
  animation: markerDraw 0.8s ease-out 0.5s forwards;
}

@keyframes markerDraw {
  to { transform: scaleX(1); }
}

/* ホバー効果 */
.highlight-animated:hover::before {
  background: linear-gradient(90deg, 
    rgba(255, 20, 147, 0.4) 0%,
    rgba(255, 20, 147, 0.5) 50%,
    rgba(255, 20, 147, 0.4) 100%
  );
  transition: background 0.2s ease;
}

.c-yukue-hero {
  /*background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);*/
  /*color: #fff;*/
  /*padding: 80px 0;*/
  position: relative;
  overflow: hidden;
  margin-bottom: -1rem;
}

.c-yukue-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /*background-image: 
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 2px, transparent 2px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 1px, transparent 1px);*/
  background-size: 100px 100px;
  background-repeat: repeat;
  pointer-events: none;
}

.c-yukue-hero__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.c-yukue-hero__container_bg {
  position: relative;
  background-color: #f8f9fa; /* 🔑 重要：親要素の背景色を明示 */
  overflow: hidden;
  isolation: isolate; /* スタッキングコンテキスト作成 */
  /* 既存のpadding、margin等はそのまま保持 */
}

/* 背景画像専用レイヤー */
.c-yukue-hero__container_bg::before {
  content: '';
  position: absolute;
  inset: 0;
  
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
    url('/html/user_data/assets/img/top/container_pc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  /* 🔑 ブラウザ別ぼかし効果 */
  /* Chrome/Safari用 */
  -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 98%);
  -webkit-mask-repeat: no-repeat;
  
  /* Firefox用 */
  mask-image: radial-gradient(ellipse at center, white 60%, transparent 98%);
  mask-repeat: no-repeat;
  mask-mode: luminance;
  
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .c-yukue-hero__container_bg::before {
    background-image: 
      linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)),
      url('/html/user_data/assets/img/top/container_sp.jpg');
    
    /* モバイル用調整 */
    -webkit-mask-image: radial-gradient(ellipse at center, black 60%, transparent 98%);
    mask-image: radial-gradient(ellipse at center, white 60%, transparent 98%);
  }
}

.c-yukue-hero__content {
  text-align: center;
}

.c-yukue-hero__title {
  color:#000;
  font-size: 2.0rem;
  line-height: 1.4;
  margin-bottom: 40px;
  position: relative;
  font-family: ab-tombo-bold, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0rem 0rem 2rem 0rem;
}

.c-yukue-hero__title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #27ae60, #2ecc71);
  margin: 20px auto 0;
  border-radius: 2px;
}

.c-yukue-hero__description p {
  font-size: 1.5rem;
  line-height: 2.2rem;
  margin-bottom: 25px;
  opacity: 0.95;
  color:#000;
  padding-top:2rem;
  font-family: "source-han-sans-jp-variable",sans-serif;   font-variation-settings: 'wght' 600;
}

.c-yukue-hero__concept {
  font-size: 1.0rem;
  line-height: 1.5rem;
  padding: 0 1rem;
  color: #000;
  padding-bottom:2rem;
  font-family: "source-han-sans-jp-variable",sans-serif;   font-variation-settings: 'wght' 600;
}

/* 特徴セクション（②③） */
.c-yukue-features {
  background-color: rgb(248, 249, 250, 0.3);
  border-radius: 2rem;
  padding: 80px 0;
  display: block;
}

.c-yukue-features__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.c-yukue-features__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.c-yukue-feature {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
  position: relative;
}

.c-yukue-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}

.c-yukue-feature--producer {
  border-top-color: #ffc107;
  /* position: relative; */
  /* box-sizing: border-box; */
  background: #fff;
  /* box-shadow: 0px 0px 0px 5px #fff; */
  border: dashed 2px #ffc107;
  /* padding: 0.2em 0.5em; */
  /* color: #454545; */

}

.c-yukue-feature--restaurant {
  border-top-color: #3498db;
}

.c-yukue-feature__header {
  display: flex;
  align-items: center;
  justify-content:center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ecf0f1;
}

.c-yukue-feature__title {
  font-size: 2.0rem;
  font-weight: 400;
  color: #2c3e50;
  font-family: ab-tombo-bold, sans-serif;
  margin: 0;
}

.c-yukue-feature__icon {
  font-size: 2rem;
  opacity: 0.8;
}

.c-yukue-feature__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-yukue-feature__item {
  display: flex;
  align-items: baseline;
  margin-bottom: 25px;
  border-radius: 2rem;
  padding:0 0 1.5rem 0;
}

.c-yukue-feature__item:last-child {
  margin-bottom: 0;
}

.c-yukue-feature__bullet {
  font-size: 3rem;
  color: rgba(39, 150, 96, 0.3);
  margin-right: 15px;
  margin-top: 2px;
  margin-right: -2rem;
  flex-shrink: 0;
  transform: rotate(-20deg);
  font-family:  "source-han-sans-jp-variable",sans-serif;   font-variation-settings: 'wght' 900;
}

.c-yukue-feature__content {
  flex: 1;
}

.c-yukue-feature__subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;

}

@media (max-width: 768px) {
  .c-yukue-feature__subtitle{
    font-size: 1.2rem
  }
}

.c-yukue-feature__text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #000;
  margin: 1rem 1rem 0 0rem;
  font-family: "source-han-sans-jp-variable",sans-serif;   font-variation-settings: 'wght' 600;
}

@media (max-width: 768px) {
  .c-yukue-feature__text{
    font-size: 0.9rem
  }
}

/* レスポンシブ対応 */
/* ===== PC表示最適化 ===== */
@media (min-width: 1024px) {
  /* コンテナ幅の拡張 */
  .c-yukue-hero__container,
  .c-yukue-features__container {
    max-width: 1200px;
  }
  
  /* カード配置の最適化 */
  .c-yukue-features__grid {
    gap: 50px;
  }
  
  /* カード内余白の調整 */
  .c-yukue-feature {
    padding: 45px 35px;
  }
  
  /* タイトル部分も少し調整 */
  .c-yukue-hero__title {
    font-size: 2.4rem; /* 2.2rem → 2.4rem */
  }
}

/* 大画面での更なる最適化（オプション） */
@media (min-width: 1400px) {
  .c-yukue-hero__container,
  .c-yukue-features__container {
    max-width: 1300px;
  }
  
  .c-yukue-features__grid {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .c-yukue-hero {
    padding: 60px 0;
  }
  
  .c-yukue-hero__title {
    font-size: 1.2rem;
    margin-top:0rem;
  }
  
  .c-yukue-hero__description p {
    font-size: 1.0rem;
    line-height: 1.5rem;
    padding: 1rem 1rem 0rem 1rem;
    text-align: left;
    font-weight: 400;
  }
  
  .c-yukue-hero__concept {
  font-size: 0.8rem;
  line-height: 1.3rem;
  text-align: left;
  font-family: "source-han-sans-jp-variable",sans-serif;   font-variation-settings: 'wght' 600;
  }
  
  .c-yukue-features {
    padding: 60px 0;
  }
  
  .c-yukue-features__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .c-yukue-feature {
    padding: 30px 20px;
  }
  
  .c-yukue-feature__title {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .c-yukue-hero {
    padding: 40px 0;
  }
  
  .c-yukue-hero__container,
  .c-yukue-features__container {
    padding: 0 15px;
  }
  
  .c-yukue-feature {
    padding: 25px 15px;
  }
}

/* 生産者カードの色を変更 */
.c-yukue-feature--producer { border-top-color: #FFF; }

/* 飲食店カードの色を変更 */
.c-yukue-feature--restaurant { border-top-color: #FFF; }

/* ヒーローの背景色を変更 */
/*.c-yukue-hero { background: linear-gradient(135deg, #FFF, #FFF); }*/

/* セクション間の余白 */
.c-yukue-hero, .c-yukue-features { padding: 60px 0; } /* 数値を調整 */

/* カード間の隙間 */
.c-yukue-features__grid { gap: 30px; } /* 数値を調整 */

/* 手書き風罫線 - 基本版（最も確実） */
.yukue-handwritten {
  text-align:center;
  position: relative;
  padding: 30px 25px;
  /*margin: 1rem 1rem;*/
  background: rgba(248, 249, 250, 1);
  border-radius: 8px 12px 6px 15px;
}

@media (max-width: 768px) {
  .yukue-handwritten {
    position: relative;
    padding: 2rem 1rem;
    margin: -3rem 0 0 0;
    background: rgba(248, 249, 250, 0.8);
    border-radius: 8px 12px 6px 15px;
  }
}

/* メインの手書き風ライン */
.yukue-handwritten::before {
  content: '';
  position: absolute;
  top: 1px;
  left: 0px;
  right: 2px;
  bottom: 1px;
  background: transparent;
  border-radius: 10px 15px 8px 18px;
  
  /* より複雑な影の重ね合わせ */
  box-shadow: 
    0 0 0 2px #279660,                    /* メインライン */
    0 1px 0 2px rgba(39, 150, 96, 0.5),   /* 下方向のズレ */
    1px 0 0 2px rgba(39, 150, 96, 0.4),   /* 右方向のズレ */
    -1px 1px 0 2px rgba(39, 150, 96, 0.3), /* 左下のズレ */
    0 2px 0 1px rgba(39, 150, 96, 0.2),   /* さらに下のズレ */
    0 0 4px 1px rgba(39, 150, 96, 0.15);  /* ぼかし効果 */
  
  transform: rotate(-0.5deg) scale(0.995);
  z-index: -1;
}

/* 追加の線で手書きの重ね描き感を演出 */
.yukue-handwritten::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 5px;
  right: 3px;
  bottom: 6px;
  background: transparent;
  border-radius: 6px 9px 8px 5px;
  
  box-shadow: 
    0 0 0 1px rgba(39, 150, 96, 0.4),
    1px -1px 0 1px rgba(39, 150, 96, 0.2),
    0 0 2px 0 rgba(39, 150, 96, 0.1);
  
  transform: rotate(0.4deg);
  z-index: -1;
}

/* ホバー効果で手書き感を強調 */
.yukue-handwritten:hover::before {
  transform: rotate(-0.7deg) scale(0.998);
  transition: transform 0.3s ease;
}

/* 縞々背景 */
.c-yukue-features-box {
  background: 
    repeating-linear-gradient(
      45deg,
      rgba(39, 174, 96, 0.0) 0px,
      rgba(39, 174, 96, 0.0) 2px,
      rgba(248, 249, 250, 1) 2px,
      rgba(248, 249, 250, 1) 4px
    );
  padding: 0;
}

/*///////////////////////////*/
/* YUKUEメインお申込みボタン */
/*///////////////////////////*/
.yukue-apply-btn {
  /* 基本レイアウト */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  margin: 20px 10px;
  
  /* フォント設定 */
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  line-height: 1.4;
  
  /* YUKUEブランドカラー */
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: #ffffff;
  
  /* 形状とシャドウ */
  border: none;
  border-radius: 50px;
  box-shadow: 
    0 4px 15px rgba(39, 174, 96, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
  
  /* アニメーション */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  
  /* アクセシビリティ */
  -webkit-user-select: none;
  user-select: none;
  white-space: nowrap;
}

/* ホバー効果 */
.yukue-apply-btn:hover {
  background: linear-gradient(135deg, #219a52 0%, #27ae60 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(39, 174, 96, 0.4),
    0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
  text-decoration: none;
}

/* アクティブ効果 */
.yukue-apply-btn:active {
  transform: translateY(0px);
  box-shadow: 
    0 2px 8px rgba(39, 174, 96, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.1);
}

/* フォーカス（アクセシビリティ対応） */
.yukue-apply-btn:focus-visible {
  outline: 3px solid rgba(46, 204, 113, 0.5);
  outline-offset: 3px;
}

/* 矢印アイコン */
.yukue-apply-btn::after {
  content: '→';
  margin-left: 8px;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

.yukue-apply-btn:hover::after {
  transform: translateX(4px);
}

/*///////////////////////////*/
/*  手書き風ボタンデザイン   */
/*///////////////////////////*/

.yukue-apply-btn--handwritten {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
  color: #ffffff;
  padding: 20px 35px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  
  /* 手書き風の不均等な形状 */
  border-radius: 25px 30px 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  
  /* 手書き風の影 */
  box-shadow: 
    2px 3px 0 rgba(39, 174, 96, 0.8),
    4px 6px 8px rgba(0, 0, 0, 0.2);
  
  transform: rotate(-1deg);
  transition: all 0.3s ease;
  position: relative;
}

.yukue-apply-btn--handwritten:hover {
  transform: rotate(0deg) translateY(-2px);
  box-shadow: 
    3px 4px 0 rgba(39, 174, 96, 0.8),
    6px 8px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #219a52 0%, #27ae60 100%);
  color: #ffffff;
}

/* 手書き風の内側罫線 */
.yukue-apply-btn--handwritten::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 4px;
  bottom: 2px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px 25px 23px 27px;
  z-index: -1;
}

.yukue-apply-btn--handwritten::after {
  content: '→';
  margin-left: 8px;
  font-size: 1.1em;
  transition: transform 0.3s ease;
}

/*///////////////////////////*/
/*  資料請求ボタンデザイン   */
/*///////////////////////////*/
/* ===== YUKUE資料請求ボタン（吹き出し付き） ===== */

/* コンテナ */
.yukue-document-cta {
  position: relative;
  display: inline-block;
  margin: 60px 20px 30px 20px; /* 吹き出し分の上余白確保 */
}

/* メインボタン */
.yukue-document-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 35px;
  
  /* YUKUEアクセントカラーのグラデーション */
  background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
  color: #ffffff;
  
  /* フォント設定 */
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  
  /* 形状 */
  border-radius: 12px;
  border: none;
  
  /* 3D効果 */
  box-shadow: 
    0 4px 0 #bf4f08,
    0 6px 15px rgba(230, 126, 34, 0.3),
    0 2px 8px rgba(0, 0, 0, 0.1);
  
  /* アニメーション */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  min-width: 380px;
}

/* ボタン内アイコン */
.yukue-document-btn__icon {
  font-size: 1.8rem;
  margin-right: 12px;
  opacity: 0.95;
}

/* ホバー効果 */
.yukue-document-btn:hover {
  background: linear-gradient(135deg, #d35400 0%, #bf4f08 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 0 #bf4f08,
    0 8px 20px rgba(230, 126, 34, 0.4),
    0 4px 12px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  text-decoration: none;
}

/* アクティブ効果 */
.yukue-document-btn:active {
  transform: translateY(1px);
  box-shadow: 
    0 3px 0 #bf4f08,
    0 4px 10px rgba(230, 126, 34, 0.3);
}

/* フォーカス（アクセシビリティ） */
.yukue-document-btn:focus-visible {
  outline: 3px solid rgba(230, 126, 34, 0.5);
  outline-offset: 3px;
}

/* 🔑 吹き出し部分 */
.yukue-document-cta::before {
  content: 'サービス資料の請求はコチラ！';
  position: absolute;
  top: -2.0rem;
  left: 50%;
  transform: translateX(-50%);
  
  /* 吹き出しスタイル */
  background: #ffffff;
  color: #e67e22;
  padding: 12px 24px;
  border-radius: 25px;
  border: 2px solid #e67e22;
  
  /* フォント */
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
  
  /* 影効果 */
  box-shadow: 
    0 3px 12px rgba(0, 0, 0, 0.1),
    0 1px 6px rgba(0, 0, 0, 0.05);
  
  z-index: 10;
}

/* 🔑 吹き出しの矢印（外枠） */
.yukue-document-cta::after {
  content: '';
  position: absolute;
  top: 0.8rem;
  left: 25%;
  transform: translateX(-50%);
  
  /* 三角形作成 */
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #e67e22;
  
  z-index: 9;
}

/* 吹き出し矢印（内側の白） */
.yukue-document-btn::before {
  content: '';
  position: absolute;
  top: 0.8rem;
  left: 25%;
  transform: translateX(-50%);
  
  /* 内側三角形 */
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #ffffff;
  
  z-index: 11;
}

/*///////////////////////////*/
/* タブレット・モバイル対応  */
/*///////////////////////////*/
@media (max-width: 768px) {
  .yukue-apply-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 30px;
    font-size: 1.1rem;
    margin: 15px auto;
    display: flex;
    text-align: center;
  }
  
  .yukue-apply-btn--large {
    padding: 18px 35px;
    font-size: 1.2rem;
    max-width: 280px;
  }
  
  .yukue-apply-btn--compact {
    width: auto;
    display: inline-flex;
    padding: 12px 24px;
    font-size: 0.95rem;
    max-width: none;
  }
  
  .yukue-apply-btn--handwritten {
    padding: 16px 28px;
    font-size: 1.1rem;
    transform: rotate(0deg); /* モバイルでは回転なし */
  }
}

@media (max-width: 480px) {
  .yukue-apply-btn {
    padding: 14px 25px;
    font-size: 1rem;
    max-width: 280px;
  }
  
  .yukue-apply-btn::after {
    margin-left: 6px;
  }
}

/*///////////////////////////////////////*/
/*  資料請求ボタンデザインレスポンシブ   */
/*///////////////////////////////////////*/
/* タブレット対応 */
@media (max-width: 768px) {
  .yukue-document-btn {
    min-width: 320px;
    padding: 18px 28px;
    font-size: 1.2rem;
  }
  
  .yukue-document-cta::before {
    content: '資料を見たい方はコチラ！'; /* 短縮版 */
    font-size: 0.95rem;
    padding: 10px 18px;
    top: -45px;
  }
    /* モバイルでは矢印位置も調整 */
  .yukue-document-cta::after,
  .yukue-document-btn::before {
    left: 25%;
    top: -0.2rem;
  }
}

/* スマートフォン対応 */
@media (max-width: 480px) {
  .yukue-document-cta {
    margin: 50px 10px 25px 10px;
  }
  
  .yukue-document-btn {
    width: 100%;
    max-width: 300px;
    min-width: auto;
    padding: 16px 20px;
    font-size: 1.1rem;
    flex-direction: column;
    text-align: center;
  }
  
  .yukue-document-btn__icon {
    margin-right: 0;
    margin-bottom: 6px;
    font-size: 1.6rem;
  }
  
  .yukue-document-cta::before {
    content: '資料はこちら！';
    font-size: 0.9rem;
    padding: 8px 15px;
    top: -40px;
    left: 50%;
    width: 80%;
    max-width: 200px;
  }
  
  /* モバイルでは矢印位置も調整 */
  .yukue-document-cta::after,
  .yukue-document-btn::before {
    left: 25%;
    top: -0.2rem;
  }
}