@charset "UTF-8";

/************************************
** 会社説明会予約フォーム系ページCSS
************************************/
.page-header-title{
    background-image: url(../img/page-reservation/header_img.png);
}
.page-back{
    padding-top:0px;
}
.reservation-worries{
   text-align: center; 
}
.reservation-method{
    margin:64px 0;
    background-color: #FAF1D2;
    padding:30px;
    border-radius: 10px;
    text-align: center;
}
.reservation-method p{
    font-weight: bold;
    color:#894C1F;
    margin-bottom:30px;
}
.reservation-method img{
    max-width: 430px;
}
.boeder{
    width: 100%;
    height:1px;
    background-color: #dddddd;
    margin-bottom: 64px;
}
table:not(.has-border-color) :where(th){
    text-align: left;
}
.date-box p{
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    grid-gap: 10px;
}
.date-box span{
    display: block;
}
.date-title{
    padding-top:8px;
}


/*スマホ版表示切り替えは1200px以下*/
@media screen and (max-width: 1200px) {
    .reservation-worries{
        text-align: justify;
    }
    .reservation-method{
        margin: 30px 0;
        padding:15px;
    }
    .reservation-method img{
        max-width: none;
        width: 100%;
    }
    table{
        max-width: none;
        width: auto;
    }
    table:not(.has-border-color) :where(th), table:not(.has-border-color) :where(td){
        background-color: #ffffff;
    }
    table:not(.has-border-color) :where(th){
        padding: 10px 0px;
    }
    table:not(.has-border-color) :where(td){
        padding: 5px 0px;
    }
    .date-box p{
        display: block;
    }
}