@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
/*--------------------------------------------
共通 
--------------------------------------------*/
#net_summer_life {
    text-align: center;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
#net_summer_life * {
    box-sizing: border-box;
}
#net_summer_life a {
    text-decoration: none;
}
/*--------------------------------------------
MV
--------------------------------------------*/
#net_summer_life .mv {
    margin: 0;
}
#net_summer_life .mv img {
    max-width: 100%;
}
/*--------------------------------------------
ナビ
--------------------------------------------*/
#net_summer_life .navi_area {
    padding: 26px;
    letter-spacing: .1rem;
    margin: 0px auto;
    background-color: #baddea;
}
#net_summer_life .navi {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 5px;
}
#net_summer_life .navi li {
    font-size: 24px;
    background: #adadad;
    height: 70px;
    position: relative;
}
#net_summer_life .navi li:not(:last-child) {
    margin-right: 18px;
}
#net_summer_life .navi li.navi_last-child {
    margin-right: 0;
}
/*--------------------------------------------
2列
--------------------------------------------*/
#net_summer_life li.navi_2 {
    width: calc((100% - 18px) / 2);
    margin-top: 18px;
}
/*--------------------------------------------
3列
--------------------------------------------*/
#net_summer_life li.navi_3 {
    width: calc((100% - 36px) / 3);
}
/*--------------------------------------------
ナビ＞テキストボタン
--------------------------------------------*/
#net_summer_life .navi li {
    position: relative;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: .4s;
    background: #FFF;
    border: 2px solid #fff;
    flex-grow: 1;
    letter-spacing: -0.02em;
}
#net_summer_life .navi li:hover {
    opacity: .7;
    cursor: pointer;
}
#net_summer_life .navi li a {
    color: #096bb4;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    padding: .8em 0;
}
#net_summer_life .navi li::after {
    display: block;
    content: "";
    width: 8px;
    height: 8px;
    border-top: solid 2px #096bb4;
    border-right: solid 2px #096bb4;
    transform: rotate(45deg);
    position: absolute;
    right: 20px;
    top: 50%;
    margin-top: -5px;
}
#net_summer_life .navi li a .nav-s {
    font-size: 10px;
    font-weight: normal;
}
/*--------------------------------------------
PCSP_表示・非表示切り替え
--------------------------------------------*/
#net_summer_life .pc {
    display: block;
}
#net_summer_life .sp {
    display: none;
}
@media screen and (max-width:480px) {
/*--------------------------------------------
ナビ
--------------------------------------------*/
    #net_summer_life .navi_area {
        padding: 10px 5px;
        margin: 0px auto;
    }
    #net_summer_life .navi li:not(:last-child) {
        margin-right: 5px;
    }
    #net_summer_life .navi li.navi_last-child {
        margin-right: 0;
    }
    #net_summer_life .navi li::after {
        right: 8px;
    }
/*--------------------------------------------
2列
--------------------------------------------*/
    #net_summer_life li.navi_2 {
        font-size: calc(((100 / 375) * 12) * 1vw);
        width: calc((100% - 20px) / 2);
        height: 13vw;
        margin-top: 5px;
    }
    #net_summer_life li.navi_2 :not(:last-child) {
        margin-right: 0;
    }
/*--------------------------------------------
3列
--------------------------------------------*/
    #net_summer_life li.navi_3 {
        font-size: calc(((100 / 375) * 12) * 1vw);
        width: calc((100% - 30px) / 3);
        height: 13vw;
    }
/*--------------------------------------------
PCSP_表示・非表示切り替え
--------------------------------------------*/
    #net_summer_life .pc {
        display: none;
    }
    #net_summer_life .sp {
        display: block;
    }
}