
h2 + p{
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px){
  h2 + p{
    margin-bottom: 20px;
  }
}

.price .price__txt{
  text-align: left;
  font-size: 0.8rem;
  margin-bottom: 40px;
}

.price .price-box{
  display: flex;
  width: 100%;
  border: 1px solid var(--border-color);
}
.price .price-box .price-box__title{
  flex: 0 0 250px;
  text-align: center;
  background-color: var(--bg-th);
  padding: 2rem;
  font-weight: 600;
  border-right: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.price .price-box .price-box__txt{
  flex: 1;
  text-align: left;
  padding:  2rem;
  background: #fff;
}
.price .price-box + .price-box{
  margin-top: 40px;
}
.price .note{
  text-align: left;
  margin-top: 40px;
  font-size: 0.8rem;
}
.access .access__inner{
  display: flex;
  justify-content: space-between;
  gap: 3rem;
}
.access .access__inner__text{
  width: 45%;
}
.access .access__inner__map{
  flex: 1;
}
.access .access__inner__text h2{
  margin-bottom: 2rem;
  text-align: left;
}
.access .access__inner__text table {
  width: 100%;
  margin-bottom: 2rem;
}
.access .access__inner__text table th{
  width: 25%;
  font-family: var(--font-family-mincho);
  text-align: left;
  vertical-align: top;
  padding: 0.5rem;
}
.access .access__inner__text table td{
  text-align: left;
  vertical-align: top;
  padding: 0.5rem;
}
.access .access__howto{
  line-height: 2.1;
}
@media screen and (max-width: 767px){
  .price .price-box{
    border-width: 1px;
    flex-direction: column;
  }
  .price .price-box .price-box__title{
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem;
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  .price .price-box .price-box__txt{
    padding: 0.5rem;
    font-size: 0.8rem;
  }
  .price .price-box + .price-box{
    margin-top: 20px;
  }
  .price .note{
    font-size: 0.6rem;
  }
  .access .access__inner{
    flex-direction: column;
    gap: 2rem;
  }
  .access .access__inner__text h2{
    text-align: center;
  }
  .access .access__inner__text{
    width: 100%;
  }
  .access .access__inner__map{
    width: 100%;
  }
}