@charset "UTF-8";
/*  */
.fadeIn_elements{
  opacity: 0;
  transform: translateY(10px); /* 少し下から上にフェードイン */
  transition: opacity 1s ease, transform 1s ease;
}
.fadeIn_elements.active{
  opacity: 1;
  transform: translateY(0px); /* 少し下から上にフェードイン */
}
.pageWrap{
  background-image: url(../images/top/bg01.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

.navHeight{
    width:100%;
    height: 110px;
    background-color: #363838;
}
@media (max-width:1024px){
    .navHeight{
        height: 66px;
    }
}

.ttlBox{
  padding: 50px 0 30px 0;
  text-align: center;
}
.ttlBox>h2{
  font-family: "Oswald", sans-serif;
  font-size: 1.75em;
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.25em 2em;
  border: 1px solid #000;
  display: inline-block;
}
@media (max-width:1024px){
  .ttlBox>h2{
      font-size: 1.5em;
  }
}
@media (max-width:768px){
  .ttlBox>h2{
      font-size: 1.4em;
  }
}
@media (max-width:500px){
  .ttlBox>h2{
      font-size: 1.3em;
  }
}

.localMap_wrap{
  max-width: 1320px;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.localMap_wrap>h3{
  font-family: "Noto Sans JP", sans-serif;               
  font-size: 1.25em;
  letter-spacing: 0.25em;
  line-height: 1.8;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}
.localMap_wrap>.mapBox{
  margin-bottom: 20px;
}
.localMap_wrap>.accessBox>p{
  text-align: center;
}
.localMap_wrap>.accessBox>p>a{
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 1.25em;
  letter-spacing: 0.1em;
  font-weight: 500;
  text-align: center;
  max-width: 350px;
  width: 80%;
  color: #d7cdba;
  background-color: #494f3f;
  padding: 1em 1.5em;
  box-sizing: border-box;
  transition: 0.5s all;
  border: 2px solid #d7cdba;
}
.localMap_wrap>.accessBox>p>a:hover,
.localMap_wrap>.accessBox>p>a:active{
  border-radius: 50px;
  transition: 0.5s all;
}
@media (max-width:1024px){
  .localMap_wrap>h3,
  .localMap_wrap>.accessBox>p>a{           
      font-size: 1.15em;
  }
}
@media (max-width:768px){
  .localMap_wrap>h3,
  .localMap_wrap>.accessBox>p>a{           
      font-size: 1.05em;
  }
  .localMap_wrap>.accessBox>p{
      flex-direction: column;
  }
  .localMap_wrap>.accessBox>p>span{
      display: block;
      width: 100%;
  }
  .localMap_wrap>.accessBox>p>span>a{
      display: block;
      width: 100%;
      text-align: center;
  }
}