@charset "utf-8";

/* トイレ付高速バス検索・一覧
--------------------------------------------*/
/* フォント
------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400,500,600,700&display=swap');

/*設定
--------------------*/
:root {
    --black: #2F242C;
    --white: #fff;
    --Gray: #bbb;
    --Accent: #EC7190;
    --orange: #EC8A71;
    --bgGray: #F6F6F6;
    --border: #D9D9D9;
    --box-shadow: rgba( 0, 0, 0, 0.16);
}

/*共通 パーツ
-------------------------------*/
article {
  font-family: "Noto Sans JP","游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  margin-top: 0;
}

body{
    color: #1F2943;
    background-attachment: fixed;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

figure {
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

small {
  font-size: 70%;
}

p,
article p {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0;
}

/* Common
----------------------------------------------------*/
#section-hoken-number table {
    max-width: 300px;
}

/* background-color
--------------------------*/
.bg-gray {
  background: var(--bgGray) !important;
}

/* color
---------------------------*/
.color-pink {
    color: var(--Accent) !important;
}

/* font
---------------------------------*/
.font-notosans {
    font-family: "Noto Sans JP", sans-serif;
}

/* section
--------------------------------------------*/
.section {
    padding: 40px 0;
}

@media (max-width: 767px) {
 .section {
        padding: 60px 0;
    }   
}

/* heading
---------------------------------------------*/
.heading {
    text-align: center;
    margin: 0 auto 22px;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}
@media (max-width: 767px) {
   .heading {
       margin: 0 auto 16px;
       font-size: 16px;
       line-height: 1.3;
    } 
}


/* text
---------------------------------------------*/
.lead {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.625;
    text-align: left;
}

@media (max-width: 767px) {
    .lead {
        font-size: 14px !important;
    }
}

@media (max-width: 340px) {
    .lead {
        font-size: 13px;
    }
}


/* btn
-----------------------------*/
.btn {
    display: block;
    border-radius: 3px;
    color: var(--white);
    padding: 16px 10px 16px 8px;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    transition: 0.3s;
    position: relative;
}

.btn:hover {
    opacity: 0.6;
    color: var(--white);
}
.btn:after {
    content: '\f0da';
    position: absolute;
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 12px;
    color: var(--white);
}
.btn-pink {
    background: var(--Accent);
}
.btn-orange {
    background: #EC8A71;
}
.btn-list .btn:focus {
    color: var(--white)!important; 
}
.btn-list li .btn:hover {
    color: var(--white)!important; 
}


@media (max-width: 767px) {
    .btn {
        padding: 13px 5px;
        font-size: 13px;
    }
    .btn:after {
        right: 6px;
        font-size: 10px;
    }
}

/*2つ並び*/
.btn-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 1.5%;
    margin: auto;
    margin-top: 20px;
}
.btn-list li {
    width: 48%;
}
.btn-list li:last-child {
    margin-left: 1%;
}

@media (max-width: 768px) {
    .btn-list {
        display: flex;
        margin-top: 10px;
    }
    .btn-list li {
        width: 48%;
    }
    .btn-list li:last-child {
        margin-left: 1%;
    }
}

/* link
-------------------------------*/
.link-inline {
    text-decoration: underline;
    color: #6290D1;
}

.link-inline:hover {
    color: #6290D1;
}




/*　ページ内ナビ 
-------------------------------*/
.page-nav {
  width: 100%;
  margin: 24px auto 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap; /*折り返す*/
}

.page-nav > li {
  width: 48%;
  margin-bottom: 8px;
}
.page-nav > li:nth-of-type(odd) {
  margin-right: 2%;
}
.page-nav > li a {
    display: block;
    position: relative;
    z-index: 3;
    background: #fff;
    color: var(--black);
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    padding: 12px 16px 12px 16px;
    border-radius: 80px;
    border: solid 2px #d6d6d6;
    line-height: 1.3;
}

.page-nav > li:nth-of-type(even) a {
  margin-right: 0px;
}

.page-nav > li a {
    margin-bottom: 0;
}

.page-nav > li a::before {
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: calc(50% - 10px);
  right: calc(50% - 70px);
  font-weight: 900;
  color: #d6d6d6;
  font-size: 13px;
}


/*メインナビ*/
/*
#page-nav-area > .page-nav > li:first-child a {
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.1;
}
#page-nav-area > .page-nav > li:first-child a::before {
    top: calc(50% - 7px);
}
*/


/* hover */
.page-nav > li a:hover {
    opacity: 0.6;
}

@media (min-width: 1200px) {
	#page-nav-area{
		max-width: 1014px;
		padding: 0;
	}
}

@media (min-width: 768px) {
  .page-nav {
    max-width: 1014px;
    margin: 50px auto 60px;
    flex-wrap: nowrap; /*折り返さない*/
  }
  .page-nav > li {
    margin: 0 0.8%!important;
  }
  .page-nav > li a {
	font-size: 16px;
	padding: 18px 30px 16px 20px;
	margin: 10px 0 0 0;
  }

  .page-nav > li a::before {
    right: 10%;
    height: 100%;
    font-size: 15px;
  }
}

