/*===== CSS RESET =====*/
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700');

html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,cite,code,del,dfn,img,ins,kbd,q,s,samp,strike,tt,var,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video,input,textarea,select{outline:none;border:0;font-size:100%;font:inherit;vertical-align:baseline;margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}.clear{clear:both}.clearfix{display:inline-block}.clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;line-height:0;font-size:0}* html .clearfix{height:1%}.clearfix{display:block}p,li,td{background:url('')}
ul, ol {list-style: none;}

/*===== COMMON =====*/
*,
*:before,
*:after{
    margin: 0;
    padding: 0
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100%;
}
body {
    font-size: 16px;
    font-family: Lato, Hiragino Kaku Gothic ProN, Meiryo, sans-serif;
    color: #000;
    text-size-adjust: none;
    line-height: 1;
    letter-spacing: 0.025em;
}

.vn {
    font-family: 'Roboto', 'sans-serif';
}
a {
    color: #003264;
    text-decoration: none;
}
img {
    vertical-align: bottom;
}
img[src$=".jpg"], img[src$=".png"] {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
.bg {
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -ms-interpolation-mode: nearest-neighbor;
}
.trans {
    opacity: 1;
}
.trans:hover,
.trans:hover img {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=85)";
    filter: alpha(opacity=85);
    -moz-opacity: 0.85;
    -khtml-opacity: 0.85;
    opacity: .85;
}
.container{
    width: 1000px;
    margin: 0 auto;
    position: relative;
}


/* btn01 */
.btn01 {
    background: #003264;
    color: #FFF;
    font-weight: 700;
    display: inline-block;
}

.btn_detail .btn01{
    margin: 30px auto!important;
    display: block;
}

/*===== HEADER =====*/
header .container,
header .link,
header .menu > .container {
    display: flex;
    align-items: center;
}
header > .container {
    padding: 5px 0;
}
header .logo {

}
header .logo img {
    width: 260px;
}
header .logo a * {
    display: inline-block;
    vertical-align: middle;
}
header .logo span {
    margin-left: 1em;
    font-size: 14px;
}
header .link {
    justify-content: flex-end;
    width: 42%;
}
header .link > li {
    margin-left: 10px;
    position: relative;
}

header .product_count{
    display: inline-block;
    background: red;
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: white;
    text-align: center;
    line-height: 20px;
    top: -10px;
    right: -15px;
}

header .link .txt {
    font-weight: 700;
}
header .link .fa {
    color: #6fa7d0;
    margin-right: 0.25em;
}
header .link .fa-facebook-official {
    font-size: 25px;
}
header .menu {
    background: #003264;
}
header .menu li {
    width: 20%;
    text-align: center;
    position: relative;
}
header .menu a {
    color: #FFF;
    display: block;
    padding: 17px 0;
}
header .menu .sub-menu {
    position: absolute;
    top:auto;
    right: 0;
    z-index: 999;
    min-width: 200px;
    background: #003264;
    display: none;
}
header .menu .sub-menu li {
    width: 100%;
    text-align: left;
}
header .menu .sub-menu li a {
    padding: 17px;
}
header .menu li:hover > a {
    background: #6fa7d0;
}
header .menu li:hover > .sub-menu {
    display: block;
}

@media (max-width: 779px) {
    header .menu .sub-menu {
        display: block !important;
        background: none transparent ;
        position: static;
    }
    header .menu .sub-menu li {
        border: none;
        padding-left: 50%;
    }
    header .menu .sub-menu li a {

        position: relative;

    }
    header .menu .sub-menu li a:before {
        display: inline-block;
        font: normal normal normal 14px/1 FontAwesome;
        content: "\f0da";
        font-size: inherit;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        position: absolute;
        top:50%;
        margin-top: -7px;
        left: 0;
    }
}
header .menu a:hover {
    background: #6fa7d0;
}
header .language {
    cursor: pointer;
    /* position: absolute; */
    font-weight: 700;
    /* padding-top: 26px; */
    /* right: 5px; */
    font-size: 12px;
}

header .language span{
    border: 2px solid #eee;
    height: 28px;
    border-radius: 10px;
    padding-right: 5px;
    display: block;
}

header .language span:last-child{
    margin-bottom: 0;
}

