@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック","YuGothic","Notp Sans JP",'游ゴシック',sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  line-height: 2.5rem;
  text-align: center;
}
section h1 {
  font-size: 3.0rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
section h2 {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}
section h3 {
  font-size: 1.4rem;
  font-weight: 500;
}
@media(min-width:769px){
  body {
    font-size: 1.4rem;
  }
}


img {
  vertical-align: bottom;
}
a:hover {
  opacity: 0.5;
}
.none{
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/* header */
@media(min-width:769px){
  .header{
    display: none;
  }
}
/* navigation */
  .open_button {
    display: block;
    position: absolute;
    right: 10px;
    top: 18px;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  .open_button span, .open_button span:before, .open_button span:after {
    position: absolute;
    height: 1px;
    width: 25px;
    background: #333;
    display: block;
    content: "";/* beforeとafterを表示するために空の要素を設定 */
  }
  .open_button span:before {
    bottom: -6px;
  }
  .open_button span:after {
    bottom: -12px;
    width: 15px;
  }
  .close_button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    color: #333;
    font-size: 20px;
    padding: 10px 24px;
    cursor: pointer;
  }
  .header nav {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #f5f0e9;
    width: 100%;
    height: 100%;
    padding-top: 67px;
  }
  .header nav li {
    margin-bottom: 6.5%;
  }
  .header nav ul li a {
    vertical-align: middle;
    text-decoration: none;
    color: #333;
    font-size: 1.6rem;
    font-family: garamond;
  }
/* footer */
.footer{
  background-color: #e2e2e2;
  padding: 30px 24px;
}
.footer_brandname {
  text-align: center;
  margin-bottom: 20px;
}
.footer_brandname img {
  height: 30px;
  width: auto;
}
.footer_address {
  text-align: center;
  margin-bottom: 20px;
}
.footer p {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
}
.footer_sns {
  margin-bottom: 20px;
}
.footer_sns li {
  display: inline-block;
  width: 29px;
}
.footer_sns img {
  width: 100%;
}
.footer_navigation{
  margin-bottom: 20px;
  }
.footer_navigation li {
  padding: 0 10px 10px;
  }
.footer ul li a {
  text-decoration: none;
  color: #333;
  letter-spacing: 0.05em;
}
.footer ul li a:visited {
  color: #333;
}
.footer_copyright {
  text-align: center;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
@media(min-width:769px){
  .footer{
    margin: 0 auto;
    padding: 50px;
  }
  .footer_container{
    margin: 0 auto;
    max-width: 1000px;
  }
  .footer_brandname{
    text-align: left;
    margin-bottom: 60px;
  }
  .footer_brandname img{
    height: 40px;
  }
  .footer_displayflex {
    display: flex;
    justify-content: space-between;
  }
  .footer_address {
    text-decoration: none;
    text-align: left;
    margin-bottom: 20px;
  }
  .footer p {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .footer_sns {
    text-align: right;
  }
  .footer_sns li {
  width: 30px;
 }
  .footer_navigation{
    text-align: right;
    margin-bottom: 50px;
  }
  .footer_navigation li {
    display: inline-block;
    font-size: 1.6rem;
    padding: 0 0 0 30px;
  }
}