@charset "UTF-8";
.img_wrap {
  aspect-ratio: 4/3;
}
.img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img_box .txt {
  font-size: 10px;
  line-height: 1.5;
  margin-top: 5px;
}

.gheader-inner .gnav-inner li.gnav-menu .gnav-under-inner li a.menu-access {
  pointer-events: none;
  color: #000000;
}
.gheader-inner .gnav-inner li.gnav-menu .gnav-under-inner li a.menu-access::before {
  width: 100%;
}

.sp-open header .sp-menu a.menu-access {
  background-color: #464647;
  pointer-events: none;
}

.footer_sitemap a.menu-access,
.sp-only a.menu-access {
  color: #fff;
  background: #464647;
  pointer-events: none;
}

.sub_head {
  background: url(../img/access/sub_head.jpg) no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.traffic .mv_list {
  display: grid;
  /* 列と行のサイズ定義は同じ */
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  /* ★ ここでレイアウトの設計図を名前で定義します ★ */
  grid-template-areas: "large-area top-left top-right" "large-area btm-left btm-right";
  margin: auto;
}
@media screen and (max-width: 768px) {
  .traffic .mv_list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "large-area large-area" "top-left top-right" "btm-left  btm-right";
  }
}
@media screen and (max-width: 768px) {
  .traffic .mv_list .item {
    height: 200px;
  }
}
.traffic .mv_list .item figure {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.traffic .mv_list .item figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.traffic .mv_list .item figure figcaption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: rgba(35, 24, 21, 0.7);
  color: #fff;
  padding: 10px;
  max-width: 130px;
  width: 100%;
  font-size: 12px;
}
.traffic .mv_list .item figure figcaption .ttl {
  border-bottom: 1px solid #fff;
}
.traffic .mv_list .item figure figcaption .des {
  line-height: 1;
  margin-top: -10px;
  text-align: center;
}
.traffic .mv_list .item figure figcaption .des .min {
  font-size: 30px;
  color: #b4a241;
  padding: 0 5px;
}
.traffic .mv_list .item-1 {
  grid-area: large-area;
}
.traffic .mv_list .item-2 {
  grid-area: top-left;
}
.traffic .mv_list .item-3 {
  grid-area: top-right;
}
.traffic .mv_list .item-4 {
  grid-area: btm-left;
}
.traffic .mv_list .item-5 {
  grid-area: btm-right;
}
.traffic .lead01 {
  margin-top: 40px;
}
.traffic .t_map {
  margin-top: 40px;
  background: #000;
  padding: 20px;
}
.traffic .sta_box {
  margin-top: 80px;
}
.traffic .sta_box .sta_ttl {
  text-align: center;
  border-bottom: 1px solid #221815;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  line-height: 1.5;
  padding: 20px 0;
}
.traffic .sta_box .sta_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 0;
}
.traffic .sta_box .sta_list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: 33.3333333333%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  position: relative;
}
.traffic .sta_box .sta_list li::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50%;
  background-color: #221815;
}
@media screen and (max-width: 650px) {
  .traffic .sta_box .sta_list li::after {
    display: none;
  }
}
.traffic .sta_box .sta_list li:first-child::after {
  display: none;
}
@media screen and (max-width: 650px) {
  .traffic .sta_box .sta_list li {
    width: 100%;
  }
}
.traffic .sta_box .sta_list li p {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
}
.traffic .sta_box .sta_list li p.sta_cap {
  font-size: 11px;
  margin-bottom: 0;
  line-height: 1.6;
}
.traffic .sta_box .sta_list li p .sta_name {
  font-size: 26px;
}
.traffic .sta_box .sta_list li p .sta_min {
  font-size: 32px;
  color: #b4a241;
}
.traffic .sta_box .cap {
  margin-top: 40px;
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.newroute .contentsbox {
  background-color: #898989;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .newroute .contentsbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.newroute .contentsbox .contentsimg {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0 10px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.newroute .contentsbox .contentsimg img {
  width: 100%;
  aspect-ratio: 1200/1121;
}
.newroute .contentsbox .contentsdes {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 20px;
}
.newroute .contentsbox .contentsdes li, .newroute .contentsbox .contentsdes p {
  color: #fff;
}
.newroute .contentsbox .contentsdes ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.newroute .contentsbox .contentsdes ul li {
  background-color: #006934;
  padding: 5px 20px;
}
.newroute .contentsbox .contentsdes .lead {
  margin-top: 20px;
  font-size: 20px;
}
.newroute .contentsbox .contentsdes .des {
  margin-top: 20px;
  line-height: 1.8;
}/*# sourceMappingURL=access.css.map */