@charset "UTF-8";

/* 正本は式場詳細ページの「選ばれる理由」（partial('reasons')・anshin-* クラス）。
   SP 調整も同梱する（hall-detail は PC/SP wrapper 配下で別途調整するため例外）。 */
.anshin-lead {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
    text-wrap: pretty;
    margin-bottom: 26px;
}
.anshin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.anshin-card {
    position: relative;
    background: var(--color-surface);
    border: 1px solid var(--color-border-green-tint);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(31, 142, 90, 0.07);
}
.anshin-card .an-photo {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 13px 13px 0 0;
    background-size: cover;
    background-position: center;
    background-color: #dededa;
}
.anshin-card .an-num {
    position: absolute;
    top: -16px;
    left: -8px;
    z-index: 3;
    width: 50px;
    height: 50px;
    border-radius: 50% 50% 0 50%;
    background: var(--gradient-brand-cta);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-surface);
    box-shadow: 0 4px 10px rgba(31, 142, 90, 0.35);
}
.anshin-card .an-num .lb {
    font-family: var(--font-family-accent);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
}
.anshin-card .an-num .nm {
    font-family: var(--font-family-accent);
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
}
.anshin-card .an-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 11px;
    padding: 22px 22px 26px;
}
.anshin-card .an-ic {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -46px;
    position: relative;
    z-index: 2;
    background: var(--color-surface);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(31, 142, 90, 0.16);
}
.anshin-card .an-ic svg {
    width: 30px;
    height: 30px;
    fill: var(--color-brand-primary);
}
.anshin-card .an-h {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-brand-primary-dark);
    letter-spacing: 0.02em;
    line-height: 1.45;
}
.anshin-card .an-d {
    font-size: 13px;
    line-height: 1.85;
    color: var(--color-text-primary);
    text-wrap: pretty;
}

@media (max-width: 767px) {
    .anshin-lead {
        font-size: 14px;
        line-height: 1.95;
        margin-bottom: 22px;
    }

    .anshin-grid {
        display: flex;
        flex-direction: column;
        gap: 26px;
    }

    .anshin-card .an-photo {
        aspect-ratio: 16 / 9;
    }

    .anshin-card .an-body {
        gap: 9px;
        padding: 20px 18px 22px;
    }

    .anshin-card .an-h {
        font-size: 16px;
    }

    .anshin-card .an-d {
        font-size: 12.5px;
    }
}
