/* ひがし北海道キャンペーン用CSS　*/
/* モバイルファーストで記述 */
@charset "utf-8";

html,
body {
  height: 100%;
  width: 100%;
}
a,button,label {
  transition: all 0.24s ease;
}
a:hover img{
  filter: brightness(1.05);
  transition: all 0.24s ease;
}
a:hover{
  color: inherit;
}
ul {
  padding:0;
  margin:0;
}
li {
  list-style-type: none;
}
.container-fluid{
  max-width: 2000px;
}

.clear:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.clear {display: inline-block;}
/* Hides from IE Mac */
* html .clear { height: 1%;}
.clear { display:block;}
/* End Hack */

.tx_pink{
  color: #f3185f;
}
.tx_bigger{
  font-size: 1.3em;
}
.tx_smaller{
  font-size: 0.8em;
}
body.fixed{
  position: fixed;
}
/*-----button-----*/
.btn_d_table{
  display: table;
  padding: 16px;
  border-radius: 8px;
  background: #035591;
  color: #fff;
}
.btn_d_table:hover,
.btn_d_table:active{
  color: #fff;
  text-decoration: none;
  background: #0c6db5;
}
.btn_d_flex{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 16px 12px 8px;
  border-radius: 8px;
  background: #035591;
  color: #fff;
}
.btn_d_flex:hover{
  text-decoration: none;
  background: #0c6db5;
  color: #fff;
}
.btn_d_block{
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  background: #035591;
  color: #fff;
}
.btn_d_block:hover{
  text-decoration: none;
  background: #0c6db5;
  color: #fff;
}
.btn_w_chevron{
  position: relative;
  cursor: pointer;
}
.btn_w_chevron:before{
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}
.btn_ghost{
  background: #fff;
  border: 3px solid #035591;
  color: #035591;
}
/*-----専用ヘッダー-----*/
.hokkaido_header{
  background: #ffffff;
  box-shadow: 0px 2px 0px #035591;
  position: relative;
  z-index: 1000;
  height: 72px;
  top:0;
  /*font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;*/
}
.hokkaido_header .container{
  height: 100%;
}
.hokkaido_header .row{
  height: 100%;
  padding: 0 16px;
}
.logo img{
  width: auto;
  height: 22px;
}
#toggle{
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
}
.toggle_switch{
  display: block;
  position: absolute;
  margin-bottom: 0;
  top: 14px;
  z-index: 1001;
  width: 44px;
  height: 44px;
  box-shadow: 0px 0px 0px 1px #999;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 8px;
  cursor: pointer;
  transition: none;
  right: 16px;
}
.toggle_switch_fixed{
  box-shadow: 0px 0px 0px 1px transparent;
  position: fixed;
  right: 0px;
  opacity: 0;
  transition: none;
  animation: toggleShow 0.24s ease forwards;
}
@keyframes toggleShow {
  0%{
    right: 0px;
    opacity: 0;
  }
  100%{
    right: 16px;
    opacity: 1;
  }
}

.toggle_switch i{
  display: block;
  position: absolute;
  width: 28px;
  height: 2px;
  background: rgba(51,51,51,1);
  top: calc(50% - 1px);
  left: 8px;
  transition: 0.32s ease;
}
.toggle_switch i:before,
.toggle_switch i:after{
  content: '';
  display: block;
  position: absolute;
  width: 28px;
  height: 2px;
  background: #333;
  left: 0;
  transition: 0.32s ease;
  transform-origin: center;
}
.toggle_switch i:before{
  top: -8px;
}
.toggle_switch i:after{
  bottom: -8px;
}
#toggle:checked ~ .hokkaido_header .toggle_switch i{
  background: rgba(51,51,51,0);
}
#toggle:checked ~ .hokkaido_header .toggle_switch i:before{
  top: 0;
  left: 0;
  transform: rotate(45deg);
}
#toggle:checked ~ .hokkaido_header .toggle_switch i:after{
  top: 0;
  left: 0;
  transform: rotate(-45deg);
}
#toggle ~ .hokkaido_header .toggle_menu{
  display: block;
  position: fixed;
  overflow: hidden;
  width: 50%;
  min-width: 300px;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 998;
  padding: 128px 32px 64px;
  background: #fff;
  box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.0);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.32s ease, box-shadow 0.32s ease, transform 0.32s ease;
}
#toggle:checked ~ .hokkaido_header .toggle_menu{
  opacity: 1;
  box-shadow: -4px 0px 8px -4px rgba(113,161,192,0.4);
  transform: translateX(0%);
}
.toggle_menu li{
  margin-bottom: 24px;
}
.toggle_menu li a{
  color: #1c1c1c;
  font-weight: bold;
  display: inline-block;
  position: relative;
  padding: 8px 0;
  border-bottom: 1px dashed #ccc;
}
.toggle_menu li a:hover{
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}
#toggle ~ .hokkaido_header:before{/*overlay*/
  content: '';
  display: block;
  position: fixed;
  background: rgba(255,255,255,0);
  width: 0vw;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 997;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: width 0.24s ease, background 0.24s ease;
}
#toggle:checked ~ .hokkaido_header:before{
  background: rgba(113,161,192,0.4);
  width: 100vw;
}
@media all and (-ms-high-contrast: none) {
  #toggle:checked ~ .hokkaido_header:before{
    background: rgba(113,161,192,0.4);
  }
}
.hokkaido_base{
  background: #ffffff;
  color: #1c1c1c;
  font-size: 14px;
  /*font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;*/
}

.spacer{
  min-height: 200vh;/*------------------------------------------------作業用------*/
}

