@charset "utf-8";

.content-area {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
}
.sec-inner {
  max-width: 1240px;
  margin: 0 auto;
  width: calc(100% - 20px);
}

/*ACCESS*/

.sec-head {
  background: linear-gradient(to right,  rgba(79,40,0,1) 0%,rgba(121,80,0,1) 50%,rgba(79,40,0,1) 100%);
  padding: 25px 0;
}
.sec-head > h2 > span {
  color: #FFF;
  display: block;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.sec-head > h2 > span:first-child {
  font-size: 24px;
  font-weight: 500;
}
.sec-head > h2 > span:last-child {
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width:767px) {
  .sec-head {
    padding: 35px 0;
  }
}

.sec-access {
  padding: 125px 0;
}
.access-map span.cap {
  display: block;
  font-size: 12px;
  margin-top: 6px;
  text-align: left;
}
.access-btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
}
.access-btn {
  margin-top: 65px;
}
.access-btn > a {
  background-color: #8c7d5a;
  color: #FFF;
  display: block;
  font-size: 24px;
  font-weight: 400!important;
  padding: 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: .5s filter;
  width: 460px;
}
.access-btn > a:after {
  border: 1px solid #FFF;
  border-color: #FFF #FFF transparent transparent;
  content: "";
  display: block;
  height: 12px;
  width: 12px;
  position: absolute;
  right: 44px;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  transition: all ease-in-out 0.3s;
}
.access-btn > a:hover {
  filter: brightness(120%) saturate(160%);
}
.access-btn > a:hover:after {
  right: 22px;
}


@media screen and (max-width:767px) {
  .sec-access {
    padding: 40px 0;
  }
  .access-map span.cap {
    font-size: 10px;
  }
  .access-btn {
    gap: 30px;
    margin-top: 30px;
  }
  .access-btn > a {
    font-size: 20px;
    padding: 13px;
    width: 100%;
  }
  .access-btn > a:after {
    right: 32px;
    height: 10px;
    width: 10px;
  }
}