@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 {
    display: none;
  }
}

.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 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 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;
  justify-content: center;
}
.route_select > dd ul li {
  width: 100%;
  max-width: 500px;
  padding: 5px;
  margin-top: 10px;
}
.route_select ul.evenly-list {
  font-size: 0.9em;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 -15px 10px;
}
.route_select ul.evenly-list li {
  width: auto;
  margin: 0 15px;
  min-height: auto;
  padding: 0;
}
.route_select > dd .btn {
  width: 100%;
  text-align: center;
  padding: 0;
}
.route_select > dd .btn small {
  font-size: .6em;
}

.route_select .R000001 {
  background: #9b5221;
}
.route_select .R000001 + dd .note_wrap {
  background: rgba(155, 82, 33, 0.1);
}
.route_select .R000001 + dd .btn {
  background: #9b5221;
}
.route_select .R000001 + dd h4 {
  color: #9b5221;
}

.route_select .R000003 {
  background: #0e376c;
}
.route_select .R000003 + dd .note_wrap {
  background: rgba(14, 55, 108, 0.1);
}
.route_select .R000003 + dd .btn {
  background: #0e376c;
}
.route_select .R000003 + dd h4 {
  color: #0e376c;
}

.route_select .R000005 {
  background: #775091;
}
.route_select .R000005 + dd .note_wrap {
  background: rgba(175, 145, 195, 0.1);
}
.route_select .R000005 + dd .btn {
  background: #775091;
}
.route_select .R000005 + dd h4 {
  color: #775091;
}

.route_select .R000007 {
  background: #269c33;
}
.route_select .R000007 + dd .note_wrap {
  background: rgba(38, 156, 51, 0.1);
}
.route_select .R000007 + dd .btn {
  background: #269c33;
}
.route_select .R000007 + dd h4 {
  color: #269c33;
}

.route_select .R000009 {
  background: #ec73a9;
}
.route_select .R000009 + dd .note_wrap {
  background: rgba(236, 115, 169, 0.1);
}
.route_select .R000009 + dd .btn {
  background: #ec73a9;
}
.route_select .R000009 + dd h4 {
  color: #ec73a9;
}

.route_select .R000010 {
  background: #2294c7;
}
.route_select .R000010 + dd .note_wrap {
  background: rgba(236, 115, 169, 0.1);
}
.route_select .R000010 + dd .btn {
  background: #2294c7;
}
.route_select .R000010 + dd h4 {
  color: #2294c7;
}

.route_select .R000012 {
  background: #e82819;
}
.route_select .R000012 + dd .note_wrap {
  background: rgba(232, 40, 25, 0.1);
}
.route_select .R000012 + dd .btn {
  background: #e82819;
}
.route_select .R000012 + dd h4 {
  color: #e82819;
}

.route_select .R000014 {
  background: #4f3091;
}
.route_select .R000014 + dd .note_wrap {
  background: rgba(79, 48, 145, 0.1);
}
.route_select .R000014 + dd .btn {
  background: #4f3091;
}
.route_select .R000014 + dd h4 {
  color: #4f3091;
}

.route_select .R000015 {
  background: #dbab00;
}
.route_select .R000015 + dd .note_wrap {
  background: rgba(234, 182, 0, 0.1);
}
.route_select .R000015 + dd .btn {
  background: #dbab00;
}
.route_select .R000015 + dd h4 {
  color: #dbab00;
}

@media screen and (max-width: 1460px) {
  .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;
  }
  .route_select > dd ul li {
    width: 100%;
    padding: 5px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1070px) {
  .route_select > dd ul {
    display: block;
    margin: -5px;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .route_select > dd ul {
    display: flex;
    margin: -5px;
    justify-content: center;
  }
}
@media screen and (max-width: 550px) {
  .route_select > dd ul {
    display: block;
    margin: -5px;
    justify-content: center;
  }
}
/* ------------------------------
　使い方
------------------------------- */
.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: #3A91E1;
  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;
}
