/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 12 2025 | 16:11:47 */
/* SWELLのお知らせバーのデフォルトスタイルを完全に上書き */
.c-gnav__notice .c-gnav__notice__inner {
    padding: 0 !important;
    max-width: none !important;
    width: 100% !important;
}

/* SWELLのお知らせバー自体のコンテナを調整 */
.c-gnav__notice {
    background-color: #2c3e50 !important;
    color: #ffffff !important;
    padding: 8px 0 !important;
    font-size: 14px !important;
    font-weight: 100 !important;
    position: relative !important;
    z-index: 999 !important;
}

/* お知らせバーの内側のコンテナを完全にリセット */
.c-gnav__notice .c-gnav__notice__inner > * {
    width: 100% !important;
    font-weight: 100 !important;
}

.custom-notice-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1460px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    font-weight: 100 !important;
}

/* PC（デスクトップ）でのパディング調整 */
@media (min-width: 1025px) {
    .custom-notice-content {
        padding-left: var(--swl-pad_container, 48px);
        padding-right: var(--swl-pad_container, 48px);
    }
}

/* MacBook 13inch対応 */
@media (min-width: 960px) and (max-width: 1024px) {
    .custom-notice-content {
        padding-left: var(--swl-pad_container, 48px);
        padding-right: var(--swl-pad_container, 48px);
    }
}

/* 左側の連絡先情報 */
.notice-left {
    display: flex;
    gap: 0; /* gapを完全に削除 */
    align-items: center;
    flex-wrap: wrap;
    font-weight: 100 !important;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 5px; /* アイコンとテキストの間隔 */
    color: #ffffff;
    margin-right: 20px; /* アイテム間のスペースはmarginで制御 */
    font-weight: 100 !important;
}

.contact-item:last-child {
    margin-right: 0; /* 最後のアイテムにはmarginなし */
}

.contact-item i {
    font-size: 12px;
    width: 16px;
    text-align: center;
    flex-shrink: 0; /* アイコンサイズ固定 */
    color: #ffffff !important;
}

.contact-item a,
.contact-item span {
    color: #ffffff !important;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap; /* テキストの改行を防ぐ */
    font-weight: 100 !important;
}

.contact-item a:hover {
    color: #3498db !important;
}

/* 右側のメッセージ、ソーシャルアイコンとボタン */
.notice-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* キャッチコピーとリンクのスタイル */
.notice-message {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 100 !important;
}

.message-text {
    color: #ffffff !important;
    font-size: 14px;
    font-weight: 100 !important;
    white-space: nowrap;
}

.hire-link {
    color: #3498db !important;
    text-decoration: none !important;
    font-weight: 100 !important;
    font-size: 14px;
    transition: color 0.3s ease !important;
    white-space: nowrap;
}

.hire-link:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* ソーシャルリンク（将来用に保持、現在は完全非表示） */
.social-links {
    display: none !important;
    visibility: hidden !important;
    gap: 8px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    font-size: 11px;
}

.social-link i {
    color: #ffffff !important;
    font-size: 11px;
}

.social-link:hover {
    background-color: #3498db;
    transform: translateY(-1px);
    color: #ffffff !important;
}

.social-link:hover i {
    color: #ffffff !important;
}

.notice-button {
    background-color: #e74c3c !important;
    color: #ffffff !important;
    padding: 5px 12px !important;
    border-radius: 15px !important;
    text-decoration: none !important;
    font-weight: 100 !important;
    font-size: 12px !important;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
}

.notice-button:hover {
    background-color: #c0392b !important;
    transform: translateY(-1px);
    color: #ffffff !important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .custom-notice-content {
        flex-direction: column;
        gap: 8px;
        padding: 8px 20px;
        max-width: 100%;
    }
    
    .notice-left {
        gap: 0; /* モバイルでもgapを削除 */
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-item {
        font-size: 12px;
        margin-right: 15px; /* モバイルでは少し狭めに */
        margin-bottom: 4px; /* 縦方向のマージン追加 */
        gap: 4px; /* モバイルでのアイコンとテキストの間隔 */
    }
    
    .contact-item:last-child {
        margin-right: 0;
    }
    
    .contact-item i {
        font-size: 11px;
        width: 14px;
    }
    
    .notice-right {
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }
    
    /* モバイルでメッセージを調整 */
    .notice-message {
        gap: 5px;
        text-align: center;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .message-text {
        font-size: 11px;
        text-align: center;
    }
    
    .hire-link {
        font-size: 11px;
    }
    
    .social-link {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .social-link i {
        font-size: 10px;
    }
    
    .notice-button {
        padding: 4px 10px !important;
        font-size: 11px !important;
    }
}

/* タブレット用の調整 */
@media (max-width: 1024px) and (min-width: 769px) {
    .custom-notice-content {
        padding: 0 30px;
    }
    
    .notice-left {
        gap: 0; /* タブレットでもgapを削除 */
    }
    
    .contact-item {
        font-size: 13px;
        margin-right: 18px; /* タブレットでのアイテム間隔 */
        gap: 5px; /* タブレットでのアイコンとテキストの間隔 */
    }
    
    .contact-item:last-child {
        margin-right: 0;
    }
    
    .contact-item i {
        font-size: 12px;
        width: 15px;
    }
    
    /* タブレットでのメッセージ調整 */
    .notice-message {
        gap: 6px;
    }
    
    .message-text {
        font-size: 13px;
    }
    
    .hire-link {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .notice-left {
        flex-direction: column;
        gap: 5px;
    }
    
    .contact-item {
        font-size: 11px;
    }
    
    .c-gnav__notice {
        font-size: 12px !important;
        padding: 6px 0 !important;
    }
}

/* お知らせバーのデフォルトスタイルを上書き */
.c-gnav__notice .c-gnav__notice__inner {
    padding: 0 !important;
}

.c-gnav__notice .c-gnav__notice__inner a {
    color: inherit !important;
}

/* SWELLのお知らせバーの背景色を統一 */
.c-gnav__notice::before {
    display: none !important;
}

/* お知らせバーの閉じるボタンのスタイル調整 */
.c-gnav__notice .c-gnav__notice__close {
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    width: 24px !important;
    height: 24px !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.c-gnav__notice .c-gnav__notice__close:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

/* お知らせバーの表示位置調整 */
.c-gnav__notice {
    position: relative !important;
    z-index: 999 !important;
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
    .c-gnav__notice {
        background-color: #1a1a1a !important;
        border-bottom: 1px solid #333 !important;
    }
}