/*------キービジュアル-------*/
#main_visual{
  height: 65vw;
  max-height: 520px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: url(/static/img/campaign/hokkaido/top_mv_bg.jpg) 50% 50% no-repeat;
  background-size: cover;
}
.mv_bg{
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: url(/static/img/campaign/hokkaido/top_mv_bg2.jpg) 50% 60% no-repeat;
  background-size: cover;
  animation: mv_fade 28s ease infinite;
  opacity: 0;
}
@keyframes mv_fade {
  0%{
    opacity: 0;
  }
  20%{
    opacity: 0;
  }
  25%{
    opacity: 1;
  }
  95%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }
}
.mv_bg:before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
  background: url(/static/img/campaign/hokkaido/top_mv_bg3.jpg) 50% 60% no-repeat;
  background-size: cover;
  animation: mv_fade2 28s ease infinite;
  opacity: 0;
}
@keyframes mv_fade2 {
  0%{
    opacity: 0;
  }
  45%{
    opacity: 0;
  }
  50%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
.mv_bg:after{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  background: url(/static/img/campaign/hokkaido/top_mv_bg4.jpg) 50% 30% no-repeat;
  background-size: cover;
  animation: mv_fade3 28s ease infinite;
  opacity: 0;
}
@keyframes mv_fade3 {
  0%{
    opacity: 0;
  }
  70%{
    opacity: 0;
  }
  75%{
    opacity: 1;
  }
  100%{
    opacity: 1;
  }
}
#main_visual h1{
  font-size: 28px;
  position: relative;
  z-index: 5;
  width: 80%;
  max-width: 576px;
}
#main_visual h1 img{
  width: 100%;
  height: auto;
}
.content{
  background: #ffffff;
  position: relative;
  z-index: 1;
  padding-top: 32px;
}
#title_bg{/*top以外のh1背景画像BOX*/
  height: 160px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
#title_bg:before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.24);
  z-index: 2;
}
#title_bg h1{
  font-size: 12px;
  position: relative;
  z-index: 3;
  width: 96%;
  color: #fff;
}
#title_bg h1 span{
  display: block;
  font-size: 20px;
  margin-bottom: 0.5em;
}
.ehbn_rt #title_bg{
  background: url(/static/img/campaign/hokkaido/title_bg_route.jpg) 50% 72% no-repeat;
  background-size: cover;
}
.ehbn_ap #title_bg{
  background: url(/static/img/campaign/hokkaido/title_bg_airport.jpg) 50% 60% no-repeat;
  background-size: cover;
}
.ehbn_ar #title_bg{
  background: url(/static/img/campaign/hokkaido/title_bg_area.jpg) 50% 45% no-repeat;
  background-size: cover;
}
.ehbn_bl #title_bg{
  background: url(/static/img/campaign/hokkaido/title_bg_bus.jpg) 50% 75% no-repeat;
  background-size: cover;
}
.ehbn_mc #title_bg{
  background: url(/static/img/campaign/hokkaido/title_bg_modelc.jpg) 50% 75% no-repeat;
  background-size: cover;
}


/*------キービジュアル下リード-------*/
#top_lead{
  margin: 20px auto 0;
}
.row-toplead{
  text-align: center;
}
.row-toplead h2{
  font-size: 18px;
  color: #0c6db5;
  font-weight: bold;
  margin-bottom: 10px;
}
.row-toplead p{
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 768px){
#top_lead{
  margin: 40px auto 0;
}
.row-toplead h2{
  font-size: 24px;
}
}


/* ====================================
バス予約部分
==================================== */
.wrap-newsearchbox{
  margin-bottom: 16px;
}
.nav-toptab.nav-tabs{
  border:none;
  padding: 0 8px;
  justify-content: space-between;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.nav-toptab.nav-tabs:before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: #035591;
}
.nav-toptab.nav-tabs>li{
  float: none;
  width: 30%;
  position: relative;
  z-index: 2;
}
.nav-toptab.nav-tabs .nav-link{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  border-radius: 4px 4px 0 0;
  margin: 0;
  padding: 0;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  background: #E1E4E4;
  color: #1c1c1c;
  border: 3px solid #035591;
  border-bottom: none;
}
.nav-toptab.nav-tabs .nav-link span{
  line-height: 1.2;
}
.nav-toptab.nav-tabs .nav-link.active{
  color: #1c1c1c;
  background: #fff;
}
.nav-toptab.nav-tabs .nav-link.active:hover{
  color: #035591;
  background: #fff;
}
.nav-toptab.nav-tabs .nav-link:hover{
  background:#1a64d7;
  color: #fff;
}
.top-tab-content{
  width: 100%;
  background: #035591;
  padding: 16px;
  border-radius: 4px;
}
.title-search{
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  text-align: center;
  color: #fff;
  font-weight: normal;
}


/*検索ボックス
---------------------------------------*/
.row-bus-searchbox {
  margin:0 auto;
  width: 100%;
}
.row-bus-searchbox-main {
  padding: 0;
  margin: 0;
  background: none;
  border-radius: 0;
  flex-wrap: wrap;
}
.col-bus-searchbox-02,
.col-bus-searchbox-03,
.col-bus-searchbox-04,
.col-bus-searchbox-05,
.col-bus-searchbox-06 {
  width: 100%;
  float: none;
  padding: 0;
  margin-bottom: 8px;
}
.col-bus-searchbox-04{
  margin-bottom: 16px;
}
.col-bus-searchbox-02 select,
.col-bus-searchbox-03 select,
.col-bus-searchbox-04 select,
input#departure_date::placeholder,
#departure_date.datepicker{
  width: 100%;
  font-size: 16px;
}

/*出発日から探す*/
.searchbox-dep-set{
  position: relative;
}

.icon-bussearch{
  position: absolute;
  top: 50%;
  left: 33px;
  margin-top: -61px;
}

.searchbox-dep-set .config-accordion {
  pointer-events: none;
}

.btn-select-design-dep,
.btn-select-design-arriv,
.btn-select-design-date,
.btn-select-design-day{
  background:#fff !important;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  width: 100%;
  margin: 0;
  text-align: center;
}
.btn-select-design-dep:after,
.btn-select-design-arriv:after,
.btn-select-design-date:after,
.btn-select-design-day:after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #035591;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translate(0, -50%);
}
#departure_area,
#arrival_area {
  width: 100%;
  padding: 16px 10px;
  cursor: pointer;
  text-indent:60px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  height: auto;
  display: block;
  text-align: left !important;
  line-height: 1;
}
option:disabled {
    color: #ddd;
}
@-moz-document url-prefix() {
  #departure_area , #arrival_area {
    text-indent:30px;
  }
}

#departure_date {
  width: 100%;
  padding: 12px 10px;
  cursor: pointer;
  text-indent:60px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  height: auto;
  line-height: 1;
  background:none !important;
}
#departure_area::-ms-expand,
#arrival_area::-ms-expand,
#departure_date::-ms-expand {
  display: none;
}
.btn-select-design-dep,
.btn-select-design-arriv,
.btn-select-design-date {
  background: url(/static/img/common/icon/i-nav-dep.png) #fff no-repeat 94% 50%;
  position: relative;
  border-radius: 3px;
}

