@charset "utf-8";

/* -----------------------------------------
	common
----------------------------------------- */
.listDot > li + li{margin-top: 5px;}
.w75{width: 75px;}
.w120{width: 120px;}
.calc75{width: calc(100% - 75px);}
.calc120{width: calc(100% - 120px);}
.mr2p{margin-right: 2%;}
.bd-l{border-left: 1px solid #ddd;}
sup{
    vertical-align: top;
    font-size: 1.1rem;
}
.lineBox > * + *{
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid #ddd;    
}

@media screen and (min-width: 751px){
    .pc_alCent{
        display: flex!important;
        justify-content: center;
        align-items: center;
    }
}

@media screen and (max-width: 750px){
    sup{font-size: 1.0rem;}
    .lineBox > * + *{
        padding-top: 8%;
        margin-top: 8%;
    }
}

/* -----------------------------------------
	heading
----------------------------------------- */
.search_box_heading{
    margin-bottom: 10px;
    font-size: 1.8rem;
    font-weight: bold;
}
.tickets_contents02_h{
    margin-bottom: 30px;
}
.search_result_tit{
    display: inline-block;
    padding: 3px 16px;
    margin-bottom: 10px;
    background-color: #444;
    color: #fff;
    font-size: 1.6rem;
    text-align: center;
}

/* -----------------------------------------
	button
----------------------------------------- */
.ib_btn.btn{
    text-align: center;
}
.ib_btn.btn a{
    display: inline-block;
    padding: 15px 30px;
}

/* -----------------------------------------
	form
----------------------------------------- */
/* select box */
.selectBox{
    display: flex;
    align-items: center;
}
.selectHead{
    width: 90px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px 0 0 3px;
    background-color: #444;
    color: #fff;
    text-align: center;
}
.selectCont{
    width: calc(100% - 90px);
    position: relative;
}
.selectCont:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-top: 10px solid #bbb;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 0px solid transparent;
    position: absolute;
    top: 0px;
    bottom: 0;
    right: 10px;
    margin: auto;
    pointer-events: none;
}
.selectBox select{
    width: 100%;
    height: 40px;
    padding: 10px 20px 10px 10px;
    border: 1px solid #ddd;
    border-radius: 0 3px 3px 0;
    background-color: #fff;
    font-size: 1.2rem;    
}

/* input box */
.inputBox [class*="inputCont"]{display: inline-block;}
.inputCont_y{width: 90px;}
.inputCont_m, .inputCont_d{width: 55px;}

.inputBox input{
    width: 100%;
    height: 40px;
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
}
.inputBox span{
    margin-right: 6px;
    margin-left: 2px;
}

/* check box */
.checkBox .col2 > *{
    margin-bottom: 10px;
}
.checkBox input{display: none;}
.checkBox .checkBoxParts{
    padding: 2px;
    margin-left: 22px;
    position: relative;
    cursor: pointer;
}
.checkBox .checkBoxParts:before{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -22px;
    margin: auto 0;
    width: 16px;
    height: 16px;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #fff;
}
.checkBox input[type=checkbox]:checked + .checkBoxParts{
    background-color: #eee;
}
.checkBox input[type=checkbox]:checked + .checkBoxParts:before{
    border: 1px solid #008803;
}
.checkBox input[type=checkbox]:checked + .checkBoxParts:after{
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 7px);
    bottom: 0;
    left: -17px;
    width: 5px;
    height: 9px;
    border-bottom: 3px solid #008803;
    border-right: 3px solid #008803;
    transform: rotate(35deg);
}

