@charset "utf-8";
/*----------------------------------------------*/

@import "base.css";
@import "layout.css";
@import "form.css";
@import "progressbar.css";

/*---------------------- tmp ------------------------*/

.clear {
    clear: both;
}

.center {
    display: block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.attention {
    color: #f00;
}

/*----------------------------------------------*/

a.box {
    display: block;
    border: 1px solid #cccccc;
    box-shadow: 0 0 0px 0px #aaaaaa;
    transition: all 0.2s linear 0s;
}

a.box:hover {
    box-shadow: 0 0 10px 4px #aaaaaa;
    transition: all 0.2s linear 0s;
}

/*----------------------------------------------*/

.pagination {
    display: flex;
    list-style: none;
    justify-content: center;
}

.pagination>li {
    margin: 0;
    padding: 0.5em;
}

.pagination>li>a {
    display: block;
    background: #f5f5f5;
    padding: 0.5em;
    border: 1px solid #ccc;
    border-radius: 2px;
}

.pagination>li>a:hover {
    border: 1px solid #c00;
}

.pagination>li>span {
    display: block;
    padding: 0.5em;
}


/*----------------------------------------------*/

/*.mock {*/
/*    display: inline-block;*/
/*    background: #d00;*/
/*    color: #fff;*/
/*    padding: 0.5rem;*/
/*    border-radius: 5px;*/
/*    font-weight: normal;*/
/*}*/

.note {
    color: #e60;
}

.competitors {
    font-size: 0.8rem;
    color: #666;
}


.price-table {
    max-width: 30rem;
}

@media (max-width: 767px) {
    .price-table {
        width:100%;
    }
}


.price {
    font-size: 1.3em;
    font-weight: bold;
}

.diff-neg {
    color: #e00;
}
.diff-pos {
    color: #00e;
}

.home-menu fieldset {
    width: 100%;
	margin: 0 10px 0 10px;
}

.home-menu {
    justify-content: left;
}
.home-menu fieldset {
    width: 100%;
}

@media (max-width: 767px) {
    .home-menu {
        flex-wrap: wrap;
    }
	
.home-menu fieldset {
    width: 100%;
	margin: 0 0px 0 0px;
}
	
}

/*----------------------------------------------*/








/*----------------------------------------------*/
/* modal                                        */
/*----------------------------------------------*/

.modal-content {
    position: fixed;
    display: none;
    z-index: 2;
    width: 500px;
    height: 90%;
    margin: 0;
    padding: 1em 1em 4em 2em;
    background: #ffffff;
    color: #000000;
    border-radius: 0.5em;
}
@media (max-width: 767px) {
    .modal-content {
        width: 95%;
    }
}

.admin-modal-content {
    position: fixed;
    display: none;
    z-index: 2;
    width: 1180px;
    height: 90%;
    margin: 0;
    padding: 1em 1em 4em 2em;
    background: #ffffff;
    color: #000000;
    border-radius: 0.5em;
}

.modal-overlay {
    z-index: 1;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-color: rgba(0, 0, 0, 0.75);
}

/*----------------------------------------------*/





/*----------------------------------------------*/
/* admin                                        */
/*----------------------------------------------*/

#admin header {
    background: #c66;
    color: #fff;
}

#admin .menu-list li {
    padding: 0.5em;
}

#admin nav.header {
    /*border: 1px solid #c66;*/
}

#admin footer {
    /*    background: #c66; */
}

/*----------------------------------------------*/
/* Error                                        */
/*----------------------------------------------*/

#errors header {
    background: #eee;
    color: #999;
}

#errors .error-box {
    text-align: center;
    color: #666 ;
}

#errors .error-message {
    font-size: 1.2rem;
}

/*----------------------------------------------*/

.form-search {
    border: 1px solid #ccc;
    width: 50em;
    padding: 0.5em;
    margin: 1em auto;
}

.form-search dt {
    width: 35%;
}

.form-search dd {
    width: 65%;
}

/*----------------------------------------------*/

.item-scroll-wrap {
    border: 1px solid #ccc;
    padding: 10px;
    margin: 1rem;
    max-height: 600px;
    overflow: auto;
}

table.item-list {
    width: 100%;
    margin: 10px auto 10px auto;
}

