@charset "UTF-8";
/***  color ***/
/***  border ***/
/*** font ***/
/*** sp size ***/
#time {
  margin: 50px 0 100px;
}
#time .layout .timeWrap {
  max-width: 1072px;
  margin: 0 auto;
}
#time .layout .timeWrap table {
  width: 100%;
  border-color: #ccc;
}
#time .layout .timeWrap table tr.tableheader {
  background-color: #003C87;
  color: #fff;
  text-align: center;
}
#time .layout .timeWrap table tr.tableheader td {
  font-weight: bold;
}
#time .layout .timeWrap table tr {
  padding: 10px;
  background-color: #fff;
}
#time .layout .timeWrap table tr th, #time .layout .timeWrap table tr td {
  text-align: center;
  padding: 20px;
  font-size: 24px;
}
#time .layout .timeWrap .note {
  margin-top: 20px;
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  #time {
    margin: 8vw 0 13.33vw;
  }
  #time .layout .timeWrap {
    max-width: 100%;
  }
  #time .layout .timeWrap table tr th, #time .layout .timeWrap table tr td {
    padding: 2.67vw 1.33vw;
    font-size: 3.2vw;
  }
  #time .layout .timeWrap .note {
    margin-top: 2.67vw;
    font-size: 3.2vw;
  }
}

#access {
  padding: 100px 0 50px;
  background-color: #f6f6f6;
}
#access .layout .flex {
  margin-bottom: 50px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#access .layout .flex .txt {
  width: 45%;
}
#access .layout .flex .txt dl {
  display: flex;
  align-items: normal;
  flex-wrap: wrap;
}
#access .layout .flex .txt dl dt, #access .layout .flex .txt dl dd {
  border-bottom: solid 1px #ccc;
  padding: 1em 0;
}
#access .layout .flex .txt dl dt {
  width: 20%;
  display: flex;
  align-items: center;
  font-weight: bold;
}
#access .layout .flex .txt dl dd {
  width: 80%;
  margin: 0;
  display: flex;
  align-items: center;
}
#access .layout .flex .txt .train {
  display: flex;
  align-items: center;
}
#access .layout .flex .txt .train img {
  margin-right: 20px;
}
#access .layout .flex .map {
  width: 50%;
}
#access .layout .flex .map .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9のアスペクト比 */
  height: 0;
}
#access .layout .flex .map .inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#access .layout .rateBox {
  margin-bottom: 20px;
}
#access .layout .rateBox h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  width: 100%;
  height: 57px;
  padding: 0 20px;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  background-color: #4C76AA;
}
#access .layout .rateBox h3 small {
  display: inline-block;
  margin-left: 10px;
  font-size: 16px;
  vertical-align: middle;
}
#access .layout .rateBox h3 .toggleIcon {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
}
#access .layout .rateBox h3 .toggleIcon::before, #access .layout .rateBox h3 .toggleIcon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 3px;
  margin: auto;
  background-color: #fff;
  transition: 0.2s ease-in-out;
}
#access .layout .rateBox h3 .toggleIcon::after {
  transform: rotate(90deg);
}
#access .layout .rateBox h3.active .toggleIcon::after {
  transform: rotate(360deg);
}
#access .layout .rateBox .rateWarp {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#access .layout .rateBox .rateWarp .routeBox {
  width: 23.5%;
  margin-right: 2%;
}
#access .layout .rateBox .rateWarp .routeBox:nth-child(4n) {
  margin-right: 0;
}
#access .layout .rateBox .rateWarp .routeBox .img img {
  border-radius: 20px;
}
#access .layout .rateBox .rateWarp .routeBox .txt {
  margin: 10px auto 50px;
  position: relative;
  display: flex;
}
#access .layout .rateBox .rateWarp .routeBox .txt::before {
  content: "01";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-top: -3px;
  margin-right: 10px;
  font-size: 16px;
  font-weight: bold;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #003C87;
  border: 1px solid #003C87;
  border-radius: 1000px;
  background-color: #fff;
}
#access .layout .rateBox .rateWarp .routeBox:nth-child(2) .txt::before {
  content: "02";
}
#access .layout .rateBox .rateWarp .routeBox:nth-child(3) .txt::before {
  content: "03";
}
#access .layout .rateBox .rateWarp .routeBox:nth-child(4) .txt::before {
  content: "04";
}
#access .layout .rateBox .rateWarp .routeBox:nth-child(5) .txt::before {
  content: "05";
}
#access .layout .rateBox .rateWarp .routeBox:nth-child(6) .txt::before {
  content: "06";
}
#access .layout .rateBox .rateWarp .routeBox:nth-child(7) .txt::before {
  content: "07";
}
@media screen and (max-width: 1024px) {
  #access .rateBox h3 {
    font-size: 20px;
  }
  #access .rateBox h3 small {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  #access {
    padding: 13.33vw 0;
  }
  #access .layout .flex {
    display: block;
  }
  #access .layout .flex .txt {
    width: 100%;
    font-size: 3.73vw;
  }
  #access .layout .flex .txt dl {
    display: block;
  }
  #access .layout .flex .txt dl dt {
    border-bottom: none;
    width: 100%;
    padding: 0;
  }
  #access .layout .flex .txt dl dd {
    width: 100%;
    padding: 0.5em 0;
    margin-bottom: 2.67vw;
  }
  #access .layout .flex .txt .train img {
    margin-right: 2.67vw;
  }
  #access .layout .flex .map {
    margin-top: 8vw;
    width: 100%;
  }
  #access .layout .rateBox {
    margin-bottom: 5.33vw;
  }
  #access .layout .rateBox h3 {
    margin-bottom: 5.33vw;
    font-size: 4.27vw;
  }
  #access .layout .rateBox .rateWarp {
    display: block;
  }
  #access .layout .rateBox .rateWarp .routeBox {
    width: 100%;
    margin-right: 0;
    margin-bottom: 5.33vw;
  }
  #access .layout .rateBox .rateWarp .routeBox .txt {
    margin: 2.67vw auto 0;
  }
  #access .layout .rateBox .rateWarp .routeBox .txt::before {
    width: 6.4vw;
    height: 6.4vw;
    margin-top: 0;
    margin-right: 2.67vw;
    font-size: 3.73vw;
  }
}

/*# sourceMappingURL=access.css.map */
