@charset "utf-8";

/* 全体 */
body {
    background-color: white;
    color: #000;
    margin: 0px;
}

.outer-container {
    width: 100%;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-image: url(img/bg002.png);
}

.inner-container {
    border: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

header {
    border: none;
    display: flex;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 20px;
}

menu {
    border: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

menu li {
    display: inline;
}

main {
    border: none;
    background-color: white;
    margin: 10px 10px 200px 10px;
    padding: 20px 20px 20px 20px;
    border-radius: 20px;
}

/* レスポンシブ対応 スマホ */  
@media screen and (min-width: 0px){
    main {
        width: 100%;
    }
    footer {
        width: 100%;
    }
    .bgimage {
        display: none;
    }
}

/* レスポンシブ対応 PC等 */
@media screen and (min-width: 800px){
    main {
        max-width: 46em;
    }
    footer {
        max-width: 32em;
    }
}

section.site-title {
    font-size: 60px;
    font-weight: bold;
    padding: 0px;
    line-height: 60px;
}

article {
    border: none;
    margin-bottom: 80px;
}

section {
    border: none;
}

blockquote {
    margin: 1.5em 0 1.5em 2em;
    padding-left: 10px;
    border-left: 8px solid #000;
}

/* リンク */
a {
    color: #000;
    text-decoration: underline;
}
a:hover {
    text-decoration: none;
}

section.site-title a {
    text-decoration: none;
}

section.site-title a:hover {
    text-decoration: underline;
}

/* --- テキストマークアップなど --- */
.day p {
    text-indent: 0em;
}

.day ul {
    list-style-type: square;
}

.day-header {
    display: flex;
    font-weight: bold;
    gap: 10px;
    border-bottom: 1px dashed;
}

.footnote {
    display: block;
    font-size: small;
}
.fn-entry {
    display: flex;
    margin-bottom: 0.5em;
}
.fn-header {
    min-width: 3em;
}

#log {
    color: #dcdcdc;
}

table .year {
	color: #000000;
    width: 4em;
}

td {
    width: 2em;
}