@charset "UTF-8";
@import url(./libs/html5reset-1.6.1.css);
/* ==============================

　　　　基本設定

============================== */
*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  background: #f5f5f5;
  color: #333;
  font-family: "IBM Plex Sans", "Helvetica Neue", "Helvetica", "Noto Sans JP", "メイリオ", "Meiryo", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  line-height: 1.2;
  font-size: 1.6rem;
  letter-spacing: .1em;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  padding: 8px;
}

@media screen and (max-width: 767px) {
  body {
    padding: 0;
  }
}
header,
main,
footer {
  position: relative;
}

a {
  color: #3A91E1;
}

a,
button {
  cursor: pointer;
  transition: all 0.5s ease;
}
a:before, a:after,
button:before,
button:after {
  transition: all 0.5s ease;
}
a:hover,
button:hover {
  opacity: .7;
}

button {
  outline: none;
  border: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul li,
ol li {
  list-style: none;
}

dl dt,
dl dd {
  line-height: 1.6;
}

p {
  line-height: 1.6;
}

b {
  font-weight: bold;
}

em {
  font-size: 1.2em;
}

small {
  font-size: .8em;
}

strong {
  padding: 0 2px;
  background: linear-gradient(transparent 65%, rgba(244, 242, 233, 0.3) 65%);
}

.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .pc .btn:first-of-type {
    display: none;
    
  }
  .pc .btn{
    font-size: smaller;
    height: 35px;
    display: flex;
    align-items: center;
  }
}

.ua_pc .for_pc {
  display: block;
}
.ua_pc .for_sp {
  display: none;
}

.ua_sp .for_pc {
  display: none;
}
.ua_sp .for_sp {
  display: block;
}

/* ==============================

　　　　パーツ

============================== */
h2 {
  border-bottom: 1px solid #3A91E1;
  font-size: 1.9rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
h2 img {
  height: 40px;
  margin-right: 10px;
}
h2 small {
  display: inline-block;
  margin: 0 -.5em;
}

.btn {
  height: 40px;
  line-height: 40px;
  border-radius: 20px;
  background: #3A91E1;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 0 20px;
  position: relative;
}
.btn:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 50%);
  position: absolute;
  left: 0;
  top: 0;
}

/* ------------------------------
　カラム
------------------------------- */
.row {
  margin: -15px;
  padding: 0;
}
.row:before, .row:after {
  content: "";
  display: table;
}
.row:after {
  clear: both;
}

*[class*='col_'] {
  padding: 15px;
  float: left;
}

.col_1 {
  width: 100%;
}

.col_2 {
  width: 50%;
}

.col_3 {
  width: 33.33333%;
}

.col_4 {
  width: 25%;
}

.col_5 {
  width: 20%;
}

.col_6 {
  width: 16.66667%;
}

.col_2w {
  width: 66.6666%;
}

@media screen and (max-width: 767px) {
  .row {
    margin: 0;
  }

  *[class*='col_'] {
    width: 100%;
    padding: 0;
    float: none;
  }
  *[class*='col_'] + *[class*='col_'] {
    margin-top: 20px;
  }
}
/* ==============================

　　　　ヘッダー

============================== */
header > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
header > div h1 {
  width: 230px;
}
header > div h1 a {
  display: block;
}
header > div > div {
  text-align: right;
}
header > div .btn small {
  display: inline-block;
  margin: 0 -5px;
}

@media screen and (max-width: 767px) {
  header {
    padding: 10px 20px 0 20px;
  }
  header > div h1 {
    width: 100px;
  }
}
/* ==============================

　　　　フッター

============================== */
footer {
  width: 100%;
  text-align: center;
  color: #3d3d3d;
  padding-bottom: 10px;
}

