@charset "utf-8";

/* CSS Document */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
    font-family: 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', arial, helvetica, clean, sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    border-top: 4px solid #019ddb;
    /*    background: url(/images/topline.png) repeat-x;
    */
    margin: 0;
    font-size: 13px;
    color: #525252;
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 320px) {
    body {
        font-size: 12px;
    }
}


html {
    /*    overflow-y: scroll;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
}

header div.wrap h1 {
    margin-bottom: 0.67em;
}

ol,
ul {
    list-style: none;
}

fieldset,
img {
    border: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    text-align: left;
    background-color: #FFF;
    word-break: break-all;
    word-wrap: break-all;
}


caption,
th {
    text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
    font-style: normal;
    font-weight: normal;
}

img {
    vertical-align: bottom;
}

a {
    color: #019ddb;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
}

.clearfix {
    zoom: 1;
    /* for IE6/7 */
}

.left {
    float: left;
}

.right {
    float: right
}

.atte {
    color: #f60;
    font-weight: bold;

}

.small2 {
    font-size: 80%;
}

/* ボタンベース */
.btn {
    border-radius: 6px;
    text-decoration: none;
    text-align: center;
    display: block;
    margin: 0 auto;
}

/* ボタン種類 */
.btn-primary {
    background-color: #019ddb;
    color: #fff;
    padding: 0.5em 0;
    border: 1px solid #019ddb;
}

#form a.btn-primary:hover {
    color: #019ddb;
    background-color: #e9f4ff;
    border: 1px solid #019ddb;
    transition: .4s;
}

.btn-secondary {
    background: #e9f4ff;
    color: #019ddb;
    padding: 0.5em 0;
    border: 1px solid #019ddb;
}


a.btn-secondary:hover {
    opacity: 0.5;
    transition: .4s;
}

a.btn-tertiary {
    background-color: #EBEBEB;
    color: #525252;
    padding: 0.5em 0;
}

a.btn-tertiary:hover {
    color: #525252;
    transition: .4s;
}

/* ボタンサイズ */
.btn-large {
    padding: 1em 0;
}

a.btn-pageTop {
    width: 150px;
}

input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"] {
    width: 100%;
    height: 35px;
    padding: 0 0.5em;
    border: 1px solid #CCCCCC;
    font-size: 16px;
    -webkit-appearance: none;
    box-sizing: border-box;
}

input[type="text"].half {
    width: 50%;
}

input[type="text"].per45 {
    width: 45%;
}

input::-webkit-input-placeholder {
    color: #cccccc;
}

input:-ms-input-placeholder {
    color: #cccccc;
}

input::-moz-placeholder {
    color: #cccccc;
}

input[type=checkbox] {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

input[type=radio] {
    width: 20px;
    height: 35px;
    vertical-align: middle;
    margin: 0;
    border: 1px solid #CCC;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    border-color: #019ddb;
}

input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="button"]::focus {
    outline-offset: -2px;
}

select.auto {
    width: auto;
}

@media screen and (min-width:1200px) {
    select {
        font-size: 100%;
    }
}

.num {
    width: 6em;
}

select.num {
    width: 6em;
}

@media screen and (max-width:1199px) {
    .only_pc {
        display: none;
    }
}

@media screen and (min-width:1200px) {
    .only_sp {
        display: none;
    }
}

@media screen and (min-width:1200px) {
    main {
        width: 1100px;
        margin: 0 auto;
        font-size: 14px;
    }

    div#leftBox {
        float: left;
        width: 800px;
    }
}


/*全体*/
.hidden_box {
    margin: 2em 0;
    /*前後の余白*/
    padding: 0;
}

/*ボタン装飾*/
.hidden_box label li {
    padding: 1em;
    cursor: pointer;
    background-color: #019ddb;
    color: #FFF;
    border: 1px solid #019ddb;
    border-radius: 6px;
}

/*ボタンホバー時*/
.hidden_box label li:hover {
    background-color: #eaf7ff;
    border: 1px solid #019ddb;
    color: #019ddb;
    transition: .4s;
}

/*チェックは見えなくする*/
.hidden_box input {
    display: none;
}

/*中身を非表示にしておく*/
.hidden_box .hidden_show {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
}

/*クリックで中身表示*/
.hidden_box input:checked~.hidden_show {
    padding: 10px 0;
    height: auto;
    opacity: 1;
}

/* テンプレートレイアウト */

header {
    background-color: #FFF;
    margin: 5px 0 1em 0;
}

header div.wrap {
    position: relative;
}

@media screen and (min-width: 1200px) {
    header div.wrap {
        width: 1000px;
        height: 85px;
        margin: 0 auto;
    }
}

footer {
    margin-top: auto;
    padding: 1em 0;
    font-size: 90%
}

@media screen and (min-width: 1200px) {
    footer div.wrap {
        width: 1000px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 1199px) {
    footer div.wrap {
        margin: 0 0.5em;
    }
}

#copyright {
    margin: 0;
    text-align: right;
    color: #FFF;
}

@media screen and (max-width: 1199px) {
    #copyright {
        text-align: center;
        font-size: 80%;
    }
}

h1 {
    font-size: 12px;
    font-weight: normal;
    margin-top: 0px
}

h1 img {
    display: block;
}

@media screen and (max-width: 1199px) {
    h1 img {
        width: 180px;
    }
}

.step {
    margin-bottom: 5em;
}

@media screen and (max-width: 1199px) {
    .step {
        margin-bottom: 2em;
    }
}

.step ol {
    display: table;
    width: 100%;
    overflow: hidden;
}

.step li {
    display: table-cell;
    position: relative;
    background-color: #CCCCCC;
    padding: 1em 0.5em 1em 2em;
}

.step li:last-child {
    padding-right: 1em;
}

.step li:last-child:before,
.step li:last-child:after {
    display: none;
}

.step li:before,
.step li:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin: auto;
}

.step li:before {
    top: -13px;
    right: -1em;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
    border-width: 40px 0 40px 1em;
    z-index: 10;
}

.step li:after {
    top: -13px;
    right: -.8em;
    border-style: solid;
    border-color: transparent transparent transparent #CCC;
    border-width: 40px 0 40px 1em;
    z-index: 10;
}

.step li.active {
    background: #019ddb;
    font-weight: bold;
    color: #FFF;
}

.step li.active:after {
    border-color: transparent transparent transparent #019ddb;
}

@media screen and (max-width: 1199px) {
    .step ol {
        font-size: 10px;
    }

    .step li {
        padding-top: 1.2em;
        padding-left: 1.5em;
        padding-right: 0;
    }

    .step li:first-child {
        padding-left: 1em;
    }

    .step li:before,
    .step li:after {
        top: -21px;
    }
}

