@charset "UTF-8";
/* CSS Document */
.tour_box_link a{
	width: 100%;
    display: block;
}

.tour_box_link{
	width:50%;
}
.tour_box_menu.dynamic{
    display:flex;
}

.tour_box.dynamic{
    float: none;
	position: relative;
    display: flex;
    flex-direction: column;
	height:auto;
	width:100%;
}

.result_card_content{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.result_card_image{
    height: 200px;
    overflow: hidden;
    min-height: 200px;
    max-height: 200px;
	border-radius: 6px;
    display:flex;
    align-items:center;
    justify-content: center;
    margin-bottom:10px;
}
.result_card_image img.tour_img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0;
}

.tour_desc{
    flex-grow:1;
    margin-bottom:12px;
}

.result_card_table{
    display:grid;
	
    column-gap: 12px;
}
.result_card_table.no_result{
    display: flex;
    align-items: center;
    flex-direction: column;
    color:white;
}

.campaign.no_result{
    display:flex;
    align-items: center;
    flex-direction: column;
    color:black;
    height:200px;
    justify-content: center;;
}
.tour_box_link.no_result {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    width:30%;
}

.kol_block_frame{
    display: none;
}

.kol_block{
    width: 90%;
    max-width: 800px;
    margin: 0 auto;
    display:grid;
    grid-template-columns:1fr;
    grid-row-gap: 20px;
    justify-content: center;
    align-items: center;
}

.kol_block > div:nth-child(1)> div:nth-child(1){
    color: #f15923;
    font-size: 1.2rem;
}
.kol_block > div:nth-child(1)> div:nth-child(2){
    font-size: 1rem;
}
.kol_block > div:nth-child(1)> div:nth-child(3){
    font-size: 1rem;
}

.kol_block_btn{
    width: fit-content;
    margin-top: 5px;
    padding: 5px 20px;
    color: white;
    background-color: #1B75BD;
    font-weight: bold;
    border-radius: 5px;
    font-size: 1rem;
}

.kol_block_btn a{
    color: inherit;
    text-decoration: none; 
}

.kol_block > div:nth-child(2){
    width: 100%;
    padding: 5px;
    border: 2px solid black;
    border-radius: 10px;
    overflow: hidden;
}

.kol_block img{
    width: 100%;
    display: block;
}
.kol_block iframe{
    border:2px solid red;
    width: 100%;
    height: 200px;
    display: block;
}



@media (min-width: 768px) {
	.result_card_table{
        grid-template-columns: 1fr 1fr;
    }

    .kol_block{
        width: 80%;
        grid-template-columns:6fr 4fr;
    }
    
}
@media (min-width: 992px) {
	.result_card_table{
        grid-template-columns: 1fr 1fr 1fr;
    }

    .kol_block{
        width: 80%;
        grid-template-columns:6fr 4fr;
    }

    .kol_block > div:nth-child(1)> div:nth-child(1){
        font-size: 1.6rem;
    }
    .kol_block > div:nth-child(1)> div:nth-child(2){
        font-size: 1.6rem;
    }
    .kol_block > div:nth-child(1)> div:nth-child(3){
        font-size: 1.2rem;
    }

    .kol_block_btn{
        font-size: 1.2rem;
    }

}