/*#departure_date{
  background: url(/static/img/common/icon/i-nav-day.png) #fff no-repeat 94% 50% !important;
}*/

.btn-select-design-dep::before {
  position: absolute;
  top: 50%;
  left: 15px;
  content: '出発地';
  font-size: 14px;
  margin-top: -8px;
  color: #666;
}
.btn-select-design-arriv::before {
  position: absolute;
  top: 50%;
  left: 15px;
  content: '到着地';
  font-size: 14px;
  margin-top: -8px;
  color: #666;
}

.btn-select-design-date::before {
  position: absolute;
  top: 50%;
  left: 15px;
  content: '出発日';
  font-size: 14px;
  margin-top: -8px;
  color: #666;
}
input#departure_date::placeholder,
#departure_date.datepicker {
  color: #333 !important;
  text-align: left !important;
  /*font-size: 18px;*/
}
#departure_area.form-control select,
#arrival_area.form-control select {
  color: #da3c41;
  padding: 10px 10px !important;
}
.datepicker {
  padding-top: 6px;
  font-size: 16px;
  text-align: center;
  background: #fff !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 th,
.datepicker-days td{
  padding: 7px;
}
.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;
}
.btn-search {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  margin: 0 auto;
  width: 100%;
  max-width: 140px;
  font-size: 18px;
  font-weight: bold;
  background: #ffeb01;
  color: #1c1c1c;
  box-shadow: 0px 0px 0px 1px #00182a;
  border-radius: 3px;
  text-decoration: none;
  padding: 15px 16px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 0;
  outline: none;
}
.btn-search:focus,
.btn-search:hover{
  outline: none;
  background: #FFFF01;
  color: #1c1c1c;
}
.bg-icon-dep img,
.bg-icon-rosen img,
.bg-icon-seat img {
  position: relative;
  top: -1px;
  margin-right: 15px;
}

/*------コンテンツ-----*/
.yellow_highlight{
  font-size: 19px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  text-align: center;
  display: table;
  margin: 0 auto 32px;
  padding: 0 0.5em 0.4em;
}
.yellow_highlight:after{
  content: '';
  display: block;
  background: #ffff01;
  width: 100%;
  height: 1em;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.yellow_highlight span{
  display: inline-block;
  text-align: left;
}
#top_areamap{
  overflow: hidden;
}
/*#top_areamap:before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: url(/static/img/campaign/hokkaido/area_map.png) 0% 3vw no-repeat;
  background-size: contain;
  min-height: 450px;
  max-height: 768px;
}*/
/*#top_areamap h2{
  margin-bottom: 80vw;
}*/
.area_buttons{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 16px 10px;
  padding-bottom: 24px;
  padding: 0 5px;
}
.area_buttons li a{
  background: #fff;
  border: 2px solid #035591;
  border-radius: 8px;
  box-shadow: 2px 4px 0px #000;
  color: #1c1c1c;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
  padding: 8px 8px 8px 0;
  position: relative;
}
.area_buttons li a .font-weight-bold{
  width: 100%;
  font-size: 13px;
}
.area_buttons li a .furigana{
  font-size: 10px;
}
.area_buttons li a:after{
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 3px;
  transform: translateY(-50%);
  color: #035591;
}
.area_buttons li a:hover{
  text-decoration: none;
  background: #1a64d7;
  color: #fff;
}
.area_buttons li a:hover:after{
  color: #fff;
}
.slick-slider.slick_this{
  margin-bottom: 0;
}
.area_slick_box{
  padding: 24px;
  min-height: 300px;
}
.area_slick li{
  padding-bottom: 32px;
  margin: 0 16px;
}
.area_slick img{
  width: 100%;
  height: auto;
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.area_slick h3{
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  margin: 5px;
}
.area_slick p{
  text-align: left;
  font-size: 12px;
  margin: 5px;
}

.area_link_btn{
  font-size: 16px;
  margin: 24px auto 0;
}
.slick-prev{
  left: -32px;
  top: 28vw;
}
.slick-next{
  right: -32px;
  top: 28vw;
}
.slick-prev,
.slick-next{
  width: 40px;
  height: 40px;
  background: #fff;
  color: #035591;
  border-radius: 20px;
  border: 3px solid #035591;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
#top_recommend .slick-prev,
#top_recommend .slick-next,
#top_areamap .slick-prev,
#top_areamap .slick-next{
  top: calc(50% - 20px);
}
.slick-prev:focus,
.slick-next:focus,
.slick-prev:active,
.slick-next:active{
  background: #fff;
  color: inherit;
}
.slick-prev:hover,
.slick-next:hover{
  background: #035591;
  color: #fff;
}
.slick-prev:before,
.slick-next:before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: inherit;
  opacity: 1;
}
.slick-prev:before{
  content: '\f053';
}
.slick-next:before{
  content: '\f054';
}
#top_pickup{
  padding: 64px 0 48px;
  background: #F8F8F6;
}
.top_pickup_box{
  background: #fff;
  padding: 32px 16px 16px;
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px #ddd;
}
.route_list li{
  margin-bottom: 16px;
  padding: 0 8px 16px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
}
.route_list li:last-child{
  border-bottom: none;
  margin-bottom: 0;
  padding: 0 8px 16px;
}
.route_title,
.route_price_search_button{
  width: 100%;
}
.route_title span{
  font-size: 14px;
  font-weight: bold;
}
.bus_stop_l{
  padding-right: 0.5em;
}
.bus_stop_r{
  padding-left: 0.5em;
}
.route_price_search_button{
  margin-top: 8px;
}
.route_price{
  font-size: 24px;
  color: #f53c7f;
}
.route_price_yen{
  font-size: 16px;
}
.search_button_set{
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.search_button{
  width: 100%;
}
.search_button:first-child{
  margin-bottom: 16px;
}
.search_button a{
  font-size: 14px;
  font-weight: bold;
}
.search_button a span{
  margin-right: 0.3em;
}

#top_recommend{
  padding: 64px 0 48px;
}
.model_route{
  padding: 0 24px;
}
.route_card{
  background: #fff;
  padding: 16px;
  margin: 1px 16px;
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px #ddd;
}
.route_card h3{
  font-size: 16px;
  margin: 8px 0;
}
.route_card p{
  font-size: 12px;
}
.route_card .btn_d_block{
  margin: 16px auto 0;
}
.route_card .btn_d_block:before{
  right: 12px;
}
.model_route_slick + .btn_ghost,
.recommend_plan + .btn_ghost{
  border-radius: 32px;
  font-size: 18px;
  font-weight: bold;
  padding-right: 24px;
  padding-left: 16px;
  margin: 24px auto;
}
.model_route_slick + .btn_ghost:before,
.recommend_plan + .btn_ghost:before{
  right: 8px;
}
#about{
  padding-bottom: 48px;
}
.about_box{
  padding: 24px;
  background: #C0E9F9;
}
footer{
  padding: 32px 0;
  border-top: 1px solid #e7e7e7;
}

