@charset "UTF-8";


/* 共通部分
------------------------------- */
html {
    font-size: 110%;
}

body {
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #432;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* HEADER
------------------------------- */
.logo {
    width: 250px;
    margin-top: 25px;
}

.main-nav {
    display: flex;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}

.main-nav li {
    margin-left: 20px;
}

.main-nav a {
    color: #432;
}

.main-nav a:hover {
    color: #0bd;
}

.page-header {
    display: flex;
    justify-content: space-between;
}

.wrapper {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 4%;
}

/* フッター
------------------------------- */
footer {
    background: #004B9E;
    text-align: center;
    padding: 26px 0;
}

footer p {
    color: #fff;
    font-size: 0.875rem;
}

/* HOME
------------------------------- */
.home-content {
    text-align: center;
    margin-top: 20%;
    margin-bottom: 20%;
}

.home-content p {
    font-size: 1rem;
    margin: 10px 0 42px;
}


/* menu
------------------------------- */
.menu-content {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
}

.menu-content p {
    font-size: 1rem;
    margin: 10px 0 42px;
}


/* 新着情報 */
.news-contents {

    justify-content: space-between;
    margin-top: 5%;
    margin-bottom: 30px;
}

.post-info {
    position: relative;
    padding-top: 0px;
    margin-bottom: 10px;
}

.post-date {
    background: #004B9E;
    border-radius: 10%;
    color: #fff;
    width: 60px;
    height: 60px;
    font-size: 1rem;
    text-align: center;
    position: absolute;
    top: 0;
    padding-top: 3px;

}

.post-date span {
    font-size: 0.8rem;
    border-top: 1px rgba(255, 255, 255, .5) solid;
    padding-top: 0px;
    display: block;
    width: 60%;
    margin: 0 auto;
}

.post-title {
    font-size: 1rem;
    font-weight: normal;
}

.post-title,
.post-cat {
    margin-left: 80px;
}




/* 見出し */
.page-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: normal;
}

/* 見出し */
.menu-title {
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: normal;
}

.menu-blue {
    font-size: 1rem;
    background: #004B9E;
    color: #fff;
    padding: 1px 20px;
    text-transform: uppercase;
    font-weight: normal;
    margin: 5px;
    text-align: center;
}

.menu-green {
    font-size: 1rem;
    background: #008A32;
    color: #fff;
    padding: 1px 20px;
    text-transform: uppercase;
    font-weight: normal;
    margin: 5px;
    text-align: center;
}


/* 背景画像 */
.big-bg {
    background-size: cover;
    background-position: center top;
}

#home {
    background-image: linear-gradient(#ffffff, #ffffff);
    min-height: 100vh;
}

#home .page-title {
    text-transform: none;
}


/* 会社案内背景画像 */
.big-bg {
    background-size: cover;
    background-position: center top;
}

#campany {
    background-image: linear-gradient(#ffffff, #ffffff);
    min-height: 100vh;


    /*
    background-image: url(../images/main-campany.jpg);
    min-height: 100vh;
    background-position-y: 100px;
    */
}

#campany .page-title {
    text-transform: none;
}



/* メニューグリッド */
.grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    margin-top: 6%;
    margin-bottom: 50px;
}

.big-box {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
}



/*トップページのメニューアイテム*/
.menu-item {
    position: relative;
}

.menu-item p {
    position: absolute;
    font-size: 0.8rem;
    font-weight: bold;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.menu-item img {
    filter: opacity(40%);
}





/* モバイル版
------------------------------- */
@media (max-width: 599px) {
    .page-title {
        font-size: 1.5rem;
    }

    .page-header {
        flex-direction: column;
        align-items: center;
    }

    /* HEADER */
    .main-nav {
        font-size: 1rem;
        margin-top: 10px;
    }

    .main-nav li {
        margin: 0 20px;
    }

    /* HOME */
    .home-content {
        margin-top: 20%;
    }

    /* NEWS */
    .news-contents {
        flex-direction: column;
    }

    article,
    aside {
        width: 100%;
    }

    #news .page-title {
        margin-top: 30px;
    }

    aside {
        margin-top: 60px;
    }

    .post-info {
        margin-bottom: 30px;
    }

    .post-date {
        width: 70px;
        height: 70px;
        font-size: 1rem;
    }

    .post-date span {
        font-size: 0.875rem;
        padding-top: 2px;
    }

    .post-title {
        font-size: 1.375rem;
    }

    .post-cat {
        font-size: 0.875rem;
        margin-top: 10px;
    }

    .post-title,
    .post-cat {
        margin-left: 80px;
    }

    .main-nav {
        display: flex;
        font-size: 0.7rem;
        text-transform: uppercase;
        margin-top: 34px;
        list-style: none;
    }

    html {
        font-size: 100%;
    }
    

}