html {
    height: 100%;
}
body {
    font-family: BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
    line-height: 1.5rem;
    height: 100%;
}
.wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
/* mainカラー */
.main-color {
    color: #adb5bd;
}
/* min/max-width 設定 */
.my-mw {
    min-width: 700px;
    max-width: 700px;
    overflow: hidden;
}

.navbar {
    padding: 8px;
    align-items: center;
}
.header-logo {
    height: 24px;
    width: auto;
    border-radius: 50%;
}

.third-party-logo {
    display: flex;
    width: 180px;
    align-items: center;  /* 中央揃えにする */
    justify-content: center; /* テキストと画像を中央寄せ */ 
}
.third-party-logo svg {
    margin-left: 5px;
}

.navbar-end {
    display: flex;
    align-items: center;
}
.navbar-end svg {
    height: 24px;
    width: 24px;
    fill: #adb5bd;
}
.main {
    padding-top: 54px;
    bottom: 54px;
    width: 100%;
    overflow-x: scroll;
    overflow: hidden;
}
.card-container {
    min-width: 200px;
}
.frontcover-container {
    width: 200px;
    height: 120px;
    overflow: hidden;
}

.frontcover-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-header {
    text-align: center;
}

/*profile画像*/
.profile-image {
    width: auto;
    height: 200px;
}
.icon-image {
    width: 32px;
    height: 32px;
}
.icon-sm {
    width: 18px;
    height: 18px;
}
svg {
    fill: #adb5bd;
}
/*aboutページ*/
.big-size {
    font-size: calc(64px + (46 * ((100vw - 375px) / 1225)));
    line-height: 100%;
    display: block;
}
.medium-size {
    font-size: calc(48px + (16 * ((100vw - 375px) / 1225)));
    line-height: 100%;
    display: block;
}
.about-container {
    height: 100vh;
}