/*-----------路線一覧P-----------*/
.tab_box{
  padding: 24px 0 0;
}
.tab_box h2{
  font-size: 20px;
}
.area_buttons3col{
  grid-template-columns: 1fr 1fr 1fr!important;
}
.area_buttons4col{
  grid-template-columns: 1fr 1fr 1fr 1fr!important;
}
.area_buttons3col li a:after,
.area_buttons4col li a:after,
.area_buttonsflex li a:after{
  content: '\f078';
}
.ehbn_route{
  padding-top: 48px;
  padding-bottom: 48px;
}
.ehbn_route:nth-child(odd){
  background: #C2E2EF;
}
.route_box{
  background: #fff;
  padding: 32px 16px 16px;
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px #ddd;
}
.route_oneway .btn_d_flex{
  height: auto;
}
.route_oneway .btn_d_flex span{
  font-size: 16px;
  font-weight: bold;
}
.recommend_plan{
  padding-top: 40px;
}
.recommend_plan h2{
  font-size: 20px;
  margin-bottom: 16px;
}
/*------------空港から観光地へのアクセス-----------*/
.ehbn_airport{
  padding-bottom: 48px;
}
.border_tb_w_icon{
  border-top: 2px solid #035591;
  border-bottom: 2px solid #035591;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 32px;
}
.border_tb_w_icon img{
  width: auto;
  height: 24px;
}
.border_tb_w_icon span{
  font-size: 18px;
  padding-left: 0.5em;
}
.modelc_map,
.ehbn_airport .border_tb_w_icon + img{
  border-radius: 16px;
  box-shadow: 0px 0px 0px 1px #ccc;
}
.sights{
  padding: 24px 0;
}
.sight_title{
  position: relative;
  padding: 40px 0;
  margin-bottom: -16px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sight_title:before{
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0%;
  z-index: 1;
  background: #035591;
}
.sight_title span{
  font-size: 18px;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 0 16px;
}
.sight_title span:before{
  content: '';
  display: block;
  width: 78px;
  height: 30px;
  background: url(/static/img/campaign/hokkaido/icon_pattern.svg) 50% 50% no-repeat;
  background-size: contain;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.sights dl{
  padding: 24px 0;
}
.sights dt{
  font-size: 15px;
  margin-bottom: 0.4em;
}
.sight_data p{
  font-size: 12px;
  margin-bottom: 0.6em;
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.sight_data p .data_h{
  width: 120px;
  padding: 4px 8px;
  background: #efefef;
  border-radius: 8px;
  text-align: center;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sight_data p .data{
  width: calc(100% - 130px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.recommend_access{
  padding: 24px 8px 0;
}
.recommend_access h4{
  color: #035591;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.recommend_access .route_list{
  box-shadow: 0px 0px 0px 1px #035591;
  padding: 16px 8px;
  border-radius: 16px;
  overflow: hidden;
}
.recommend_access .route_list li{
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 16px;
}
.recommend_access .route_list li:last-child{
  padding: 0;
}
.recommend_access .icon_sign{
  text-align: center;
  color: #035591;
  min-width: 36px;
  margin-right: 4px;
}
.recommend_access .icon_sign i{
  display: block;
  font-size: 32px;
}
.recommend_access .route_title{
  width: calc(100% - 128px);
  flex: auto;
}
.recommend_access .route_price{
  font-size: 18px;
  min-width: 88px;
  padding-right: 0px;
}
.recommend_access .btn_d_flex{
  width: 100%;
  margin-top: 8px;
}
/*------------観光地・目的地からバスを探す-------------*/
.bus_line_map{
  display: block;
  margin-bottom: 24px;
}
.area_pass h2{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: table;
  margin: 64px auto 16px;
}
.area_pass .btn_d_table{
  margin: 0 auto;
  text-align: center;
  width: 96%;
  min-width: 114px;
  max-width: 144px;
}
.ehbn_ar .content{
  padding-bottom: 40px;
}
.area_pass .search_button_set{
  flex-wrap: nowrap;
  justify-content: center;
}
.area_pass .search_button{
  width: 50%;
  margin-bottom: 0;
}
.area_pass .btn_ghost{
  padding: 13px;
}
/*------------おすすめのモデルコース-----------*/
.ehbn_modelc{
  padding-bottom: 48px;
}
.ehbn_modelc .recommend_access h5{
  text-align: center;
  padding: 8px;
  margin-bottom: 16px;
  background: #c2e2ef;
  font-size: 16px;
  border-radius: 4px;
}
.modelc_slick_box{
  margin-bottom: 24px;
}
.modelc_slick_box img{
  width: 100%;
  height: auto;
}
.modelc_slick_box p{
  margin-top: 1em;
}
.modelc_slick_box .slick-prev{
  left: -10px;
}
.modelc_slick_box .slick-next{
  right: -10px;
}
.border_tb{
  border-top: 2px solid #035591;
  border-bottom: 2px solid #035591;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0;
  margin-bottom: 32px;
}
.border_tb span{
  font-size: 17px;
  text-align: left;
  position: relative;
  padding-left: 1em;
}
.border_tb span i{
  position: absolute;
  top: 0;
  left: 0;
  font-style: normal;
}
/*------------乗合バス会社一覧-------------*/
.area_buttonsflex{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.area_buttonsflex li{
  width: calc(25% - 10px);
}
.ehbn_bl .content{
  padding-bottom: 48px;
}
.ehbn_bus_company{
  padding-bottom: 48px;
}
.ehbn_bus_company img{
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  box-shadow: 0px 0px 0px 1px #ccc;
  margin-bottom: 16px;
}
.ehbn_bus_company p{
  font-size: 14px;
}


.d-or-box{
  align-items: center;
  position: relative;
  padding-left: 40px;
}
.d-or-box + .d-or-box{
  margin-top: 15px;
}
/*.d-or-box:before{
  content: "or";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
  position: absolute;
  left: 0;
}*/
/*.route_title .d-or-box:before {
  counter-increment:renban;
  content:counter(renban,upper-alpha);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
  position: absolute;
  left: 0;
  border-radius: 100px;
}
.route_title{counter-reset:renban;}*/
@media (max-width: 768px) {
.recommend_access .d-or-box .route_title{
  width: 100%;
  flex: auto;
}
.recommend_access .d-or-box .route_price{
  width: 100%;
  min-width: auto;
  text-align: right !important;
}
}

.d-box-ab:before{
  content:"AB";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
  position: absolute;
  left: 0;
  font-size: 13px;
  border-radius: 100px;
}
.d-box-a:before{
  content:"A";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
  position: absolute;
  left: 0;
  font-size: 13px;
  border-radius: 100px;
}
.d-box-b:before{
  content:"B";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #333;
  color: #fff;
  position: absolute;
  left: 0;
  font-size: 13px;
  border-radius: 100px;
}



@media (max-width: 359px) {/*狭小スマホ*/
  .hokkaido_header .row{
    padding: 0 8px;
  }
  .logo img{
    height: 19px;
  }
  .nav-toptab.nav-tabs .nav-link{
    font-size: 10px;
  }
  #title_bg h1 span{
    font-size: 18px;
  }
  .area_buttons3col li a,
  .area_buttons4col li a,
  .area_buttonsflex li a{
    padding: 8px 0 16px 0;
  }
  .area_buttons3col li a:after,
  .area_buttons4col li a:after,
  .area_buttonsflex li a:after{
    top: 100%;
    right: 50%;
    transform: translate(50%,-90%);
  }
  .area_buttons li a .furigana span{
    display: block;
  }
  .area_buttonsflex li:nth-child(2),
  .area_buttonsflex li:nth-child(6),
  .area_buttonsflex li:nth-child(7){
    flex: auto;
  }
  .border_tb span {
    font-size: 16px;
  }
  .yellow_highlight{
    font-size: 17px;
  }
  .model_route_slick + .btn_ghost, .recommend_plan + .btn_ghost{
    font-size: 14px;
  }
}





@media (min-width: 768px){/*tablet以上*/
  .hokkaido_header .row{
    height: 100%;
    padding: 0;
  }
  .logo img{
    width: auto;
    height: 32px;
  }
  #title_bg{
    height: 200px;
  }
  #title_bg h1{
    font-size: 16px;
  }
  #title_bg h1 span{
    font-size: 28px;
  }
  .content{
    padding-top: 48px;
  }
  .yellow_highlight{
    font-size: 22px;
  }
  .tab_box{
    padding: 48px 0 0;
  }
  .nav-toptab.nav-tabs{
    padding: 0 16px;
  }
  .nav-toptab.nav-tabs .nav-link{
    font-size: 16px;
    height: 64px;
  }
  .title-search{
    font-size: 18px;
  }
  .col-bus-searchbox-02,
  .col-bus-searchbox-03,
  .col-bus-searchbox-04,
  .col-bus-searchbox-05{
    width: 50%;
    padding: 5px 5px;
  }
  .col-bus-searchbox-04 {
    margin-bottom: 8px;
  }
  .btn-search{
    max-width: none;
    padding: 11px 16px;
  }
  /*#top_areamap:before{
    background-position: 0% 0%;
    height: 58vw;
    max-height: none;
    top: 8vw;
  }*/
  #top_areamap h2{
    margin-bottom: 48px;
  }
  #top_areamap .slick-prev,
  #top_areamap .slick-next{
    top: 96px;
  }
  .area_buttons{
    grid-template-columns: 1fr 1fr;
    padding: 0 25px;
  }
  .area_buttons li a{
    padding: 16px 24px 16px 16px;
  }
  .area_buttons li a:after{
    right: 8px;
  }
  .area_buttons li a .font-weight-bold{
    font-size: 16px;
  }
  .area_buttons li a .furigana{
    font-size: 12px;
  }
  .search_button a{
    padding: 16px 24px 16px 8px;
  }
  .btn_w_chevron:before{
    right: 8px;
  }
  .area_slick_box{
    margin-top: 24px;
  }
  .area_slick li:after{
    content: '';
    clear: both;
  }
  .area_slick li img{
    width: 50%;
    float: left;
  }
  .area_slick li div{
    width: 50%;
    float: left;
    padding-left: 16px;
  }
  .area_slick h3{
    font-size: 18px;
  }
  .area_slick p{
    font-size: 14px;
  }
  .route_card img{
    width: 50%;
    float: left;
  }
  .route_card div{
    width: 50%;
    float: left;
    padding-left: 16px;
  }
  .search_button_set{
    flex-wrap: nowrap;
    margin-top: 8px;
  }
  .search_button{
    width: 50%;
    padding: 0 8px;
  }
  .search_button:first-child{
    margin-bottom: 0px;
  }
  #about p{
    font-size: 16px;
  }
  .ehbn_route{
    padding-top: 64px;
  }
  .route_title span{
    font-size: 16px;
  }
  .border_tb_w_icon span{
    font-size: 22px;
  }
  .sights{
    padding-top: 48px;
  }
  .sights dl{
    padding: 0 0 24px;
  }
  .sights dt{
    font-size: 16px;
  }
  .sight_data p{
    font-size: 13px;
  }
  .recommend_access{
    padding-top: 48px;
  }
  .recommend_access h4{
    font-size: 20px;
  }
  .recommend_access .route_list li{
    padding: 0 8px 16px;
    flex-wrap: nowrap;
  }
  .recommend_access .route_list li:last-child{
    padding: 0 8px 0;
  }
  .recommend_access .icon_sign{
    min-width: 48px;
    margin-right: 8px;
  }
  .recommend_access .route_title{
    width: calc(100% - 158px);
  }
  .recommend_access .route_title .bus_stop_l{
    display: inline;
  }
  .recommend_access .route_price{
    min-width: 110px;
    font-size: 22px;
    padding-right: 12px;
    font-weight: bold;
  }
  .recommend_access .btn_d_flex {
    width: 112px;
    min-width: inherit;
    font-size: 16px;
    padding: 8px 16px 8px 8px;
    margin-top: 0;
  }
  .area_pass h2{
    font-size: 22px;
  }
  .area_pass .route_list li{
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
  }
  .area_pass .route_list .route_title,
  .area_pass .route_list .route_price_search_button{
    width: auto;
    flex: auto;
  }
  .area_pass .route_list .route_price_search_button{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 8px;
  }
  .area_pass .route_list .route_price_search_button .search_button_set{
    margin-top: 0;
    width: auto;
  }
  .area_pass .route_list .route_price_search_button .search_button_set .search_button{
    width: 160px;
  }
  .modelc_slick_box{
    margin-bottom: 40px;
  }
  .modelc_slick_box .slick-prev{
    left: -20px;
  }
  .modelc_slick_box .slick-next{
    right: -20px;
  }
  .border_tb span{
    font-size: 20px;
  }
  .sight_title span{
    font-size: 20px;
  }
}