/* 検索一覧 */
div#search div#rightBox {
    border: 1px solid #CCC;
    float: right;
    width: 290px;
}

div#result {
    position: relative;
    background-color: #019ddb;
    color: #fff;
    margin-bottom: 3em;
    padding: 1em;
}

div#result ul {
    font-size: 120%;
    width: 70%;
}

.btn-research {
    width: 10em;
    margin: 2em auto 0 auto;
}

div.researchBox {
    font-size: 120%;
}

div.researchBox h3 {
    background-color: #019ddb;
    color: #FFF;
    padding: 0.5em 0;
    margin-bottom: 1em;
    font-size: 120%;
}

div.researchBox dl:not(:first-of-type) {
    margin-bottom: 1em;
}

div.researchBox p.research a {
    display: block;
    text-align: center;
    width: 60%;
    margin: 2em auto 0 auto;
    padding: 1em 1.5em;
}

div.researchBox dl {
    display: table;
    width: 100%;
}

div.researchBox dt {
    display: table-cell;
    width: 20%;
}

div.researchBox dd {
    display: table-cell;
    width: 80%;
    text-align: left;
    padding-left: 10px;
}

div.researchBox select {
    font-size: 120%;
}

@media screen and (min-width:1200px) {
    div.researchBox {
        font-size: 90%;
        text-align: center;
    }

    div.researchBox div.wrap {
        padding: 0 10px 10px 10px;
    }

    div.researchBox select {
        font-size: 90%;
    }

    div.researchBox h3 {
        text-align: center
    }
}

ul#dayBtn {
    margin: 0 1em 1em 1em;
}

ul#dayBtn li {
    width: 6em;
}

ul#dayBtn li:first-child {
    float: left;
}

ul#dayBtn li:last-child {
    float: right;
}

ul#binList>li {
    border: 2px solid #CCC;
    margin-bottom: 3em;
}

ul#binList div.title {
    border-bottom: 1px solid #CCC;
    background-color: #EAF7FF;
    padding: 0.5em;
}

ul#binList h3 {
    font-weight: bold;
    font-size: 110%;
}

ul.timeTable {
    display: inline-block;
}

ul#binList ul.icon li,
ul.timeTable li {
    display: inline-block;
    font-size: 90%;
}

ul#binList ul.icon li {
    font-size: 80%;
}

ul#binList ul.icon li {
    color: #019ddb;
    background-color: #f5ff00;
    padding: 2px 4px;
    border-radius: 2px;
}

ul#binList ul.icon li.off {
    background-color: #CCC;
    color: #525252;
}

ul#binList div.title h3 {
    width: 80%;
    font-size: 110%;
    margin-bottom: 0.5em;
}

@media screen and (min-width:1199px) {
    ul#binList div.title h3 {
        font-size: 120%;

    }
}

ul#binList p.seatType {
    width: 30%;
    float: right;
    text-align: right;
}

ul#binList div.binContents {
    padding: 1em 0.5em 0.5em 0.5em;
    border-bottom: 1px dotted #CCC;
}

ul#binList ul.timeTable li {
    border: 1px solid #CCC;
    text-align: center;
    padding: 2px 0.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
}

ul#binList ul.timeTable li.arrow {
    border: none;
}

ul#binList ul.timeTable li span.time {
    display: block;
    font-weight: normal;
}

ul#binList ul.timeTable li.dep {
    background-color: #E4FFE1;
}

ul#binList ul.timeTable li.arr {
    background-color: #FFF0DB;
}

ul#binList div.binStatus {
    padding: 0.5em;
}


ul#binList div.priceType {
    letter-spacing: -.4em;
    /* 文字間を詰めて隙間をなくす */
    text-align: right;
}


ul#binList div.priceType dl {
    display: inline-block;
    letter-spacing: normal;
    /* 文字間を元に戻す */
    text-align: center;
    vertical-align: top;
    height: 75px;
}

ul#binList div.priceType dl:first-of-type {
    width: 69%;
}


ul#binList div.priceType dl:nth-of-type(2) {
    width: 13%;
}

ul#binList div.priceType dl:nth-of-type(3) {
    width: 18%;
}

ul#binList div.priceType dl dt {
    background-color: #ebebeb;
    padding: 2px 0.5em;
    margin-bottom: 5px;
}

ul#binList div.priceType dl:not(:last-of-type) dd {
    padding-top: 0.5em;
}

@media screen and (min-width:1200px) {
    ul#binList div.priceType dl.price dd:first-of-type {
        margin-right: 1.5em;
    }
}

ul#binList div.priceType dl.price dd {
    display: inline-block;
}

ul#binList div.priceType span.num {
    /*
	color: #DF0000;
*/
    font-weight: bold;
    line-height: 0;
    font-size: 130%;
}



@media screen and (min-width: 1200px) {
    #binList.photo {
        padding: 1em 0.5em 0.5em 0.5em;
        display: inline-block;
        width: 25%;
        vertical-align: top;

    }

    #binList .bin {
        display: inline-block;
        width: 74%;
        vertical-align: top;
    }

}




dl.busInfo dt {
    float: left;
    width: 7em;
    padding: 2px;
    margin-right: 0.5em;
    background-color: #ebebeb;
}

dl.busInfo dd {
    padding: 2px;
    text-align: left;
    margin: 5px 0 5px 8em;
}

dl.busInfo table {
    width: 100%;
    margin-top: 0.5em;
}

.btn-busInfo {
    width: 70%;
    margin-top: 1em;
}

div#result p.btnReverse {
    position: absolute;
    top: 1em;
    right: 1em;
    height: 50px;
    opacity: 1;
}

div#result p.btnReverse a:hover {
    opacity: 0.9;
    transition: .4s;
}

@media screen and (max-width:1199px) {
    div#result p.btnReverse img {
        width: 91px;
        height: 35px;
    }
}


/* フォーム */
div#form {
    margin-bottom: 3em;
    font-size: 13px;
}

@media screen and (min-width:1200px) {
    div#form {
        width: 850px;
        margin: 0 auto 5em auto;
    }
}

@media screen and (max-width:1199px) {
    div.formContents {
        padding: 0 0.5em;
    }
}

@media screen and (max-width: 320px) {
    div#form {
        font-size: 12px
    }
}

div#form div.wrap+div.wrap,
div#form div.reserve2+div.reserve2 {
    margin-top: 2em;
}