@media (max-width: 340px) {
    .page-nav > li a::before {
        right: calc(50% - 62px);
    }
}





/* MV
-------------------------------------*/
#Mv .mb-bg {
    background: url(/static/img/bus/toilet/bg-main-pc.webp) no-repeat center center/cover;
    min-height: 300px;
}
.page-title {
    text-align: center;
    color: var(--white);
    font-feature-settings: "palt";
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 30px 10px;
    text-shadow: 0 0 14px rgba(37, 153, 138, 0.8);
}
.page-title span {
    display: block;
}
.page-title .jp {
    font-size: 48px;
    line-height: 1.3;
}
.page-title .en {
    margin-top: 10px;
    font-size: 20px;
    line-height: 1.3;
}

#Mv .lead {
    /*padding: 64px 0;*/
    text-align: center;
}


@media (max-width: 992px) {
    #Mv .mb-bg {
        background: url(/static/img/bus/toilet/bg-main-sp.webp) no-repeat center center/cover;
        min-height: 300px;
    }
}

@media (max-width: 767px) {
    .page-title {
        padding: 16px 5px;
    }
    .page-title .jp {
        font-size: 48px;
        line-height: 1.1;
    }
    .page-title .en {
        margin-top: 10px;
        font-size: 20px;
        line-height: 1.1;
    }

    #Mv .lead {
        /*padding: 38px 0;*/
        text-align: left;
    }
}

@media (max-width: 560px) {
    #Mv .mb-bg {
        background: url(/static/img/bus/toilet/bg-main-sp.webp) no-repeat center center/cover;
        min-height: 145px;
    }
    .page-title {
        padding: 10px 5px;
    }
    .page-title .jp {
        font-size: 20px;
    }
    .page-title .en {
        margin-top: 10px;
        font-size: 10px;
    }
    #Mv .lead {
        /*padding: 30px 0;*/
        text-align: left;
    }
}


/* ピックアップ路線
-----------------------------------*/
#Pickup{
    padding: 70px 0 80px;
    background: #F6F6F6;
}

#Pickup .lead{
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 767px) {
    #Pickup{
        padding: 40px 0 50px;
    }
}

/*スクロール
---------------------------------*/
/*スクロール設定
----------------------*/
/* scroll */
.scroll-container {
    overflow-x: scroll;
    margin-left: auto;
    margin-right: auto;
}
.scroll-wrap {
/*  width: 1200px;*/
    width: fit-content;
    margin: auto;
}

