.p-routes{
  padding: 40px 0 56px;
}

/* COMPARE */
.p-top-compare {
  padding: 90px 0;
}

.p-top-compare__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.p-top-compare__head {
  margin-bottom: 44px;
}

.p-top-compare__en {
  margin: 0 0 30px;
}

.p-top-compare__ja {
  margin: 0 0 60px;
  font-size: 18px;
  font-weight: 800;
}

.p-top-compare__wrap {
  display: grid;
  grid-template-columns: 3fr 44px 1fr;
  align-items: stretch;
  gap: 0;
}
/* PC: 左に静岡 */
.p-top-compare__group--shizuoka {
  grid-column: 1;
  grid-row: 1;
}

/* PC: 真ん中に点線 */
.p-top-compare__divider {
  grid-column: 2;
  grid-row: 1;
}

/* PC: 右に山梨 */
.p-top-compare__group--yamanashi {
  grid-column: 3;
  grid-row: 1;
}

@media (max-width: 767px) {
  .p-top-compare__wrap {
    grid-template-columns: 1fr;
  }

  /* SP: 静岡を先に */
  .p-top-compare__group--shizuoka {
    grid-column: 1;
    grid-row: 1;
  }

  /* SP: 山梨を最後に */
  .p-top-compare__group--yamanashi {
    grid-column: 1;
    grid-row: 2;
  }

  .p-top-compare__divider {
    display: none;
  }
}

.p-top-compare__divider {
  position: relative;
}

.p-top-compare__divider::before {
  content:"";
  position:absolute;
  top: 0;
  bottom: 0;
  left: 60%;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(
    to bottom,
    rgba(0,0,0,.28) 0 8px,
    rgba(0,0,0,0) 8px 16px
  );
}

.p-top-compare__group-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 88px;
  width: max-content;
}

.p-top-compare__pref-icon {
  width: auto;
  height: 56px;
  display: block;
}

.p-top-compare__pref-text {
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: center;
}

.p-top-compare__pref-text__yamanashi {
  color: #f28c28;
}

.p-top-compare__pref-text__shizuoka {
  color: #2f5fb3;
}

.p-top-compare__pref-ja {
  font-weight: 900;
  font-size: 18px;
}

.p-top-compare__pref-en {
  font-weight: 900;
  font-size: 11px;
  letter-spacing: .06em;
  opacity: .9;
}

.p-top-compare__cards {
  display: grid;
  justify-items: center;
  align-items: start;
  gap: 30px;
}

.p-top-compare__cards--one {
  grid-template-columns: 1fr;
}

.p-top-compare__cards--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.p-top-compare__card {
  width: 100%;
  max-width: 236px;
  background: #fff;
  border-radius: 18px;
  border: 6px solid transparent;
  padding: 0 14px 10px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  display: grid;
  justify-items: center;
  gap: 14px;
}

.p-top-compare__route {
  position: relative;
  margin: -44px auto 0;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  padding: 8px 10px 0px;
  background: transparent;
  z-index: 3;
}

.p-top-compare__route::before {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
  border-radius: 8px 8px 0 0;
  background: #006aa9;
}

.p-top-compare__card-body {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  overflow: hidden;
}

.p-top-compare__cell {
  padding: 10px 8px;
  min-height: 86px;
  display: grid;
  align-content: start;
  gap: 4px;
  text-align: center;
  border-right: 2px solid var(--route-border, rgba(0,0,0,.08));
  border-bottom: 2px solid var(--route-border, rgba(0,0,0,.08));
}

.p-top-compare__cell:nth-child(2n){ border-right: none; }
.p-top-compare__cell:nth-last-child(-n+2){ border-bottom: none; }

.p-top-compare__label{ margin:0; font-size:12px; font-weight:900; }
.p-top-compare__value{ margin:0; font-size:18px; font-weight:900; }
.p-top-compare__sub{ margin:0; font-size:10px; font-weight:800; opacity:.9; line-height:1.35; }

.p-top-compare__pill{
  margin: 6px auto 0;
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
}