div#form h1 {
    padding: 0.5em 1em;
    margin: 0 0 2em 0;
    background: -webkit-repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px, #e9f4ff 3px, #e9f4ff 7px);
    background: repeating-linear-gradient(-45deg, #f0f8ff, #f0f8ff 3px, #e9f4ff 3px, #e9f4ff 7px);
    font-size: 140%;
    font-weight: bold;
    margin-bottom: 2em;
    text-align: center;
}

div#form h2 {
    font-size: 130%;
    font-weight: bold;
}

div#form h2:not(:first-child) {
    margin-top: 2em;
}

div#form .note {
    margin: 0 0 0.5em;
}

div#form .note p {
    margin-bottom: 1em;
}

div#form .note strong {
    font-weight: normal;
    color: #df0000;
}

div#form table {
    width: 100%;
    border: 1px solid #ccc;
    font-size: inherit;
}

div#form table caption {
    margin-top: 1em;
}

div#form table th,
div#form table td {
    padding: 1em;
    border: 1px solid #CCCCCC;
}

div#form table.no_padding td {
    padding: 0;
}

div#form table th {
    background-color: #ebebeb;
    white-space: nowrap;
}

div#form table.res2 th,
div#form table.res2 td {
    padding: 1em;
}

div#form table td span.anno {
    font-size: 80%;
}

div#wait table td {
    padding: 0.2em;
}

div#form table#no_border,
div#form table#no_border tbody,
div#form table#no_border tr,
div#form table#no_border td,
div#form table#no_border th {
    border: none;
}


.btnArea {
    margin: 1em 0;
    display: flex;
    justify-content: space-around;
}

.btnArea li {
    width: 40%;
    margin: 0.5em 0;
}

@media screen and (max-width:1199px) {
    div#form table {
        border: none;
    }

    div#form table.res2 {
        border: 1px solid #CCC;
    }

    div#form table.res2 th,
    div#form table.res2 td {
        display: block;
        border: none;
        padding: 0.5em;
    }

    div#form table.res2 #siharai_table th,
    div#form table.res2 #siharai_table td {
        display: table-cell;
        border: 1px solid #CCC;
    }

    div#form table.res2 th {
        font-size: 110%;
    }

    div#form table.res2 td {
        margin: 0.5em 0;
    }

    div#form table td span.anno {
        font-size: inherit;
    }
}

div#form table td.binName {
    padding: 0;
}

div#form div.total {
    margin-top: 4em;
    padding-left: 2%;
    padding-right: 2%;
}

div#form div.total dl {
    display: flex;
    flex-wrap: wrap;
}

div#form div.total dt {
    width: 8em;
}

div#form div.total dd {
    width: calc(100% - 8em);
    text-align: right;
}

@media screen and (max-width:320px) {
    div#form div.total {
        font-size: 11px;
    }
}

div#form div.totalamount {
    position: sticky;
    position: -webkit-sticky;
    bottom: 0;
    font-size: 25px;
    background-color: #fff;
    margin: 0 -2%;
    padding: 0.5em 0;
    border-top: 1px solid #ccc;
}

div#form div.totalamount dl {
    border-bottom: 2px solid #019ddb;
    margin: 0 0.5em;
}

div#form div.totalamount dt {
    width: 50%;
}

div#form div.totalamount dd {
    width: 50%;
    text-align: right;
}

div#form div.totalamount dd {
    color: #019ddb;
}


div#form div.yakkanBox {
    margin-top: 2em;
    border: 2px solid #df0000;
    background-color: #ffeaea;
    padding: 2%;
}

div#form div.yakkanBox div.yakkanContents {
    height: 150px;
    overflow: auto;
    background-color: #ffffff;
    padding: 0.5em 0.5em 0 0.5em;
}

div#form div.yakkanBox div.yakkanContents h2 {
    text-align: center;
    margin: 0;
}

div#form div.yakkanBox div.yakkanContents h3,
div#form div.yakkanBox div.yakkanContents h4 {
    font-weight: bold;
    margin: 0.5em 0;
}

div#form div.yakkanBox div.yakkanContents li {
    margin-left: 0.5em;
    text-indent: -0.5em;
}

div#form div.yakkanBox p.check {
    margin-top: 0.5em;
    text-align: center;
}


div#form div.wrap {
    border: 2px solid #ccc;
}

div#form div.binName {
    position: relative;
    background-color: #EAF7FF;
    padding: 1em;
    border-bottom: 1px dotted #CCC;
}

div#form div.binName p.route {
    font-size: 130%;
    font-weight: bold;
}

div#form div.binName p.binName {
    font-size: 120%;
    font-weight: bold;
}

div#form div.binName p.del {
    position: absolute;
    top: 1em;
    right: 1em;
}

@media screen and (min-width:1200px) {

    div#form div.binName p.day,
    div#form div.binName p.route,
    div#form div.binName p.binName {
        display: inline-block;
        margin-right: 1em;
    }
}


/* 乗降場所・人数選択 */
div.reserve1 {
    padding: 1em;
}

div.reserve1 div.busstop_wrap {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

div.reserve1 div.busstop_wrap+div.busstop_wrap {
    border-top: 1px dotted #ccc;
    margin-top: 2em;
    padding-top: 2em;
}

div.busstop_wrap ul.busstop {
    width: 100%;
}

div.reserve1 ul.busstop li.day {
    background-color: #ebebeb;
    margin-bottom: 0.5em;
    padding: 0.2em 0.5em;
    font-weight: bold;
}

div.reserve1 ul.busstop li.arrow {
    color: #CCC;
    text-align: center;
}

div.busstop_wrap div.numBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

div.busstop_wrap div.numBox div {
    width: 50%;
    text-align: center;
    margin-top: 1em;
}

div.busstop_wrap div.numBox div ul {
    display: flex;
    justify-content: space-between;
}

div.numBox ul li {
    margin: 0 0.5em;
    font-weight: bold;
}

div.numBox ul li:first-of-type {
    color: #06F;
}

div.numBox ul li:last-of-type {
    color: #F03;
}

div.busstop_wrap div.numBox .select-wrap::after {
    margin-top: 5px
}

div.busstop_wrap div.numBox div.child_info_wrap {
    width: 100%;
    text-align: right;
    margin-top: 5px;
    font-size: 90%;
}

div.numBox .child_hosoku {
    color: #df0000;
}

div.numBox div.child_info_wrap a {
    display: block;
    margin-top: 5px;
}

.remodal div.child_info {
    text-align: left;
    margin: 0 1em;
}

.remodal div.child_info h3 {
    text-align: left;
    font-weight: bold;
    font-size: 120%;
    margin-bottom: 0.5em;
}

.plusBusStop {
    margin-top: 1em;
}

@media screen and (min-width:1200px) {
    div.reserve1 ul.busstop {
        width: 60%;
    }

    div.reserve1 ul.busstop li {
        width: 78%;
        display: inline-block;
    }

    div.reserve1 ul.busstop li.day {
        width: 16%;
        display: inline-block;
        background-color: inherit;
        padding: 0;
        vertical-align: middle;
    }

    div.reserve1 ul.busstop li.arrow {
        width: 100%;
    }

    div.reserve1 div.numBox {
        width: 40%;
        vertical-align: top;
        text-align: right;
    }

    .remodal div.child_info {
        margin: 0 2em;
    }
}

div.reserve1 div.numBox h3 {
    font-size: 110%;
}


div#form table.option {
    margin-top: 2em;
    border: 2px solid #ccc;
}

