@charset "UTF-8";

/* ===========================================
   トップページ（.sb-app.sb-top）
   =========================================== */

/* ヘッダー非表示 */
.sb-app.sb-top #header,
.sb-app.sb-top .l-header {
    display: none;
}

/* トップページのpadding-top削除 */
.sb-app.sb-top .top #content {
    padding-top: 0;
}

/* 余白リセット */
.sb-app.sb-top html,
.sb-app.sb-top body {
    margin: 0;
    padding: 0;
}

.sb-app.sb-top .l-content,
.sb-app.sb-top .l-article,
.sb-app.sb-top .p-entry {
    margin: 0 auto;
    padding: 0;
}

/* ナビゲーション */
/* ナビゲーション - SWELLヘッダーと同じ位置に */
.sb-app.sb-top .sb-nav {
    position: absolute;  /* fixed → absolute に変更 */
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 0;
    background: transparent;
}

.sb-app.sb-top .sb-nav__container {
    max-width: var(--contents_max_width, 1200px); 
    margin: 0 auto;
    padding: 0 var(--padding_x, 2rem); 
    display: flex;
    justify-content: flex-end;
}

/* PCでは改行を非表示 */
.sp-only {
    display: none;
}

/* スマホでは改行を表示 */
@media (max-width: 768px) {
    .sp-only {
        display: block;
    }
}

/* レスポンシブ対応 */
@media (max-width: 960px) {
    .sb-app.sb-top .sb-nav__container {
        padding: 0 var(--padding_x_sp, 1rem); /* スマホ用パディング */
    }
}

