@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
/*===========ヘッダーここから===========================*/
.header-content-wrapper {
  width: 100%;
  background: rgba(233, 205, 181, 0.75);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 400;
  font-style: normal;
  /*
  position: -webkit-sticky;
  position: sticky;
  */
  position: fixed;
  top: 0;
  z-index: 999;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 2% 2% 2% 2%;
  align-items: center;
  box-sizing: border-box;
}

@media(max-width:375px) {
  .header-content-wrapper {
    width: 375px;
    height: 50px;
    padding: 8% 7% 6% 2%;
  }
}
.header h1 {
  text-align: left;
  align-items: center;
  line-height: 1;
}
.header__navigation {
  font-size: 2.0rem;
  text-transform: uppercase;
  text-align: right;
  list-style: none;
  padding: 0 109px;
}

.header__navigation ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
}


.pc_display {
  display: none;
}
.nav-drawer__title ul {
  justify-content: space-around;
  width: 70%;
}
@media (max-width: 750px) {
  .header__navigation {
    display: none;
  }
}
/*=============ハンバーガーアイコン＝＝＝＝＝＝＝＝＝＝*/
@media (max-width: 750px) {
  #nav-drawer {
    padding: 10px 24px 0 0;
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 30px;
    height: 22px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;
    width: 25px;
    background-color: #777;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EEEEEE;
    opacity: 0.5;
  }
  #nav-content {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 70%;
    height: 60%;
    background-color: #fff;
    text-align: left;
    padding: 15px 0 0 24px;
    transform: translateX(-105%);
    transition: 0.3s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
  }
  .nav-drawer__title {
    display: block;
    margin-bottom: 50px;
  }
  }
  #nav-content ul {
    align-items: flex-start;
    flex-direction: column;
  }
  #nav-content ul li {
    margin-bottom: 36px;
    color: #484848;
  }
.header__navigation ul li {
  display: inline-block;
  margin-left: 40px;
  list-style-type: none;
}
.header__navigation ul li a {
  text-decoration: none;
  color: #333333;
  font-size: 20px;
}
#nav-input:checked ~ #nav-close {
  display: block;
}
#nav-input:checked ~ #nav-content {
  transform: translateX(0%);
}
.heder__contact li a {
  width: 165px;
  height: 42px;
}
/*===========ヘッダーここまで===========================*/
body {
  color: #333; /* RGB */
  font-family: "yu-gothic-pr6n", sans-serif;
  font-weight: 100;
  font-size: 1.2em;
  line-height: 2.4rem;
  text-align: center;
  background-color: #faf8f2;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
img {
  padding: 10px;
  height: auto;
}
/*==============フッターここから====================*/
.footer {
  height: 20%;
  background-color: #e9cdb5;
  padding: 40px auto;
}
.footer__site-map h2 {
  padding-top: 3%;
  padding-bottom: 3%;
}
.footer__site-map li {
  margin: 0 10px;
}
.footer__site-map li a {
  text-decoration: none;
  color: #be895c;
}
.footer__site-map ul {
  width: 100%;
  margin: 0 auto 25px;
  font-size: 20px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}
.footer__sns_links {
  margin-bottom: 3%;
}
.footer__sns_links li {
  display: inline-block;
  width: 90px;
  margin: 0 auto;
}
.footer__sns_links li img {
  width: 100%;
}
.footer__sns_links ul li a {
  color: #be895c;
  font-size: 32px;
}
.footer small {
  color: #be895c;
  font-size: 20px;
  }
.clearfix {
  zoom: 1;
}
.clearfix:after {
  content: "";
  display: block;
  line-height: 0;
  clear: both;
}
.footer__container {
  padding-bottom: 2%;
}
/*==============フッターここまで====================*/