html {
  width: 100%;
}

body {
  background-color: #E4E5DD;
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  color: #473819;
  margin: 0 auto;
  letter-spacing: 0.07em;
  line-height: 2.2;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  min-width: 1366px;
  animation: loading 1s;
  position: relative;
}

@keyframes loading {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none !important;
  color: #473819;
  transition: 0.3s;
}


a:hover {
  opacity: 0.6;
  transition: 0.8s;
}

ul {
  padding: 0;
}

li {
  list-style-type: none;
}


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

.inner {
  width: calc(100% - 16vw);
  max-width: 1500px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  text-align: left;
}

.pc {
  display: block;
}

.mobile {
  display: none;
}

.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
}


.en {
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-size: 15px;
}

header {
  width: 100%;
  padding: 32px 40px 0 60px;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
}

.header_logo a {
  font-size: 34px;
  z-index: 300;
  color: #fff;
  letter-spacing: 0.08em;
}

/* 初期状態：白ロゴのみ表示 */
.logo-default {
  display: none;
}

.logo-white {
  display: block;
}

/* スクロール後：デフォルトロゴ表示、白ロゴ非表示 */
.header.headerColorScroll .logo-default {
  display: block;
}

.header.headerColorScroll .logo-white {
  display: none;
}

header .row {
  align-items: center;
  flex-wrap: nowrap;
}

.header_nav_wrapper {
  display: flex;
  align-items: center;
}

.header_nav a {
  padding: 20px;
  font-size: 18px;
  transition-duration: 0.6s;
}


/* 
hamburger(ハンバーガーアイコン)
=================================== */
#nav-wrapper {
  display: block;
}

.hamburger {
  position: relative;
  width: 84px;
  height: 84px;
  cursor: pointer;
  z-index: 300;
}

.hamburger__line {
  position: absolute;
  width: 64px;
  height: 2px;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  background-color: #b8b8b8;
  transition: all 0.5s;
}

.hamburger__line--1 {
  transform: translateY(-10px);
}

.hamburger__line--2 {
  width: 54px;
}

.hamburger__line--3 {
  transform: translateY(10px);
  width: 40px;
}

/*ハンバーガーがクリックされたら*/
.open .hamburger__line--1 {
  transform: rotate(-26deg);
}

.open .hamburger__line--2 {
  opacity: 0;
}

.open .hamburger__line--3 {
  transform: rotate(26deg);
  width: 64px;
}

/* 
  sp-nav(ナビ)
  =================================== */
.sp-nav {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  /* ふわっと表示 */
  transition: 0.5s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 200;
  /* メニューが多くなったらスクロールできるように */
  display: inherit;
  background-color: #E4E5DD;
  overflow-y: auto;
}

.open .sp-nav {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

.sp-nav_header {
  display: flex;
  padding: 32px 22px 32px;
}

header .header_nav {
  display: none;
}

.sp-nav_header .yukapeta_title {
  width: 200px;
  margin-bottom: 0;
}



header .sp-nav .spnav_menu {
  display: flex;
  flex-direction: column;
  padding: 80px 120px 0 120px;
}

header .sp-nav .spnav_menu a {
  padding: 0.8em 0;
  /* border-bottom: 1px solid #D8D8D8; */
  font-size: 16px;
}

header .sp-nav .spnav_menu a.insta {
  padding: 0.8em 0 0;
  border-bottom: 1px solid #747474;
  font-size: 16px;
  display: inline-block;
  width: fit-content;
  margin-top: 40px;
  font-size: 13px;
}


footer {
  margin-top: 140px;
  padding: 16px 0;
  border-top: 1px solid #B2B2B2;
}

.copyright {
  font-size: 12px;
  text-align: right;
}



@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
    font-size: 15px;
    line-height: 1.8;
  }

  .inner {
    width: calc(100% - 40px);
  }

  .pc {
    display: none;
  }

  .mobile {
    display: block;
  }

  .row {
    flex-wrap: wrap;
  }

  header {
    padding: 16px 20px;
  }

  header h1 {
    width: 200px
  }

  .header_logo a {
    font-size: 24px;
    z-index: 300;
    color: #fff;
    letter-spacing: 0.08em;
  }

  .hamburger {
    width: auto;
    height: auto;
  }

  .hamburger__line {
    width: 48px;
  }

  .hamburger__line--2 {
    width: 36px;
  }

  .hamburger__line--3 {
    width: 28px;
  }

  .open .hamburger__line--3 {
    width: 48px;
  }

  header .sp-nav .spnav_menu {
    padding: 80px 60px;
  }

  header .inner {
    width: 100%;
    padding-right: 0;
  }

  footer {
    padding: 0;
    margin-top: 80px;
  }

  .copyright {
    font-size: 11px;
    text-align: right;
    padding: 1.2em 0;
  }


}