@charset "utf-8";
#promotion{
    padding-bottom: 12rem;
}
#promotion-banner {
    width: 100%;
}

#promotion-item {}

#promotion .text-dark {
    --promo-text: #29292c;
    --promo-sub-text: #5f5f66;
}

#promotion .text-light {
    --promo-text: #ffffff;
    --promo-sub-text: rgba(255, 255, 255, .85);
}

#promotion-group {
    width: 100%;
    max-width: 120rem;
    margin: auto;
    padding: 4rem;
}

#group-header {
    background: transparent;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    width: 100%;
    max-width: 120rem;
    padding: 0 4rem;
}

#group-header h1 {
    font-size: 1.6rem;
    white-space: nowrap;
}

/*#group-header::after {
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    background-color: white;
}*/

.group-subject {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.group-title {
    color: var(--promo-text);
    font-size: 3.6rem;
}

.group-subtitle {
    color: var(--promo-sub-text);
    font-size: 2rem;
}

.group-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.promotion-item {
    background-color: white;
    border-radius: 2rem;
    padding: 3rem;
    position: relative;
    z-index: 1;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
    box-sizing: border-box; 
}

.promotion-item:has(.item-select:checked) {
    background-color: #dfe1e6;
}

.item-check {
    position: relative;
    cursor: pointer;
}

.item-check input {
    display: none;
}

.item-check .check-ui {
    width: 2.4rem;
    height: 2.4rem;
    border: 2px solid #ccc;
    border-radius: 0.4rem;
    display: block;
    position: relative;
}

.item-check .check-ui::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.6rem;
    height: 1.2rem;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: translate(-50%, -60%) rotate(45deg) scale(0);
    opacity: 0;
    transition: all 0.2s ease;
}

.item-check input:checked+.check-ui {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.item-check input:checked+.check-ui::after {
    transform: translate(-50%, -60%) rotate(45deg) scale(1);
    opacity: 1;
}

.item-body {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.item-subject {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.item-title {
    font-size: 3.6rem;
    order: 1;
    line-height: 1.3;
    min-width: 0;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.item-subtitle {
    font-size: 2.2rem;
    order: 2;
    color: #7d7d80;
}

.item-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    gap: 2rem;
    padding-left: 3rem;
    border-left: 1px dotted #eaecf1;
}

.promotion-item:has(.item-select:checked) .item-price {
    border-color: #a7aab1;
}

.item-price del {
    color: #a6a6af;
    font-size: 2.2rem;
}

.real-price {
    font-size: 6rem;
    font-weight: 800;
    display: flex;
    gap: 0.5rem;
    align-items: flex-end;
    line-height: 0.6;
}

.real-price i {
    font-weight: 300;
    font-size: 2.4rem;
}

.item-badges {
    position: absolute;
    z-index: 2;
    top: 0;
    transform: translateY(-50%);
}

.item-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.item-badge span {
    font-weight: 800;
    font-size: 1.8rem;
    padding: 0.6rem 1.2rem;
    border-radius: 0.5rem;
    animation: badgeFloat 2.4s ease-in-out infinite;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.05);
}

@keyframes badgeFloat {
    0% {
        transform: translateY(0);
    }

    20% {
        transform: translateY(-5px);
    }

    40% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(0);
    }
}

.item-badge .badge:nth-child(1) {
    animation-delay: 0s;
}

.item-badge .badge:nth-child(2) {
    animation-delay: 0.4s;
}

.item-badge .badge:nth-child(3) {
    animation-delay: 0.8s;
}

.item-badge .badge:nth-child(4) {
    animation-delay: 1.2s;
}

.item-badge .badge:nth-child(5) {
    animation-delay: 1.6s;
}

#promotion-inquiry {
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: #29292c;
    border-radius: 2rem 2rem 0 0;
    z-index: 1000;
}

#promotion-inquiry .fixed-inner {
    max-width: 120rem;
    padding: 2rem 4rem;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#promotion-inquiry .total-inner {
    font-size: 1.6rem;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
#promotion-inquiry .total{
    display: flex;
    gap: 0.4rem;
    align-items: flex-end;
}
#promotion-inquiry .total small{
    color: #ff7474;

}
#promotion-inquiry .total-inner strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
}

#btnReserve {
    padding: 1.4rem 2.4rem;
    font-size: 1.6rem;
    border-radius: 1.2rem;
    border: none;
    background: #dcdcdc;
    color: #777;
    cursor: not-allowed;
    transition:
        background .25s ease,
        color .25s ease,
        transform .15s ease,
        box-shadow .15s ease;
}

#btnReserve.active {
    background: var(--accent-color);
    color: #fff;
    cursor: pointer;
    font-weight: 800;
}

.reserve-form {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition:
        max-height .5s ease,
        opacity .3s ease;
}

.reserve-form.open {
    max-height: 90rem;
    opacity: 1;
}

.reserve-inner {
    background: #fff;
    border-radius: 1.8rem 1.8rem 0 0;
}
.reserve-box{
    padding: 4rem;
    max-width: 120rem;
    margin: auto;
}
.reserve-inner h3 {
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
}
.form-box{
    display: flex;
    gap: 2rem;
    align-items: flex-end;
}
.form-row {
    display: flex;
    flex: 2;
    gap: 2rem;
}
.form-row-check{
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}
.form-row label span {
    color: #e53935;
}
.form-item{
    flex: 1;
}
.reserve-inner input[type="text"],
.reserve-inner input[type="tel"] {
    width: 100%;
    padding: 1.3rem 1.4rem;
    font-size: 1.5rem;
    border-radius: 1rem;
    border: 1px solid #ddd;
    transition:
        border-color .2s ease,
        box-shadow .2s ease;
}

.reserve-inner input::placeholder {
    color: #aaa;
}

.reserve-inner input:focus {
    outline: none;
}


.form-check {
    font-size: 1.4rem;
    color: #aaa;
}

.form-check label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.4rem;
    color: #888;
    cursor: pointer;
}

.form-check input[type="checkbox"] {
    width: 1.4rem;
    height: 1.4rem;
    flex-shrink: 0;
    border-radius: 4px;
}
.form-check input:checked {
    background-color: var(--accent-color);
    
}
#promotion-notice{
    width: 100%;
    max-width: 120rem;
    margin: auto;
    padding: 4rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

#promotion-notice p{
    color: var(--promo-text);
    font-size: 1.8rem;
}
#promotion-notice p::before{
    content: '*';
    display: inline-block;
    margin-right: .3rem;
    transform: translateY(0.1rem);
}

@media (max-width: 768px) {
    .item-body {
        flex-direction: column;
        align-items: stretch;
        gap: 2rem;
    }

    .item-price {
        flex-direction: row;
        margin: 0;
        border-left: none;
        border-top: 1px dotted #eaecf1;
        align-items: flex-end;
        justify-content: flex-end;
        padding-left: 0;
        padding-top: 2rem;
    }
    
    #promotion-inquiry .total-inner{
        flex-direction: row;
        align-items: flex-end;
    }
    #btnReserve{
        font-size: 2rem;
    }
    .form-box{
        flex-direction: column;
        gap: 2rem;
        align-items: stretch;
    }
    .form-row-check{
        flex-direction: row;
        gap: 3rem
    }
    .form-item.form-check{
        flex: none;
    }
}