/* 共通部分

 ==========================================================================*/

html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f4f5f7;
    font-family: "Kosugi", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.main-content {
    flex: 1;
}

/* ======= フッター ======= */
.footer {
    margin-top: auto;
    margin-bottom: 10px;
}

/* width: 320px～ 　モバイルファースト

==========================================================================*/

/* ======= ナビゲーション ======= */

/* ヘッダー */
.header {
    height: 100%;
}

.logo img {
    width: 180px;
    height: auto;
}

.navbar {
    background-color: #f4f5f7;
    height: 20%;
    width: 100vw;
}

.navbar-nav {
    gap: 20px;
}

.nav {
    font-size: 16px;
}

.nav-item a {
    color: black;
    font-size: 1.5em;
    font-weight: 400;
}

.navigation {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* ソリューション一覧　ドロップダウン */
.dropdown-menu {
    border-style: none;
}

.dropdown-menu .dropdown-item {
    font-size: 1.3rem;

}

/* ======= ナビゲーションビュー ======= */
.nav-view {
    height: 18vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/newsList_top.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-bottom: 50px;
}

.nav-view h1 {
    margin: 0;
    font-size: 1.4rem;
}

/* ======= ニュースコンテンツ ======= */
.news-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.news-content:last-child {
    margin-bottom: 0;
}

/* タイトル */
.title-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.title-statement p {
    font-size: 0.8rem;
    color: #f4f5f7;
}

/* ニュースタグ */
.news-tag {
    display: flex;
    justify-content: center;
    align-items: center;
}

.apple-taste-tag {
    background-color: #FF0000;
}

.grape-taste-tag {
    background-color: #7030A0;
}

.comprehensive-tag {
    background-color: #277B39;
}

.news-tag p {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 20px;
    font-size: 0.8rem;
    color: white;
    border-radius: 30px;
}

/* ニュース更新日 */
.news-date {
    display: flex;
    justify-content: center;
    align-items: center;
}

.news-date p {
    font-size: 0.8rem;
    color: #f4f5f7;
}

/* ニュース本文 */
.news-container {
    display: flex;
    justify-content: center;
}

.news-statement {
    width: 90%;
}

.news-statement p {
    font-size: 0.8rem;
    text-decoration: none;
    color: black;
}

/* ======= トップページへ戻るボタン ======= */
.topPage-btn {
    display: inline-flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    width: 150px;
    height: 35px;
    border-radius: 30px;
    border-style: none;
    background-color: black;
    color: white;
    margin-top: 40px;
}

/* ======= フッター ======= */
.footer-statement {
    text-align: center;
}

.footer-statement p {
    margin-bottom: 0;
    font-size: 0.5rem;
}

.footer-statement a {
    text-decoration: none;
    color: #212529;
}

.campany-logo {
    text-align: center;
    margin-top: 20px;
    height: auto;
}

.campany-logo img {
    width: 150px;
    height: auto;
}

.privacy-policy {
    margin-right: 5px;
}

.privacy-policy-statement {
    margin-left: 5px;
}

/* width: 400px～ 

==========================================================================*/
@media (min-width: 400px) {

    /* ナビゲーション */
    .logo img {
        width: 220px;
    }

    /* フッター */
    .footer-statement p {
        font-size: 0.6rem;
    }
}

/* width: 500px～ 

==========================================================================*/
@media (min-width: 500px) {}

/* width: 576px～ 

==========================================================================*/
@media (min-width: 576px) {}

/* width: 768px～ 

==========================================================================*/
@media (min-width: 768px) {
    .nav-view {
        height: 25vh;
    }

    .title-nav {
        gap: 30px;
    }
    
    .title-statement p {
        font-size: 1.2rem;
    }

    .news-statement p {
        font-size: 1rem;
    }

    .news-tag p {
        height: 30px;
        width: 80px;
        font-size: 1rem;
    }

    .news-date p {
        font-size: 1rem;
    }
}

/* width: 992px～ 

==========================================================================*/
@media (min-width: 992px) {

    /* ナビゲーション */
    /* ソリューション一覧　ドロップダウン */
    .dropdown-menu {
        background-color: #f4f5f7;
        width: 100%;
    }

    .dropdown-menu .dropdown-item {
        font-size: 1.1rem;
    }

    /* ニュース　本文 */
    .news-statement a {
        width: 100%;
        text-decoration: none;
        color: black;
    }

    .news-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 90%;
        margin: 0 auto;
    }

    /* フッター */
    .footer-statement p {
        font-size: 0.7rem;
    }
}

/* width: 1200px～ 

==========================================================================*/
@media (min-width: 1200px) {}
