
/* 여행사 소개 - 인사말  */
.introduce-title{
    margin-bottom:60px;
    text-align: center;
}
.introduce-title h3{
    font-size:36px;
    line-height:60px;
    font-weight:500;
    color:#333;
}
.introduce-title h3 strong{
    color:#111;
    font-weight:600;
}
.introduce-con {
    border-radius:25px ;
    overflow: hidden;
    word-break: keep-all;
}
.introduce-con .con{
    display:flex;
}
.introduce-con .con .text-area,
.introduce-con .con .img-area{
    width:50%;
}
.introduce-con .con .text-area{
    display:flex;
    flex-direction: column;
    justify-content: center;
    padding:60px;
}
.introduce-con .con .text-area h4{
    font-size:24px;
    font-weight:500;
    color:#222;
    margin-bottom:40px;
}
.introduce-con .con .text-area h4 strong{
    font-weight:700;
}
.introduce-con .con .text-area p{
    font-size:20px;
    color:#333;
    line-height:36px;
    font-weight:400;
}
.introduce-con .con .text-area p strong{
    font-weight:600;
}
.introduce-con .con01{
    flex-direction: row-reverse;
}
.introduce-con .con01 .text-area{
    background-color:#DCF5E9;
}
.introduce-con .con02 .text-area{
    background-color:#FFECEA;
}
.introduce-con .con01 img,
.introduce-con .con02 img{
    height: 100%;
}
.introduce-con .con03{
    padding:90px 15px;
    background:url(/images/introduce-img03.jpg) center center no-repeat;
    text-align: center;
}
.introduce-con .con03 h3{
    font-size:30px;
    line-height:60px;
    color:#dbdbdb;
    font-weight:400;
}
.introduce-con .con03 h3 strong{
    font-weight:700;
}

.farm-tour{
    margin-top:200px;
}
.farm-tour-title h4{
    font-size:30px;
    font-weight:600;
    color:#111;
    margin-bottom:20px;
    text-align: center;
}
.farm-tour-title p{
    font-size:22px;
    color:#555;
    line-height:32px;
    text-align: center;
}
.farm-tour-list{
    margin-top:40px;
    margin-bottom:100px;
    display: flex;
}
.farm-tour-list .list-item{
    width:calc( 25% - 15px );
    margin-right:20px;
}
.farm-tour-list .list-item:last-child{
    margin:0;
}
.farm-tour-list .list-item .img-area{
    width:100%;
    aspect-ratio: 1.675 / 1;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom:25px;
}
.farm-tour-list .list-item .img-area img{
    width:100%;
    transition: all 0.3s;
}
.farm-tour-list .list-item .img-area:hover img{
    transform: scale(1.1);
}
.farm-tour-list .list-item .text-area h5{
    font-size:24px;
    color:#111;
    font-weight:500;
    text-align: center;
    margin-bottom:10px;
}
.farm-tour-list .list-item .text-area p{
    text-align: center;
    font-size:18px;
    font-weight:400;
    line-height:26px;
    color:#333;
    word-break: keep-all;
}

.farm-tour-list02{
    display:flex;
    padding:55px 30px;
    background-color:#F5F5F5;
    border-radius: 25px;
    overflow: hidden;
    word-break: keep-all;
}
.farm-tour-list02 li{
    width:25%;
    padding:0 50px;
    border-right:1px solid #aaa;
    text-align: center;
}
.farm-tour-list02 li:last-child{
    border:none;
}
.farm-tour-list02 li h5{
    font-size:24px;
    font-weight:600;
    color:#111;
    margin-bottom:30px;
}
.farm-tour-list02 li span{
    margin-bottom:10px;
    color:#3F9E6E;
    font-size:20px;
    font-weight:600;
    display:block;
}
.farm-tour-list02 li p{
    margin-bottom:5px;
    line-height:22px;
}

@media screen and (max-width:1400px){
    .introduce-con .con .text-area{
        padding:20px 40px;
    }
}
@media screen and (max-width:1280px){
    .introduce-con .text-area h4{
        line-height:36px;
    }
    .introduce-con .text-area p .mo-none{
        display:none;
    }
    .farm-tour-list .list-item .text-area p .mo-none{
        display:none;
    }
    .farm-tour-list02{
        padding:50px 10px;
    }
    .farm-tour-list02 li{
        padding:0 20px;
    }

}
@media screen and (max-width:1024px){
    .introduce-con .con .img-area img{
        width:100%;
        height:100%;
        object-fit: cover;
    }
    .introduce-con .con .text-area{
        padding:40px 40px;
    }
    .farm-tour-list {
        flex-wrap: wrap;
    }
    .farm-tour-list .list-item{
        width:calc(50% - 10px);
        margin-bottom:40px;
    }
    .farm-tour-list .list-item:nth-child(even){
        margin-right:0;
    }
}
@media screen and (max-width:760px){
    .introduce-con {
        border-radius: 0;
    }
    .introduce-title{
        margin-bottom:20px;
    }
    .introduce-title h3{
        font-size:24px;
        line-height:38px;
    }
    .introduce-con .con{
        flex-direction: column;
        margin-bottom:20px;
        border-radius: 25px;
        overflow: hidden;
    }
    .introduce-con .con01{
        flex-direction: column;
    }
    .introduce-con .con .text-area,
    .introduce-con .con .img-area{
        width:100%;
    }
    .introduce-con .con .text-area{
        padding:30px 20px;
    }
    .introduce-con .con .text-area h4{
        font-size:20px;
        line-height:28px;
        margin-bottom:10px;
    }
    .introduce-con .con .text-area p{
        font-size:16px;
        line-height:24px;
    }
    .introduce-con .con .img-area{
        width:100%;
        aspect-ratio: 1/1;
        overflow: hidden;
    }
    .introduce-con .con03{
        background-position: center right;
        background-size: cover;
        padding:40px 15px;
        border-radius: 20px;
        overflow: hidden;
    }
    .introduce-con .con03 h3{
        font-size:18px;
        line-height:30px;
    }
    .introduce-con .con03 h3 .mo-none{
        display:none;
    }
    .farm-tour{
        margin-top:80px;
    }
    .farm-tour-title p{
        font-size:20px;
    }
    .farm-tour-title p .mo-none{
        display:none;
    }
    .farm-tour-list{
        margin-top:40px;
        margin-bottom:80px;
    }
    .farm-tour-list .list-item{
        margin-right:0;
        margin-bottom:40px;
        width:100%;
    }
    .farm-tour-list .list-item .img-area{
        margin-bottom:15px;
    }
    .farm-tour-list02{
        padding:10px 30px;
        flex-direction: column;
    }
    .farm-tour-list02 li{
        width:100%;
        border-right:0;
        border-bottom:1px solid #aaa;
        padding:30px 20px;
    }
    .farm-tour-list02 li p {
        font-size:16px;
        line-height:22px;
    }

}

/*회사소개_수상/인증*/
.award_list_box {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 22.5px));
    grid-column-gap: 30px;
    grid-row-gap: 80px;
}

.award_list_img {
    width: 100%;
    overflow: hidden;
}

.award_list_img img {
    width: 100%;
}

.award_list_type {
    color: #666;
    text-align: center;
    margin: 20px 0 7px 0;
}

.award_list_name {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

@media screen and (max-width:768px) {
    .award_list_box {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 10px));
        grid-column-gap: 20px;
        grid-row-gap: 40px;
    }
}

@media screen and (max-width:430px) {
    .award_list_box {
        display: block;
    }

    .award_list {
        margin-bottom: 50px;
    }
}
