@charset "utf-8";
/* ==========================================================================
   Base Styles
   ========================================================================== */
body {
    font-size: 14px;
    color: #323638;
}
a {
    color: #6E7274;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
p {
    line-height: 1.8;
}
/* ==========================================================================
   Key Visual Section
   ========================================================================== */
.keyvisual {
    width: 100%;
    background-color: #EFEFEF;
    background: linear-gradient(to bottom, #000 0%, #fff 72%);
    color: #323638;
    padding: 30px 0;
}
.emblem {
    max-width: 840px;
    width: 100%;
    margin: 5px auto 25px;
}
.emblem img {
    width: 100%;
    height: auto;
}
.keyvisual h1 {
    font-family: "Times New Roman", "Lora", "游明朝", "Yu Mincho", "ヒラギノ明朝 Pro W3", serif;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.2;
    letter-spacing: 0.08em;
    font-weight: 700;
}
.keyvisual h1.en {
    line-height: 1.1;
    letter-spacing: 0;
    font-weight: 400;
}
.keyvisual h1 .small {
    font-size: clamp(18px, 2.5vw, 30px);
    display: block;
    letter-spacing: 0;
    margin-top: 8px;
}
.keyvisual p {
    margin-top: 15px;
    text-align: justify;
    font-size: 16px;
}
/* ==========================================================================
   Ranking Section
   ========================================================================== */
.ranking {
    width: 100%;
    background: linear-gradient(to bottom, #ecedee, #d7d8d9);
    padding: 15px 0 40px;
}
.ranking-title {
    border-left: 6px solid #376a50;
    padding-left: 15px;
    margin: 25px 0 15px;
}
.ranking-title h2 {
    font-family: 'Roboto', 'Noto Sans JP', sans-serif;
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 1.3;
    font-weight: 700;
}
.ranking-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    margin-bottom: 25px;
}
.block-card {
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.block-card:hover {
    opacity: 0.85;
    text-decoration: none;
    transform: translateY(-2px);
}
.product_name {
    background-color: #323638;
    color: #FFF;
    display: flex;
    align-items: center;
    min-height: 48px;
}
.number {
    background-color: #6E7274;
    padding: 0 15px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}
.number_gold {
    background: linear-gradient(to bottom, #E0B535, #a77716);
}
.number .large {
    font-size: 28px;
    margin-right: 2px;
}
.product_name h3 {
    font-size: 18px;
    letter-spacing: 0.03em;
    padding: 0 15px;
    margin: 0;
    font-weight: 700;
}
.product_name .greek {
    font-family: 'Caudex', serif;
    font-size: 120%;
}
.product_feature {
    font-size: 14px;
    color: #323638;
    line-height: 1.3;
    padding: 12px 15px 5px;
    margin: 0;
}
.product_img {
    margin: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}
.product_img img {
    width: 100%;
    height: auto;
    display: block;
}
.product_img figcaption {
    font-weight: 500;
    position: absolute;
    right: 10px;
    bottom: 8px;
    background: rgba(255, 255, 255, 0.85);
    padding: 2px 6px;
    border-radius: 2px;
    font-size: 12px;
}
/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
.inline-block {
    display: inline-block;
}
@media screen and (max-width: 640px) {
    .ranking-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .keyvisual {
        background: linear-gradient(to bottom, #000 0%, #fff 50%);
        padding: 20px 0;
    }
    .keyvisual p {
        font-size: 14px;
    }
}