/* search box */
.searchBox{
    width: 400px;
    margin: 0 auto 20px;
}
.searchBox .searchArea{
    background: #fff;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}
.searchBox .searchArea:before{
    content: "";
    display: block;
    background: url(../../material/img/ico_search_g.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
}
.searchBox .searchArea .textArea{
    border: none;
    padding: 5px 2px;
    margin: 0 5px;
    width: 265px;
}
.searchBox .searchArea .searchbtn{
    width: 60px;
    border: none;
    background: #008803;
    color: #fff;
    border-radius: 3px;
    padding: 3px 5px;
    font-size: 1.6rem;
    cursor: pointer;
}

/* search btn */
.btnSearch{
    display: block;
    background: #008803;
    border-radius: 3px;
    color: #fff;
    font-size: 1.6rem;
    width: 170px;
    margin: 30px auto 0;
    position: relative;
}
.btnSearch:before{
    content: "";
    display: block;
    background: url(/material/img/header/ico_header_search.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    margin: auto;
}
.btnSearch:hover{
	box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.5);
	transition-duration: .2s;
}
.btnSearch .searchBtn{
    border: none;
    background: #008803;
    color: #fff;
    border-radius: 3px;
    padding: 15px 20px;
    font-size: 1.6rem;
    width: 100%;
    cursor: pointer;
}

@media screen and (max-width: 750px){
    .formArea .col2 > *,
    .formArea .col3 > *{
        margin-bottom: 10%;
    }
    .inputBox{
        text-align: center;
    }
    .checkBox .col2 > *{
        margin-bottom: 3%;
    }
    .searchBox{
        width: 100%;
        margin: 0 auto 5%;
    }
    .searchBox .searchArea{
        background: #fff;
        padding: 10px 8px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border: 1px solid #ddd;
        margin-bottom: 0;
    }
    .searchBox .searchArea .textArea{
        border: none;
        padding: 5px 2px;
        margin: 0 5px;
        width: calc(100% - (60px + 16px));
    }
    .searchBox .searchArea .searchbtn{
        width: 45px;
        padding: 3px 5px;
        font-size: 1.4rem;
    }
}

/* -----------------------------------------
	ticket table
----------------------------------------- */
.ticketsTable > table td{vertical-align: top;}
.ticketsTable > table .icon{
    vertical-align: middle;
    text-align: center;
}
.nameSamp{
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
    font-weight: normal;
}

@media screen and (min-width: 751px){
    #top .basicTable > table td + td{border-left: none;}
    #top .basicTable > table tbody tr:not(:last-child){border-bottom: none;}
    #top .ticketsTable > table tbody{display: flex;}
    #top .ticketsTable > table tr{
        display: block; /* IE対策 */
        width: calc(100% / 6);
    }
    #top .ticketsTable > table th,
    #top .ticketsTable > table td{
        display: block;
    }
    #top .ticketsTable > table tr + tr td{
        border-left: 1px solid #ddd;
    }
    #top .ticketsTable > table td + td{
        border-top: 1px solid #ddd;
    }
}

@media screen and (max-width: 750px){    
    .nameSamp{
        margin-top: 6%;
        font-size: 1.1rem;
    }
}

/* -----------------------------------------
	some box
----------------------------------------- */
/* recommend box */
.recommBox{
    padding: 50px 30px;
    background-color: #f8f8f8;
}
.recommBox dl + dl{
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #ddd;
}
.recommBox .linkHead .col2 > *{
    margin-bottom: 0;
}
.recommBox .linkHead{
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: bold;
}
.recommBox .linkHead a:before{
    width: 8px;
    height: 12px;
}

@media screen and (max-width: 750px){
    .recommBox{padding: 7%;}
}

