/* ==========================================================================
   Search List Modal Page Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. Base Tab Styles (extracted from style-original.css lines 3226-3420)
   -------------------------------------------------------------------------- */
.mm-tab_01-tab .tab-style1 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 0;
}

@media screen and (max-width: 1025px) {
  .mm-tab_01-tab .tab-style1 {
    width: 100%;
    padding-top: 20px;
    justify-content: flex-start;
  }
}

.mm-tab_01-tab .tab-style1 li {
  cursor: pointer;
  position: relative;
  width: 132px;
  line-height: 1;
  margin: 0 15px;
  padding: 0 0 15px;
  border-bottom: solid 4px #e8edf4;
  white-space: nowrap;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 1025px) {
  .mm-tab_01-tab .tab-style1 li {
    margin: 0;
    padding: 0 10px 15px;
    font-size: 16px;
    white-space: nowrap;
  }
}

.mm-tab_01-tab .tab-style1 li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #21b7e0;
  transition: all 0.3s ease;
}

.mm-tab_01-tab .tab-style1 li::after {
  content: "";
  display: none;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 30px 12px;
  border-color: transparent transparent #e8edf4 transparent;
}

.mm-tab_01-tab .tab-style1 li.current::before {
  width: 100%;
}

.mm-tab_01-tab .tab-style1 li.current::after {
  display: block;
}

.mm-tab_01-tab .tab-style1--hover {
  padding: 20px 0 30px;
}

.mm-tab_01-tab .tab-style1--hover li {
  margin: 0 2px;
  padding: 10px 0 15px;
  transition: all 0.3s ease;
}

.mm-tab_01-tab .tab-style1--hover li:hover {
  background-color: #e8edf4;
}

.mm-tab_01-tab .tab-style1--narrow li {
  width: 118px;
  font-size: 18px;
  margin: 0 2px;
}

.mm-tab_01-tab .tab-style2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 940px;
  margin: 10px auto;
}

@media screen and (max-width: 1025px) {
  .mm-tab_01-tab .tab-style2 {
    margin-top: 0;
  }
}

.mm-tab_01-tab .tab-style2 li {
  cursor: pointer;
  line-height: 48px;
  margin: 0 10px 20px;
  padding: 0 20px;
  border: solid 1px #083464;
  white-space: nowrap;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  color: #083464;
}

@media screen and (max-width: 1025px) {
  .mm-tab_01-tab .tab-style2 li {
    line-height: 25px;
    margin: 0 2.5px 5px;
    padding: 0 5px;
    font-size: 10px;
    letter-spacing: 0;
  }
}

.mm-tab_01-tab .tab-style2 li.current {
  border: solid 1px #21b7e0;
  background: #21b7e0;
  color: #fff;
}

.mm-tab_01-tab .tab-style3 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 0 0;
}

@media screen and (max-width: 1025px) {
  .mm-tab_01-tab .tab-style3 {
    width: 100%;
    padding-top: 20px;
    justify-content: flex-start;
  }
}

.mm-tab_01-tab .tab-style3 li {
  cursor: pointer;
  position: relative;
  width: 132px;
  line-height: 1;
  margin: 0 15px;
  padding: 0 0 15px;
  border-bottom: solid 4px #e8edf4;
  white-space: nowrap;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
}

@media screen and (max-width: 1025px) {
  .mm-tab_01-tab .tab-style3 li {
    flex: 1 1 0;
    margin: 0;
    padding: 0 10px 15px;
    font-size: 16px;
    white-space: nowrap;
  }
}

.mm-tab_01-tab .tab-style3 li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #21b7e0;
  transition: all 0.3s ease;
}

.mm-tab_01-tab .tab-style3 li.current::before {
  width: 100%;
}

/* --------------------------------------------------------------------------
   1. Base Modal Styles (extracted from style-original.css lines 27174-27307)
   -------------------------------------------------------------------------- */
.modal {
  background: rgba(255, 255, 255, 0.06);
  position: fixed !important;
  padding: 0 !important;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease-in;
}

.modal.show {
  opacity: 1;
  z-index: 999999;
}

.modal.show .modal__content {
  opacity: 1;
}

.modal .chart-content {
  width: 1050px;
  height: 260px;
}

.modal .line-chart3 {
  background-color: white;
  margin-top: 40px;
}