@media (min-width: 992px){/*PC*/
  body.fixed{
    padding-right: 16px;
  }
  #toggle:checked + .toggle_switch{
    left: calc(100% - 80px);
  }
  #toggle:checked + .toggle_switch_fixed{
    animation-name: none;
    right: 32px;
    opacity: 1;
  }
  .toggle_menu li a:before{
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    display: block;
    position: absolute;
    width: 12px;
    height: 100%;
    top: 8px;
    left: 0px;
    z-index: -1;
    opacity: 0;
    transition: 0.24s ease;
  }
  .toggle_menu li a:hover{
    transform: translateX(12px);
  }
  .toggle_menu li a:hover:before{
    left: -12px;
    opacity: 1;
  }
  .nav-toptab.nav-tabs{
    padding: 0 24px;
  }
  .top-tab-content{
    padding: 24px;
  }
  .col-bus-searchbox-02 {
    width: 30%;
    float: left;
    padding: 0 8px 0 0;
    margin-bottom: 0;
  }
  .col-bus-searchbox-03,
  .col-bus-searchbox-04 {
    width: 30%;
    float: left;
    padding: 0 8px;
    margin-bottom: 0;
  }
  .col-bus-searchbox-05 {
    width: 10%;
    float: left;
    padding: 0 0 0 8px;
    position: relative;
    margin-bottom: 0;
  }
  /*#top_areamap:before{
    background: url(/static/img/campaign/hokkaido/area_map.png) 100% 50%;
    background-size: cover;
    width: 800px;
    height: 633px;
    top: -240px;
    right: 46%;
  }*/
  .route_list li{
    align-items: center;
    padding-right: 0;
  }
  .route_list li:last-child{
    padding-right: 0;
  }
  .route_title{
    width: 45%;
  }
  .route_price_search_button{
    margin-top: 0;
    width: 55%;
    display: flex;
    align-items: center;
  }
  .route_price{
    width: 200px;
    line-height: 1;
  }

  .route_oneway .route_title{
    width: auto;
    flex: auto;
  }
  .route_oneway .route_price_search_button{
    margin-top: 0;
    width: 400px;
    display: flex;
    align-items: center;
  }
  .route_oneway .route_price{
    width: 590px;
    line-height: 1;
    margin-right: 1em;
  }

  .search_button_set{
    margin-top: 0;
    width: calc(100% - 128px);
  }
  .sight_data p{
    font-size: 14px;
  }
  .sight_data p .data_h{
    width: 144px;
  }
  .sight_data p .data{
    width: calc(100% - 154px);
  }
  .recommend_access .btn_d_flex{
    width: 184px;
  }
  .slick-prev, .slick-next{
    top: 320px;
  }
}

