html {
    font-family: sans-serif;
}

body {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
    background: #ffffff;
}
ul {
    padding: 0;
    list-style: none;
}

a {
    color: #4b5564;
    text-decoration: none;
}

.undrln {
    text-decoration: underline;
}

a:hover {
    color: #000;
}

h3 {
    margin-bottom: 3px;
}

hr {
    height: 1px;
    border: 0;
    border-top: 1px solid #e5e7eb;
}

.main-contents {
    padding: 2rem;
    font-size: 15px;
    color: #4b5564;
    background: #fff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer {
    padding: 2rem;
    font-size: 15px;
    color: #4b5564;
    background: #fff;
}

.footer__navi-heading {
    font-weight: 600;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 2rem;
}

.footer__navi li {
    margin-bottom: 0.75rem;
}

.footer__social a {
    display: inline-block;
    width: 24px;
    opacity: 0.7;
}

.footer__social a:not(:last-child) {
    margin-right: 16px;
}

@media (min-width: 768px) {
    .md-flex {
        display: flex;
    }

    .md-justify-between {
        justify-content: space-between;
    }

    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* BMS */
.bms-container {
    margin: 0.2rem 0 4rem 0;
}
.bms-title-container {
    display: flex;
    align-items: flex-end;
    margin-bottom: 0.1rem;
}
.bms-title {
    font-weight: bold;
    font-size: larger;
    margin-right: 0.5rem;
    margin-top: 2px;
    margin-bottom: 2px;
}
.bms-datail-container {
    /* display: flex; */
    /* 子要素を横並びにする */
    flex-wrap: wrap;
    /* 狭い画面で子要素が折り返されるようにする */
    gap: 5px;
    /* 子要素間の隙間を指定 */
}

.bms-box {
    flex: 1;
    /* 子要素が均等に幅を取るようにする */
    min-width: 310px;
    /* 子要素の最小幅を指定 */
    text-align: left;
}

iframe,.bms-image {
    border-radius: 6px;
}

/* BMS-END */
/* Discography */
.year-text {
    margin: 0.3rem 0 0.1rem 0;
}
.discography-row {
    display: flex;
}
.date-field {
    width: 50px;
}
.title-field {
    flex: 1;
}
/* Discography-END */
