@charset "utf-8";

/* ======================
access
====================== */
.section--access {
  text-align: center;
  padding: 110px 20px 8px;
}

.access__content {
  margin: 0 auto;
  display: inline-flex;
  flex-direction: column;
  max-width: 1340px;
}

.access__heading {
  width: min(78.9333333333vw, 400px);
  margin: 0 auto;
}

.access__sub {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.1em;
  text-align: center;
}

.breadcrumb {
  text-align: left;
  margin: 24px 0 0 4.8vw;
}

.breadcrumb li {
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: var(--weight-semibold);
  align-items: center;
  letter-spacing: 0.02em;
}

.breadcrumb__item--top {
  display: inline-block;
  position: relative;
  z-index: 100;
}

.breadcrumb__item--top:hover {
  opacity: 0.8;
}

.breadcrumb__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 6px;
  position: relative;
  left: 0;
  transform: translateY(-3px);
}

.breadcrumb__item--access::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  background-color: #D2D2D2;
  clip-path: polygon(0 0, 100% 50%, 0% 100%);
  margin: 0 9px 0 7px;
}

.breadcrumb__item--access {
  color: #D2D2D2;
  margin-left: 0px;
}

.map {
  margin: 12px auto;
  border: 8px solid #FFF !important;
  border-radius: 24px;
  width: 89.3333333333vw;
  height: 192px;
  box-sizing: border-box;
}

.access__table {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  margin: 4px auto;
  font-weight: 700;
  line-height: 1.2;
  z-index: 1;
  text-align: left;
  white-space: nowrap;
}

.access__table dt {
  font-size: min(4.2666666667vw, 1.5rem);
}

.access__table dd {
  font-size: min(3.7333333333vw, 1.4rem);
  border-bottom: 1px dashed var(--mainColor);
  padding: 11px 0 6px;
}

.dd--address {
  padding-bottom: 0;
}

.dd--small {
  line-height: 2.5;
  margin-top: 5px;
}

.accessBtn {
  padding: 6px 10px 7px 12px;
  display: inline-block;
  margin-left: 9px;
  width: 112px;
  font-size: 1.1rem;
  font-weight: var(--weight-semibold);
  color: var(--baseColor);
  background-color: var(--mainColor);
  backdrop-filter: blur(5px);
  border-radius: 36px;
  transition: background-color 0.5s ease;
}

.accessBtn::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url(../images/btnArrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 8px;
}

.accessBtn:hover {
  opacity: 0.8;
  transition: 0.8s;
}

@media screen and (min-width: 769px) {
  .section--access {
    padding: 149px 56px 24px;
  }
  
  .access__heading {
    width: min(35vw, 504px);
    margin: 0;
  }
  
  .access__sub {
    margin-top: 16px;
    font-size: 1.4rem;
  }
  
  .breadcrumb {
    margin: 32px 0 0 32px;
  }
  
  .map {
    margin: 18px auto;
    width: min(89.3333333333vw, 1340px);
    height: 424px;
  }
  
  .access__table {
    margin: 24px auto;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
  }

  .access__table dl {
    display: flex;
    flex-direction: row;
    border-bottom: 1px dashed var(--mainColor);
  }
  
  .access__table dt {
    width: max(11.1111111111vw, 140px);
    font-size: 1.6rem;
    padding-top: 11px;
  }
  
  .access__table dd {
    font-size: 1.6rem;
    border-bottom: none;
    padding: 11px 0 6px;
  }
}

/* ======================
video
====================== */
.access__video {
  margin: 72px auto;
  max-width: 385px;
  background-image: url(../images/access-bg.png);
  background-size: cover;
  border-radius: 30px;
  color: var(--baseColor);
  padding: 36px 36px 54px;
  font-weight: var(--weight-bold);
}

.video__heading {
  font-size: 1.4rem;
  text-align: left;
  letter-spacing: 0.08em;
}

.video__heading h3 {
  margin-top: 4px;
}

.video {
  width: 235px;
  margin-top: 32px;
  border-radius: 36px;
  border: 11px solid #000;
}

.video__textArea {
  margin-top: 24px;
}

.video__textArea--caption {
  font-size: 1.3rem;
}

.video__textArea--station {
  margin-top: 16px;
  font-size: 1.2rem;
  position: relative;
}

.bar {
  margin-top: 4px;
}

.run {
  font-size: 24px;
  width: 24px;
  height: 24px;
  transform: scaleX(-1);
  position: absolute;
  top: 14px;
  left: 50%;
  animation: run 8s linear infinite;
}

@keyframes run {
  0% {
    transform: translateX(0) scaleX(-1);
  }

  13% {
    transform: translateX(24px) scaleX(-1);
  }

  66% {
    transform: translateX(-60px) scaleX(-1);
  }

  100% {
    transform: translateX(0) scaleX(-1);
  }
}

@media screen and (min-width: 769px) {
  .access__video {
    margin: 96px auto;
    max-width: 560px;
    border-radius: 36px;
    padding: 42px 48px 64px;
  }
}