@media (min-width: 1200px){/*PC XLsize*/
  .toggle_switch{
    left: calc(50% + 522px);
    right: auto;
  }
  .toggle_switch_fixed{
    left: auto;
  }
  .slick-prev, .slick-next {
    top: 360px;
  }
  /*#top_areamap:before{
    width: 750px;
    height: 593px;
    top: 0px;
    right: 50%;
    transform: translateX(8%);
  }*/
}


/*--- 20220523 ---*/
.teiki{
  align-items: flex-start;
}
.teiki h2{
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  display: table;
  margin: 64px auto 16px;
}
.teiki .itembox02 {
    border: 1px solid #ccc;
    margin-bottom: 20px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    background: #fff;
    overflow: hidden;
    padding: 15px;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
}
.teiki .itembox02 .itembox-body {
    padding: 10px 0;
    text-align: left;
}
.teiki .itembox02 h3 {
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 5px;
}
.teiki .itembox02 h3 a {
    color: #000;
}
.teiki .price-text-wrap {
    display: inline;
    margin-right: 10px;
    white-space: nowrap;
}
.teiki .num {
    font-size: 16px;
    font-weight: bold;
    color: #f53c7f;
    display: inline;
}
.teiki .yen {
    font-size: 12px;
    font-weight: bold;
    color: #f53c7f;
    display: inline;
    padding-right: 3px;
}
.teiki .itembox02 .example-txt {
    font-size: 14px;
    padding-right: 3px;
    color: #000;
    margin: 5px 0;
}
.teiki .data-wrap {
    color: #333;
    display: inline-block;
    font-size: 12px;
}
.teiki .data-wrap li {
    float: left;
}
.teiki .itembox02 .itembox-book {
    padding: 0;
    text-align: left;
    align-self: flex-end;
    width: 100%;
}
.teiki a.btn-main {
    background: #f53d7e;
    border-color: #f53d7e;
    font-weight: bold;
    color: #fff!important;
    margin: 0 auto;
    padding: 10px 10px;
    width: 100%;
    display: block;
}
.teiki a.btn-main:after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-left: 15px;
    color: #fff!important;
}
.teiki a.btn-main:hover{
  filter: brightness(1.04);
}
@media (min-width: 768px) {
  .teiki{
    align-items: stretch;
  }
  .teiki h2{
    font-size: 22px;
  }
  .teiki .col-md-4{
    margin-bottom: 30px;
  }
  .teiki .itembox02 {
    margin-bottom: 0;
  }
  .teiki .itembox02 .itembox-body{
    padding: 32px 8px 16px;
  }
}



