@charset "utf-8";

/* ===================================================================
   layout.css - entry
=================================================================== */

.cmn_page_ttl {
    background-image: URL(/img/entry/page_ttl_bg.jpg);
}

.entry_section {
    padding-bottom: 40px;
}

#entry_2nd {
    padding-bottom: 20px;
}

.entry_section:last-child {
    padding-bottom: 0;
}

.entry_card_wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.entry_card {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #555;
}

.entry_card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
}

.entry_card__tag {
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}

.entry_card__year {
    font-size: 0.75em;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.entry_card__body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    gap: 20px;
}

.entry_card__info {
    flex: 1;
}

.entry_card__price {
    font-size: 1.25em;
    font-weight: bold;
    color: #fff;
    line-height: 1.4;
}

.entry_card__note {
    font-size: 0.875em;
    color: #aaa;
    margin-top: 6px;
    line-height: 1.6;
}

.entry_card__btn {
    display: inline-block;
    white-space: nowrap;
    padding: 14px 28px;
    font-weight: bold;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.entry_card__btn i {
    margin-left: 6px;
    font-size: 0.8em;
}

/* entry_card カラー設定
------------------------------------------------------------------- */

.type_first {
    border-color: #7b4fa5;
}
.type_first .entry_card__head {
    background: linear-gradient(135deg, #7b4fa5, #4a2f7a);
}
.type_first .entry_card__body {
    background: linear-gradient(135deg, #2a2a2a 60%, #3a2545);
}
.type_first .entry_card__btn {
    background: #7b4fa5;
    border: 1px solid #7b4fa5;
}
.type_first .entry_card__btn:hover {
    background: #9b6fc5;
}

.type_2nd {
    border-color: #3a6ea5;
}
.type_2nd .entry_card__head {
    background: linear-gradient(135deg, #3a6ea5, #1a3f6a);
}
.type_2nd .entry_card__body {
    background: linear-gradient(135deg, #2a2a2a 60%, #1a3045);
}
.type_2nd .entry_card__btn {
    background: #3a6ea5;
    border: 1px solid #3a6ea5;
}
.type_2nd .entry_card__btn:hover {
    background: #5a8ec5;
}

/* 各エリア
------------------------------------------------------------------- */

#entry_info p {
    line-height: 1.8;
    color: #ccc;
}

#entry_notes p {
    line-height: 1.8;
    color: #ccc;
}

#entry_notes .cmn_items {
    padding: 0;
}

#entry_notes .cmn_items li {
    font-size: 0.875em;
    line-height: 1.5;
}

/* SP
------------------------------------------------------------------- */

@media screen and (max-width: 800px) {

    .entry_section {
        padding-bottom: 25px;
    }

    .entry_card_wrap {
        gap: 16px;
    }

    .entry_card__head {
        padding: 8px 14px;
    }

    .entry_card__body {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px 16px;
        gap: 14px;
    }

    .entry_card__price {
        font-size: 1.125em;
    }

    .entry_card__note {
        margin-top: 4px;
    }

    .entry_card__btn {
        width: 100%;
        padding: 13px 40px;
        text-align: center;
        position: relative;
    }

    .entry_card__btn i {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
}