span {
    display: inline-block;
}

.intro {
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    text-align: center;
}

.overview img {
    max-width: 100%;
    max-height: 320px;
}

.container {
    min-width: 300px;
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 3fr;
}

@media screen and (max-width: 760px) {
    .container {
        margin-left: auto;
        margin-right: auto;
        grid-template-columns: 1fr;
    }
}

.content {
    margin: 5px;
    box-shadow: 0px 0px 10px #cccccc;
    -moz-box-shadow: 0px 0px 10px #cccccc; /* Firefox用 */
    -webkit-box-shadow:0px 0px 10px #cccccc; /* Safari,Google Chrome用 */;
    border-radius: 10px;
    background: #ffffff;
}

.content .title {
    width: 100%;
    height: 35px;
    border-radius: 10px 10px 0 0;
    background-color: brown;
}

.content .title h1 {
    font-family: "Dosis", sans-serif;
    font-size: 150%;
    font-weight: 400;
    margin-left: 10px;
    color: #ffffff;
    float: left;
}

@media screen and (max-width: 760px) {
    .content-title h1 {
        text-align: center;
    }
}

.matter {
    position: relative;
    padding: 2px 8px 8px 10px;

}

.updates {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 1;
    grid-row-end: 2;
}

.updates .matter ul {
    list-style: none;
    font-size: 12px;
}

.matter .link-button {
    display: inline-flex;
    padding: 5px;
    float: right;
}

.matter .link-button a {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin: 2px;
    padding: 2px 8px;
    border-radius: 100px;
    background-color: peru;
    color: white;
}

.matter .link-button a:hover {
    display: inline-block;
    animation: shake .15s 2;
    /* transform: scale(1.05); */
}

li.update-item {
    position: relative;
    font-size: 10pt;
	padding-bottom: 6px;
	background-image: repeating-linear-gradient(90deg, tan 0, tan 2px, rgba(0,0,0,0), 0px, rgba(0,0,0,0) 4px);
	background-size: 4px 2px;
	background-repeat: repeat-x;
	background-position: center bottom;
    vertical-align: text-top;
}


li.update-item .date {
    display: flex;
}

li.update-item .date h2 {
    font-size: 130%;
    font-weight: 600;
}

li.update-item .date .elapsed {
    font-size: 75%;
    font-weight: normal;
    margin-left: 16px;
    padding: 1px 6px;
    border-radius: 100px;
    background-color: darkgray;
    color: #fff;
}

li.update-item .subject h2 {
    font-size: 130%;
    font-weight: 600;
	padding-bottom: 2px;
}

.latest-work {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 2;
    border-radius: 10px;
}

@media screen and (max-width: 760px) {
    .latest-work {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 3;
    }
}

.topics {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 2;
    grid-row-end: 3;
}

@media screen and (max-width: 760px) {
    .topics {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 3;
        grid-row-end: 4;
    }
}
