* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Space Mono', 'Noto Sans Japanese', sans-serif;   
    font-size: 1.2rem;
    min-height: 100%;
    color: #013d73; 
}

.container {
    /* max-width: 1024px; */
    position: relative;
    margin: auto;
}

header, .copyright {
    background-color: #013d73;
    color: #fff;   
}

/* ヘッダー */
header {
    width: 100%;
    height: 180px;
}

.site_logo {
    zoom: 1.7;
}

.headerContainer {
    height: 110px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
    padding: 30px 0;
}

.headerContainer h1 {
    font-size: 45px;
    font-family: 'Dancing Script', cursive;
}

.headerContainer img {
    height: 45px;
}

header nav {
    height: 55px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.header-nav {
    float: left;
    margin: 15px;
    font-weight: bold;
    list-style: none;
}

.header-nav a {
    text-decoration: none;
    color: #fff;
    transition: all 0.5s ease-out;
}

.navigation:hover {
    font-size: 1.3em;
    color: #fd7e7d;
}

.preparation {
    opacity: 0.5; 
}
.preparation:hover {
    cursor: not-allowed;
}


/* ボディ */
main {
    background-color: #f6f9fb;
    /* display: grid;
    grid-template-columns: repeat(6, 1fr);  */
}

.blogWrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    justify-items: center;
    align-items: center;
    /* gap: 20px; */
}

.blogContents {
    background-color: #fff;
    border-radius: 5px;
    width: 250px;
    margin: 10px;
    padding: 10px;
}

.blogContents a {
    outline: none;
    text-decoration: none;
    color: #013D73;
    font-size: 16px;
}

.blogContents p {
    color: #000000;
    font-size: 12px;
}

.active:hover {
    opacity: 0.5;
    transition: all .1s ease-in;
}

.preparing {
    opacity: 0.5;
}

.btn:hover {
    opacity: 0.5;
}

.thumbnail img {
	width: 200px;
    margin: 0 auto;
    text-align: center;
}

/* フッター */
.footerInfo {
    padding: 20px;
}

.footerInfo p {
    font-size: 14px;
    text-align: center;
}

.footerInfo dl {
    float: left;
    display: grid;
    grid-template: 1fr 1fr / 1fr 1fr;
    column-gap: 10px;
    margin: 10px auto;
    padding-left: 12px;
    border-left: 1px solid gray;
    font-size: 12px;
    color: #000000;
    width: 50%;
}

.footerInfo dt {
    grid-column: 1 / 3;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 10px;
}

.footerInfo a {
    font-size: 13px;
    color: #000000;
    text-decoration: none;
    outline: none;
}

.footerInfo a:hover {
    opacity: 0.5;
    text-decoration: underline;
    transition: all .1s ease-in;
}

.copyright {
    clear: left;
    width: 100%;
    text-align: center;
    padding: 20px;
}


/* コンテンツ */
.contentAndImage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    justify-items: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.contentImage {
    border-radius: 3px;
}

.date {
    font-size: 12px;
    padding: 10px 0;
    color: #000;
}

summary {
    font-size: 16px;
    padding: 10px 0;
    color: #000;
}

.pencilIcon {
    height: 12px;
}

article {
    width: 1000px;
    border-radius: 5px;
    background-color: #fff;
    padding: 0px 115px 25px 45px;
    margin: 10px auto;
}

article:hover {
    box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
    transition: all 0.2s ease-in;
}

article h2 {
    font-size: 24px;
}

article p {
    font-size: 14px;
    line-height: 2;
    color: #000;
    word-break: break-all;
}

.articleFirst {
    font-size: 64px;;
}