@charset "utf-8";
/* common style
-------------------------------------------------------------- */

/* outline
-------------------------------------------------------------- */
.outline {
  padding: 10rem 0 20rem;
}

.outline dt {
  padding: 4rem;
  width: 22%;
  border-bottom: 1px solid var(--lightGreen);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.outline dd {
  padding: 4rem 0;
  align-items: center;
  width: 78%;
  border-bottom: 1px solid var(--lightGreen);
}

.outline a {
  display: inline-block;
  position: relative;
  color: var(--green);
}

.outline a span {
  text-decoration: underline;
  text-underline-offset: .8rem;
}

.outline a::after {
  display: inline-block;
  width: 1.2rem;
  height: 1.6rem;
  margin-left: 1rem;
  vertical-align: -0.1rem;
  background: url(../img/common/ico_blank_gr2.svg) no-repeat center / contain;
  content: "";
}

.outline a:hover::before {
  background: transparent;
}
@media (width <= 960px) {
  .outline dt {
    padding: 3rem;
    width: 35%;
  }
  
  .outline dd {
    padding: 3rem 0;
    align-items: center;
    width: 65%;
  }
}
@media (width <= 767px) {
  .outline {
    padding: 6rem 0 8rem;
  }
  
  .outline dt {
    padding: 2.5rem 2rem 1rem;
    width: 100%;
    border-bottom: none;
  }
  
  .outline dd {
    padding: 0 2rem 2.5rem;
    width: 100%;
    font-size: 1.6rem;
  }
  
  .outline a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(100% - 1.7rem);
    height: 1px;
    background: var(--green);
    content: "";
  }
  
  .outline a::after {
    width: 1.5rem;
    height: 1.5rem;
    margin-left: .5rem;
  }
}

/* access
-------------------------------------------------------------- */
.access {
  padding: 9rem 0 10rem;
  margin-bottom: 20rem;
  background-color: var(--lightGray);
}

.access .txt {
  margin: -5rem 0 5rem;
  color: #000;
  text-align: center;
  font-size: 2rem;
}

.access .map {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

@media (width <= 767px) {
  .access {
    padding: 7rem 0;
    margin-bottom: 7rem;
  }

  .access .container {
    width: 100%;
  }
  
  .access .txt {
    margin: -1rem 0 3rem;
    font-size: 1.6rem;
  }

  .access .map {
    height: 400px;
  }
}