@media (min-width: 576px) {
    .scroll-container {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .scroll-container {
        max-width: 720px;
    }
}
@media (min-width: 960px) {
    .scroll-container {
        max-width: 920px;
    }
}

@media (min-width: 1140px) {
     .scroll-container {
         overflow-x: auto;
         max-width: 1080px;
    }
}
@media (min-width: 1300px) {
     .scroll-container {
         max-width: 1240px;
    }
}
.scroll-container {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
}
@media(max-width: 767px) {
    .scroll-container {
        max-width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
    .scroll-container .scroll-wrap {
        margin: initial;
        padding-bottom: 18px;
    }
    .scroll-container .card-list {
        padding-left: 15px;
        padding-right: 60px;
    }
    .scroll-container .card-item {
        width: 287px;
        margin: 30px 1% 0px;
    }
}


/*slider
---------------------------------------------*/
/*slider ベース設定
------------------------*/
/* dots */
.slick-dots {
    bottom: -30px;
}

.slick-dots li {
    width: 10px;
    height: 10px;
    line-height: 1;
    margin: 0 6px;
}

.slick-dots li button { 
    font-size: 10px;
    padding: 0;
    background: var(--white);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border: 1px solid #ABA8A8;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    line-height: 1;
}

.slick-dots li.slick-active button {
    background: #A8A8A8;
}

.slick-dots li button:before {
    content: none;
}

.slider-inner {
    margin-top: 22px;
}

.slide-img {
    border-radius: 15px;
    overflow: hidden;
    padding: 0 1px;
}
.slide-img img {
    border: 1px solid var(--border);
    border-radius: 15px;
}
@media (max-width: 767px) {
    .slick-dots li {
        width: 6px;
        height: 6px;
        margin: 0 4px;
    }
    .slick-dots li button {
        padding: 0;
        width: 6px;
        height: 6px;
    }
}

/*カード*/
.card-list {
    display: flex;
    flex-wrap: nowrap;
    max-width: initial;
    margin: initial;
    padding-left: 15px
}
.card-item {
    width: 364px;
    margin: 30px 1% 10px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 24px 16px;
}
.card-route {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}
.card-name {
    margin-top: 4px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}
.card-office {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: #4C4C4C;
}
.card-textLink {
    text-decoration: underline;
    color: #4C4C4C;
    display: inline-block;
    margin-right: 5px;
}
.card-textLink:hover {
    color: #4C4C4C;
    text-decoration: underline;
}
.card-text {
    margin-top: 40px;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    min-height: 42px;
}
/*ピックアップバス価格*/
.route-price {
    margin-top: 22px;
   text-align: right;
   font-weight: 700;
    color: var(--Accent);
    min-height: 36px;
}
/*
.route-price .num{
   font-size: 28px;
   font-weight: 700;
   color: var(--Accent);
}
.route-price .small{
   color: var(--Accent);
}
*/
.priceCode {
    display: inline-block;
    position: relative;
    font-size: 24px;
    padding: 0 16px;
}
.priceCode::before,
.priceCode::after{
    content: '';
    position: absolute;
    display: inline-block;
    color: var(--Accent);
}
.priceCode::before{
    content: '￥';
    left: -1px;
    bottom: 3px;
    font-size: 15px;
}
.priceCode::after{
    content: '～';
    right: 0;
    bottom: 3px;
    font-size: 14px;
}


@media (max-width: 767px) {
    .card-list {
        padding-left: 10px;
    }
    .card-item {
        width: 287px;
        margin: 30px 0.5% 10px;
        border-radius: 15px;
        padding: 24px 8px;
    }

    .card-route {
        font-size: 14px;
    }
    .card-name {
        font-size: 13px;
    }
    .card-office {
        margin-top: 8px;
        font-size: 12px;
    }
    .card-textLink {
        margin-right: 4px;
    }
    .card-text {
        font-size: 11px;
        line-height: 1.4;
        margin-bottom: 10px;
        min-height: 32px;
    }
    /*ピックアップバス価格*/
    .route-price {
        margin-top: 18px;
    }
    .priceCode {
        font-size: 20px;
        padding: 0 16px;
    }
    .priceCode::before{
        left: -1px;
        bottom: 3px;
        font-size: 14px;
    }
    .priceCode::after{
        right: 0;
        bottom: 3px;
        font-size: 13px;
    }
}


/*トイレ付き路線ピックアップ
-----------------------------------*/
#Routelink {
    padding: 60px 0;
}

.toiletBus-routeList {
    margin: auto;
    width: 100%;
    max-width: 960px;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 0;
}

.toiletBus-routeItem {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px dotted var(--border);
}
.toiletBus-routeItem:last-child {
    border-bottom: none;
}

.toiletBus-round {
    width: 75%;
    display: flex;
    align-items: center;
}
.toiletBus-roundName {
    width: 68%;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.3;
    margin-right: 1%;
}

.toiletBus-price {
    width: 30%;
    font-size: 28px;
    font-weight: bold;
    margin-left: 1%;
    margin-right: 2%;
    text-align: right;
}

.toiletBus-btnList {
    display: flex;
    column-gap: 2%;
}
.toiletBus-btnItem {
    width: 200px;
}

/*ボタンのテキストを…（省略）にする→全体表示*/
.toiletBus-btnItem .btn {
  white-space: wrap;
  /*width: 180px;*/ /* 要素の横幅を指定 */
  /*overflow: hidden;*/ /* はみ出した部分を非表示 */
  /*text-overflow: ellipsis;*/ /* 省略記号を表示 */ 
  padding: 13px 18px 14px 6px;
  font-size: 13px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
}
.toiletBus-btnItem .btn::after {
    right: 5px;
    font-size: 12px;
}
.toiletBus-btnItem .btn:hover {
    color: var(--white);
}

@media(max-width: 992px) {
    #Routelink {
        padding: 56px 0;
    }
    
    .toiletBus-routeList {
        max-width: 100%;
        padding: 5px;
    }

    .toiletBus-routeItem {
        padding: 16px 6px;
        flex-wrap: wrap;
    }

    .toiletBus-round {
        width: 100%;
    }
    .toiletBus-roundName {
        width: 80%;
        font-size: 20px;
    }

    .toiletBus-price {
        width: 30%;
        font-size: 30px;
        margin-right: 0;
    }

    .toiletBus-btnList {
        width: 100%;
        margin-top: 10px;
    }
    .toiletBus-btnItem {
        width: 49%;
    }
    
    .toiletBus-btnItem .btn {
        font-size: 16px;
      /*width: 96%;
      max-width: 300px;*/ /* 要素の横幅を指定 */
    }
    
    .toiletBus-btnItem .btn::after {
        font-size: 14px; 
    }
}

@media(max-width: 767px) {
    .toiletBus-roundName {
        width: 70%;
        font-size: 16px;
    }

    .toiletBus-price {
        font-size: 19px;
        margin-right: 0;
    }
    
    #Routelink {
        padding: 56px 0;
    }
    .toiletBus-btnItem .btn {
        font-size: 13px;
    }
    .toiletBus-btnItem .btn::after {
        right: 4px;
        font-size: 12px;
    }
}

@media(max-width: 560px) {
     .toiletBus-btnItem .btn {
         padding: 5px 12px 5px 5px;
        font-size: 12px;
         min-height: 54px;
    }
}

@media(max-width: 340px) {
    .toiletBus-routeItem {
        padding: 10px 3px;
    }
    .toiletBus-roundName {
        width: 70%;
        font-size: 13px;
    }

    .toiletBus-price {
        font-size: 16px;
        margin-right: 0;
    }
    .toiletBus-btnItem .btn {
        font-size: 11px;
        min-height: 77px;
      /*width: 96%;
      max-width: 150px;*/ /* 要素の横幅を指定 */
    }
}



