@charset "UTF-8";

.location-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
}

.location-list.col-2 {
    grid-template-columns: repeat(2, 1fr);
}

.location-list__title {
    font-size: max(16px, 2rem);
    margin-top: 1.2rem;
}

.location-list__text {
    font-size: max(14px, 1.5rem);
    margin-top: 1.2rem;
}

.location-text-list__wrap {
    margin-top: 4rem;
    /* border-top: 1px solid #000; */
    padding-top: 4rem;
    display: grid;
    grid-template-columns: repeat(2, auto);
    justify-content: center;
    gap: 6rem;
}

.location-text-list {
    font-size: 13px;
    padding: .8rem 0;
    border-top: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .8rem;
}

.location-text-list:last-child {
    border-bottom: 1px solid #000;
}

.location-text-list dt {
    flex: 0 0 180px;
    line-height: 1.5;
}

.location-text-list dd {
    /* padding-left: 11.1rem;
    background: url(../../images/location/location-list-line.svg) left center no-repeat;
    background-size: 10rem;
    width: calc(10rem + 160px); */
}

@media screen and (max-width: 1024px) {
    .location-text-list__wrap {
        gap: 4rem;
    }

    .location-text-list dd {
        /* padding-left: 2.9rem;
        background: url(../../images/location/location-list-line_sp.svg) left center no-repeat;
        background-size: 2.3rem;
        width: calc(2.9rem + 140px); */
    }
}

/* 
------------------------------ */

.happiness-header {
    padding-block: 2rem;
    background: url(../../images/location/happiness-bg.png) left center no-repeat;
    background-size: contain;
}

.happiness-header__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.happiness-header__content {
    max-width: 49rem;
}

.happiness-header__content .caption {
    margin-top: 0.5rem;
}

.happiness-text {
    font-size: max(14px, 1.6rem);
    line-height: 2;
    letter-spacing: .1em;
}

.happiness-point-title {
    font-size: 22px;
    margin-top: 1.6rem;
    line-height: 1.5;
    font-weight: bold;
}

.happiness-point {
    margin-top: 1.5rem;
}

@media screen and (max-width: 1024px) {
    .happiness-header {
        background: none;
    }

    .happiness-header__inner {
        flex-direction: column;
    }

    .happiness-title {
        text-align: center;
        margin-block: 20px;
    }

    .happiness-header__content {
        max-width: none;
    }
}