div#form table.option th {
    font-weight: bold;
    font-size: 120%;
    background-color: #eaf7ff;
}

div#form table.option td {
    border-right: 2px solid #ccc;
}

div#form table.option label {
    display: flex;
    flex-wrap: wrap;
    cursor: pointer;
}


div#form table.option label div {
    width: 80px;
    text-align: center;
    padding-right: 1em;
}

div#form table.option dl {
    width: calc(100% - 80px);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
}

div#form table.option dt {
    font-weight: bold;
    font-size: 140%;
    padding-bottom: 0.5em;
    width: 75%;
}

div#form table.option .option_price {
    color: #019ddb;
    font-weight: bold;
}

div#form table.option input[type=checkbox] {
    width: 30px;
    height: 30px;
    margin: 0;
}

@media screen and (min-width: 1200px) {
    div#form table.option label div {
        width: 80px;
    }

    div#form table.option dl {
        width: calc(100% - 80px);
    }
}

div#form table.seat span {
    display: block;
    font-weight: normal;
    font-size: 90%;
    margin-top: 1em;
}

div#form table.seat input[type=radio] {
    display: none;
}

div#form table.seat label {
    display: block;
    float: left;
    border: 1px solid #019ddb;
    color: #019ddb;
    border-radius: 4px;
    padding: 1em 0;
    width: 30%;
    text-align: center;
    cursor: pointer;
}

div#form table.seat label:not(:last-of-type) {
    margin-right: 4%;
}

div#form table.seat input[type=radio]:checked+label {
    background-color: #019ddb;
    color: #FFF;
}


div.reserve1 hr {
    margin: 2em 0;
    border: none;
    border-top: 1px dotted #ccc;
}

h2.option {
    margin: 3em 0 0.5em 0;
}

div.option select {
    margin-bottom: 0.5em;
}

div.option:not(:last-of-type) {
    margin-bottom: 2em;
}


/*****  復路検索ボックス *****/
div#form .researchBox {
    margin: 2em 0 2em 0;
}

div#form .researchBox h3 {
    background-color: #eaf7ff;
    color: #525252;
    font-weight: bold;
    border-bottom: 1px solid #ccc;
    font-size: 110%;
}

div#form .researchBox div.wrap {
    border: none;
}

div#form .researchBox dl {
    margin: 1em 0;
}

@media screen and (min-width: 1200px) {
    div#form .researchBox .wrap {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    div#form .researchBox dl {
        width: 220px;
    }


    div#form .researchBox p {
        width: 100px;
    }
}


/***** 復路検索ボックスここまで *****/
.searchBox h3 {
    background-color: #019ddb;
    color: #FFF;
    padding: 0.5em 0;
    text-align: center;
    font-size: 120%
}

.searchBox {
    border: 2px solid #CCC;
}

div#form .searchBox .wrap {
    border: none;
    padding: 1em;
}

.searchBox p:first-of-type {
    width: 130px;
    margin: auto;
    text-align: center;
}

.searchBox dl {
    margin-bottom: 1em;
}

.searchBox dt,
.searchBox dd {
    display: inline-block;
    vertical-align: middle;
}

.searchBox dt {
    width: 20%;
}

.searchBox dd {
    width: 70%;
}

@media screen and (min-width:1200px) {

    .searchBox p,
    .searchBox dl {
        display: inline-block;
    }

    .searchBox p {
        vertical-align: middle;
    }

    .searchBox p:last-child {
        display: block;
    }

    .searchBox dt {
        width: auto;
    }

    .searchBox dd {
        width: auto;
        margin-right: 2em;
    }

    .searchBox dl:first-of-type dd,
    .searchBox dl:last-of-type dd {
        margin-right: 0;

    }
}

.guideBus {
    margin-top: 2em;
    border: 1px solid #fa6e70;
    background-color: #ffeaea;
}

.guideBus>div {
    padding: 0.5em 0;
}

.guideBus strong {
    font-weight: normal;
    color: #df0000;
}

.guideBus h3 {
    font-weight: bold;
    background-color: #df0000;
    color: #FFf;
    font-size: 120%;
    padding: 0.3em 0 0.3em 0.5em;
}

.guideBus h3:active {
    background-color: aqua;
}

.guideBus p {
    font-size: 180%;
}

.guideBus li.accordion_head::before {
    content: "";
}

.guideBus li.accordion_head {
    display: block;
    text-align: right;
    color: #DF0000;
}

.guideBus li.accordion_head i {
    background-color: #fff;
    margin-right: 0.5em;
    font-size: 130%
}

/* 搭乗者情報 */
div#form div.reserve2 table+table {
    margin-top: 3em;
}

div#form div.reserve2 table caption {
    font-weight: bold;
    font-size: 120%;
    margin-left: 0.5em;
}

@media screen and (min-width:1200px) {
    div#form div.reserve2 table {
        border: 2px solid #CCC;
    }
}

div#form table th.binName {
    background-color: #eaf7ff;
}

@media screen and (max-width: 1199px) {
    .binName span {
        display: block;
    }
}

th.binName .route {
    font-size: 130%;
    font-weight: bold;
    margin-right: 1em;
}

th.binName .day {
    margin-right: 1em;
}

th.binName .bin {
    white-space: normal;
}

table th.binName {
    position: relative;
    background-color: aquamarine
}

@media screen and (min-width: 1200px) {
    th.name {
        width: 25%;
    }
}

td.nameInfo {
    line-height: 3.5;
}

th.binName .del {
    position: absolute;
    top: 1em;
    right: 1em;
}

div#form div.gender {
    margin-top: 0.5em;
}

