@charset "UTF-8";
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: "BIZ UDPGothic", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #534741;
    letter-spacing: 1px;
    line-height:1.5em
  }

/******* ヘッダー ******/
  header.nav {
    position: fixed;
    z-index: 998;
    width: 100%; 
    height: 100px; 
    background: rgba(237,235,220,0.9); 
    box-sizing: border-box;
    top: 0; 
    left: 0; 
    align-items: center; 
    display: flex; 
    justify-content:space-between;  
  }
  
  .header_logo {
    height: 90px;
    padding-left: 30px; 
    text-decoration: none;
  }
  
  .nav_list {
    box-sizing: border-box;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  .nav_list-item {
    list-style: none;
    text-decoration: none;
  }
  
  .nav_list-link {
    color: #534741;
    display: block;
    margin-right: 20px; 
    text-decoration: none;
    padding: 10px 0px; 
    font-size: 14px;
  }
  
  .nav_list-link:hover {
    color: #dc5618;
  }

  /*   ヘッダー SP   */
  @media screen and (max-width: 980px) {
    header.nav {
      height: 80px; 
    }
    img.header_logo {
      height: 70px;
    }
  }
  @media screen and (max-width: 540px) {
    header.nav.c-hamburger-menu {
      height: 50px; 
    }
    img.header_logo {
      height: 40px;
    }
  } 



/*******  ハンバーガーメニューを3本線に  ******/
.c-hamburger-menu {
  position: relative;
}

@media screen and (max-width: 980px) {
  .c-hamburger-menu_list {
    background-color:rgba(237,235,220,1); 
    align-items: center;
    display: flex;
    flex-direction: column;
    left: 0;
    padding: 1rem; 
    line-height: 20px;
    position: absolute;
    transform: translateX(100%);
    transition: 0.3s; 
    top: 100%;
    width: 100%;
    font-size: 20px;
  }

  #hamburger:checked ~ .c-hamburger-menu_list {
    transform: translateX(0%);
    transition: 0.3s;
  }
}

.c-hamburger-menu_input {
  display: none;
}

.c-hamburger-menu_bg {
  background-color: #534741;
  cursor: pointer;
  display: none;
  height: 100vh;
  left: 0;
  opacity: 0.4; 
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

#hamburger:checked ~ .c-hamburger-menu_bg {
  display: block;
}

.c-hamburger-menu_button {
  display: none;
}

@media screen and (max-width: 980px) {
  .c-hamburger-menu_button {
    align-items: center;
    appearance: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 7px; 
    width: 80px; 
    height: 40px; 
    justify-content: center;
  }
}

.c-hamburger-menu_button-mark {
  background-color: #534741;
  display: block;
  height: 2px; 
  transition: 0.3s; 
  width: 30px; 
}

@media screen and (max-width: 980px) {
  #hamburger:checked
    ~ .c-hamburger-menu_button
    .c-hamburger-menu_button-mark:nth-of-type(1) {
    transform: translate(2px, 1px) rotate(45deg); 
    transform-origin: 0%; 
  }
  #hamburger:checked
    ~ .c-hamburger-menu_button
    .c-hamburger-menu_button-mark:nth-of-type(2) {
    opacity: 0;
  }
  #hamburger:checked
    ~ .c-hamburger-menu_button
    .c-hamburger-menu_button-mark:nth-of-type(3) {
    transform: translate(2px, 3px) rotate(-45deg); 
    transform-origin: 0%; 
  }
}


@media screen and (max-width: 540px) {
  .c-hamburger-menu_list {
    padding-top: 10px; 
    line-height: 15px;
    height: 265px;
  }
}

h3{
  line-height: 34px;
}
.sp{
  display: none;
}


@media screen and (max-width: 980px) {
    .sp{
    display: block;
  }
}


/******* フッター ********/
footer{
  background: rgba(237,235,220,1); 
}
footer h2{
  color: #534741;
  font-size: 2em;
  padding: 40px 40px;
  text-align: center;
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
}
.section-information{
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-information .inner-access img{
  width: 208px;
  margin-top: 80px;
}
footer p{
  font-size: 12px;
}
footer p:nth-child(2){
  padding: 20px 20px 0 0;
}
footer p:nth-child(3){
  font-size: 24px;
  padding: 10px 0px;
  color: #534741;
  pointer-events: none;
  text-decoration: none; 
}
footer p:nth-child(5){
  margin-bottom: 100px;
}
.section-information .inner-map-sp{
  display: none;
}
footer > p:last-child{
  text-align: center;
  padding: 30px ;
  font-size: 12px;
}

/*  フッターSP  */
@media screen and (max-width: 980px){
  .section-information{
    display: block;
    justify-content: center;
    align-items: center;
  }
  .section-information .inner-access{
    display: block;
    text-align: center;
    margin: 0;
  }
  .section-information .inner-access img{
    margin: 0;
  }
  footer p:nth-child(2){
    padding: 10px 0px 0 0;
  }
  footer p:nth-child(3){
    padding: 10px 0;
  }
  footer p:nth-child(5){
    margin-bottom: 0px;
  }
  .section-information .inner-map{
    display: block;
    text-align: center;
  }
  footer p:nth-child(5){
    margin-bottom: 10px;
  }
  footer > p:last-child{
    padding: 20px ;
  }
  
}
@media screen and (max-width: 540px){
  .section-information .inner-map{
    display: none;
    text-align: center;
  }
  .section-information .inner-map-sp{
    display: block;
    text-align: center;
  }
}