.modal .line-chart3 .chart-head {
  flex-wrap: nowrap;
  width: 1050px;
}

.modal .line-chart3 .chart-head .chart-note {
  flex-wrap: nowrap;
}

.modal__container {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.modal__content {
  max-width: 100%;
  margin: 0;
  background: rgba(0, 0, 0, 0.6);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

.modal__content .inner {
  display: none;
  overflow: auto;
  position: relative;
}

@media screen and (max-width: 1025px) {
  .modal__content {
    padding: 20px;
  }
}

.modal .button_close {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: absolute;
  top: 1rem;
  right: 0;
  cursor: pointer;
  font-family: Montserrat;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: 0.3s;
  width: 3rem;
  height: 3rem;
}

.modal .button_close span {
  width: 1.6rem;
  height: 1.6rem;
  position: relative;
  margin: 0 auto;
  top: -2rem;
  display: block;
}

@media screen and (max-width: 1025px) {
  .modal .button_close span {
    top: -1rem;
  }
}

.modal .button_close span:after,
.modal .button_close span::before {
  content: "";
  position: absolute;
  top: 2.6rem;
  left: 0;
  right: 0;
  height: 0.2rem;
  background: #fff;
  border-radius: 0.5rem;
}

@media screen and (max-width: 1025px) {
  .modal .button_close span:after,
  .modal .button_close span::before {
    top: 1rem;
  }
}

.modal .button_close span:after {
  transform: rotate(-45deg);
}

.modal .button_close span:before {
  transform: rotate(45deg);
}

.modal .button_close:hover {
  opacity: 0.7;
}

/* --------------------------------------------------------------------------
   2. Search Modal Styles (extracted from style-original.css lines 27312-27460)
   -------------------------------------------------------------------------- */
.modal--search .inner {
  max-width: 300px;
  max-height: auto;
  background-color: #ffffff;
  display: flex;
  flex-wrap: wrap;
  overflow: inherit;
  padding: 20px;
}

.modal--search .inner .box {
  width: 50%;
  text-align: center;
}

.modal--search .inner .box p {
  line-height: 1.3;
  margin: 10px 0 0;
  font-weight: 600;
}

.modal--search .inner .box p strong {
  display: block;
  font-size: 20px;
  font-weight: 600;
}

.modal--search .inner .box a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  padding: 10px 0;
}

.modal--search .inner .box a:hover {
  background: #3772b2;
  color: #fff;
}

.modal--search .inner .box a:hover .img svg,
.modal--search .inner .box a:hover .img path,
.modal--search .inner .box a:hover .img circle {
  fill: #fff !important;
}

.modal--search .inner a {
  text-decoration: none;
}

.modal--search .inner .note {
  width: 100%;
  border: 1px solid #ccc;
  padding: 5px 20px;
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal--search .inner .note .img {
  margin-right: 10px;
}

.modal--search .inner .note .img svg {
  width: 50px;
  height: 65px;
}

.modal--search .inner .note p {
  font-size: 18px;
  font-weight: 700;
  margin-top: 0;
}

.modal--search .inner .note:hover {
  background: #3772b2;
  color: #fff;
}

.modal--search .inner .note:hover .img svg,
.modal--search .inner .note:hover .img path,
.modal--search .inner .note:hover .img circle {
  fill: #fff !important;
}

.modal--search .inner2 {
  display: none;
  max-width: 1000px;
  width: 100%;
  background-color: #FFFFFF;
  position: relative;
  overflow: inherit;
}

.modal--search .inner2 .mm-tab_01 .mm-tab_01-tab .tab-style1 {
  padding: 20px 10px;
}

.modal--search .inner2 .mm-tab_01 .mm-tab_01-tab .tab-style1 li.current::after {
  display: none;
}

.modal--search .inner2 .mm-tab_01 .mm-tab_01-contentWrap {
  padding-top: 30px;
}

.modal--search .inner2 .button_close {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  position: absolute;
  cursor: pointer;
  transition: 0.3s;
  width: 3rem;
  height: 3rem;
  top: -25px;
  right: -25px;
  z-index: 9;
}

.modal--search .inner2 .inner-wrap {
  overflow: scroll;
  max-height: 80vh;
}

.modal--search .inner2 .inner-wrap::-webkit-scrollbar {
  /* display: block; */
}

.modal--search .inner2 .common_inner {
  width: auto;
  padding: 40px;
}

@media (max-width: 1025px) {
  .modal--search .inner2 .common_inner {
    padding: 10px;
  }
}

.modal--search .button_close {
  bottom: -25px;
  top: inherit;
  right: -25px;
}

/* --------------------------------------------------------------------------
   3. Search Modal Variant 2 (extracted from style-original.css lines 11750-12046)
   -------------------------------------------------------------------------- */
.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab._row-scroll {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style1 {
  width: 100%;
  padding-top: 20px;
  justify-content: flex-start;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style1 li {
  margin: 0;
  padding: 0 10px 15px;
  font-size: 16px;
  white-space: nowrap;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style1 li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #21b7e0;
  transition: all 0.3s ease;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style1 li::after {
  content: "";
  display: none;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 12px 30px 12px;
  border-color: transparent transparent #e8edf4 transparent;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style1 li.current::before {
  width: 100%;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style1 li.current::after {
  display: block;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style2 {
  margin-top: 0;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style2 li {
  line-height: 25px;
  margin: 0 2.5px 5px;
  font-size: 12px;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style2 li.current {
  border: solid 1px #21b7e0;
  background: #21b7e0;
  color: #fff;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style3 {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 30px 0 0;
  width: 100%;
  padding-top: 20px;
  justify-content: flex-start;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style3 li {
  flex: 1 1 0;
  margin: 0;
  padding: 0 10px 15px;
  font-size: 16px;
  white-space: nowrap;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style3 li::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: #21b7e0;
  transition: all 0.3s ease;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-tab .tab-style3 li.current::before {
  width: 100%;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contentWrap {
  padding: 80px 0 0;
  background: #e8edf4;
  padding-top: 45px;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contentWrap._bg-white {
  background: #fff;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contentWrap .contents_wrap {
  display: flex;
  flex-direction: column-reverse;
  padding: 10px;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents {
  display: none;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents.current {
  display: block;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents h2 {
  font-size: 16px;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents h2 .count {
  display: inline-block;
  margin-left: 10px;
  color: #707070;
  font-size: 12px;
  font-weight: 500;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents .cb-select_full label.checkbox {
  display: inline-block;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents .select_list {
  width: 100%;
  margin-top: 10px;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents .select_list .count {
  font-size: 14px;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents .select_list label.checkbox input[type=checkbox]:disabled+span::after {
  display: block;
  border-right: solid 3px #999;
  border-bottom: solid 3px #999;
}

.mm-modal--search2 .mm-tab_01 .mm-tab_01-contents .select_list .line-icon {
  display: block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 0 7px 0 0;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.05em;
}

@media (max-width: 1025px) {
  .mm-modal--search2 .mm-tab_01 .mm-tab_01-contents .select_list .line-icon {
    font-size: 11px;
  }
}

.mm-modal--search2 .mm-gridtab {
  display: block;
}

.mm-modal--search2 .mm-gridtab .js-tab {
  display: none;
}

.mm-modal--search2 .mm-gridtab .js-cont {
  display: block;
}

.mm-modal--search2 .mm-gridtab .js-cont .t_weight500 {
  margin: 0 0 0 10px;
}

.mm-modal--search2 .mm-gridtab .js-cont .mm-checked_list {
  padding: 10px;
}

.mm-modal--search2 .mm-gridtab._style1 {
  border-bottom: solid 1px #083464;
}

.mm-modal--search2 .mm-gridtab._style1>.js-cont {
  margin: 0;
  padding: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
}

.mm-modal--search2 .mm-gridtab._style2>.js-cont {
  padding: 0;
  border-bottom: solid 1px #ccc;
}

.mm-modal--search2 .mm-gridtab._style2>div:last-child {
  border-bottom: none;
}

.mm-modal--search2 .mm-gridtab._style3>.js-cont {
  margin: 0;
  padding: 0;
}

.mm-modal--search2 .mm-gridtab._style3>.js-cont .area_ttl {
  background-color: #f0f0f0;
}

.mm-modal--search2 .mm-gridtab._style4>.js-cont {
  margin: 0;
  padding: 0;
}

.mm-modal--search2 .mm-gridtab .smp-ac_title {
  display: flex;
  align-items: center;
  position: relative;
  padding: 10px;
  font-weight: 400;
}

.mm-modal--search2 .mm-gridtab .smp-ac_title+div {
  display: none;
  border-top: solid 1px #083464;
  background: #fff;
}

.mm-modal--search2 .mm-gridtab .smp-ac_title+div .smp-ac_title+div {
  border-top: solid 1px #ccc;
}

.mm-modal--search2 .mm-gridtab .smp-cb {
  display: block;
  padding: 10px;
  border-bottom: solid 1px #ccc;
}

.mm-modal--search2 .mm-gridtab .pc-cb {
  display: block;
  padding: 10px;
  border-bottom: solid 1px #ccc;
}

.mm-modal--search2 .mm-gridtab .gridtab-all {
  display: none;
}

@media screen and (min-width: 1026px) {
  .mm-modal--search2 .mm-checked_list {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    padding: 10px 0;
  }

  .mm-modal--search2 .mm-checked_list._bg-White {
    padding: 0;
  }

  .mm-modal--search2 .mm-checked_list li {
    overflow: hidden;
    box-sizing: border-box;
    display: flex;
    width: 25%;
    padding: 10px 15px 10px 0;
    order: unset;
  }

  .mm-modal--search2 .mm-checked_list._col3 li {
    width: 33.333%;
  }

  .mm-modal--search2 .mm-checked_list li.cl_all_select._left {
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 1025px) {
  .mm-modal--search2 .mm-checked_list {
    flex-direction: column;
    padding: 0 0 5px;
  }

  .mm-modal--search2 .mm-checked_list._bg-White {
    padding: 0;
  }

  .mm-modal--search2 .mm-checked_list._col3 li {
    width: 100%;
    order: 2;
    padding: 5px 0;
  }

  .mm-modal--search2 .mm-checked_list li {
    width: 100%;
    order: 2;
    padding: 5px 0;
  }

  .mm-modal--search2 .mm-checked_list li.cl_all_select._left {
    padding-bottom: 5px;
  }
}

.mm-modal--search2 .now_select {
  display: none;
}

/* --------------------------------------------------------------------------
   4. Floating Search Modal Components (extracted from style-original.css lines 28103-28148)
   -------------------------------------------------------------------------- */
.float-search--modal .mm-tab_01-tab .tab-style1 {
  transition: all 0.3s ease;
  padding: 20px 0 !important;
}

.float-search--modal .mm-tab_01-tab .tab-style2 {
  justify-content: flex-start;
  margin: 10px 0 !important;
}

.float-search--modal.is-scroll.area-modal .mm-tab_01-tab .tab-style1 {
  padding-bottom: 0 !important;
}

.float-search--modal-header {
  display: flex;
  column-gap: 40px;
}

.float-search--modal-buttons {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 4px;
}

.float-search--modal-buttons .btn-blue {
  width: 90px;
}

.float-search--modal-row {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}

.float-search--modal-close {
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.float-search--modal-close:hover {
  text-decoration: none;
}

/* --------------------------------------------------------------------------
   5. Button Colors and Modifiers (extracted from style-original.css lines 21390-21509)
   -------------------------------------------------------------------------- */
.btn-blue a,
.btn-blue button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 9px 20px;
  background-color: #3181c6;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1025px) {
  .btn-blue a,
  .btn-blue button {
    padding: 7px;
  }
}

.btn-blue a:hover,
.btn-blue button:hover {
  background-color: #E4ECF8;
  color: #3181C6;
}

.btn-blue a:hover .icon-vr360,
.btn-blue button:hover .icon-vr360 {
  fill: #3181C6;
}

.btn-blue a:hover .icon-vr360 .group,
.btn-blue button:hover .icon-vr360 .group {
  fill: #fff;
}

.btn-blue a:hover .icon-play,
.btn-blue button:hover .icon-play {
  fill: #3181C6;
}

.btn-blue a:hover .icon-play .stroke,
.btn-blue button:hover .icon-play .stroke {
  stroke: #3181C6;
}

.btn-blue a[target=_blank]::after,
.btn-blue button[target=_blank]::after {
  display: none;
}

.btn-blue a img,
.btn-blue button img {
  margin-right: 5px;
}

.btn-blue a svg,
.btn-blue button svg {
  margin-right: 10px;
}

.btn-blue a .icon-vr360,
.btn-blue button .icon-vr360 {
  width: 51px;
  fill: #fff;
}

.btn-blue a .icon-vr360 .group,
.btn-blue button .icon-vr360 .group {
  fill: #3181c6;
}

.btn-blue a .icon-play,
.btn-blue button .icon-play {
  width: 23px;
  fill: #fff;
}

.btn-blue a .icon-play .stroke,
.btn-blue button .icon-play .stroke {
  stroke: #fff;
}

.btn-blue button {
  width: 100%;
}

.btn-blue--deep a,
.btn-blue--deep button {
  background-color: #02254b;
}

.btn-blue--deep a:hover,
.btn-blue--deep button:hover {
  color: #fff;
  background-color: #3772b2;
}

.btn-blue--outline a,
.btn-blue--outline button {
  border: 1px solid #02254b;
  color: #02254b;
  background-color: #fff;
}

.btn-blue--outline a:hover,
.btn-blue--outline button:hover {
  color: #fff;
  background-color: #3772b2;
}

.btn-blue--thin a,
.btn-blue--thin button {
  font-size: 14px;
  padding-block: 5px;
}
.roll_stationsWrap {
  padding: 40px 0;
  border-top: solid 1px #ccc;
  background-color: #fff;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap {
    margin: 0 -10px;
    padding: 20px 0;
  }
}

.roll_stationsWrap .roll_midashi {
  display: flex;
  align-items: center;
  justify-content: center;
}

.roll_stationsWrap .roll_midashi .line-icon {
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  margin-right: 16px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_midashi .line-icon {
    font-size: 14px !important;
  }
}

.roll_stationsWrap .roll_midashi p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_midashi p {
    font-size: 16px;
  }
}

.roll_stationsWrap .roll_frame {
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_frame {
    margin-top: 15px;
  }
}

.roll_stationsWrap .roll_frame .bg-line {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 70px);
  height: 8px;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_frame .bg-line {
    height: 4px;
  }
}

.roll_stationsWrap .roll_frame .roll-line {
  padding: 0 45px;
}

.roll_stationsWrap .roll_frame .roll-line.pcCount .slick-list .slick-track {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow {
  display: block;
  position: absolute;
  top: calc(50% - 30px);
  width: 30px;
  height: 60px;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_frame .roll-line .slick-arrow {
    top: calc(50% - 24px);
    width: 24px;
    height: 48px;
  }
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow.slick-disabled {
  cursor: default;
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow.slick-disabled span::before {
  background-color: #efefef;
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow.roll-prev {
  left: 0;
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow.roll-prev span img {
  transform: scale(-1, 1);
  margin: 0 auto 0 3px;
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow.roll-prev span::before {
  left: -30px;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_frame .roll-line .slick-arrow.roll-prev span::before {
    left: -24px;
  }
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow.roll-next {
  right: 0;
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow.roll-next span::before {
  right: -30px;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_frame .roll-line .slick-arrow.roll-next span::before {
    right: -24px;
  }
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow span img {
  margin: 0 3px 0 auto;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_frame .roll-line .slick-arrow span img {
    width: 10px;
  }
}

.roll_stationsWrap .roll_frame .roll-line .slick-arrow span::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #02254b;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_frame .roll-line .slick-arrow span::before {
    width: 48px;
    height: 48px;
  }
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-track {
  display: flex;
  min-width: 1000px;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide {
  width: 40px;
  min-width: 40px;
  height: auto !important;
  min-height: 156px;
  padding: 0 10px;
}

@media screen and (max-width: 1025px) {
  .roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide {
    padding: 0 5px;
  }
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label input[type=checkbox]:checked+span {
  color: #fff;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label input[type=checkbox]:checked+span::before {
  border: none;
  background-color: #3772b2;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label input[type=checkbox]:disabled+span {
  color: #999;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label input[type=checkbox]:disabled+span::before {
  border: solid 2px #ccc;
  background-color: #e8edf4;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label input[type=checkbox]:disabled+span::after {
  display: none;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label span {
  display: inline;
  position: static;
  padding: 5px 0;
  max-height: 146px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  color: #02254b;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label span::before {
  box-sizing: border-box;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: solid 2px #02254b;
  background-color: #fff;
}

.roll_stationsWrap .roll_frame .roll-line .slick-list .slick-slide label span::after {
  display: none;
}