div#form div.gender input[type=radio] {
    display: none;
}

div#form div.gender label {
    display: block;
    float: left;
    /*    background-color: #ebebeb;*/
    border: 1px dashed #CCC;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 0.5em 0;
    width: 18%;
    text-align: center;
    cursor: pointer;
    line-height: 1.3;
    font-size: 90%;
    color: #cccccc;
}

div#form div.gender label.childM,
div#form div.gender label.childF {
    margin-top: 0.6em;
    padding: 0.2em 0;
    width: 15%
}

div#form div.gender label:not(:last-of-type) {
    margin-right: 6%;
}

div#form div.gender input[type=radio]:checked+label.adultM,
div#form div.gender input[type=radio]:checked+label.childM {
    background-color: #87acff;
    border: 1px solid #87acff;
    color: #FFF;
}

div#form div.gender input[type=radio]:checked+label.adultF,
div#form div.gender input[type=radio]:checked+label.childF {
    background-color: #ff9b9b;
    border: 1px solid #ff9b9b;
    color: #FFF;
}

/* CHUBB */
.chubb {
    width: 94%;
    margin: 0 auto;
}

@media screen and (min-width: 850px) {
    .chubb {
        width: 850px;
        margin: 0 auto;
        font-size: 16px;
    }
}

.chubb .outline-list {
    margin-top: 2em;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 10%;
    column-gap: 1em;
}

.chubb .outline-item {
    text-align: center;
}

.chubb .outline-item img {
    margin-bottom: 0.5em;
}

@media screen and (min-width: 650px) {
    .chubb .outline-item img {
        width: 150px;
    }
}

.chubb .outline-table {
    margin-top: 2em;
}

.chubb .outline-ttit {
    background-color: #EAF7FF !important;
    font-weight: bold;
}

.chubb .outline-tit3 {
    font-weight: bold;
    font-size: 130%;
}

.chubb .outline-ttit span {
    display: block;
    font-weight: normal;
}

.chubb .outline-tdata._price {
    white-space: nowrap;
    text-align: right;
}

.chubb .outline-txt._small {
    margin-top: 0.5em;
    font-size: 80%;
    color: #969696;
}

.chubb .outline-txt._price {
    margin-top: 2em;
    border: 1px solid #ccc;
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
}

.chubb .outline-txt._price span {
    font-size: 170%;
    margin-left: 0.5em;
}

.chubb .tab_wrap {
    margin-top: 2em;
}

.chubb .entry-txt._price {
    margin-top: 2em;
    border: 1px solid #ccc;
    font-weight: bold;
    text-align: center;
    padding: 0.5em;
    background-color: #fff;
}

.chubb .entry-txt._price span {
    font-size: 170%;
    margin-left: 0.5em;
}

.chubb .entry-btn+.entry-btn {
    margin-top: 1em;
}

.chubb .entry-btn {
    display: block;
    background-color: #019ddb;
    padding: 1em;
    color: #fff;
    font-size: 120%;
}

.chubb .entry-btn span {
    position: relative;
    display: flex;
    align-items: center;
}

.chubb .entry-btn span::before {
    content: "";
    display: block;
    border-radius: 50%;
    background-color: #fff;
    margin-right: 0.5em;
    width: 20px;
    height: 20px;
}

.chubb #tab1:checked~.tab1_label span::after,
.chubb #tab2:checked~.tab2_label span::after {
    content: "";
    position: absolute;
    left: 3px;
    display: block;
    border-radius: 50%;
    background-color: #f60;
    width: 14px;
    height: 14px;
}


.chubb .namelist {
    margin-top: 4em;
    background-color: #fff;
}


.chubb .namelist-tit2 {
    font-size: 130% !important;
}


.chubb .namelist-txt._atte {
    color: #DF0000;
}


.chubb .namelist-def+.namelist-def {
    margin-top: 2em;
}


.chubb .namelist-def {
    margin-top: 1em;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 0.5em;
    border: 1px solid #ccc;
    background-color: #ebebeb;
    padding: 1em;
    align-items: baseline;

}

.chubb .namelist-def.-invalid {
    border: 1px solid #DF0000;
}

.chubb .namelist-data._name {
    grid-row: 1 / 2;
    grid-column: 1 / 3;
    font-size: 110%;
    font-weight: bold;
}

.chubb .namelist-data._age {
    grid-row: 2/3;
    grid-column: 2 / 3;
    font-size: 110%;
    font-weight: bold;
}

.chubb .namelist-data._age span {
    font-weight: normal;
    font-size: 80%;
}


.chubb .namelist-data._birthday {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
    margin-top: 0.5em;
    font-size: 12px;
}

.chubb .namelist-alert {
    visibility: hidden;
    height: 0;
    color: #DF0000;
    font-size: 14px;
    grid-column: 1 / 3;
}

.chubb .namelist-alert.-on {
    visibility: visible;
    height: auto;
}

.chubb .namelist-data span {
    white-space: nowrap;
    font-size: 90%;
}

.chubb .namelist-data input[type=tel] {
    border-radius: 0;
    width: 10em;
    font-size: 14px;
}

