@charset "utf-8";
@font-face{
    font-family: 'Noto Sans JP';
    font-display: swap;
    src: url('/resources/font/NotoSansJP-VF.woff2') format('woff2');
    font-weight: 400 900;
}

html{
    font-family: 'Noto Sans JP', sans-serif;
    font-variation-settings: "wght" 400;
    font-size: 16px;
    height: 100%;
}

body{
    height: 100%;
}

.wrap{
    padding-bottom: env(safe-area-inset-bottom);
    background-color: #fff;
    width: 100%;
}

.heading{
    text-align: center;
    padding: 1.5rem 1.25rem;
    font-variation-settings: "wght" 900;
}

.navLink{
    border: solid 1.5px #000;
    background-color: #fff;
    display: flex;
	justify-content: center;
	align-items: center;
    text-align: center;
    font-variation-settings: "wght" 900;
    font-size: 1.2rem;
}

/*Linksここから*/
.navLink, .navLink:visited, .navLink:hover, .navLink:active {
    color: #00f;
}

.grid01.navLink, .grid01.navLink:visited, .grid01.navLink:hover, .grid01.navLink:active {
    list-style: none;
    text-decoration: none;
    color: #fff;
}

.grid01{
    border-right-width: 0;
    border-left-width: 0;
    background-color: #000;
}

.grid02, .grid04{
    border-left-width: 0;
}

.grid03, .grid05{
    border-right-width: 0;
}

.grid04, .grid05{
    border-bottom-width: 3px;
}
/*Linksここまで*/

/*フッター*/
.footer{
    margin-top: 60px;
    width: 100%;
    background-color: #000;
    text-align: center;
    height: 28px;
}

.footer small{
    font-size: 0.75rem;
    color: #fff;
    line-height: 28px;
}
/*フッターここまで*/

/*グリッド定義ここから*/
/*SPグリッド定義ここから*/
.gridWrap{
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 56px 56px 56px;
}

.grid01{
    grid-column: 1 / 3;
    grid-row: 1 / 1;
}

.grid02{
    grid-column: 1 / 2;
    grid-row: 2;
}

.grid03{
    grid-column: 2 / 3;
    grid-row: 2;
}

.grid04{
    grid-column: 1 / 2;
    grid-row: 3;
}

.grid05{
    grid-column: 2 / 3;
    grid-row: 3;
}
/*SPグリッド定義ここまで*/

/*PCグリッド定義ここから*/
@media screen and (min-width: 768px){
    .gridWrap{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
        grid-template-rows: 56px;
    }

    .grid01{
        grid-column: 1 / 2;
        grid-row: 1;
    }

    .grid02{
        grid-column: 3 / 4;
        grid-row: 1;
    }

    .grid03{
        grid-column: 4 / 5;
        grid-row: 1;
    }

    .grid04{
        grid-column: 2 / 3;
        grid-row: 1;
    }

    .grid05{
        grid-column: 5 / 6;
        grid-row: 1;
    }
}
/*PCグリッド定義ここまで*/
/*グリッド定義ここまで*/


/*PCスタイルここから*/
@media screen and (min-width: 768px){
    /*Links調整ここから*/
    .navLink{
        border: solid 1.5px #000;
        border-top-width: 3px;
        border-bottom-width: 3px;
        font-size: 1rem;
    }

    .grid01{
        border-left-width: 0;        
    }

    .grid05{
        border-right-width: 0;        
    }
    /*Links調整ここまで*/
}
/*PCスタイルここまで*/