@charset "UTF-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
}

body {
  color: #61574B;
  /* RGB */
  background-color: #F1EBE5;
  font-family: "Noto Serif JP", "Playfair Display", sans-serif;
  font-weight: 500;
  font-size: 1.4em;
  font-style: normal;
  text-align: center;
  overflow-x: hidden;

}

@media screen and (min-width:796px) {

  body {
    color: #61574B;
    /* RGB */
    background-color: #F1EBE5;
    font-family: "Noto Serif JP", "Playfair Display", sans-serif;
    font-weight: 500;
    font-size: 1.6em;
    font-style: normal;
    line-height: 1;
    text-align: center;
  }

}


img {
  max-width: 100%;
  height: auto;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}


/* sp-ヘッダー */
.header {
  right: 0;
  width: 100%;
  background-color: #F1EBE5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.header-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
}

.header-logo {
  text-align: left;
  padding: 0px 10px;
}

.header-logo img {
  width: 83px;
  height: 30px;
  object-fit: cover;
}

.drawer__button {
  position: relative;
  width: 5rem;
  height: 3rem;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 999;
  /* メニューを開いている時もクリックできるよう設定 */
}

/* ハンバーガーボタンの線 */
.drawer__button>span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.5rem;
  height: 1px;
  background-color: #61574B;
  transform: translateX(-50%);
}

.drawer__button>span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}

.drawer__button>span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.drawer__button>span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}

/* 展開時のデザイン */
.drawer__button.active>span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.drawer__button.active>span:nth-child(2) {
  opacity: 0;
}

.drawer__button.active>span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

/* メニューのデザイン */
.drawer__nav {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100vh;
  background-color: #F1EBE5;
  opacity: 0.9;
  transform: translateX(100%);
}

.drawer__nav.active {
  transform: translateX(0);
}

.drawer__nav__menu {
  padding-top: 60px;
}

.drawer__nav__item {
  color: #61574B;
  text-decoration: none;
  padding: 2rem 1rem;
}

/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}




/*pc-header*/
@media screen and (min-width:800px) {
  a:hover {
    opacity: 0.5;
  }

  .drawer__button {
    display: none;
  }

  .header {
    height: auto;
  }

  .header-content-wrapper {
    max-width: 1280px;
    padding: 30px 42px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;

  }

  .header-logo {
    display: block;
  }

  .header-logo img {
    width: 80%;
    height: auto;
    vertical-align: bottom;
  }

  .drawer__nav {
    background: transparent;
    position: static;
    width: auto;
    height: auto;
    transform: translateX(0);
  }

  .drawer__nav__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    padding-top: 0;
  }

  .drawer__nav__item {
    margin-left: 10px;
    padding: 1rem;
    text-align: center;
  }

  .btn-onlineshop::before {
    content: '';
    /*絶対配置でキラッと光るの位置を決める*/
    position: absolute;
    top: 0;
    left: -40%;
    /*キラッと光る形状*/
    width: 30%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
    transform: skewX(-25deg);

  }

  /*hoverした際の移動のアニメーション*/
  .btn-onlineshop:hover::before {
    animation: shine 0.7s;
  }

  @keyframes shine {
    100% {
      left: 80%;
    }
  }


}

/* オンラインショップへのボタン共通 */
.btn-onlineshop {
  display: block;
  margin: 0 auto;
  padding: 27px 45px;
  color: #FFF;
  line-height: 30px;
  letter-spacing: 1.44px;
  background-color: #877968;
  width: 318px;
  height: 84px;
  text-align: center;
  position: relative;
  transition: 0.4s;
  overflow: hidden;

}

.btn-onlineshop::after {
  content: '';
  display: inline-block;
  width: 10px;
  height: 12px;
  background-image: url(../images/top/icon_arrow_white.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 45px;
  top: 52%;
  transform: translateY(-50%);
  transition: 0.4s;
}





.footer {
  background-color: #C3B19F;
  padding: 24px 112px 24px;
  margin: 0 auto;
}

.footer-logo {
  text-align: center;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 115px;
}

.copy small {
  color: #FFF;
  font-size: 1.1rem;
  text-align: center;

}

#scroll-top {

  background-color: #61574B;
  opacity: 0.6;
  bottom: 20px;
  padding: 10px;
  position: fixed;
  right: 20px;
  border-radius: 10%;
}

#scroll-top a {

  text-decoration: none;
  color: #FFF;
}

@media screen and (min-width:796px) {
  .footer-logo img {
    max-width: 145px;
  }
}