/* トレンドページのスタイル */
body{
    margin: 0;
}

/*----new SP  header end------*/
.header-wrapper a {
    color: #fff;
    list-style: none;
    text-decoration: none;
}

/* ハンバーガーメニューのスタイル */
.hamburger-menu {
    display: block;
    /* position:fixed; */
    /* left: 10px; */
    /* top: 10px; */
    cursor: pointer;
    align-items: center;
    margin: 9px;
    margin-top: 15px;
}

.hamburger-menu img{
    height: 20px;
}

/* 国選択メニュー */
.country-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 60px; /* ヘッダーの高さ分下にずらす */
    left: -100%;
    width: 300px;
    height: 100%;
    background-color: rgba(14, 34, 98, 0.99);
    padding: 20px;
    align-items: left;
    justify-content: top;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    max-height: 1000px;
}

/* メニューを開いた時 */
.country-menu.active {
    display: flex;
    left: 0;
}

/* 閉じるボタンのスタイル */
.close-menu {
    display: none;
    /* position: absolute; */
    /* right: 15px; */
    /* top: 10px; */
    cursor: pointer;
    text-align: right;
    margin: 9px;
    margin-top: 15px;
    margin-left: 60px;
}

.close-menu img{
    height: 30px;
    width: auto;
}

.close-menu.active {
    display: block;
}

/* 国選択メニューのリスト */
.country-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.country-list li {
    margin: 10px 0;
}

.country-list a {
    text-decoration: none;
    font-size: 16px;
    color: white;
    font-weight: bold;
    display: block;
    padding: 5px;
    text-align: left;
    /* border-radius: 5px; */
    /* background: rgba(255, 255, 255, 0.2); */
}

.country-list a:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* ナビゲーションメニューのスタイル */
.header__menu {
    display: flex;
}

.trends-container {
    text-align: center;
    margin: 50px auto;
    max-width: 1200px;
}

.trends-title {
    font-size: 32px;
    color: #0E2262;
    margin-bottom: 30px;
}

.trends-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.trends-grid a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #0E2262;
    font-weight: bold;
    width: 200px;
    text-align: center;
}

.trends-grid img {
    width: 200px;
    height: 120px;
    object-fit: cover;
    /* border-radius: 5px; */
    transition: transform 0.3s;
}

.trends-grid img:hover {
    transform: scale(1.05);
}

.footer-section {
    background-color: #0E2262;
}

footer {
    width: 100%;
    background-color: #0E2262;
    padding: 50px;
}

footer a {
    color: #fff;
    list-style: none;
    text-decoration: none;
}

.footer-left {
    width: 80%;
    margin:0 auto;
    /* display: flex; */
    justify-content: space-between;
    padding-top: 25px;
    /* float: left; */
}

.bottom-category {
    /* display: flex; */
    text-decoration: none;
    list-style: none;
    max-width: 80%;
    /* justify-content: space-between; */
    color: #fff;
    text-align: left;
    flex-wrap: wrap;
    /* white-space: nowrap; */
}

.footer a {
    color: #fff;
    text-decoration: none;
    list-style: none;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .trends-grid {
        flex-direction: column;
        align-items: center;
    }
}