/* gaymovie ページ専用スタイル */

.gaymovie-content {
    max-width: 100%;
}

.page-title {
    background-color: #ffffff;
    border-bottom: 2px solid #0099cc;
    display: flex;
    align-items: center;

}

.page-title::before {
    content: '';
    display: block;
    width: 12px;
    height: 30px;
    background-color: #0099cc;
    flex-shrink: 0;
    margin-left: 0;
    margin-right: 8px;
}

.page-title h2 {
    font-size: 16px;
    color: #0099cc;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

/* 説明セクション */
.notice-section {
    background-color: #ffffff;
    border-bottom: 1px solid #d0d0d0;
    padding: 12px 15px;
    margin-bottom: 20px;
}

.notice-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.notice-section li {
    font-size: 12px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.6;
}

.notice-section li:last-child {
    margin-bottom: 0;
}

.notice-icon {
    color: #0099cc;
    font-weight: bold;
    margin-right: 4px;
}

.notice-section a {
    color: #0099cc;
    text-decoration: none;
}

.notice-section a:hover {
    text-decoration: underline;
}

/* ゲイ動画セクション */
.gaymovie-section {
    margin-bottom: 30px;
    background-color: #fff;
    border: 1px solid #ddd;
}

.gaymovie-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 20px;
    justify-items: center;
    max-width: 520px;
    margin: 0 auto;
}

.gaymovie-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 240px;
    height: 295px;
}

.gaymovie-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    overflow: visible;
}

.gaymovie-wrapper iframe {
    width: 240px;
    height: 295px;
    display: block;
    border: none;
    overflow: visible;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .page-title {
        margin-bottom: 15px;
    }

    .page-title h2 {
        font-size: 14px;
        padding: 10px 0;
    }

    .notice-section {
        padding: 10px 12px;
        margin-bottom: 15px;
    }

    .notice-section li {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .gaymovie-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
        padding: 15px;
    }

    .gaymovie-item {
        max-width: 200px;
    }

    .gaymovie-wrapper iframe {
        width: 180px;
        height: 221px;
    }
}

@media (max-width: 480px) {
    .gaymovie-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .gaymovie-item {
        max-width: 240px;
    }

    .gaymovie-wrapper iframe {
        width: 240px;
        height: 295px;
    }
}
