.offer-main-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-bottom: 20px;
}

#offer-item-wrap {
    max-width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
}

.offer-item-group {
    border-top: solid 3px #59c0d2;
    box-shadow: 0 0 3px #cecece;
    transition: all 0.3s;
    background-color: #fff;
    width: calc(50% - 10px);
    max-width: 100%;
}

.offer-item-group a {
    display: block;
    height: 100%;
    background-color: #fff;
}

.offer-item-group a:hover {
    background-color: #fff9db;
}

.offer-item-group h3,
.offer-item-group h4 {
    margin-bottom: 0;
}

.offer-item-group p {
    margin: 0 auto;
    color: #777;
}

.offer-title {
    padding: 20px;
    margin-bottom: 0;
    line-height: 1.3 !important;
    border-bottom: solid 1px #59c0d2;
    font-weight: 700 !important;
    font-size: 16px;
    transition: all 0.3s !important;
}

.offer-item-group a:hover .offer-title {
    color: #f92 !important;
}

.offer-info {
    padding: 15px;
}

.offer-item-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 20px;
}

.offer-item-row:last-child {
    margin-bottom: 0;
}

.offer-item-row h3 {
    font-size: 16px;
    font-weight: 700;
}

.row-left {
    width: 60px;
    color: #59c0d2;
    align-items: center;
    text-align: center;
    margin-right: 10px;
}

.row-left i {
    font-size: 32px;
}

.row-right {
    width: calc(100% - 70px);
}

.offer-non {
    text-align: center;
    margin: 100px auto;
    padding: 30px;
    border: solid 1px;
    width: 500px;
    max-width: 100%;
}

.offer-non h2 {
    margin-bottom: 0 !important;
}


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

                    PC

----------------------------------------------*/
@media only screen and (min-width: 1025px){

}

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

                    PC-Under

----------------------------------------------*/
@media only screen and (max-width: 1024px){

}

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

                    Tablet

----------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1024px){

}
    
/*---------------------------------------------

                    Mobile

----------------------------------------------*/
@media only screen and (max-width: 767px){
    .offer-item-group {
        width: 100%;
        margin-bottom: 20px;
    }

    .offer-item-row h3 {
        font-size: 14px;
    }
    
}