@media screen and (min-width: 500px) {
    .chubb .namelist {
        margin-bottom: -1em;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .chubb .namelist-tit2,
    .chubb .namelist-txt._atte {
        width: 100%;
    }

    .chubb .namelist-def {
        margin-bottom: 1em;
        width: calc(50% - 1em)
    }

    .chubb .namelist-def+.namelist-def {
        margin-top: 1em;
    }
}

.chubb .notice {
    margin-top: 4em;
    border: 1px solid #ccc;
    padding: 1rem;
    background-color: #fff;
}

.chubb .notice-tit2 {
    background-color: #eaf7ff;
    margin: -1rem -1rem 0 -1rem;
    border-bottom: 1px solid #ccc;
    padding: 0.5em;
}

.chubb .notice-txt {
    margin-top: 1em;
}

.chubb .notice-txt._small {
    font-size: 80%;
}

.chubb .manual {
    margin-top: 4em;
    border: 1px solid #ccc;
    padding: 1rem;
    background-color: #fff;
}

.chubb .manual-tit2 {
    background-color: #eaf7ff;
    margin: -1rem -1rem 0 -1rem;
    border-bottom: 1px solid #ccc;
    padding: 0.5em;
}

.chubb .manual-txt {
    margin-top: 1em;
}

.chubb .manual-txt._small {
    font-size: 80%;
}

.chubb .manual-txt._atte {
    color: #DF0000;
}

.chubb .manual-btn {
    margin-top: 1em;
}

.chubb .manual-btn a {
    display: block;
    background-color: #019ddb;
    color: #fff;
    padding: 1em;
    text-align: center;
}

@media screen and (min-width: 850px) {
    .chubb .manual-btn a {
        width: 600px;
        margin-right: auto;
        margin-left: auto;
    }
}

.chubb .manual label {
    cursor: pointer;
}

.chubb .manualcheck {
    margin-top: 1em;
    display: flex;
    align-items: center;
    background-color: #ebebeb;
    border: 1px solid #ccc;
    padding: 1em;
}

.chubb .manualcheck input {
    width: 20px;
}

.chubb .manualcheck-txt {
    width: calc(100% - 20px);
    padding-left: 0.5em;
}

@media screen and (min-width: 850px) {

    .chubb .manualcheck,
    .chubb .manual-txt._small {
        width: 600px;
        margin-right: auto;
        margin-left: auto;
    }
}

.chubb .sign {
    margin-top: 2em;
    margin-right: auto;
    margin-left: auto;
    width: 19em;
    background-color: #fff;
}

.chubb .sign-dtit {
    width: 6em;
}

.chubb .sign-data::before {
    content: "：";
}

.chubb .sign-wrap {
    display: flex;
    margin-top: 0 !important;
    border: none !important;
}

.chubb .btn {
    margin-top: 2em;
}

.chubb .btn-item {
    display: inline-block;
    width: 40%;
    margin: 0.5em 1em;
}

.birthdayAlert {
    display: none;
    width: 80%;
    padding: 16px;
    margin: 0 auto;
    z-index: 20;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
}

@media screen and (min-width: 450px) {
    .birthdayAlert {
        width: 360px;
    }
}

.birthdayAlert.-on {
    display: block;
}

.birthdayAlert_text {
    margin-bottom: 20px;
}

.birthdayAlert_yesNoBox {
    display: flex;
    justify-content: space-evenly;
}

.birthdayAlert_yes,
.birthdayAlert_no {
    width: 60px;
    height: 40px;
}

.bgBlack {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    opacity: 0.8;
    z-index: 10;
    background-color: #525252;
}

.bgBlack.-on {
    display: block;
}

/* CHUBBここまで */


/* 支払方法*/
/*tabの形状*/
.reserve4 .paylist .radio-label {
    display: block;
}

.reserve4 .paylist .radio-text {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-left: 2em;
}

.reserve4 .paylist .radio-text img {
    height: 20px;
    margin-right: 1rem;
}

.reserve4 .paylist .radio-text:before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 12px;
    height: 12px;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 3px;
    top: 0;
    bottom: 0;
    margin: auto 6px auto -2em;
}

.reserve4 .paylist ._recom::after {
    content: "おすすめ！";
    padding: 1px 5px;
    margin-left: 0.5em;
    border-radius: 4px;
    background-color: #019ddb;
    color: #FFFFFF;
    font-size: 80%;
}

.reserve4 .paylist input[type="radio"]:not(:checked)+.radio-text:before {
    border-color: #ccc;
    background-color: #fff;
}

.reserve4 .paylist input[type="radio"]:checked+.radio-text:before {
    border-color: #ccc;
    background-color: #019ddb;
    background-clip: content-box;
}

.reserve4 .paylist {
    border: 1px solid #ccc;
}

.reserve4 .paylist+dl {
    margin-top: 0.5em;
}

.reserve4 .paylist .paytitle {
    background-color: #eaf7ff;
}


.reserve4 .paylist dt label {
    padding: 1em 1em 1em 3em;
    cursor: pointer;
    font-weight: bold;
    font-size: 120%;
    margin-left: -2em;
}


.reserve4 .paytitle .point {
    border: 1px solid #019ddb;
    border-radius: 4px;
    padding: 0.2em 0.5em;
    margin-top: 0.5em;
    margin-left: 3em;
    font-size: 11px;
    display: table;
    color: #019ddb;
    background-color: #fff;
    font-weight: normal;
}

.reserve4 .paylist .paybox {
    padding: 1em;
    display: none;
}


.reserve4 .paybox *+p,
.reserve4 .paybox *+ul,
.reserve4 .paybox *+div {
    margin-top: 2em;
}

.reserve4 .paybox_item {
    margin-left: 1em;
    text-indent: -1em;
}

.reserve4 .paylist .paybox .hosoku {
    margin-top: 0.5em;
}

.reserve4 .paylogo_list {
    display: flex;
    -moz-column-gap: 0.5rem;
    gap: 1rem;
}

.reserve4 .paylogo_item img {
    max-height: 30px;
    width: auto;
}

@media screen and (min-width: 1200px) {
    .reserve4 .paybox {
        font-size: 100%;
    }
}


/*areaにis-activeというクラスがついた時の形状*/
.reserve4 .paybox.is-active {
    display: block;
    /*表示*/
    -webkit-animation-name: displayAnime;
    animation-name: displayAnime;
    /*ふわっと表示させるためのアニメーション*/
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.reserve4 .atte2 {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    display: inline;
    padding: .3em;
    line-height: 2.2;
    background-color: #ffff66;
    font-weight: bold;
}

@-webkit-keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes displayAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

div#form div.reserve4_wrap {
    margin-top: 3em;
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}

div#form div.wrap+div.reserve4_wrap:nth-of-type(3) {
    margin-top: 4em;
}


/* ログイン画面 */
div#login p {
    text-align: center;
}

div#login h2 {
    text-align: center;
}

div#login div:nth-of-type(2) {
    margin-top: 5em;
}

div#login dl {
    width: 80%;
    margin: 0 auto 2em auto;
}

div#login dt {
    font-weight: bold;
    font-size: 120%;
}

div#login dt {
    margin-top: 1em;
}

.btn-login {
    width: 70%;
    margin-top: 1em;
}


/* 会員登録画面 */
div#user .birthDay {
    display: flex;
    align-items: flex-end;
}

div#user .birthDay .day {
    width: 5em;
}

div#user .select-wrap {
    margin-right: 0.5em;
}

div#user .select-wrap:not(:first-of-type) {
    margin-left: 1em;
}


/* 予約確認 */
div#form div.rsvCom div.wrap {
    border-top: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
}

div.rsvCom table th {
    white-space: nowrap;
}

div.rsvCom div.wrap>table th {
    width: 6em;
}

div.rsvCom>table:last-of-type {
    margin-bottom: 2em;
}


div.rsvCom>table:nth-of-type(n+2) th {
    width: 10em;
}

th.width10em {
    width: 10em;
}



