<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Gym Sagasu共通スタイル */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: 1200px;
}

/* ナビゲーションスタイル */
.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* カードスタイル */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 20px;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* ボタンスタイル */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
    border-color: #0062cc;
}

.btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

/* フッタースタイル */
footer a {
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* タグスタイル */
.tag {
    display: inline-block;
    background-color: #f0f0f0;
    border-radius: 15px;
    padding: 3px 10px;
    font-size: 12px;
    margin-right: 5px;
    margin-bottom: 5px;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
    }
}

/* アクセシビリティ向上 */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
</pre></body></html>