/*エリアリンクのタブ*/
#Routelink .nav{
  width: 100%;
  padding: 12px 16px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  border-bottom: none;
}
#Routelink .nav li{
  text-align: center;
  font-size: 16px;
  line-height: 1.0;
  padding: 0 5px 0 1px;
}

#Routelink .nav li a {
  display: block;
  color: #787878;
  font-weight: bold;
  background: #fff;
  padding: 16px 30px;
  border-radius: 5px;
  border: 1px solid #787878;
  font-size: 16px;
}
#Routelink .nav li a:hover,
#Routelink .nav li a:focus,
#Routelink .nav li a.active {
    opacity: 1;
    text-decoration:none;
    color: #000 !important;
	border: #000 1px solid !important;   
}
#Routelink .tab-pane{
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@media (max-width: 992px) {
    #Routelink .nav li a {
        font-size: 14px;
        padding: 16px 16px;
    }
}
@media (max-width: 767px) {
    /*エリアリンクのタブ*/
    #Routelink .nav {
      padding: 0 0 16px;
      flex-wrap: wrap;
    }
    #Routelink .nav li{
      width: 33%;
      padding: 12px 5px 0px;
      flex-wrap: wrap;
    }
    #Routelink .nav-tabs li a{
      padding: 14px 3px;
      border-radius: 10px;
      font-size: 14px;
    }
    #Routelink .nav li:nth-child(4),
    #Routelink .nav li:nth-child(5){
       width: 50%;
    }

}


/*　トイレ付き最安値ピックアップ（片道）
------------------------------------*/
#Busprice {
    padding: 88px 0 90px;
}

@media (max-width: 767px) {
     #Busprice {
        padding: 60px 0 40px;
    }   
}