.p-top-compare__more{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 14px;
}

.p-top-compare__more-icon{
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid currentColor;
  position: relative;
}

.p-top-compare__more-icon::before{
  content:"";
  position:absolute;
  top:50%;
  left:5px;
  right:5px;
  height:2px;
  background: currentColor;
  transform: translateY(-50%);
}

.p-top-compare__more-icon::after{
  content:"";
  position:absolute;
  top:50%;
  right:5px;
  width:6px;
  height:6px;
  border-top:2px solid currentColor;
  border-right:2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.p-top-compare__card--orange{ border-color:#f39b12; }
.p-top-compare__card--orange .p-top-compare__route::before{ background:#f39b12; }
.p-top-compare__card--orange .p-top-compare__value{ color:#f39b12; }
.p-top-compare__card--orange .p-top-compare__pill{ background:#f39b12; }
.p-top-compare__more--orange{ color:#f39b12; }

.p-top-compare__card--blue{ border-color:#4b8fd6; }
.p-top-compare__card--blue .p-top-compare__route::before{ background:#4b8fd6; }
.p-top-compare__card--blue .p-top-compare__value{ color:#4b8fd6; }
.p-top-compare__card--blue .p-top-compare__pill{ background:#4b8fd6; }
.p-top-compare__more--blue{ color:#4b8fd6; }

.p-top-compare__card--green{ border-color:#43b06f; }
.p-top-compare__card--green .p-top-compare__route::before{ background:#43b06f; }
.p-top-compare__card--green .p-top-compare__value{ color:#43b06f; }
.p-top-compare__card--green .p-top-compare__pill{ background:#43b06f; }
.p-top-compare__more--green{ color:#43b06f; }

.p-top-compare__card--red{ border-color:#f04d4d; }
.p-top-compare__card--red .p-top-compare__route::before{ background:#f04d4d; }
.p-top-compare__card--red .p-top-compare__value{ color:#f04d4d; }
.p-top-compare__card--red .p-top-compare__pill{ background:#f04d4d; }
.p-top-compare__more--red{ color:#f04d4d; }

.p-top-compare__card--orange{ --route-border: #f39b12; }
.p-top-compare__card--blue  { --route-border: #4b8fd6; }
.p-top-compare__card--green { --route-border: #43b06f; }
.p-top-compare__card--red   { --route-border: #f04d4d; }

@media (max-width: 767px){
  .p-top-compare{
    padding: 48px 0 0;
    background: #fff;
  }
}

@media (max-width: 767px){
  .p-top-compare__wrap{
    grid-template-columns: 1fr;
    padding: 0px 0;
  }

  .p-top-compare__divider{
    display: none;
  }

  .p-top-compare__group-head{
    width: 100%;
    justify-content: flex-start;
    margin: 0 0 70px;
  }

  .p-top-compare__cards--one,
  .p-top-compare__cards--three{
    grid-template-columns: 1fr;
    gap: 70px;
    justify-items: stretch;
  }

  .p-top-compare__card{
    max-width: 360px;
    width: 100%;
    margin-inline: auto;
  }

  .p-top-compare__more{
    justify-content: flex-start;
  }

   .p-top-compare__group--yamanashi{
    background: #fff4e6;
    padding: 32px 16px 64px;
  }

  .p-top-compare__group--shizuoka{
    background: #e9f3f8;
    padding: 32px 16px 64px;
  }

  .p-top-compare__group--yamanashi,
  .p-top-compare__group--shizuoka{
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
  }

  .p-top-compare__label{ margin:0; font-size:16px; font-weight:900; }
  .p-top-compare__value{ margin:0; font-size:24px; font-weight:900; }
  .p-top-compare__sub{ margin:0; font-size:14px; font-weight:800; opacity:.9; line-height:1.35; }

  .p-top-compare__route{
    position: relative;
    margin: -44px auto 0;
    width: 78%;
    text-align: center;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    padding: 8px 10px 0px;
    background: transparent;
    z-index: 3;
  }
}


/* ========================================
   ROUTE COLOR MODIFIER
======================================== */

.is-yoshida {
  --route-color: #f39b12;
}

.is-fujinomiya {
  --route-color: #4b8fd6;
}

.is-gotemba {
  --route-color: #43b06f;
}

.is-subashiri {
  --route-color: #f04d4d;
}

/* ===============================
   ROUTE BLOCK
================================*/

.p-route-block {
  scroll-margin-top: 100px;
}

/* hero */
.p-route-block__hero {
  position: relative;
  min-height: 386px;
  overflow: hidden;
}

.p-route-block__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, .42),
    rgba(0, 0, 0, .12) 58%,
    rgba(0, 0, 0, 0)
  );
}

.p-route-block__hero-image {
  display: block;
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.p-route-block__hero-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.p-route-block__hero-copy{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 60px;

  padding: 0 6vw;
  color: #fff;
  z-index: 2;
}

.p-route-block__en {
  margin: 0 0 34px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.p-route-block__ja {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-block__hero-text {
  margin: 0 0 28px;
  max-width: 330px;
  font-size: 14px;
  line-height: 1.85;
}

.p-route-block__emergency{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:8px 18px;
  border-radius:999px;

  background:rgba(217,79,69,.85);
  color:#fff;

  font-size:12px;
  font-weight:800;
  text-decoration:none;

  backdrop-filter: blur(2px);
}

.p-route-block__emergency:hover{
  background:rgba(217,79,69,1);
}

.p-route-block__emergency-icon {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
}

.p-route-block__emergency-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 3px;
  right: 3px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.p-route-block__emergency-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  width: 4px;
  height: 4px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* body */
.p-route-block__body {
  padding: 82px 0 72px;
}

.p-route-block__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.p-route-block__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 54px;
}

.p-route-block__heading-ja {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-block__heading-en {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.p-route-block__side {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 7px 10px 6px;
  border-radius: 4px;
}

.p-route-block__side-ja {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.p-route-block__side-en {
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 2px;
}

.p-route-block__side--yamanashi {
  background: #fdf2df;
  color: var(--route-color);
}

.p-route-block__side--shizuoka {
  background: #e8f2f8;
  color: #2f5fb3;
}

.p-route-block__lead {
  max-width: 620px;
  margin: 0 auto 52px;
}

.p-route-block__lead p {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.85;
}

.p-route-block__info-card--yoshida{
  max-width: 834px;
  margin: 0 auto;
  background: #f5ecdd;
  border-radius: 10px;
  padding: 20px 24px 18px;
}
.p-route-block__info-card--fujinomiya {
  max-width: 834px;
  margin: 0 auto;
  background: #f2f8fc;
  border-radius: 10px;
  padding: 20px 24px 18px;
}
.p-route-block__info-card--gotemba {
  max-width: 834px;
  margin: 0 auto;
  background: #f2faf5;
  border-radius: 10px;
  padding: 20px 24px 18px;
}
.p-route-block__info-card--subashiri {
  max-width: 834px;
  margin: 0 auto;
  background: #fef2f3;
  border-radius: 10px;
  padding: 20px 24px 18px;
}

.p-route-block__info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.p-route-block__info-item {
  text-align: center;
  padding: 8px 16px;
  border-right: 2px solid var(--route-color);
}

.p-route-block__info-item:last-child {
  border-right: none;
}

.p-route-block__info-label {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.p-route-block__info-value {
  margin: 0 0 8px;
  color: var(--route-color);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-block__info-sub {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
}

.p-route-block__info-badge {
  display: inline-block;
  margin: 0;
  padding: 4px 10px;
  border-radius: 4px;
  background: var(--route-color);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .p-route-block__hero-image {
    height: 386px;
  }

  .p-route-block__hero-copy {
    padding-top: 56px;
  }

  .p-route-block__en {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .p-route-block__ja {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .p-route-block__hero-text {
    max-width: 100%;
  }

  .p-route-block__body {
    padding: 48px 0 56px;
  }

  .p-route-block__lead {
    margin-bottom: 32px;
  }

  .p-route-block__lead p {
    font-size: 16px;
  }

  .p-route-block__info-card {
    padding: 16px;
  }

  .p-route-block__info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-route-block__info-item {
    padding: 24px 12px;
    border-right:2px solid var(--route-color);
    border-bottom:2px solid var(--route-color);
  }
  /* 右列 */
  .p-route-block__info-item:nth-child(2n){
  border-right:none;
  }

  /* 下段 */
  .p-route-block__info-item:nth-last-child(-n+2){
  border-bottom:none;
  }
}

/* ========================================
   ROUTE GUIDE
======================================== */
.p-route-guide {
  padding: 72px 0 96px;
}

.p-route-guide__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.p-route-guide__head {
  margin-bottom: 54px;
}

.p-route-guide__en {
  margin: 0 0 18px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-guide__ja {
  margin: 0;
  padding: 12px 24px;
  border: 4px solid var(--route-color);
  border-radius: 10px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-guide__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.p-route-guide__column {
  min-width: 0;
}

.p-route-guide__column--ascent {
  padding-right: 40px;
}

.p-route-guide__column--descent {
  padding-left: 40px;
  border-left: 2px dashed #cfcfcf;
}

.p-route-guide__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 42px;
}

.p-route-guide__title {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-guide__title-en {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-guide__icons {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}

.p-route-guide__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 32px;
  text-align: center;
}

.p-route-guide__icon-item img {
  display: block;
  width: 18px;
  height: 18px;
}

.p-route-guide__icon-item span {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.p-route-guide__lead {
  margin-bottom: 34px;
}

.p-route-guide__lead p {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 2;
}

.p-route-guide__map img {
  display: block;
  width: 100%;
  height: auto;
}

.p-route-guide__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
  margin-top: 28px;
}

.p-route-guide__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--route-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-guide__link-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
}

.p-route-guide__link-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.p-route-guide__link-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* SP */
@media (max-width: 767px) {
  .p-route-guide {
    padding: 48px 0 64px;
  }

  .p-route-guide__head {
    margin-bottom: 34px;
  }

  .p-route-guide__en {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .p-route-guide__ja {
    padding: 10px 14px;
    border-width: 3px;
    font-size: 14px;
  }

  .p-route-guide__columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .p-route-guide__column--ascent {
    padding-right: 0;
  }

  .p-route-guide__column--descent {
    padding-left: 0;
    border-left: none;
  }

  .p-route-guide__title-row {
    display: block;
    margin-bottom: 24px;
  }

  .p-route-guide__title-group {
    margin-bottom: 14px;
  }

  .p-route-guide__icons {
    gap: 12px;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .p-route-guide__icon-item {
    flex: 0 0 auto;
  }

  .p-route-guide__title {
    font-size: 18px;
  }

  .p-route-guide__title-en {
    font-size: 12px;
  }

  .p-route-guide__lead {
    margin-bottom: 24px;
  }

  .p-route-guide__lead p {
    font-size: 14px;
    line-height: 1.9;
  }

  .p-route-guide__links {
    align-items: flex-end;
    gap: 14px;
    margin-top: 22px;
  }

  .p-route-guide__link {
    gap: 10px;
    font-size: 13px;
  }

  .p-route-guide__link-icon {
    width: 38px;
    height: 38px;
  }

  .p-route-guide__link-icon::before {
    left: 10px;
    right: 10px;
  }

  .p-route-guide__link-icon::after {
    right: 10px;
    width: 7px;
    height: 7px;
  }
}
/* ========================================
   ROUTE DOCUMENTS
======================================== */
.p-route-documents {
  padding: 72px 0 88px;
}

.p-route-documents__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.p-route-documents__head {
  margin-bottom: 42px;
}

.p-route-documents__en {
  margin: 0 0 18px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-documents__ja {
  margin: 0;
  padding: 14px 20px;
  border: 4px solid var(--route-color);
  border-radius: 10px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-documents__list {
  max-width: 780px;
  margin: 0 auto;
}

.p-route-documents__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 20px 0 16px;
  border-bottom: 1px solid #333;
}

.p-route-documents__content {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.p-route-documents__type {
  margin: 0 0 4px;
  color: var(--route-color);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-documents__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.6;
}

.p-route-documents__title a {
  color: var(--route-color);
  text-decoration: none;
}

.p-route-documents__title a:hover {
  opacity: .8;
}

.p-route-documents__description {
  margin: 0;
  color: #111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}

.p-route-documents__action {
  flex: 0 0 auto;
  padding-top: 6px;
}

.p-route-documents__pdf-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--route-color);
  text-decoration: none;
}

.p-route-documents__pdf-icon {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

.p-route-documents__pdf-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 1.5px;
  background: currentColor;
  transform: translateY(-50%);
}

.p-route-documents__pdf-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 4px;
  height: 4px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.p-route-documents__pdf-text {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .p-route-documents {
    padding: 48px 0 64px;
  }

  .p-route-documents__head {
    margin-bottom: 28px;
  }

  .p-route-documents__en {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .p-route-documents__ja {
    padding: 10px 14px;
    border-width: 3px;
    font-size: 14px;
  }

  .p-route-documents__item {
    gap: 14px;
    padding: 16px 0 14px;
  }

  .p-route-documents__title {
    font-size: 16px;
    line-height: 1.5;
  }

  .p-route-documents__description {
    font-size: 13px;
    line-height: 1.7;
  }
}

/* ========================================
   ROUTE ACCESS
======================================== */
.p-route-access {
  padding: 72px 0 96px;
}

.p-route-access__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.p-route-access__head {
  margin-bottom: 54px;
}

.p-route-access__en {
  margin: 0 0 18px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-access__ja {
  margin: 0;
  padding: 14px 20px;
  border: 4px solid var(--route-color);
  border-radius: 10px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-access__section + .p-route-access__section {
  margin-top: 64px;
}

.p-route-access__section-head {
  margin-bottom: 28px;
}

.p-route-access__section-ja {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-access__section-en {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

/* cards */
.p-route-access__cards {
  display: grid;
  gap: 18px;
}

.p-route-access__card {
  max-width: 100%;
  margin:0;
}

.p-route-access__grid {
  grid-template-columns: repeat(4, 1fr);
}

.p-route-access__item {
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.p-route-access__label {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.p-route-access__icon {
  margin: 0 0 4px;
}

.p-route-access__icon img {
  display: block;
  width: 56px;
  height: auto;
}

.p-route-access__sub {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

.p-route-access__button-wrap {
  margin: 0 0 8px;
}

.p-route-access__button {
  display: inline-block;
  min-width: 98px;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--route-color);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
}

.p-route-access__text {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

/* text block */
.p-route-access__text-block {
  max-width: 640px;
  margin: 0 auto;
}

.p-route-access__text-block p {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.95;
}

.p-route-access__text-block p:last-child {
  margin-bottom: 0;
}

.p-route-access__note {
  color: #ff2d2d;
}

/* links */
.p-route-access__links {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  max-width: 640px;
  margin: 24px auto 70px;
}

.p-route-access__link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--route-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
}

.p-route-access__link-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 50%;
  flex: 0 0 auto;
}

.p-route-access__link-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 12px;
  right: 12px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

.p-route-access__link-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 767px) {
  .p-route-access {
    padding: 48px 0 64px;
  }

  .p-route-access__head {
    margin-bottom: 34px;
  }

  .p-route-access__en {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .p-route-access__ja {
    padding: 10px 14px;
    border-width: 3px;
    font-size: 14px;
  }

  .p-route-access__section + .p-route-access__section {
    margin-top: 48px;
  }

  .p-route-access__section-head {
    margin-bottom: 20px;
  }

  .p-route-access__section-ja {
    font-size: 20px;
  }

  .p-route-access__section-en {
    font-size: 12px;
  }

  .p-route-access__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .p-route-access__item {
    min-height: 110px;
  }

  .p-route-access__label {
    font-size: 13px;
  }

  .p-route-access__text {
    font-size: 12px;
    line-height: 1.5;
  }

  .p-route-access__text-block p {
    font-size: 14px;
    line-height: 1.85;
  }

  .p-route-access__links {
    gap: 12px;
    margin-top: 18px;
  }

  .p-route-access__link {
    gap: 10px;
    font-size: 13px;
  }

  .p-route-access__link-icon {
    width: 38px;
    height: 38px;
  }

  .p-route-access__link-icon::before {
    left: 10px;
    right: 10px;
  }

  .p-route-access__link-icon::after {
    right: 10px;
    width: 7px;
    height: 7px;
  }
}

/* ========================================
   ROUTE PERIOD
======================================== */

.p-route-period {
  padding: 72px 0 96px;
}

.p-route-period__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.p-route-period__head {
  margin-bottom: 56px;
}

.p-route-period__en {
  margin: 0 0 18px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
}

.p-route-period__ja {
  margin: 0;
  padding: 14px 20px;
  border: 4px solid var(--route-color);
  border-radius: 10px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
}

/* content */

.p-route-period__content {
  max-width: 640px;
  margin: 0 auto;
}

.p-route-period__date {
  margin: 0 0 28px;
  color: var(--route-color);
  font-size: 16px;
  font-weight: 800;
}

.p-route-period__block + .p-route-period__block {
  margin-top: 32px;
}

.p-route-period__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
}

.p-route-period__list {
  margin: 0;
  padding-left: 1.2em;
}

.p-route-period__list li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.9;
}

.p-route-period__link{
  text-decoration: underline!important;
  color: #006aa9;
}

.p-route-period__link:hover{
  color: var(--route-color);
}

.p-route-period__block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.9;
}

@media (max-width: 768px) {

  .p-route-period {
    padding: 48px 0 64px;
  }

  .p-route-period__head {
    margin-bottom: 32px;
  }

  .p-route-period__en {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .p-route-period__ja {
    font-size: 14px;
    border-width: 3px;
    padding: 10px 14px;
  }

  .p-route-period__content {
    max-width: 100%;
  }

  .p-route-period__date {
    font-size: 14px;
  }

  .p-route-period__title {
    font-size: 15px;
  }

  .p-route-period__list li,
  .p-route-period__block p {
    font-size: 14px;
  }
}

/* ========================================
   ROUTE EMERGENCY
======================================== */

.p-route-emergency {
  padding: 80px 0;
}

.p-route-emergency__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* 背景BOX */

.p-route-emergency__box {
  background: #f3dede;
  padding: 56px 64px;
  border-radius: 8px;
}

.p-route-emergency__head {
  margin-bottom: 40px;
}

.p-route-emergency__en {
  margin: 0 0 12px;
  color: #b00000;
  font-size: 16px;
  font-weight: 800;
}

.p-route-emergency__title {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 14px 18px;

  border: 4px solid #b00000;
  border-radius: 10px;
}

.p-route-emergency__ja {
  margin: 0;
  color: #b00000;
  font-size: 16px;
  font-weight: 800;
}

.p-route-emergency__icon img {
  width: 28px;
}

.p-route-emergency__content {
  max-width: 640px;
  margin: 0 auto;
}

.p-route-emergency__block + .p-route-emergency__block {
  margin-top: 32px;
}

.p-route-emergency__heading {
  margin: 0 0 10px;
  color: #b00000;
  font-size: 16px;
  font-weight: 800;
}

.p-route-emergency__list {
  margin: 0;
  padding-left: 1.2em;
}

.p-route-emergency__list li {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.9;
}

.p-route-emergency__tel {
  color: #b00000;
  font-weight: 800;
}

@media (max-width:768px){

  .p-route-emergency__box{
    padding:32px 20px;
  }

  .p-route-emergency__en{
    font-size:14px;
  }

  .p-route-emergency__ja{
    font-size:14px;
  }

  .p-route-emergency__list li{
    font-size:14px;
  }

}