@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  width: 100%;
}
body {
  color: #333333;
  background-color: #FFFFFF;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 2.4rem;
  text-align: center;
}
@media (min-width: 769px) {
  body {
    font-size: 1.8rem;
  }
}
.area-wrap {
  animation: fadein 3s forwards;
}
@keyframes fadein {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
.header-logo01 {
  display: inline-flex;
  position: relative;
  z-index: 10;
  flex-direction: column;
}
.header-logo-a {
  display: inline-grid;
}
.header-logo02 {
  font-size: 1.8rem;
  line-height: 1rem;
  margin-top: -0.1rem;
}
.header-nav-logo {
  display: inline-block;
}
.header-nav-logo span {
  padding: 1.2rem 0 0 0.2rem;
}
.header-nav-logo span, .footer-logo span {
  display: block;
  font-size: 1.8rem;
  line-height: 1rem;
}
.header-logo-a, .footer-logo {
  padding-top: 10px;
  font-size: 5.0rem;
  font-weight: 500;
  line-height: 4.5rem;
  width: 5.8rem;
}
.header-logo01 a, .footer-logo a {
  color: #333333;
}
/* ハンバーガーボタン */
.openbtn-wrap {
  position: fixed;
  top: 10px;
  right: 15px;
  z-index: 100;
}
.openbtn {
  position: relative;
  background: #FFFFFF;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border-radius: 30px;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 13px;
  height: 1px;
  border-radius: 1px;
  background: #333333;
  width: 34px;
}
.openbtn span:nth-of-type(1) {
  top: 16px;
}
.openbtn span:nth-of-type(2) {
  top: 26px;
}
.openbtn span:nth-of-type(2)::after {
  content: "MENU";
  position: absolute;
  top: 2px;
  left: 1px;
  color: #333333;
  font-size: 1.0rem;
}
.openbtn.active {
  background: transparent;
}
.openbtn.active span:nth-of-type(1) {
  top: 14px;
  left: 13px;
  background: #FFFFFF;
  transform: translateY(6px) rotate(-45deg);
  width: 34px;
}
.openbtn.active span:nth-of-type(2) {
  top: 26px;
  left: 13px;
  background: #FFFFFF;
  transform: translateY(-6px) rotate(45deg);
  width: 34px;
}
.openbtn.active span:nth-of-type(2)::after {
  content: "CLOSE";
  top: 2px;
  left: 15px;
  color: #FFFFFF;
  transform: translateY(0) rotate(-45deg);
}
/*　ナビゲーションメニュー　*/
.header-nav ul li .current, .header-nav a:hover, .header-nav .header-nav-goods li a:hover {
  color: #F0A775;
}
.header-nav-wrap {
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  overscroll-behavior-y: contain;
  overflow-y: auto;
}
.header-nav {
  height: 100vh;
  background-image: radial-gradient(rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .5) 100%), url("../img/hamburger-bg.jpeg");
  background-position: 50% 0%;
  background-size: cover;
  background-repeat: no-repeat;
}
.header-nav ul {
  padding: 30px 0 30px 40px;
  margin: 0;
}
.header-nav li {
  text-align: left;
}
.header-nav li:first-child {
  font-size: 5.0rem;
  font-weight: 500;
  margin-bottom: 100px;
}
.header-nav li:nth-child(n + 2) {
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 3.2rem;
  margin-bottom: 40px;
}
.header-nav-goods li a {
  font-size: 3.0rem;
  font-weight: 500;
  line-height: 3.2rem;
  margin-bottom: 40px;
}
.header-nav li a {
  color: #FFFFFF;
}
.header-nav-goods {
  display: flex;
  height: 3.3rem;
}
.header-nav-goods-link-pc {
  display: none;
}
.header-nav-goods-link-mobile {
  width: 20px;
  margin: 9px 0 0 10px;
}
@media (min-width: 769px) {
  .header {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
  }
  .header-logo01 {
    position: fixed;
    display: inline-flex;
    top: 0;
    left: 0;
    padding-left: 20px;
  }
  .openbtn-wrap {
    display: none;
  }
  .header-nav-wrap {
    position: fixed;
    height: auto;
    display: block;
    z-index: 9;
  }
  .header-nav {
    height: auto;
    background: none;
    text-align: right;
    padding-top: 24px;
  }
  .header-nav ul {
    padding: 0;
    max-width: 1340px;
    margin: 0 auto;
  }
  .header-nav li:nth-child(n + 2) {
    display: inline-block;
    font-size: 2.4rem;
    margin: 0 20px 0 0;
  }
  .header-nav li:first-child {
    display: none;
  }
  .header-nav li a {
    color: #333333;
  }
  .header-nav-goods {
    display: inline-flex;
    align-items: center;
  }
  .header-nav .header-nav-goods li {
    display: inline-block;
    font-size: 2.4rem;
    margin: 0;
  }
  .header-nav .header-nav-goods li a {
    color: #333333;
    font-size: 2.4rem;
  }
  .header-nav-goods-link-mobile {
    display: none;
  }
  .header-nav-goods-link-pc {
    display: block;
    padding-left: 3px;
    margin-right: 20px;
  }
}
@media (min-width: 1200px) {
  .header-logo01 {
    padding-left: 120px;
  }
  .header-nav {
    padding-right: 100px;
  }
}
@media (min-width: 1440px) {
  .header-wrap {
    position: fixed;
    width: 100%;
    max-width: 1440px;
    z-index: 10;
  }
  .header-logo01 {
    position: absolute;
  }
}
h2 {
  font-size: 3.2rem;
  line-height: 100%;
  font-weight: 500;
}
h3 {
  font-size: 1.2rem;
  line-height: 100%;
  font-weight: 400;
  margin-bottom: 60px;
}
@media (min-width: 769px) {
  h2 {
    font-size: 4.8rem;
    font-weight: 500;
  }
  h3 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 50px;
  }
}
.header-logo01, h2, .footer-logo, .header-nav li, .footer-nav li, .footer-wrap small {
  font-family: 'Caveat', cursive;
}
/* footer */
.footer-content-wrap {
  margin-top: 50px;
}
@media (min-width: 769px) {
  .footer-content-wrap {
    margin-top: 100px;
  }
  .footer-link-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 805px;
    margin: 0 auto;
  }
  .goods-link-img-wrap {
    width: 50%;
    margin: 0 50px;
  }
  .line-link-img-wrap {
    width: 50%;
    margin: 0 50px;
  }
}
.goods-link-img-wrap {
  width: 300px;
  height: 145px;
  margin: 0 auto 30px;
}
.line-link-img-wrap {
  width: 305px;
  height: 145px;
  margin: 0 auto;
}
.goods-link-img-wrap a:hover, .line-link-img-wrap a:hover, .sns-logo-wrap a:hover {
  display: block;
  opacity: 0.8;
}
.sns-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.sns-logo {
  width: 44px;
  height: 44px;
  margin: 0 auto;
}
.sns-logo img {
  width: 100%;
  height: auto;
  align-items: center;
}
.sns-logo-list01, .sns-logo-list02 {
  height: 44px;
}
.sns-logo-list01 {
  margin-bottom: 30px;
}
.sns-logo-list02 {
  margin-bottom: 50px;
}
.sns-logo-list01 img, .sns-logo-list02 img {
  display: block;
}
.sns-logo {
  display: inline-block;
  margin: 0 15px;
}
.sns-logo.twitter-logo {
  padding: 4px 0;
}
.sns-logo.youtyube-logo {
  padding: 7px 0;
}
.footer-wrap {
  width: 100%;
  height: auto;
  padding: 0 0 10px 15px;
  background-image: radial-gradient(rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, .7) 100%), url("../img/footer.jpg");
  background-size: cover;
  background-position: 77% 30%;
  background-repeat: no-repeat;
}
.footer-item {
  text-align: left;
  margin: 0 0 60px 10px;
}
.footer-item p {
  font-size: 1.4rem;
}
.footer-logo span {
  padding-left: 0.2rem;
  margin-bottom: 20px;
}
.footer-wrap small {
  font-size: 1.8rem;
  font-weight: 400;
  margin-left: -15px;
}
@media (min-width: 769px) {
  .footer-wrap {
    max-width: 1440px;
    margin: 0 auto;
  }
  .footer-wrap small {
    font-size: 2.0rem;
  }
  .footer-item {
    padding-top: 200px;
    margin-bottom: 200px;
  }
  .footer-item p {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .footer-wrap {
    padding: 0 0 20px 110px;
  }
  .footer-wrap small {
    margin-left: -110px;
  }
}