header .language > .active {
    border: 2px solid #d8e3ea;
    background: #d8e3ea;
}
header .language,
header .language a {
    color: #666;
}
header .language img {
    vertical-align: middle;
    margin-right: 0.5em;
    width: 17px;
}
header .language .fa {
    color: #003264;
    position: absolute;
    right: 8px;
    top: 5px;
}
header .language ul {
    display: none;
}
header .language:hover ul {
    display: block;
}
header .language li {
    padding: 4px 2px;
    background: #FFF;
}
header .container-wrap {
    display: flex;
    position: relative;
}

/*===== FOOTER =====*/
footer > .menu {
    background: #b1cee7;
}
footer > .menu ul {
    display: flex;
    flex-wrap: wrap;
    padding: 50px 0 30px;
}
footer > .menu li {
    width: 20%;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 20px;
}
footer > .menu .fa {
    color: #FFF;
    margin-right: 0.25em;
}
footer > .contact {
    background: #003264;
    color: #FFF;
    padding: 30px 0;
}
footer > .contact a {
    color: #FFF;
    font-weight: 700;
    font-size: 24px;
}
footer > .contact a span {
    font-size: 15px;
    margin-left: 0.5em;
}
footer > .contact .tel {
    display: flex;
    justify-content: center;
    align-items: center;
}
footer > .contact .tel > * {
    margin: 0 13px;
}
footer > .contact .tel .fa {
    margin-right: 0.25em;
    vertical-align: middle;
    font-size: 30px;
}
footer > .contact .add {
    text-align: center;
    font-size: 14px;
    margin: 20px 0;
}
footer > .contact .add span {
    font-weight: 700;
}
footer > .contact .card {
    display: flex;
    justify-content: center;
}
footer > .contact .card img {
    width: 40px;
    height: 27px;
    margin: 0 5px;
}
footer > .copy {
    text-align: center;
    font-size: 14px;
    padding: 15px 0;
}

/*===== TOP =====*/
/* top_kv */
.top_kv{
    position: relative;
}
.top_kv img {
    width: 100%;
}
.top_kv h2{
    position: absolute;
    top: 150px;
    left: 0px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 40px;
    line-height: 1.75;
    font-weight: bold;
}
.top_kv span{
    display: block;
    font-size: 18px;
    margin-top: 30px;
}
.top_kv a{
    /*	position: absolute;
        bottom: 200px;
        left: 550px;
        padding: 15px 30px;
        background: rgba(98, 185, 109, 1);
        width: 320px;
        border-radius: 40px;
        color: #fff;
        text-align: center*/
}

/* top_check */
.top_check {
    background: #0073ae;
    color: #FFF;
    padding: 10px 0;
}
.top_check > form > .container,
.top_check .date {
    display: flex;
    align-items: center;
    justify-content: center;
}
.top_check > form > .container > .ttl {
    font-weight: 700;
    font-size: 18px;
    margin-right: 40px;
}
.top_check .date .ttl {
    margin: 0 10px;
}
.top_check .date .ttl .fa {
    margin-right: 0.25em;
}
.top_check .date .input {
    background: #FFF;
    padding: 8px 20px;
    height: 38px;
    border-radius: 19px;
}
.top_check .date input {
    color: #003264;
    font-weight: 700;
    width: 7em;
    font-size: 18px;
}
.top_check .date .input .fa {
    color: #a6a6a6;
    cursor: pointer;
    font-size: 20px;
    display: none;
}
.top_check input[type=submit] {
    background: #003264;
    color: #FFF;
    font-weight: 700;
    cursor: pointer;
    width: 200px;
    height: 38px;
    padding: 8px 20px;
    border-radius: 19px;
    font-size: 18px;
    margin-left: 30px;
}

/* top_news */
.top_news {
    background: #f5f5f5;
    padding: 23px 0;
}
.top_news > .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.top_news .ttl {
    color: #003264;
    font-weight: 300;
    font-size: 30px;
    margin-right: 40px;
}
.top_news li {
    display: flex;
    line-height: 1.5;
    font-size: 24px;
    color: #f00;
}
.top_news li:not(:last-child) {
    margin-bottom: 5px;
}
.top_news .date {
    margin-right: 1em;
}