/* caution box */
.cautionBox{
    background: #eee;
    padding: 30px;
}
.cautionBox .cautionBox_h{
    font-size: 2.0rem;
    text-align: center;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cautionBox .cautionBox_h:before{
    content: "";
    display: block;
    background: url(../img/ico_caution.svg) no-repeat;
    background-size: contain;
    width: 20px;
    height: 18px;
    margin-right: 5px;
}

@media screen and (max-width: 750px){
    .cautionBox .cautionBox_h {margin-bottom: 3%;}
}

/* -----------------------------------------
	search results
----------------------------------------- */
.search_result_cont01{
    padding: 30px;
    margin-bottom: 30px;
    border-bottom: 4px solid #008802;
    border-right: 4px solid #eee;
    background-color: #fff;
}
.search_result_cont02{
    padding: 60px 30px;
    margin-bottom: 50px;
    background-color: #eee;
    text-align: center;
}
.search_result_h{
    margin-bottom: 10px;
    font-size: 2.0rem;
    font-weight: bold;    
}
.typeList{flex-wrap: wrap;}
.typeList li{
    padding: 4px 17px;
    margin-right: 8px;
    margin-bottom: 5px;
    border-radius: 5px;
    background-color: #eee;
}

@media screen and (max-width: 750px){
    .search_result_cont02{
        padding: 15% 5%;
        margin-bottom: 15%;
    }
    .typeList li{
        margin-right: 5px;
        margin-bottom: 5px;
    }
}

/* change search box */
.change_search_box{
    display: none;
    padding: 5% 0;
}
.change_search_box_btn{
    display: block;
    color: #fff;
    background: #444444;
    padding: 15px;
    font-weight: bold;
    font-size: 1.8rem;
    text-align: center;
    width: 40%;
    margin: 30px auto 50px;
    position: relative;
    cursor: pointer;
}
.change_search_box_btn:before{
    content: "";
    display: block;
    width: 2px;
    height: 14px;
    background: #fff;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.change_search_box_btn.on:before{
	content: none;
}
.change_search_box_btn:after{
    content: "";
    display: block;
    width: 14px;
    height: 2px;
    background: #fff;
    position: absolute;
    right: 14px;
    top: 0;
    bottom: 0;
    margin: auto;
}

@media screen and (max-width: 750px){
    .change_search_box_btn{
        padding: 3% 10%;
        font-weight: bold;
        width: 100%;
        margin: 10% auto;
    }
}

/* search result navi */
.search_result_nav{
    background: #eee;
    padding: 15px;
    margin-bottom: 50px;
}
.search_result_nav .list_link {
    max-width: calc(100% - 140px);
    flex-wrap: wrap;
}
.search_result_nav .list_link li{
    padding: 0 10px;
    position: relative;
}
.search_result_nav .list_link li + li:after{
    content: "";
    display: block;
    background-color: #333;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 0;
    width: 1px;
    height: 10px;
}
.search_result_nav .list_link li a{
    font-weight: bold;
}
.search_result_nav .prevBtn,
.search_result_nav .nextBtn{
    padding: 4px 8px;
    border-radius: 5px;
    background-color: #fff;
    cursor: pointer;
}
.search_result_nav .prevBtn:hover,
.search_result_nav .nextBtn:hover{
    box-shadow: 0px 1px 8px 0px rgba(0, 0, 0, 0.5);
    transition-duration: .2s;
}
.search_result_nav .prevBtn{margin-right: 20px;}
.search_result_nav .nextBtn{margin-left: 20px;}

@media screen and (max-width: 750px){
    .search_result_nav{padding: 3%;}
    .search_result_nav .list_link {
        max-width: calc(100% - 110px);
    }
    .search_result_nav .prevBtn,
    .search_result_nav .nextBtn{
        padding: 3px 7px;
    }
    .search_result_nav .list_link li{padding: 0 8px;}
    .search_result_nav .prevBtn{margin-right: 10px;}
    .search_result_nav .nextBtn{margin-left: 10px;}
}

/* search result article */
.article_box{
    padding: 20px;
    margin-bottom: 30px;
    background: #fff;    
}
.search_result_article{
    margin-bottom: 50px;
}
.article_tit_h{
    margin-bottom: 10px;    
    font-size: 2.3rem;
}
.article_tit_h a:before{
    width: 12px;
    height: 18px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

@media screen and (max-width: 750px){
    .article_box{
        padding: 8% 5%;
        margin-bottom: 8%;
    }
    .article_tit_h{
        margin-bottom: 3%;
    }
}

/* notice box */
.m_notice.grayBox{
    padding: 10px;
    margin-top: 15px;
}