@media screen and (max-width:1199px) {
    div.rsvCom div.wrap>table.res2 th {
        width: 100%;
    }
}

@media screen and (min-width:1200px) {

    div.rsvCom>table th,
    div.rsvCom div.wrap>table th {
        width: 10em;
    }
}


/* 乗車地セレクト時のアラートここから */
div.reserve1 .busstop-alert,
div.rsvCom .busstop-alert,
div.mrstatus .busstop-alert {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 1000;
}

div.reserve1 .busstop-alert.on,
div.rsvCom .busstop-alert.on,
div.mrstatus .busstop-alert.on {
    display: block;
}

div.reserve1 .busstop-box,
div.rsvCom .busstop-box,
div.mrstatus .busstop-box {
    width: 80%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 1em;
    background-color: #fff;
    border-radius: 4px;
    font-size: 120%;
}

@media screen and (min-width: 1000px) {

    div.reserve1 .busstop-box,
    div.rsvCom .busstop-box,
    div.mrstatus .busstop-box {
        width: 50%;
    }
}

div.reserve1 .busstop-btn,
div.rsvCom .busstop-btn,
div.mrstatus .busstop-btn {
    width: 10em;
    margin: 2em auto 0;
    text-align: center;
    cursor: pointer;
    padding: 0.3em;
    background-color: #ebebeb;
    border-radius: 4px;
    font-size: 90%;
}

/* 乗車地セレクト時のアラートここまで */


div#form div.wrap table {
    border: none;
}

div#form div.wrap table:not(:last-child) {
    /*    margin-bottom: 1em;*/
}

div#form div.wrap table th:first-child,
div#form div.wrap table td:first-child {
    border-left: none;
}


div#form div.wrap table th:last-child,
div#form div.wrap table td:last-child {
    border-right: none;
}

div#form div.wrap table.subTable,
div#form div.wrap table.subTable th,
div#form div.wrap table.subTable td {
    text-align: center;
    padding: 0.5em;
    border: 1px solid #CCC;
}

div#form div.wrap table.price tfoot {
    font-weight: bold;
}

div#form div.wrap table.price tbody td,
div#form div.wrap table.price tfoot td {
    text-align: right;
}

div#form div.wrap table.price tbody tr td:nth-of-type(3) {
    text-align: center;
}

div#form div.wrap table.price tbody td:first-of-type {
    text-align: left
}

@media screen and (max-width:1199px) {

    div#form table.subTable th,
    div#form table.subTable td {
        display: table-cell;
        font-size: 90%;
        width: inherit;
    }

    div#form div.wrap table.price th,
    div#form div.wrap table.price td {
        padding: 0.5em;
    }

}

div#form table.name td {
    border-right: none;
    border-left: none;
    white-space: nowrap;
    padding: 1em 0.5em;
}

div#form table.name td.note {
    white-space: inherit;
    color: #fa6e70;
}

div#form table.name tr td:nth-child(2) {
    white-space: normal;
}

dl.busStop {
    margin-bottom: 1em;
}

dl.busStop dt {
    float: left;
}

dl.busStop dd {
    margin-left: 6em;
}

div#form dl.unko {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.2rem 2rem;
}

div#form .cxl-def {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.2rem 2rem;
}

div#form .cxl-txt {
    margin-top: 1rem;
}

div#form table.hoken td {
    line-height: 2;
}

div#form table.hoken img {
    vertical-align: middle;
}

div#form .finalInfo {
    margin-top: 2em;
    border: 2px solid #df0000;
    background-color: #ffeaea;
    padding: 2%;
    color: #df0000;
    font-weight: bold;
}

/* 予約完了 */
div#reserveExec {
    padding: 0 2em;
}

@media screen and (min-width:1200px) {
    div#reserveExec {
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
}

div#reserveExec h2.number {
    font-size: 180%;
    text-align: center;
}

div#reserveExec h3 {
    font-weight: bold;
}

div#reserveExec p {
    margin-top: 1em;
}

/* div#reserveExec p:nth-child(3) {
    padding: 1.5em;
    background-color: #ebebeb;
} */


div#reserveExec .howtobox {
    margin-top: 2em;
    background-color: #eaf7ff;
    padding: 1.5em 1em;
}

div#reserveExec .howtobox h3+p {
    margin-top: 0;
}

div#reserveExec .btn {
    width: 80%;
    margin-top: 2em;
}

div#reserveExec .howtobox ol li {
    list-style: decimal;
    margin-left: 1.5em;
}


/* マイページ */
#mypage {
    position: relative;
}

#mypage h2 {
    margin-bottom: 1em;
}

.logout {
    position: absolute;
    top: -2em;
    right: 1em;
}

.logout a {
    padding: 0.5em 1em;
    font-size: 80%
}

.mypageMenu i {
    width: 1.5em;
    margin-right: 0.5em;
    text-align: center;
    color: #019ddb;
    font-size: 140%;
    vertical-align: middle;
}

a.btn-border:hover i {
    color: #FFF;
}

.mypageMenu li {
    width: 90%;
    margin: 0 auto 1em auto;
}

.btn-border {
    box-sizing: border-box;
    display: inline-block;
    width: 100%;
    text-align: left;
    border: 2px solid #CCC;
    font-size: 16px;
    color: #525252;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: .4s;
}

.btn-border:hover {
    background-color: #019ddb;
    border-color: #6fd2fa;
    color: #FFF;
}

.short li a {
    text-align: center;
}

.short a {
    font-size: 100%;
}

.short i {
    display: block;
    width: 100%;
    text-align: center;
}

.short li {
    width: 49%;
    display: inline-block;
}

ul.short {
    text-align: center;
}

@media screen and (min-width:1200px) {

    .short li {
        display: inline-block;
        width: 30%;
    }

}

/* 予約履歴 */
#myreserve div.sortbtn {
    margin-top: 1em;
    text-align: center;
}

#myreserve input[type=button] {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.5em 1em;
    background-color: #ebebeb;
    color: #525252;
}

#myreserve input[type=button]:hover {
    background-color: #dedede;
}

#myreserve table.pager,
#myreserve table.pager td {
    border: none;
}

.refine {
    margin: 2em;
}

.refine .inline-radio {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #cccccc;
}

.refine .inline-radio div {
    position: relative;
    flex: 1;
}

.refine .inline-radio input {
    width: 100%;
    height: 30px;
    opacity: 0;
}

.refine .inline-radio label {
    position: absolute;
    top: 0;
    left: 0;
    color: #b6b6b6;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    border-right: 1px solid #cccccc;
}

.refine .inline-radio div:last-child label {
    border-right: 0;
}