/* top_sec */
.top_sec .ttl01 {
    text-align: center;
    font-weight: 300;
    line-height: 1.3;
    font-size: 35px;
    margin-bottom: 25px;
}
.top_sec .ttl02 {
    text-align: center;
    font-weight: 700;
    color: #0073ae;
    margin-top: 20px;
    line-height: 1.3;
    font-size: 26px;
}

/* top_about */
.top_about {
    text-align: center;
    padding: 90px 0;
}
.top_about .img {
    margin: 25px 0;
}
.top_about .txt {
    line-height: 1.7;
}
.top_about .btn01 {
    width: 395px;
    height: 54px;
    padding: 19px 0;
    border-radius: 27px;
    font-size: 18px;
    margin-top: 35px;
}

/* top_advantages */
.top_advantages {
    text-align: center;
    padding: 90px 0;
    background: #b0cde6; /* Old browsers */
    background: -moz-linear-gradient(top, #b0cde6 0%, #b0e6d6 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #b0cde6 0%,#b0e6d6 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #b0cde6 0%,#b0e6d6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0cde6', endColorstr='#b0e6d6',GradientType=0 ); /* IE6-9 */
}
.top_advantages ul {
    display: flex;
    flex-wrap: wrap;
}
.top_advantages li {
    width: 33%;
    padding: 0 1%;
    margin-top: 40px;
}
.top_advantages li img{
    max-height: 120px;
}
.top_advantages li:first-child img{
    margin: 15px 0;
}

.top_advantages .fa {
    color: #FFF;
    font-size: 150px;
    margin-bottom: 20px;
}
.top_advantages .txt {
    color: #003264;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    margin-top: 10px;
}
.top_advantages .btn01 {
    width: 180px;
    height: 40px;
    padding: 12px 0;
    border-radius: 20px;
    margin-top: 20px;
}

/* top_steps */
.top_steps {
    padding: 90px 0;
}
.top_steps ul {
    margin-top: 50px;
}
.top_steps li:not(:last-child) {
    margin-bottom: 30px;
}
.top_steps .box {
    display: flex;
    align-items: center;
}
.top_steps .num {
    color: #b0cde6;
    font-weight: 300;
    font-size: 60px;
    margin: 0 50px;
}
.top_steps .detail {
    line-height: 1.7;
    width: 680px;
    margin-right: 40px;
}
.top_steps .ttl {
    color: #003264;
    font-weight: 700;
    font-size: 20px;
}
.top_steps .ico {
    background: #167ab2;
    width: 100px;
    height: 100px;
    /* line-height: 120px; */
    display: table;
    border-radius: 50%;
    text-align: center;
}
.top_steps .fa {
    color: #FFF;
    font-size: 50px;
    display: table-cell;
    vertical-align: middle;
}
.top_steps .fa-mobile {
    font-size: 70px;
}

/* top_prices */
.top_prices {
    padding: 80px 0;
    background: #b0cde6; /* Old browsers */
    background: -moz-linear-gradient(top, #b0cde6 0%, #b0b8e6 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #b0cde6 0%,#b0b8e6 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #b0cde6 0%,#b0b8e6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0cde6', endColorstr='#b0b8e6',GradientType=0 ); /* IE6-9 */
}
.top_prices .ttl01 {
    margin-top: 10px;
}
.top_prices .box {
    display: flex;
    align-items: center;
}
.top_prices .box > * {
    width: 50%;
}
.top_prices .img {
    text-align: center;
}
.top_prices .img img {
    width: 100%;
}
.top_prices .ttl02 {
    margin-bottom: 20px;
}
.top_prices .detail .ttl {
    color: #003264;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}
.top_prices .detail .txt {
    line-height: 1.5;
    margin-top: 5px;
}
.top_prices .detail .txt .fa {
    color: #167ab2;
    margin-right: 0.25em;
}
.top_prices .detail .btn01 {
    float: right;
    margin-top: 15px;
}
.top_prices .btn01 {
    text-align: center;
    width: 200px;
    padding: 12px 0;
    border-radius: 20px;
}
.top_prices .day{
    float: left;
    text-align: center;
}
.top_prices .days {
    display: flex;
    margin: 60px 0 20px;
}
.top_prices .days li {
    background: #FFF;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    display: flex;
}
.top_prices .days li:first-child {
    border-radius: 5px 0 0 5px;
}
.top_prices .days li:last-child {
    border-radius: 0 5px 5px 0;
}
.top_prices .days li:not(:last-child) {
    margin-right: 1px;
}
.top_prices .day {
    font-weight: 300;
    color: #FFF;
    border-radius: 50%;
    margin: 0 10px;
    font-size: 28px;
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.top_prices .day.c01 {
    background: #eac275;
}
.top_prices .day.c02 {
    background: #63b96d;
}
.top_prices .day.c03 {
    background: #65abd3;
}
.top_prices .days .btn01 {
    margin: 30px 0 15px;
}
.top_prices .days .txt {
    font-size: 17px;
    padding: 15px 0;
}
.top_prices .days .txt span {
    font-weight: 700;
}
.top_prices .days .txt+.txt {
    border-top: 1px solid #d8d8d8;
}

/* top_fb */
.top_fb {
    padding: 90px 0;
    background: #b0cde6; /* Old browsers */
    background: -moz-linear-gradient(top, #b0cde6 0%, #b0e6d6 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #b0cde6 0%,#b0e6d6 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #b0cde6 0%,#b0e6d6 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b0cde6', endColorstr='#b0e6d6',GradientType=0 ); /* IE6-9 */
}
.top_fb .fb {
    display: flex;
}
.fb ul li{
    margin-bottom: 20px;
    line-height: 1.5
}
.fb ul li i{
    color: #003264;
}

.top_fb .reviews ul li{
    display: inline-block;
}
.top_fb .reviews ul li div{
    margin-top: 4%;
}
.top_fb .reviews .review_name{
    font-size: 140%;
    margin-right: 4%;
}
.top_fb .reviews ul li img{
    width: 200px;
    border-radius: 50%;
    float: left;
    margin-right: 4%;
}

/* top_faq */
.top_faq{
    padding: 90px 0;
}
.top_faq .faq dl dt{
    background: #003264;
    border: 1px solid #003264;
    color: #fff;
    padding: 20px 30px;
}
.top_faq .faq dl dd{
    border: 1px solid #003264;
    padding: 20px 30px;
    line-height: 1.5;
}

/* top_delipackage */
.top_delipackage{
    padding: 90px 0 0px 0;
    line-height: 1.5;
}
.top_delipackage p{
    text-align: center;
}
.top_delipackage img{
    width: 100%;
    margin: 40px 0 20px;
}

/* top_contact */
.top_contact{
    padding: 90px 0;
    text-align: center;
    background: url(../img/top/bg_contact.jpg) no-repeat;
    background-position: top;
    background-size: cover;
    color: #fff;
}
.top_contact .btn_detail .btn01{
    padding: 2% 0;
    background: rgba(98, 185, 109, 0.8);
    width: 320px;
    border-radius: 40px;

}

/*===== LOWER =====*/
.lower_ttl {
    text-align: center;
    background: url(../img/common/lower_bg.jpg) no-repeat bottom;
    background-size: cover;
    color: #FFF;
    letter-spacing: 0.05em;
    font-size: 30px;
    padding: 80px;
}
.breadcrumb ul {
    display: flex;
    padding: 100px 0 20px;
    font-size: 14px;
}
.breadcrumb li:not(:last-child):after {
    content: ">";
    padding: 0 0.5em;
    color: #CCC;
}
.breadcrumb a {
    color: #CCC;
}

/*===== Products =====*/

.faq .faq_btn li{
    width: 31%;
    float: left;
    background: #003264;
    margin: 2% 0;
}
.faq .faq_btn li:nth-child(2){
    margin: 2%;
}
.faq .faq_btn li:nth-child(5){
    margin: 2%;
}
.faq .faq_btn li:nth-child(8){
    margin: 2%;
}
.faq .faq_btn li a{
    display: block;
    padding: 6% 3%;
    text-align: center;
    color: #fff
}
.faq .faq_btn li h2{
    font-size: 125%;
    margin-bottom: 2%;
}
.faq .tabs_control {
    display: inline-block;
}
.faq .tabs_control li{
    float: left;
    min-width: 120px;
    max-width: 120px;
    background: #b1cee7;
    border: 1px solid #003264;
}
.faq .tabs_control li a{
    text-align: center;
    padding: 2%;
    display: block;
}

.faq h3{
    font-size: 150%;
    margin: 0 0 1%;
}
.faq ul.tab01 li,
.faq ul.tab02 li,
.faq ul.tab03 li,
.faq ul.tab04 li,
.faq ul.tab05 li,
.faq ul.tab06 li,
.faq ul.tab07 li,
.faq ul.tab08 li{
    float: left;
    margin-right: 10px;
    padding: 10px;
    background-color: #b1cee7;
    color: #fff;
    cursor: pointer;
}
.faq ul.tab01 li:hover,
.faq ul.tab02 li:hover,
.faq ul.tab03 li:hover,
.faq ul.tab04 li:hover,
.faq ul.tab05 li:hover,
.faq ul.tab06 li:hover,
.faq ul.tab07 li:hover,
.faq ul.tab08 li:hover{
    color: #FF0000;
}
.faq ul.tab01 li.active,
.faq ul.tab02 li.active,
.faq ul.tab03 li.active,
.faq ul.tab04 li.active,
.faq ul.tab05 li.active,
.faq ul.tab06 li.active,
.faq ul.tab07 li.active,
.faq ul.tab08 li.active{
    background-color: #003264;
    color: #fff;
}
.faq div.tabContent01,
.faq div.tabContent02,
.faq div.tabContent03,
.faq div.tabContent04,
.faq div.tabContent05,
.faq div.tabContent06,
.faq div.tabContent07,
.faq div.tabContent08{
    clear: both;
    border: 1px solid #b1cee7;
    padding: 20px;
    display: none;
    width: 100%;
    line-height: 1.5;
}
.faq div.active {
    display: block;
}
.faq #wifi,
.faq #prepaid,
.faq #order,
.faq #price,
.faq #pickup,
.faq #setting,
.faq #emergency,
.faq #others{
    margin-top: 6%;
}

.receipt .page-title h1 {
    border-left: none;
    padding-left: 0;
    font-size: 31px;
}
.receipt h2 {
    font-size: 22px;
    margin-bottom: 10px;
}
.receipt .customer-info ul {
    float: left;
    width: 240px;
}
.receipt .customer-info ul + ul {
    margin-left: 30px;
}
.receipt .customer-info ul.order-info {
    width: 340px;
}
.receipt .total-charged {
    border-bottom: 1px solid #C6C6C6;
    display: inline-block;
    clear: both;
    padding: 40px 0 20px;
    margin-bottom: 20px;
}
.receipt .total-charged span {
    display: inline-block;
    font-size: 18px;
    width: 240px;
}
.receipt .total-charged strong {
    font-size: 36px;
    font-weight: 400;
    margin-left: 30px;
}
.receipt table.table {
    margin-bottom: 20px;
}
@media (min-width: 992px) {
    .receipt table.table td {
        border-bottom: 1px solid #C6C6C6;
    }
    .receipt table.table th {
        border-bottom-style: solid;
        width: 25%;
    }
    .receipt table.table tfoot td {
        font-weight: 700;
        text-align: right;
    }
    .receipt table.table tfoot td.total {
        font-weight: 400;
    }
    header .link {
        margin-left: auto;
        margin-right: auto;
    }
}
.receipt .price, .receipt .quantity {
    text-align: right;
}

.price_calender dl dt,
.price_calender dl dd{
    width: 10%;
    float: left;
    border: 1px solid #ddd;
}
.mt5 {margin-top: 5%;}
.new_order table{
    margin: 3% auto 0;
}
.new_order table tr th{
    background: #003264;
    color: #fff;
    padding: 20px;
    border: 1px solid #000  ;
}
.new_order table tr td{
    padding: 20px 40px;
    border: 1px solid;
}
.new_order p{
    text-align: center;
    line-height: 1.7;
}

.new_order .red{
    color: #f00;
}
.advantages_image{
    height: 130px;
}
@media (max-width: 779px){
    .advantages_image{
        height: auto;
    }
    header .link {
        width: 30%;
    }
    footer > .menu li{
        width: 33%;
        font-size: 12px;
    }
    @media (max-height: 561px){
        header .menu{
            height:73vh;
            overflow-y: auto;
        }
        .advantages_image{
            height: auto;
        }
    }
}

.head_banner{
    height: 80px;
    width: 100%;
    bottom: 0px;
    position: absolute;
    color:white;
}
.head_banner .banner_image {
    width: auto;
    height: 80px;
    float: left;
    margin-right: 20px;
}
.head_banner span {
    margin: 10px 0px 4px 0px !important;
    color: white;
}
.banner_shinkansen{
    width: 33.333333%;
    float: left;
}
.banner_name {
    border: 1px solid white;
    float: left;
    padding: 3px;
    text-transform: uppercase;
}
.banner_title{
    float: left;
    font-size: 16px !important;
}
.container_banner{
    /*z-index: 1;*/
}
.banner_background{
    height: 100%;
    background: rgba(25, 25, 25, .5);
    /*opacity: 0.5;*/
}
.banner_row{
    width: auto !important;
    height: auto;
    float: right;
    margin: 27px 15px 0px 0px;
}
.banner_left{
    float: left;
    width: 91%;
}

@media (max-width: 1280px){
    header .link {
        width: 40%;
    }
}
@media (max-width: 1200px){
    header .link {
        /* width: 25%; */
    }
}
@media (max-width: 990px){
    header .link {
        width: 25%;
    }
}
@media (max-width: 800px){
    header .link {
        width: 28%;
    }
}
@media screen and (max-width: 768px){
    .head_banner .banner_link .banner-icon{
        margin-left: auto;
    }
    .banner_shinkansen .banner_row{
        margin-right: 25px!important;
    }
}
.head_banner {
    bottom:10px;
}
.head_banner  .container {
    width: auto;
    max-width: 1200px;
}

.head_banner ul {
    display: flex;
    justify-content:space-between;
}

.head_banner .banner_shinkansen {
    width: 32.5%;
}
.head_banner .banner_link {
    display: flex;
}

.head_banner  .container .banner_left {
    overflow: hidden;
    display: flex;
}
.head_banner .banner_title {
    margin-top: 2px !important;
}
.head_banner .banner_name {
    font-size: 14px !important;
    font-weight: bold;
}
.head_banner .banner_title {
    font-size: 14px !important;
    width: 100%;
    font-weight: bold;
}
.head_banner .fr-last {
    padding-right: 10px;
}

.head_banner .container .banner_left > .fl {
    margin-right: 10px;
}

.head_banner .inner {
    width: 80px;
    padding-bottom: 100%;
    background-size: auto 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.head_banner .inner img {

}


/**
	My custom
 */
.breadcrumb-order {
    margin-top: 50px;
    margin-bottom: 0 !important;
}

.breadcrumb-order ul {
    padding: 20px 0 !important;
}
.credit_card {
    /*margin-bottom: 0px;*/
}
@media (max-width: 992px) {
    .credit_card {
        margin-bottom: 20px;
    }
    .breadcrumb-order {
        margin-top: 20px;
    }
}
@media (max-width: 779px){
    .head_banner ul {
        flex-direction: column;
    }
    .head_banner .banner_shinkansen {
        width: 100%;
        position: relative;
    }
    .head_banner .banner_shinkansen::after {
        content: '';
        height: 1px;
        width: calc(100% - 111px);
        background: #fff;
        position: absolute;
        bottom: 0;
        right:10px;
    }
    .head_banner .banner_shinkansen:last-child::after  {
        display: none;
    }
    .head_banner .banner_title {
        display: none;
    }

    .head_banner {
        height: auto;
        bottom: 0;
    }
    div.head_banner span {
        margin-top: 15px !important;
    }
    .head_banner .inner {
        width: 90px;
        padding-bottom: 49%;
        background-size: 100% auto;
    }
    .banner_shinkansen .banner_row{
        margin-right: -35px;
    }

    /**
        My custom
     */
    main.home-news {
        padding-top: 0 !important;
    }

    .breadcrumb-order {
        margin-top: 30px;
    }

    .credit_card {
        margin-bottom: 10px;
    }
    .breadcrumb-order {
        margin-top: 10px;
    }
}