/*スタイルはサイトTOPより*/
/*
#lowest-price{
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
#lowest-price .tab-pane{
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
@-webkit-keyframes fadeIn {
  0% {opacity: 0}
  100% {opacity: 1}
}
#lowest-price .nav{
  padding:20px;
  
}
#lowest-price .nav li{
  text-align:center;
  font-size:16px;
  line-height:1.0;
  padding: 0 3px 0 1px;
}

#lowest-price .nav li a{
  display:block;
  color:#787878;
  font-weight:bold;
  background:#fff;
  padding:10px 20px;
  border-radius:60px;
  border:1px solid #787878;
}
#lowest-price .nav li a:hover,
#lowest-price .nav li a.active{
  text-decoration:none;
	color: #2F242C;
	border: #2F242C 1px solid;
}
#lowest-price table{
  font-size:14px;
  width:86%;
  margin:30px auto;
	outline: 1px solid #E7E7E7;
	border-radius: 15px;
}

#lowest-price table th,
#lowest-price table td{
  padding:16px;
  line-height:1.0;
  text-align: center;
  font-size: 16px;
}

#lowest-price table thead {
	border: none;
}
#lowest-price table thead th{
	background: #F6F6F6;
	border: none;
}
#lowest-price table thead th.after_2months{
	border-top-right-radius: 15px;
}

#lowest-price table thead th:first-child{
		border-top-left-radius: 15px;
}

#lowest-price table th:first-child,
#lowest-price table td.route_title{
  width:200px;
  background:#F6F6F6;
  padding-left:15px;
  padding-right:15px;
  border-color:#E7E7E7;
  text-align: center;
	border-right: 1px solid #dee2e6;
}
#lowest-price table td.route_title a{
  color: #111111;
}
.table thead th{
  color:#111111;
  border-bottom:none;;
}
#lowest-price table td.route_title{
  color:#111111;
}
.this_month,
.next_month,
.after_2months,
.after_3months{
  text-align:right;
}
.this_month a,
.next_month a,
.after_2months a,
.after_3months a,
.this_month a:hover,
.next_month a:hover,
.after_2months a:hover,
.after_3months a:hover{
  color:#EC7190;
  font-size:20px;
  font-weight:bold;
}
.this_month a:before,
.next_month a:before,
.after_2months a:before,
.after_3months a:before{
  content: "￥";
    font-size: 18px;
}
@media(max-width : 1199px) {
  #lowest-price .nav li{
    font-size:14px;
  }
  #lowest-price table{
    font-size:12px;
  }
  .this_month a,
  .next_month a,
  .after_2months a,
  .after_3months a,
  .this_month a:hover,
  .next_month a:hover,
  .after_2months a:hover,
  .after_3months a:hover{
    font-size:20px;
  }
  .this_month a:before,
  .next_month a:before,
  .after_2months a:before,
  .after_3months a:before{
      font-size: 18px;
  }
}
@media(min-width : 768px) and (max-width : 991.98px) {
  #lowest-price .nav li{
    font-size:16px;
  }
  #lowest-price table{
    font-size:14px;
  }
  .this_month a,
  .next_month a,
  .after_2months a,
  .after_3months a,
  .this_month a:hover,
  .next_month a:hover,
  .after_2months a:hover,
  .after_3months a:hover{
    font-size:16px;
  }
  .this_month a:before,
  .next_month a:before,
  .after_2months a:before,
  .after_3months a:before{
      font-size: 14px;
  }
}
@media(max-width : 767px) {
  #lowest-price{
    height:auto;
  }
  #lowest-price .nav{
    padding:15px 8px;
  }
 #lowest-price .nav li{
		  padding: 0 2px;
  }		  
  #lowest-price table{
    margin: 13px auto;
    width: calc(100% - 20px);
  }
  #lowest-price table th,
  #lowest-price table td{
    padding:10px 5px;
    font-size: 12px;
  }
  #lowest-price table td{
    text-align: center;
  }
  #lowest-price table td.route_title{
    text-align: left;
  }
  #lowest-price table th:first-child,
  #lowest-price table td.route_title{
    padding-left:10px;
    padding-right:10px;
    width: 100px;
    font-size: 12px;
  }
  .this_month a,
  .next_month a,
  .after_2months a,
  .after_3months a,
  .this_month a:hover,
  .next_month a:hover,
  .after_2months a:hover,
  .after_3months a:hover{
    font-size:11px;
  }
  .this_month a:before,
  .next_month a:before,
  .after_2months a:before,
  .after_3months a:before{
      font-size: 10px;
  }
}
@media(max-width:374px) {
  #lowest-price .nav li{
    font-size:12px;
  }
  #lowest-price table{
    width:98%;
  }
  #lowest-price table td.route_title{
    padding-left:10px;
  }
  #lowest-price table th:first-child, 
  #lowest-price table td.route_title{
    width:95px !important;
  }
}
#lowest-price .scroll-set .nav{
  padding:12px 13px;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}
#lowest-price .scroll-set{
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  background:none;
  padding:0;
}
#lowest-price .scroll-set .nav-tabs {
	border-bottom: none;
}

#lowest-price .scroll-set .nav-tabs li a{
  font-size:16px;
}
#lowest-price .scroll-set .nav{
  width:100%;
}
@media(min-width : 768px) and (max-width : 991.99px) { 
  #lowest-price .scroll-set .nav{
    padding:21px 13px;
  }
  #lowest-price .scroll-set{
    overflow-x: hidden;
    background:none;
    padding:0;
  }
  #lowest-price .scroll-set .nav-tabs li a{
    font-size:14px;
  }
  #lowest-price .scroll-set .nav{
    width:100%;
  }
} 
@media(max-width:767px) { 
  #lowest-price .scroll-set .nav{
    min-width: 380px;
    justify-content: left;
    padding:10px 0;
  }
  #lowest-price .scroll-set{
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    background:none;
    padding:0;
  }
  #lowest-price .scroll-set .nav-tabs li a{
    padding: 6px 7px;
    font-size:12px;
  }
}


input.datepicker,
.datepicker tbody td:hover {
  cursor: pointer;
}

.table-condensed thead tr:nth-child(2) {
  background:#ddd;
  border: 1px solid #d3d3d3;
  cursor:default !important;
}

.table-condensed thead tr:nth-child(2) th:hover {
  background:#fee6ee !important;
}

.table-condensed {
  font-size:15px;
  border: 1px solid #d3d3d3;
}

.table-condensed th,
.table-condensed td {
  padding:7px !important;
  border-radius:0;
}

.table-condensed td.day.active,
.table-condensed td.day.focused,
.table-condensed td.day:hover {
  border-radius:0px;
}

.table-condensed td.day:hover {
  background:#fee6ee !important;
}

.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);
}

.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  color:#333 !important;
}

.datepicker-days .table-condensed thead tr:last-child th {
  background:#f4f4f4;
  border:1px solid #d3d3d3;
}

.datepicker-days td:last-child {
  color:#006699;
  background:#e8f2fa;
}

.datepicker-days td:first-child {
  color:#ff384c;
  background:#ffeefd;
}

.datepicker-days td {
  border:1px solid #d3d3d3;
}

.datepicker table tr td span {
  height:40px;
  line-height:40px;
}

.datepicker td.holiday{
  color: #ff384c;
  background: #ffeefd;
}
*/


/* トイレ付き高速バス検索フォーム
----------------------------------*/
#Bussearch {
    padding: 46px 0 60px;
}
#Bussearch .container{
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 767px) {
    #Bussearch {
        padding: 40px 0 30px;
    }
    #Bussearch .container{
      padding-left: 25px;
      padding-right: 25px;
    }
}


/*検索フォーム全体*/
#search-form{
	background: #F6F6F6;
	padding: 25px 0 25px;
}
/*検索フォームのボタンの矢印はなし*/
#search-form .btn:after{
  content: none;  
}

.wrap-bus-search.container {
    max-width: 1240px;
}

/*見出し*/
.wrap-bus-search .title-base-01{
	margin-bottom: 10px;
}

/*出発地*/
.box-dep-arrive{
    width: 100%;
    display: flex;
	position: relative;
	margin-bottom: 10px;
}
.col-search {
    width: 100%;
}
/*矢印*/
.btn-switching{
	background: none;
}
.btn-switching .fas {
    background: #fff;
    padding: 6px;
    border-radius: 50%;
    border: solid 1px var(--black);
    color: var(--black);
	margin: 0 1%;
}