.col-map-large{
  position: relative;
  margin-bottom: 30px;
}
.col-map-large:after {
  border: 20px solid transparent;
  border-top: 20px solid #035591;
  left: 50%;
  content: "";
  display: block;
  bottom:-40px;
  position: absolute;
  transform: translateX(-50%);
}
@media (min-width: 768px) {
.col-map-large:after {
  border: 20px solid transparent;
  border-top: 20px solid transparent;
  border-left: 20px solid #035591;
  left: auto;
  bottom: auto;
  right: -30px;
  top:25%;
  transform: none;
}
}

.modal-busselect .route_oneway .route_price_search_button{
  width: 100%;
}
.modal-busselect .modal-header{
  background: #75ab43;
  color: #fff;
}




.col-mg{
  margin-bottom: 20px;
}
.wrap-otherlink{
  background: #ffffef;
  padding: 60px 20px;
}
.wrap-otherlink h2{
  font-size: 22px;
  text-align: center;
  font-weight: bold;
  color: #525216;
  margin-bottom: 10px;
  border-bottom: 1px dotted #525216;
  padding-bottom: 10px;
}
.wrap-otherlink h2 + p{
  margin-bottom: 20px;
}
a.btn-otherlink{
  display: block;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0px 0px 0px 1px #ddd;
  color: #333;
  background: #fff;
}
a.btn-otherlink:hover{
  text-decoration: none;
}
span.btn-otherlink{
  display: block;
  padding: 12px 16px;
  font-size: 16px;
  text-align: center;
  border-radius: 8px;
  background: #035591;
  color: #fff;
  position: relative;
}
span.btn-otherlink:before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}
a.btn-otherlink:hover span.btn-otherlink{
  background: #0c6db5;
}
.title-otherlink{
  font-size: 16px;
  font-weight: normal;
  margin-top: 10px;
  margin-bottom: 10px;
}
/*.title-otherlink small{
  display: block;
}*/


.btn-other{
  display: inline-block;
  padding: 12px 50px 12px 40px;
  background: #333;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  margin: 0 auto;
  border-radius: 8px;
  position: relative;
}
.btn-other:before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.btn-other:hover{
  color: #fff;
  text-decoration: none;
  opacity: 0.5;
}


/*キャンペーンバナー*/
.wrap-obi{
  background: url(/static/img/campaign/hokkaido/campaign/bnr-campaign.jpg) center center;
  color: #fff;
  padding: 0;
  line-height: 1;
  text-align: center;
  background-size: 600px 80px;
}
.wrap-obi a{
  display: block;
  width: 100%;
  padding: 0;
}
.wrap-obi img{
  width: 100%;
  max-width: 600px !important;
  height: auto;
  margin: 0 auto;
}


.warp-busreserve{
  background: #ffedf3;
  padding: 15px;
  margin: -16px -8px 16px;
}
.recommend_access .route_list .warp-busreserve:last-child{
  margin: 16px -8px -16px;
}
.col-reservetxt{
  margin-bottom: 10px;
}
.warp-busreserve a{
  display: block;
  background: #F53D7E;
  color: #fff;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
  position: relative;
}
.warp-busreserve a:before {
  content: '\f054';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  display: block;
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
.warp-busreserve{
  display: flex;
  align-items: center;
}
.col-reservetxt{
  width: 70%;
  padding: 10px;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 0;
}
.col-reservebtn{
  width: 30%;
}
.warp-busreserve a{
  font-size: 16px;
}
.warp-busreserve a:before {
  right: 10px;
}
}


.box-monitor{
  display: none;
}
/* ComingSoon 1 */
.btn_d_flex.comingsoon {
  opacity: 0.5;
	transition-property: all;
	transition: 0.3s linear;
	pointer-events: none;
	display: flex;
	justify-content: center;
	align-items: center;
	/*width: 100%;*/
	/*height: 100%;*/
	padding: 12px 16px 12px 8px;
	border-radius: 8px;
	background: #035591;
	color: #fff;
}
/* ComingSoon 2 */
.area_pass .btn_d_table.comingsoon {
  opacity: 0.5;
	transition-property: all;
	transition: 0.3s linear;
	pointer-events: none;
	margin: 0 auto;
	text-align: center;
	width: 96%;
	min-width: 114px;
	max-width: 144px;
}


/*掲載バナー*/
.bnr-wrap {
    width: 100%;
    max-width: 960px;
    margin: 100px auto 120px;
}

.bnr-wrap a {
    display: block;
    width: 100%;
    transition: 0.3s;
}

.bnr-wrap a:hover {
    opacity: 0.8;
}

@media(max-width: 1024px) {
    .bnr-wrap {
        width: 80%;
        max-width: 100%;
        padding: 0 20px;
        margin: 60px auto 50px;
    }
}

@media(max-width: 560px) {
    .bnr-wrap {
        width: 100%;
        margin: 60px auto 40px;
    }
}


/*根室エリア-mobi- 期間限定*/
.area-nemuro-mobi {
    margin-top: 64px;
    background-color: #F8F8F6;
}

.area-nemuro-mobi > .container {
    padding: 50px 15px 60px;
}

.area-nemuro-mobi p {
    font-size: 16px;
    letter-spacing: 0;
    line-height: 1.5;
    margin-bottom: 16px;
}

.area-nemuro-mobi .bold {
    font-weight: bold;
}

.area-nemuro-mobi .inline-link {
    position: relative;
    display: inline-block;
    margin-top: 10px;
    padding-right: 20px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 3px solid #1C1C1C;
    color: #1c1c1c;
}

.area-nemuro-mobi .inline-link:hover {
    opacity: 0.6;
    text-decoration: none;
}

.area-nemuro-mobi .inline-link::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 16px;
}

.area-nemuro-mobi img {
    max-width: 100%;
    height: auto;
}

.area-nemuro-mobi h3 {
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    line-height: 1.3;
}

.button-wrap a {
   transition: 0.3s;
}

.button-wrap a:hover {
    opacity: 0.6;
}

.area-nemuro-mobi .link-img {
    text-align: center;
    display: block;
    margin: 0 auto 10px;
}

