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

body {
    font-family: Inter, sans-serif;
    font-weight: 400;
    font-style: normal;
    max-width: 500px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

a:hover,
a:active {
    opacity: 0.8;
}

.pc {
    display: none;
}

.ranking-product {
    position: relative;
}

.ranking-product-link {
    position: absolute;
    width: max-content;
    bottom: 0;
    right: calc((75 / 750) * 100%);
    margin-bottom: calc((363 / 750) * 100%);
    font-size: clamp(0.625rem, -0.042rem + 3.33vw, 1rem);
    line-height: 1.5;
    font-weight: bold;
    color: #ed858a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.83em;
}

.arrow {
    width: 0.5em;
    aspect-ratio: 8 / 16;
}

.ranking-product-button {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: calc((563 / 750) * 100%);
    margin-bottom: calc((100 / 750) * 100%);
    transform: translateX(-50%);
}

/**
* ランキング表
**/
.ranking-table {
    width: calc((680 / 750) * 100%);
    margin: auto;
    padding-bottom: calc((60 / 750) * 100%);
}

.ranking-table-title {
    padding: calc((60 / 750) * 100%) 0 calc((8 / 750) * 100%);
    text-align: center;
}

.ranking-table-title img {
    width: calc((370 / 680) * 100%);
}

.column-two,
.column-three {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.column-two {
    margin-bottom: calc((102 / 680) * 100%);
}

.column-two .column {
    width: calc((335 / 680) * 100%);
}

.column-three .column {
    width: calc((220 / 680) * 100%);
}

.ranking-table-button {
    margin-top: calc((10 / 335) * 100%);
}
/* END ランキング表 */

/* フッター */
.footer {
    color: #333333;
    background-color: #f4bcc0;
}

.footer-inner {
    width: max(288px, calc((600 / 750) * 100%));
    margin: auto;
    padding: calc((60 / 750) * 100%) 0 calc((20 / 750) * 100%);
}

.footer-link {
    display: flex;
    justify-content: space-between;
    margin-bottom: calc((60 / 602) * 100%);
}

.footer-link a {
    font-size: clamp(0.625rem, 0.063rem + 2.4vw, 0.813rem);
    color: #333;
}

.footer-annotation {
    margin-bottom: calc((60 / 602) * 100%);
}

.footer-annotation p {
    line-height: 1;
}

.footer-annotation small {
    font-size: 11px;
    line-height: 1;
}

.copyright {
    display: block;
    text-align: center;
}