/*各項目　出発地、到着地、出発日、トイレ付バスのみ、検索ボタン*/
.row-search{
	display: flex;
	flex-wrap: wrap;
}
.row-search + .row-search{
	margin-top: 10px;
}

/*各項目の外枠*/
.col-searchselect{
	width: 100%;
}

/*出発地・到着地*/
.row-bussearch-box{
	display: flex;
    flex-wrap: wrap;
    /*align-items: center;*/
}
/*出発地*/
.col-dep{
	width: 50%;
}
/*到着地*/
.col-arrive{
	width: 50%;
	margin-top: 0!important;
}
/*出発地・到着地・出発日の中のselectタグ*/
.form-control{
	-webkit-appearance: none;
	width: 100%;
	line-height: 1;
	padding: 5px 5px 5px 20px;
	height: 70px;
	outline: none;
	border: 1px solid #9b9b9b;
	border-radius: 50px;
	color: #000;
	font-size: 18px;
	text-overflow: ellipsis;/*長文を…にする*/
    cursor: pointer;
}
.form-control:focus,
.btn:focus,
.btn:hover{
	outline: none !important;
	box-shadow: none !important;
    color: #111;
}
.form-control:focus{
	border-color:#DADADA;
}
/*inputのアイコン画像　カレンダー*/
.form-control.bg-calendar{
	background: #fff;
}
.form-control::placeholder{
	color: #333;
}
.form-control option{
	min-height: auto;
}
#search-form .form-control[readonly] {
    background-color: #fff;
}


/*出発日クリック時の、カレンダーの表示*/
input.datepicker,
.datepicker tbody td:hover {
	cursor: pointer;
}
.table-condensed thead tr:nth-child(2) {
	background:#ddd;
	border: 1px solid #d3d3d3;
	cursor:default !important;
}
.table-condensed thead tr:nth-child(2) th:hover {
	background:#fee6ee !important;
}
.table-condensed {
	font-size:14px;
	border: 1px solid #d3d3d3;
}
.table-condensed th,
.table-condensed td {
	padding:7px !important;
	border-radius:0;
}
.table-condensed td.day.active,
.table-condensed td.day.focused,
.table-condensed td.day:hover {
	border-radius:0px;
}
.table-condensed td.day:hover {
	background:#fee6ee !important;
}
.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
	border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);
}
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
	color:#333 !important;
}
.datepicker-days .table-condensed thead tr:last-child th {
	background:#f4f4f4;
	border:1px solid #d3d3d3;
}
.datepicker-days td:last-child {
	color:#006699;
	background:#e8f2fa;
}
.datepicker-days td:first-child {
	color:#ff384c;
	background:#ffeefd;
}
.datepicker-days td {
	border:1px solid #d3d3d3;
}
.datepicker table tr td span {
	height:40px;
	line-height:40px;
}
.datepicker td.holiday{
	color: #ff384c;
	background: #ffeefd;
}

/*「24時以降の夜行便の日付選択について」の外枠*/
.col-dep24{
	width: 100%;
	text-align: right;
	margin-top: 5px;
}
/*中のbutton*/
.btn-dep24-after-modal{
	background: none;
	padding: 0;
	margin: 0;
	font-size: 12px;
	color: #111;
	text-decoration: underline;
}
/*※印*/
.btn-dep24-after-modal:before {
	content: "※";
	position: absolute;
	top: 1px;
	left: -14px;
}

/*エリアを選択*/
.btn-select-design-dep-area,
.btn-select-design-arriv-area{
   margin-top: 10px; 
}

/*トイレ付きのみ探す*/
.col-toiletselect.row-search{
	margin-top: 10px;
}
/*.btn-toilet{
	*background: #fff;
	color: #333;
	width: 100%;
	padding: 28px 28px 28px 35px;
	text-align: left;
	font-weight: bold;
	font-size: 15px;
	line-height: 1;
	border:solid 1px #DADADA;
	position: relative;
	display: flex;
	align-items: center;
	word-wrap: break-word;
	white-space:normal;
	margin:0;
    border-radius: 50px;
    height: 44px;
}
.btn-toilet:before{
	content: "";
	background: url(/static/img/common/icon/check-circle-solid.png) no-repeat;
	background-size: cover;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	left: 11px;
	transform: translate(0, -50%);
}
.btn-toilet span{
	border-bottom: none;
	font-weight: normal;
	display: block;
	padding-left: 5px;
}
.btn-toilet.btn-unselected{
	opacity: 1;
	background: #fafafa;
	color: #d4d4d4;
	pointer-events: none;
	border:solid 1px #eee;
}
.btn-toilet.btn-unselected span{
	border:none;
	font-weight: normal;
}
.btn-toilet.focus {
    color: #333;
}
.btn-toilet.active{
	color: var(--black);
	background: #fff;
	border:solid 1px var(--Accent);
}
.btn-toilet.active span {
    font-weight: bold;
}
.btn-toilet.active:before{
	background: url(/static/img/common/icon/check-circle-sold-pink02.png) no-repeat !important;
	background-size: cover !important;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 50%;
	left: 11px;
	transform: translate(0, -50%);
}
.btn-toilet input{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: transparent;
	border: none;
	border-radius: 0;
	font: inherit;
	outline: none;
	position: absolute;
	top: 0;
	left: 0;
}
.btn-toilet input:focus{
	outline: none;
	box-shadow: none;
}
*/