table.item-list th {
    background: #eee;
    font-weight: normal;
    padding: 0.3rem;
}
table.item-list th.highoc-price {
    background: #ff9;
    font-weight: bold;
    width: 2rem;
}

table.item-list th.regular-price {
    background: #fcc;
    font-weight: bold;
}

table.item-list th.diesel-price {
    background: #cf9;
    font-weight: bold;
}

table.item-list th.kerosene-price {
    background: #bef;
    font-weight: bold;
}

table.item-list td {
    padding: 0.3rem 0.5rem;
}
table.item-list td.guidance-name {
    text-align: left;
}

table.item-list__compare td {
    padding: 1rem;
    text-align: left;
}
table.item-list__compare td label {
    display: inline-block;
    margin: 0.3rem 0;
}


table.sticky_table th:first-child {
    position: sticky;
    left: 0;
}
table.sticky_table th:first-child::before{
    content : "" ;
    position : absolute ;
    top : 0 ;
    left : 0 ;
    width : 100% ;
    height : 100% ;
}

/* 価格比較 */
.compare {
    border: 2px solid #999;
}
table.compare th {
    background: #777;
    border-bottom: 2px solid #999;
    color: #fff;
}
.compare__name {
    height: 50px;
    font-size: 1.1em;
}
.compare__datetime-txt {
    height: 50px;
    text-align: center;
}
.compare__datetime {
    text-align: center;
}
.compare__paymethod {
    text-align: center;
}
.compare__displayname {
    text-align: center;
}
.compare__highoc-price {
    background: #ff9;
    width: 2rem;
}
.compare__regular-price {
    background: #fcc;
}
.compare__diesel-price {
    background: #cf9;
}
.compare__kerosene-price {
    background: #bef;
}
.compare__price {
    text-align: right;
}
.compare__delta {
    text-align: right;
    border-right: 2px solid #999;
}
.compare__delta-txt {
    text-align: center;
    width: 3rem;
    font-size: 0.9em;
    border-right: 2px solid #999;
}
.compare__delta-minus {
    color: #e00;
}
.compare__nodata {
    color: #e00;
}

.compare__head {
    background: #f0f0e0;
    height: 50px;
}
.compare__bg {
    background: #fafaf5;
}
.compare__bg-none {
    background: #fff;
    border: none;
}
.compare__border-left {
    border-left: 2px solid #999;
}
.compare__border-right {
    border-right: 2px solid #999;
}

.compare__space {
    height: 50px;
}

.compare tbody tr:last-child {
    display: none;
}


/*----------------------------------------------*/

ul#time li {
    justify-content: space-around;
}

.ui-selectable li {
    justify-content: space-around;
}

/*----------------------------------------------*/

table.item-detail {
    width: 90%;
}
table.item-detail th {
    width: 30%;
    background: #eee;
    font-weight: normal;
    padding: 0.3rem;
    text-align: left;
}
table.item-detail td {
    width: 70%;
    padding: 0.3rem;
}

/*----------------------------------------------*/

table.config-table {
    width: 35rem;
}
table.config-table th {
    width: 70%;
    padding: 1em;
}

/*----------------------------------------------*/


.email_status_0 {
    color: #aaa;
}

.email_status_1 {
    color: #3071b9;
}

.email_status_2 {
    color: #00A000;
}

.email_status_3 {
    color: #8c1f1c;
}

/*----------------------------------------------*/

.interview_status_0 {
    color: #3071b9;
}

.interview_status_1 {
    color: #aaa;
}

.interview_status_2 {
    color: #8c1f1c;
}

/*----------------------------------------------*/

.warning {
    color: #c00;
}

/*----------------------------------------------*/



/* マニュアルPDF
----------------------------------------------*/

.maual-box {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
	justify-content: flex-end;
	padding: 10px 0 10px 0;
}

.maual-box a.btn-pdf{
	display:inline-block;
	background: #007FFF;
	color: #fff;
	text-decoration: none;
	padding: 0.4em 0.7em 0.4em 0.7em;
	border-radius: 4px;
}


/*----------------------------------------------*/

.notyet {
    color: #ff0000;
}

@media print {

    html,
    body {
        color: #000000;
    }
}

/*----------------------------------------------*/