.marker-yellow {
    background: linear-gradient(transparent 35%, #FFFF46 65%);
}

.limit-title {
    text-align: center;
    margin: 0 auto 40px;
}

.limit-title span{
    display: block;
    width: fit-content;
    margin: auto;
}

.limit-title .sub {
    margin-bottom: 12px;
}

.limit-title .main {
    font-weight: bold;
    border-bottom: 3px solid #1C1C1C;
}

.limit-map-title {
    margin-top: 100px;
    margin-bottom: 16px;
}

.limit-map-title + p {
    margin-bottom: 30px;
}

.limit-box-border {
    background-color: #FFFEFA;
    border-radius: 15px;
    border: 6px solid #FFC200;
    padding: 5% 4%;
    margin: 50px auto 20px;
}

p.limit-box-border-head {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

h3.limit-step-title {
    text-align: left;
    padding-bottom: 5px;
    border-bottom: 2px dotted #1c1c1c;
    margin-bottom: 20px;
}

.limit-step-title .label {
    display: inline-block;
    padding: 5px;
    letter-spacing: 0.05em;
    background-color: #FFC200;
    color: #fff;
}

.limited-step {
     counter-reset: my-counter;
}

.limited-step li {
    position: relative;
    display: block;
    padding-left: 26px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.limited-step li::before {
    content: counter(my-counter);
    counter-increment: my-counter;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 14px;
    line-height: 2;
    width: 20px;
    height: 20px;
    background-color: #FFC200;
    color: #fff;
}

.button-wrap {
    max-width: 450px;
    text-align: center;
    margin: 40px auto 60px;
}

.button-wrap a {
    text-decoration: none;
    text-align: center;
    background: #1c1c1c;
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    margin: 0 auto;
    padding: 16px 16px 16px 10px;
    width: 100%;
    display: block;
    border-radius: 10px;
    position: relative;
}

.button-wrap a::after {
    content: '\f054';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    right: 10px;
    font-size: 16px;
    transform: translateY(-50%);
}

@media (max-width: 767px) {
    .area-nemuro-mobi {
        margin-top: 54px;
    }

    .area-nemuro-mobi > .container {
        padding: 30px 15px 5px;
    }

    .area-nemuro-mobi p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .area-nemuro-mobi .inline-link {
/*
        width: fit-content;
        display: block;
        margin: auto;
*/
        padding-right: 16px;
        font-size: 14px;
    }

    .area-nemuro-mobi .inline-link::after {
        font-size: 14px;
    }

    .area-nemuro-mobi h3 {
        font-size: 20px;

    }

    .area-nemuro-mobi .link-img {
        margin: 0 auto 10px;
    }

    .limit-title {
        margin: 0 auto 24px;
    }


    .limit-title .sub {
        padding-bottom: 5px;
        margin-bottom: 12px;
    }
    
    .limit-title .sub img {
        width: 80%;
    }

    .limit-title .main {
        font-size: 22px;
        line-height: 1.4;
    }
    
    .limit-text-box {
        order: 2;
        margin-top: 30px;
    }

    .limit-map-title {
        margin-top: 80px;
        margin-bottom: 10px;
    }

    .limit-map-title + p {
        margin-bottom: 20px;
    }

    .limit-box-border {
        padding: 10% 4%;
        margin: 50px auto 20px;
    }

    p.limit-box-border-head {
        font-size: 17px;
        margin-bottom: 32px;
    }

    h3.limit-step-title {
        font-size: 16px;
        text-align: center;
    }


    .limited-step {
         counter-reset: my-counter;
    }

    .limited-step li {
        font-size: 14px;
        line-height: 1.6;
    }

    .limited-step li::before {
        left: 0;
        border-radius: 50%;
        font-size: 14px;
        line-height: 2;
        width: 20px;
        height: 20px;
    }

    .button-wrap {
        width: 85%;
        margin: 40px auto 60px;
    }

    .button-wrap a {
        font-size: 16px;
        padding: 16px 16px 16px 10px;
    }

}

/*アプリダウンロード*/
.wrap-campaign {
    background: url(/static/img/campaign/hokkaido/area/nemuro/bg-concept.png) top left;
    background-size: 60px 60px;
    padding: 36px 20px;
    position: relative;
    border-radius: 60px 5px 5px 5px;
}

.list-apps{
	display: flex;
	justify-content:space-between;
	width: 100%;
	max-width: 386px;
	order: 2;
}
.list-apps li{
	padding: 0 5px;
}
.list-apps li a,
.list-campaign li a{
	display: block;
	text-align: center;
}
.list-apps li a:hover,
.list-campaign li a:hover{
	opacity: 0.5;
}
.list-apps li img{
	height: auto;
}
.list-apps-apple a img{
	width: 100%;
	max-width: 163px;
    height: 60px;

}
.list-apps-google a img{
	width: 100%;
	max-width: 202px;
    height: 60px;
}
.list-campaign img{
	border: 1px solid #000;
	border-radius: 4px;
	box-shadow: 0px 0px 3px 1px rgb(0 0 0 / 10%);
}
.wrap-app-download .list-apps{
	margin: 0 auto;
}

.list-apps-title {
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	margin-bottom: 10px;
}

.list-apps-qr-img {
    width: 100%;
	max-width: 100%;
    text-align: center;
    height: 156px;
    margin-bottom: 20px;
}

.list-apps-qr-img img {
	max-width: 100%;
    height:auto;
}

@media(max-width: 994px) {
    .wrap-campaign-box {
        margin-top: 20px;
    }
    .wrap-campaign {
        padding: 30px 15px;
    }
    .wrap-app-download .list-apps{
        display: block;
    }
    .wrap-app-download .list-apps li{
        display: block;
        width: 100%;
    }
    .wrap-app-download .list-apps li + li{
        margin-top: 36px;
    }
    .wrap-app-download .list-apps-apple a img{
        width: 100%;
        max-width: 163px;
        height: auto;
    }
    .wrap-app-download .list-apps-google a img{
        width: 100%;
        max-width: 202px;
        height: auto;
    }
    
	.list-apps-qr-img  {
		height: auto;
		margin-bottom: 16px;
	}
}


/*20240529追記*/
#area_fn .data-wrap li.times {
    background: url(/static/img/activity/ico-times.png) no-repeat;
    padding-left: 17px;
    background-position: top left;
}
#area_fn .tag {
    padding: 2px 5px;
    color: #333;
    background: #dedfe0;
    border: none;
    border-radius: 2px;
    font-size: 10px;
    display: inline-block;
    margin-right: 5px;
    margin-bottom: 5px;
}