/*～出発分まで販売中*/
.lead-deadline{
	text-align: center;
	font-size: 13px;
	margin-top: 6px;
	margin-bottom: 6px;
	font-weight: bold;
	line-height: 1.3;
}

/*検索ボタン*/
.btn-search{
	display: block;
	background: var(--black);
	color: #fff;
	margin: 30px auto  0;
	text-align: center;
	border-radius: 50px;
	line-height: 1;
	padding: 13px 5px;
	font-size: 16px;
	font-weight: bold;
	width: 100%;
    max-width: 156px;
}
.col-searchbtn {
    text-align: center;
    margin: auto;
}

@media (min-width: 992px) {
    /*検索フォーム全体*/
    #search-form{
        padding: 46px 0 42px;
    }
    .wrap-bus-search .body-search{
        max-width: 1240px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    /*検索フォーム*/
    .row-bussearch-box {
        display: flex;
        flex-wrap: wrap;
        column-gap: 1%;
    }
    /*発着・日付のセレクトボタンの枠サイズ*/
    .col-search {
        width: calc(33.333% - 21.333px);
        margin-bottom: 10px;
    }
    /*発着ボタンを囲う*/
    .box-dep-arrive {
        width: 66.5%;
        margin-bottom: 0;
    }

    .col-dep,
    .col-arrive{
       width: 100%; 
    }
    
    /*検索ボタン*/
    .btn-search {
        width: 100%;
        max-width: 450px;
        font-size: 24px;
        padding: 30px 5px;
    }
    .col-searchbtn {
        width: 100%;
        text-align: center;
        margin: auto;
    }
}

@media (max-width: 767px) {
    .wrap-bus-search.container {
        width: 92%;
    }
    /*トイレ付きのみ探す*/
    .col-toiletselect.row-search{
        margin-top: 10px;
    }
        .form-control {
        font-size: 16px;
        line-height: 1;
        height: 44px;
        padding: 5px 5px 5px 20px;
    }
/*    .btn-toilet {
        width: 100%;
        height: 44px;
        padding: 10px 10px 10px 35px;
        font-weight: bold;
        font-size: 12px;
        line-height: 1;
    }*/
    .btn-search {
        display: inline-block;
        padding: 18px 5px;
        font-size: 16px;
        font-weight: bold;
        border-radius: 50px;
        width: 100%;
        max-width: 200px;
    }
}


/*その他条件
-----------------------*/
/*中身全体*/
.additional-box{
	margin: auto;
	width: 100%;
}

.additional-box hr {
    border-top: 1px solid;
    border-color: rgba(0, 0, 0, 1);
    display: block !important;
    margin-top: 10px;
    margin-bottom: 10px;  
}

/*各項目全体（見出し・ボタン）*/
.additional-box .additional-item{
	display: flex;
	flex-wrap: wrap;
	text-align: center;
	margin-bottom: 10px;
}
.additional-box .additional-item > div{
	padding: 0;
}

/*見出し*/
#additional_condition h2{
	font-size:16px;
	font-weight:bold;
	letter-spacing:-1px;
	padding: 10px 0 5px;
	text-align: center;
}

/*各ボタン全体*/
/*
.additional-box .wrap-btn-group {
	display: flex;
	justify-content: center;
}
*/

.additional-box .btn-group{
	display: grid;
    grid-template-columns: repeat(2,1fr);
	margin: auto;
	max-width: 300px;/*スマホ時　ボタン幅調整のため*/
	width: fit-content;
}

.additional-box .btn-group.one-btn{
    width: fit-content;
    grid-template-columns: repeat(1, 1fr);
	margin: auto;
}

/*各ボタン*/
.additional-box .btn-group .btn{
	background:#fff;
	text-align:center;
	font-size:14px;
	min-width:130px;
	border-radius: 100px!important;
	padding: 5px 20px 5px 20px;
	border: 1px solid #ccc;
	margin: 5px;
	white-space: normal;
    color: var(--black);
}

/*アクティブ時　ボタン*/
.additional-box .btn-group .btn.active{
	color:#fff;
	background:#2F242C;
	position: relative;
}
.additional-box .btn-group .btn.active:hover{
	color: var(--white) !important;
}


/*アクティブ時　アイコン　チェックマーク*/
.additional-box .btn-group .btn.active:before{
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	left:0.8em;
	content: "\f00c";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	font-size:10px;
}
.additional-box .btn-group .btn.focus
.additional-box .btn-group .btn:active{
	outline: 0;
	box-shadow:none;
    color: var(--white);
}
.additional-box .btn-group .btn:hover {
    color: var(--black) !important;
    opacity: 0.6;
}
.additional-box .btn-group .btn.fucus:active {
    color: var(--black);
}