.refine .inline-radio input:checked+label {
    background: #019ddb;
    color: #fff;
}

p a.btn-pageTop {
    margin-top: 2em;
}

.redtext {
    color: #df0000;
}

div#myreserve dl.history {
    border: 2px solid #CCC;
    padding: 1em 3em 1em 1em;
    margin-bottom: 1em;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    position: relative;
}

@media screen and (max-width: 1199px) {
    div#myreserve dl.history:after {
        font-family: "Font Awesome 5 Free";
        content: "\f152";
        font-weight: 900;
        font-size: 150%;
        position: absolute;
        color: #019ddb;
        right: 0.2em;
        top: 50%;
        transform: translateY(-50%);
    }
}

div#myreserve dl.title {
    display: none;
}

div#myreserve a {
    text-decoration: none;
}


div#myreserve a:nth-of-type(even) {
    display: block;
    background-color: #f9fdff;
}

div#myreserve a:hover dl.history {
    background-color: #019ddb;
    color: #FFF;
    transition: .4s;
}

div#myreserve a:hover dl.history:after {
    color: #ffffff;
}

div#myreserve dl.history dt {
    width: 6em;
}

div#myreserve dl.history dd:before {
    content: "：";
}

div#myreserve dl.history dd {
    vertical-align: top;
    text-indent: -1em;
    width: calc(100% - 6em);
}

div#myreserve dl.history dd:nth-of-type(3),
div#myreserve dl.history dd:nth-of-type(4) {
    font-weight: bold;
}

div#myreserve dl.history div {
    text-align: right;
    width: 100%;
    color: #019ddb;
    font-size: 110%;
}

div#myreserve dl.history div:after {
    font-family: "Font Awesome 5 Free";
    content: " \f138";
}

div#myreserve a:hover dl.history div {
    color: #fff;
}


@media screen and (min-width:1200px) {
    div#myreserve .refine .inline-radio input {
        height: 50px;
    }

    div#myreserve dl.history {
        padding: 0;
        margin-bottom: -1px;
        border: 1px solid #CCC;
        border-radius: 0px;
        flex-wrap: nowrap;
    }

    div#myreserve dl.history dt {
        display: none;
    }

    div#myreserve dl.history dd {
        text-indent: 0;
        padding: 1em 0.5em;
        text-align: center;
    }

    div#myreserve dl.history dd:not(:last-of-type) {
        border-right: 1px solid #ccc;
    }

    div#myreserve dl.history dd::before {
        content: "";
    }

    div#myreserve dl.history dd:nth-of-type(1) {
        width: 75px;
    }

    div#myreserve dl.history dd:nth-of-type(2) {
        width: 85px;
    }

    div#myreserve dl.history dd:nth-of-type(3) {
        width: 130px;
        font-weight: normal;
    }

    div#myreserve dl.history dd:nth-of-type(4) {
        width: 368px;
        font-weight: normal;
        text-align: left;
    }

    div#myreserve dl.history dd:nth-of-type(5) {
        width: 100px
    }

    div#myreserve dl.history dd:nth-of-type(6) {
        width: 90px
    }

    div#myreserve dl.title {
        display: flex;
        background-color: #ebebeb;
    }

    div#myreserve dl.title dd:nth-of-type(4) {
        text-align: center;
    }
}

/* キャンセル待ち */
.wait-txt {
    margin-bottom: 1em;
}

@media screen and (max-width:1199px) {
    .wait-list {
        display: grid;
        row-gap: 1em;
    }

    .wait-def {
        display: grid;
        grid-template-columns: auto 1fr;
        padding: 1em;
        border: 2px solid #ccc;
        border-radius: 6px;
    }

    .wait-def._title {
        display: none;
    }

    .wait-data {
        margin-left: 1em;
        text-indent: -1em;
    }

    .wait-data::before {
        content: "：";
    }

    .wait-data._kaijyo {
        grid-column: 1/3;
        width: 100%;
        max-width: 400px;
        margin: 1em auto 0;
    }

    .wait-data._kaijyo::before {
        content: none;
    }

    .wait-data._kaijyo a {
        display: block;
        padding: 0.5em;
        text-align: center;
        text-decoration: none;
        color: #ffffff;
        background-color: #019ddb;
        border-radius: 6px;
    }
}

@media screen and (min-width:1200px) {
    .wait-item {
        margin-bottom: -1px;
    }

    .wait-def {
        display: grid;
        grid-template-columns: 15% 1fr 15% 15% 15% 10%;
        border-top: 1px solid #cccccc;
        border-right: 1px solid #cccccc;
    }

    .wait-def._title {
        background-color: #ebebeb;
    }

    .wait-dtit {
        display: none;
    }

    .wait-data {
        padding: 1em 0.5em;
        border-left: 1px solid #cccccc;
        border-bottom: 1px solid #cccccc;
        display: grid;
        place-items: center;
    }

    .wait-data._bin {
        text-align: left;
    }
}


/* ポイント履歴 */
.point_total {
    margin-bottom: 20px;
    table-layout: fixed;
}

.precord th {
    text-align: center;
    padding: 1em 0.5em !important;
}

.precord td {
    padding: 1em 0.5em !important;
}

.precord td:not(:nth-of-type(3)) {
    white-space: nowrap;
    text-align: center;
}

.rnwform .debit {
    padding: .5rem;
    border: 1px solid #df0000
}

.rnwform .debit b {
    color: #df0000
}

.rnwform .debit-tit3 {
    padding: .5rem;
    margin: -0.5rem;
    background-color: #df0000;
    color: #fff;
    font-weight: bold;
    text-align: center
}

.rnwform .debit-tit3 span {
    display: inline-block
}

.rnwform .debit .setsumei-def {
    padding: .5rem;
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    font-weight: bold;
    border: 1px solid #df0000;
    border-radius: 4px;
    background-color: #ffeaea
}

.rnwform .debit .setsumei-dtit {
    width: 10em
}

.rnwform .debit .setsumei-data {
    width: calc(100% - 10em);
    margin: 0;
    padding: 0
}

.rnwform .debit .setsumei-txt {
    width: 100%;
    margin: 0 0 1rem 0;
    text-align: center;
    font-weight: bold
}

.rnwform .debit .setsumei-txt._arrow {
    margin-bottom: 0
}

.rnwform .debit .setsumei-txt._arrow::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "";
    font-size: 1.5rem
}

.rnwform .debit .setsumei .atte2 {
    display: inline;
    padding: .3em;
    line-height: 2.2;
    background-color: #ff6;
    font-weight: bold
}