.sb-app.sb-top .sb-nav__menu {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sb-app.sb-top .sb-nav__menu li {
    margin: 0;
}

.sb-app.sb-top .sb-nav__menu a {
    color: #6c757d;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 0;
    border-radius: 0;
    transition: all 0.3s ease;
    background: none;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    gap: 6px;
}

.sb-app.sb-top .sb-nav__menu a:hover {
    background: none;
    color: #74b9ff;
    text-decoration: none;
    transform: none;
    text-shadow: 0 1px 2px rgba(255,255,255,0.9);
}

.sb-app.sb-top .sb-nav__menu a i {
    font-size: 14px;
}

/* ヒーローセクション */
.sb-app.sb-top .sb-hero {
    min-height: 67vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: 0;
    padding-top: 0;
}

.sb-app.sb-top .sb-hero__content {
    max-width: 900px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

/* ロゴ */
.sb-app.sb-top .sb-hero__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    width: 100%;
}

.sb-app.sb-top .sb-hero__logo * {
    margin: 0;
    padding: 0;
    border: none;
    line-height: 1;
}

.sb-app.sb-top .sb-hero__logo a {
    display: block;
    text-decoration: none;
}

.sb-app.sb-top .sb-hero__logo img,
.sb-app.sb-top .sb-hero__logo .c-headLogo__img,
.sb-app.sb-top .sb-hero__logo .logo-image {
    max-height: 80px;
    max-width: 500px;
    width: auto;
    height: auto;
    margin: 0 auto;
    padding: 0;
    border: none;
    display: block;
    object-fit: contain;
}

.sb-app.sb-top .sb-hero__logo .c-headLogo {
    margin: 0;
    padding: 0;
    display: block;
    width: auto;
    height: auto;
}

.sb-app.sb-top .sb-hero__logo i {
    font-size: 48px;
    color: #c0392b;
}

.sb-app.sb-top .sb-hero__logo h1 {
    font-size: 48px;
    font-weight: bold;
    color: #2c3e50;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sb-app.sb-top .sb-hero__subtitle {
    font-size: 20px;
    color: #5a6c7d;
    margin: 0 0 50px 0;
    font-weight: 800;
    line-height: 1.5;
}

/* 検索オプション */
.sb-app.sb-top .sb-search-options {
    margin-top: 15px;
}

.sb-app.sb-top .sb-search-options__examples {
    color: #7f8c8d;
    font-size: 14px;
}

.sb-app.sb-top .sb-search-options__examples span {
    margin-right: 10px;
}

.sb-app.sb-top .sb-search-options__link {
    color: #74b9ff;
    text-decoration: none;
    margin-right: 15px;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.sb-app.sb-top .sb-search-options__link:hover {
    background: #74b9ff;
    color: white;
    text-decoration: none;
}

/* コンテンツセクション */
.sb-app.sb-top .sb-content {
    padding: 60px 0;
    background: white;
}

.sb-app.sb-top .sb-content__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sb-app.sb-top .sb-content section {
    margin-bottom: 60px;
}

.sb-app.sb-top .sb-content h2 {
    font-size: 28px;
    color: #2c3e50;
    text-align: center;
    margin: 0 0 40px 0;
    font-weight: bold;
    position: relative;
}

.sb-app.sb-top .sb-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #74b9ff;
    border-radius: 2px;
}

/* 最新口コミセクション */
.sb-app.sb-top .sb-reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.sb-app.sb-top .sb-reviews__card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.sb-app.sb-top .sb-reviews__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.sb-app.sb-top .sb-reviews__card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.sb-app.sb-top .sb-reviews__card-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.sb-app.sb-top .sb-reviews__card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sb-app.sb-top .sb-reviews__card-title a:hover {
    color: #74b9ff;
}

.sb-app.sb-top .sb-reviews__card-stars {
    display: flex;
    gap: 2px;
}

.sb-app.sb-top .sb-reviews__star {
    font-size: 14px;
}

.sb-app.sb-top .sb-reviews__star--filled {
    color: #ffd700;
}

.sb-app.sb-top .sb-reviews__star--empty {
    color: #ddd;
}

.sb-app.sb-top .sb-reviews__card-content p {
    margin: 0 0 15px 0;
    color: #5a6c7d;
    line-height: 1.5;
    font-size: 14px;
}

.sb-app.sb-top .sb-reviews__card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

.sb-app.sb-top .sb-reviews__footer {
    text-align: center;
    margin-top: 40px;
}

.sb-app.sb-top .sb-reviews__view-all {
    display: inline-block;
    background: linear-gradient(135deg, #96bae8 0%, #4682b4 100%);
    color: white;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(150, 186, 232, 0.3);
}

.sb-app.sb-top .sb-reviews__view-all:hover {
    background: linear-gradient(135deg, #4682b4 0%, #96bae8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(150, 186, 232, 0.4);
    color: white;
    text-decoration: none;
}

.sb-app.sb-top .sb-reviews__empty {
    text-align: center;
    color: #999;
    font-style: italic;
    grid-column: 1 / -1;
    padding: 40px 20px;
}

/* 危険サイトセクション */
.sb-app.sb-top .sb-danger-sites__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.sb-app.sb-top .sb-danger-sites__card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.sb-app.sb-top .sb-danger-sites__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.sb-app.sb-top .sb-danger-sites__card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.sb-app.sb-top .sb-danger-sites__card-title {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
}

.sb-app.sb-top .sb-danger-sites__card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sb-app.sb-top .sb-danger-sites__card-title a:hover {
    color: #e74c3c;
}

.sb-app.sb-top .sb-danger-sites__badge {
    background: #e74c3c;
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
    white-space: nowrap;
}

.sb-app.sb-top .sb-danger-sites__card-content {
    color: #5a6c7d;
    font-size: 14px;
}

.sb-app.sb-top .sb-danger-sites__info {
    margin-bottom: 10px;
}

.sb-app.sb-top .sb-danger-sites__info span {
    display: block;
    margin-bottom: 5px;
}

.sb-app.sb-top .sb-danger-sites__info i {
    width: 16px;
    margin-right: 8px;
    color: #999;
}

.sb-app.sb-top .sb-danger-sites__comments {
    color: #74b9ff;
    font-weight: 500;
}

.sb-app.sb-top .sb-danger-sites__comments i {
    margin-right: 5px;
}

.sb-app.sb-top .sb-danger-sites__empty {
    text-align: center;
    color: #999;
    font-style: italic;
    grid-column: 1 / -1;
    padding: 40px 20px;
}