/* ==============================

　　　　メイン

============================== */
main {
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
  padding: 10px 0;
}
main .overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: none;
}
main .modal {
  width: calc(100% - 40px);
  max-width: 800px;
  background: #fff;
  padding: 20px;
  overflow: auto;
  position: fixed;
  display: none;
  z-index: 1001;
}
main .modal h2 {
  position: relative;
}
main .modal h2 .closeBtn {
  cursor: pointer;
  display: block;
  position: absolute;
  right: 20px;
  top: 10px;
  transform: translateY(-100%);
}
main .modal h2 .closeBtn:before, main .modal h2 .closeBtn:after {
  content: "";
  width: 20px;
  height: 2px;
  background: #333;
  position: absolute;
  left: 50%;
  top: 50%;
}
main .modal h2 .closeBtn:before {
  transform: rotate(45deg);
}
main .modal h2 .closeBtn:after {
  transform: rotate(-45deg);
}
main .modal .info_pc{
  height: 300px;
}
main iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  main {
    padding-left: 20px;
    padding-right: 20px;
  }
  main .modal {
    width: 100%;
    background: inherit;
    padding: 0;
    margin-top: 30px;
    position: static;
    display: block !important;
  }
  main .modal h2 .closeBtn {
    display: none;
  }
  main .modal .info_pc{
    height: max-content;
  }
  main iframe {
    height: 50vh !important;
  }
}
/* ------------------------------
　路線選択
------------------------------- */
.route_select {
  height: calc(100% - 137px);
  overflow-y: scroll;
  margin-top: 20px;
}
.route_select > dt {
  height: 30px;
  line-height: 30px;
  color: #fff;
  font-weight: 600;
  padding: 0 15px;
  margin-bottom: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.5s ease;
}
.route_select > dt:hover {
  opacity: .7;
}
.route_select > dt:before, .route_select > dt:after {
  content: "";
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 10px;
}
.route_select > dt:after {
  transform: rotate(-90deg);
  transition: all 0.5s ease;
}
.route_select > dt.open:after {
  transform: rotate(0);
}
.route_select > dd {
  display: block;
  border: 1px solid #ccc;
  border-top: 0;
}
.route_select > dd + dt {
  margin-top: 30px;
}
.route_select > dd .note_wrap {
  width: 100%;
  background: #efefef;
  border-bottom: 1px dashed #ccc;
  padding: 10px;
  display: none;
}
.route_select > dd .note_wrap h3 {
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.route_select > dd .note_wrap > div + div {
  margin-top: 15px;
}
.route_select > dd .note_wrap dl {
  overflow: hidden;
  font-size: 1.4rem;
}
.route_select > dd .note_wrap dl dt {
  width: 2.5em;
  font-weight: bold;
  float: left;
  clear: left;
}
.route_select > dd .note_wrap dl dd {
  padding-left: 3em;
}
.route_select > dd .select_btn_wrap {
  width: 100%;
  padding: 10px;
}
.route_select > dd h3 {
  text-align: center;
}
.route_select > dd ul {
  display: flex;
  margin: -5px;
}
.route_select > dd ul li {
  width: 50%;
  padding: 5px;
  margin-top: 10px;
}
.route_select > dd .btn {
  width: 100%;
  text-align: center;
  padding: 0;
}
.route_select > dd .btn small {
  font-size: .6em;
}
.route_select .howtouse,
.route_select .fare{
  background: #b4ada9;
}
.route_select .howtouse + dd .note_wrap,
.route_select .fare + dd .note_wrap {
  background: rgba(240, 223, 215, 0.1);
}
.route_select .howtouse + dd .btn,
.route_select .fare + dd .btn  {
  background: #b4ada9;
}
.route_select .howtouse + dd h4,
.route_select .fare + dd h4 {
  color: #b4ada9;
}

.route_select .a_course {
  background: #ec6d8f;
}
.route_select .a_course + dd .note_wrap {
  background: rgba(237, 214, 220, 0.475);
}
.route_select .a_course + dd .btn {
  background: #ec6d8f;
}
.route_select .a_course + dd h4 {
  color: #ec6d8f;
}
.route_select .b_course {
  background: #88d45f;
}
.route_select .b_course + dd .note_wrap {
  background: rgba(215, 236, 155, 0.1);
}
.route_select .b_course + dd .btn {
  background: #88d45f;
}
.route_select .b_course + dd h4 {
  color: #88d45f;
}
.route_select .c_course {
  background: #5cafeb;
}
.route_select .c_course + dd .note_wrap {
  background: rgba(181, 210, 228, 0.1);
}
.route_select .c_course + dd .btn {
  background: #5cafeb;
}
.route_select .c_course + dd h4 {
  color: #5cafeb;
}
.route_select .sakai {
  background: #baca3f;
}
/* .route_select .sakai + dd .note_wrap {
  background: rgba(149, 61, 136, 0.1);
} */
.route_select .sakai + dd .btn {
  background: #baca3f;
}
.route_select .sakai + dd h4 {
  color: #baca3f;
}
.route_select .nanbu {
  background: #c831d3;
}
.route_select .nanbu + dd .note_wrap {
  background: rgba(149, 61, 136, 0.1);
}
.route_select .nanbu + dd .btn {
  background: #c831d3;
}
.route_select .nanbu + dd h4 {
  color: #c831d3;
}
.route_select .jyunkai {
  background: #f0a43a;
}
.route_select .jyunkai + dd .note_wrap {
  background: rgba(149, 61, 136, 0.1);
}
.route_select .jyunkai + dd .btn {
  background: #f0a43a;
}
.route_select .jyunkai + dd h4 {
  color: #f0a43a;
}
.route_select .miyagou {
  background: #2cc0c5;
}
/* .route_select .miyagou + dd .note_wrap {
  background: rgba(149, 61, 136, 0.1);
} */
.route_select .miyagou + dd .btn {
  background: #2cc0c5;
}
.route_select .miyagou + dd h4 {
  color: #2cc0c5;
}
.route_select .hashie {
  background: #ea35a1;
}
.route_select .hashie + dd .note_wrap {
  background: rgba(149, 61, 136, 0.1);
}
.route_select .hashie + dd .btn {
  background: #ea35a1;
}
.route_select .hashie + dd h4 {
  color: #ea35a1;
}
.route_select .renraku {
  background: #3059ac;
}
.route_select .renraku + dd .note_wrap {
  background: rgba(149, 61, 136, 0.1);
}
.route_select .renraku + dd .btn {
  background: #3059ac;
}
.route_select .renraku + dd h4 {
  color: #3059ac;
}
.route_select .shima {
  background: #b1351f70;
}
.route_select .shima + dd .note_wrap {
  background: rgba(149, 61, 136, 0.1);
}
.route_select .shima + dd .btn {
  background: #b1351f70;
}
.route_select .shima + dd h4 {
  color: #b1351f70;
}
.route_select .sakaijyun {
  background: #2ac196;
}
.route_select .sakaijyun + dd .note_wrap {
  background: rgba(149, 61, 136, 0.1);
}
.route_select .sakaijyun + dd .btn {
  background: #2ac196;
}
.route_select .sakaijyun + dd h4 {
  color: #2ac196;
}

@media screen and (max-width: 767px) {
  .route_select {
    height: auto;
  }
  .route_select > dd + dt {
    margin-top: 15px;
  }
  .route_select > dd h3 {
    text-align: left;
  }
  .route_select > dd .btn {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
/* ------------------------------
　使い方
------------------------------- */
.howto img {
  max-width: calc(100% - 20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin: 10px;
}
.howto dl dt {
  display: flex;
}
.howto dl dt span {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #b4ada9;
  color: #fff;
  text-align: center;
  display: inline-block;
}
.howto dl dt p {
  width: calc(100% - 30px);
  padding: 3px 0 0 5px;
}
.howto dl dd {
  margin-left: 30px;
}
.howto dl dd + dt {
  margin-top: 30px;
}