/*WEXボタン
--------------------------*/
.additional-box .btn-group .btn.btn-wexonly {
    max-width: none;
    width: fit-content;
    padding: 7px 30px 5px 30px;
	height: 34px;
	line-height: 1.3;
}
.additional-box .btn-group .btn.btn-wexonly:before{
	background: none!important;
}

/*アクティブ時*/
.additional-box .btn-group .btn.btn-wexonly.active{
	border: none;
}
.additional-box .btn-group .btn.btn-wexonly.active:before{
	background: none!important;
	position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0.8em;
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 10px;
    filter: grayscale(1);
}

/*ボタンがundelectの場合*/
.additional-box .btn-group .btn.btn-wexonly.btn-unselected {
    color: #999;
    pointer-events: none;
}

@media(min-width:768px) {
	/*中身全体*/
	.additional-box{
		padding: 0 10px 0 0;
	}
	
	/*各項目全体（見出し・ボタン）*/
	.additional-box .additional-item{
		padding: 0 10px;
	}
	
	/*見出し*/
	#additional_condition h2{
		text-align: left;
	}
	
	/*各ボタン全体*/
	.additional-box .btn-group{
		display: flex;
		flex-wrap: wrap;
		justify-content: left;
		margin: 0;
		max-width: none;
	}
	.additional-box .btn-group.one-btn{
		margin: 0;
	}	
}

@media(max-width:340px) {
	/*ボタン全体*/
	.additional-box .btn-group {
		grid-template-columns: none;
	}
}

/*日付ボタンのカレンダー（/bus_search_entity/top-test2025.htmlと同じカレンダーjs使うとき用）
--------------------------------------------------------*/
/* datepicker
*******************************************/
input[type=date]::-webkit-calendar-picker-indicator,
input[type=month]::-webkit-calendar-picker-indicator {
	color: transparent;
	position: relative;
}

input[type=date],
input[type=month]{
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}


/* day
*******************************************/
.datepicker--day-name{
	color:#fff;
	background:#333;
}

.datepicker--cell-day:nth-child(7n+1) ,
.datepicker--cell-day.holiday{
	color:#da4453;
}

.datepicker--cell.-current-{
	font-weight:bold;
	color:#F989B1;
	background:#fce9f0;
}

.datepicker--cell-day:nth-child(7n) {
	color:#3bafda;
}

.datepicker--cell.-selected-, .date{
	color:#fff !important;
}

.datepicker--cell-day.-other-month-, .datepicker--cell-year.-other-decade-{
	color:#dedede !important;
}
.datepickers-container .datepicker{
	width: 250px;
}

input.datepicker,
.datepicker tbody td:hover {
  cursor: pointer;
}

.table-condensed thead tr:nth-child(2) {
  background:#ddd;
  border: 1px solid #d3d3d3;
  cursor:default !important;
}

.table-condensed thead tr:nth-child(2) th:hover {
  background:#fee6ee !important;
}

.table-condensed {
  font-size:15px;
  border: 1px solid #d3d3d3;
}

.table-condensed th,
.table-condensed td {
  padding:7px !important;
  border-radius:0;
}


.table-condensed td.day.active,
.table-condensed td.day.focused,
.table-condensed td.day:hover {
  border-radius:0px;
}

.table-condensed td.day:hover {
  background:#fee6ee !important;
}

.datepicker table tr td.active,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  border-color: rgba(0,0,0,.1) rgba(0,0,0,.1) rgba(0,0,0,.1);
}

.datepicker table tr td.active.disabled:hover,
.datepicker table tr td.active:hover {
  color:#333 !important;
}

.table-striped .datepicker table tr td,.table-striped .datepicker table tr th {
    background-color: transparent
}

.datepicker table tr td.day.focused,.datepicker table tr td.day:hover {
    background: #eee;
    cursor: pointer
}

.datepicker table tr td.new,.datepicker table tr td.old {
    color: #999;
}

.datepicker table tr td.disabled,.datepicker table tr td.disabled:hover {
    background: 0 0;
    color: #999;
    cursor: default
}

.datepicker-days .table-condensed thead tr:last-child th {
  background:#f4f4f4;
  border:1px solid #d3d3d3;
}

.datepicker-days td:last-child {
  color:#006699;
  background:#e8f2fa;
}

.datepicker-days td:first-child {
  color:#ff384c;
  background:#ffeefd;
}

.datepicker-days td {
  border:1px solid #d3d3d3;
}

.datepicker table tr td span {
  height:40px;
  line-height:40px;
}

.datepicker td.holiday{
  color: #ff384c;
  background: #ffeefd;
}

/* datepicker微調整 */
.datepicker--day-name{
	color:#fff !important;
}
.additional-box .btn-group .btn.btn-wexonly-current-{
	font-weight: bold !important;
	color: #F989B1 !important;
	background: #fce9f0 !important;
}
.datepicker--cell.-disabled- {
    cursor: default;
    color: #aeaeae;
}


/*日付ボタンのカレンダーここまで
--------------------------------------------------------*/
