@charset "utf-8";

/*============================
航空・パイロット用品販売
============================*/
#supplies_sales .flex {
    margin-top: 40px;
    gap: 40px 35px;
    justify-content: flex-start;
    align-items: stretch;
}

#supplies_sales a {
    width: 230px;
    border: 1px solid #00489d;
    box-sizing: border-box;
    border-radius: 3px;
    position: relative;
}

#supplies_sales a .photo {
    width: 100%;
}

#supplies_sales a .text {
    padding: 20px;
}

#supplies_sales a .title {
    font-weight: 700;
    margin-bottom: 55px;
}

#supplies_sales a .btn {
    background: #c20e0b;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    width: 190px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    position: absolute;
    left: 20px;
    bottom: 20px;
    border-radius: 3px;
    margin-top: 0;
}

#supplies_sales a .btn::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid #fff;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}

@media only screen and (max-width: 768px) {

    #supplies_sales .flex {
        margin-top: 20px;
        gap: 20px;
        justify-content: flex-start;
        align-items: stretch;
    }

    #supplies_sales a {
        width: 100%;
    }

    #supplies_sales a .title {
        margin-bottom: 15px;
    }

    #supplies_sales a .btn {
        background: #c20e0b;
        color: #fff;
        font-size: 16px;
        font-weight: 700;
        width: 100%;
        height: 40px;
        line-height: 40px;
        text-align: center;
        position: relative;
        left: 0;
        right: 0;
        bottom: auto;
        border-radius: 3px;
        margin-top: 0;
    }

}

/*============================
パイロットハウス店内の様子
============================*/

#shop_info .time {
    font-size: 18px;
    font-weight: 700;
}

#shop_info .time span {
    color: #1b89c2;
}

#shop_info .flex {
    margin-top: 40px;
    gap: 40px;
}

#shop_info .flex .box {
    width: 360px;
}

#shop_info .flex .box p {
    background: #1b89c2;
    color: #fff;
    font-size: 18px;
    padding: 5px 15px;
    font-weight: 700;
}

@media only screen and (max-width: 768px) {
    #shop_info .time {
        font-size: 16px;
    }

    #shop_info .flex {
        margin-top: 20px;
        gap: 20px;
    }

    #shop_info .flex .box {
        width: 100%;
    }

    #shop_info .flex .box p {
        font-size: 16px;
    }
}
