@charset "utf-8";
html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #430e04;
  font-family: 'Lato', 'Zen Kaku Gothic New', 'Hiragino Kaku Gothic ProN', 'Meiryo',sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 1.7;
  letter-spacing: 0.07em;
  background-color: #F7F5F0;
}
a {
  text-decoration: none;
}
h1 {
  text-align: center;
  margin-bottom: 48px;
  line-height: 1;
}
h2 {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1;
}
h3 {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
}
h4 {
  padding-bottom: 24px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.tel {
  font-family: 'EB Garamond', serif;
  font-weight: 700;
  color: #430e04;
  line-height: 1;
  letter-spacing: 0.08em;
}
.sp {
  display: block !important;
}
.pc-n {
  display: none !important;
}
.pc-w {
  display: none !important;
}
.noscroll {
  overflow: hidden;
}
.instagram-icon {
  width: 30px;
  filter: invert(8%) sepia(28%) saturate(4917%) hue-rotate(351deg) brightness(102%) contrast(101%);
  vertical-align: middle;
  transition-property: filter;
  transition-duration: .4s;
  transition-timing-function: cubic-bezier(.11,.89,.84,.94);
}
.instagram-icon:hover {
  filter: invert(39%) sepia(9%) saturate(5613%) hue-rotate(336deg) brightness(91%) contrast(90%);
}
.mask_3-to-2 {
  line-height: 1;
  -webkit-mask-image: url(../images/common/edge.png);
  -webkit-mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  -moz-mask-image: url(../images/common/edge.png);
  -moz-mask-size: 100%;
  -moz-mask-repeat: no-repeat;
  mask-image: url(../images/common/edge.png);
  mask-size: 100%;
  mask-repeat: no-repeat;
}

@media (min-width: 787px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
  }

@media (min-width: 1024px) {
  body {
    line-height: 1.85;
    letter-spacing: 0.08em;
  }
  h1 {
    margin-bottom: 80px;
  }
  h2 {
    margin-bottom: 64px;
  }
  h3 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.12em;
  }
  .sp {
    display: none !important;
  }
  .pc-n {
    display: block !important;
  }
  .pc-w {
    display: none !important;
  }
}

@media (min-width: 1366px) {
  .sp {
    display: none !important;
  }
  .pc-n {
    display: none !important;
  }
  .pc-w {
    display: block !important;
  }
  .pl-24vw {
    padding-left: 24vw;
  }
}

/* ---------- header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 68px;
  background-color: rgba(247,245,240,90%);
  padding: 16px 8.53%;
  box-sizing: border-box;
  z-index: 1000;
  transition: background-color;
  transition-duration: .4s;
}
.header.active {
  background-color: rgba(247,245,240,100%);
}
.header_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_logo {
  width: 100px;
}
.header_logo svg {
  fill: #430e04;
  vertical-align: middle;
}
.header_right-justified-sp {
  display: flex;
}
.header_right-justified-pc-n {
  display: none;
}
.header_right-justified-pc-w {
  display: none;
}
.header_content_pc-w {
  display: none;
}
.header_tel-info {
  text-align: left;
  margin-right: 16px;
}
.header_tel-info p {
  font-size: 1rem;
  line-height: 1;
}
.header_tel {
  font-size: 1.8rem;
}

/* ---------- SP Menu btn ---------- */
.menu-btn {
  display: none;
}
.nav-content_sp__outer {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}
.nav-content_sp ul li a {
  display: block;
  color: #430e04;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #e7deda;
  transition-property: all;
  transition-duration: .4s;
  transition-timing-function: cubic-bezier(.28,.78,.43,.86);
}
.nav-content_sp ul li a.first-link {
  padding: 0 0 16px 0;
}
.nav-content_sp__address {
  margin-bottom: 24px;
}
@media (min-width: 600px) and (max-width: 1023px) {
  .nav-content_sp__outer {
    display: flex;
    align-items: center;
    height: calc(100vh - 68px);
    margin-top: 0;
  }
  .nav-content_sp ul li a {
    display: block;
    color: #430e04;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    padding: 24px 0;
    border-bottom: 1px solid #e7deda;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  .nav-content_sp ul li a.first-link {
    padding: 24px 0;
  }
  .nav-content_sp__address {
    margin: 24px 0;
  }
}
@media(max-width:1023px) {
  .menu-btn {
    display: block;
    position: relative;
    width: 42px;
    height: 42px;
    cursor: pointer;
  }
  .menu-btn__line span {
    display: inline-block;
    transition-property: transform;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    height: 1px;
    width: 22px;
    border-radius: 1px;
    background: #ba4f2b;
    content: '';
  }
  .menu-btn__line span:nth-of-type(1)  {
    top: 8px;
  }
  .menu-btn__line span:nth-of-type(2) {
    top: 14px;
  }
  .menu-btn__line span:nth-of-type(3) {
    top: 20px;
  }
  .menu-btn__text img:nth-of-type(1) {
    filter: invert(37%) sepia(12%) saturate(6151%) hue-rotate(343deg) brightness(91%) contrast(84%);
    display: inline-block;
    width: 42px;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    transition-duration: .6s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  .menu-btn__text img:nth-of-type(2) {
    opacity: 0;
    filter: invert(37%) sepia(12%) saturate(6151%) hue-rotate(343deg) brightness(91%) contrast(84%);
    display: inline-block;
    position: absolute;
    width: 32px;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    transition-duration: .6s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  /* メニューボタンの動き*/
  .menu-btn__line.active span:nth-of-type(1) {
    left: 10px;
    transform: translateY(6px) rotate(-45deg);
    width: 50%;
  }
  .menu-btn__line.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-btn__line.active span:nth-of-type(3){ 
    left: 10px;
    transform: translateY(-6px) rotate(45deg);
    width: 50%;
  }
  .menu-btn__text.active img:nth-of-type(1) {
    opacity: 0;
    pointer-events:none;
    filter: blur(2px);
  }
  .menu-btn__text.active img:nth-of-type(2) {
    opacity: 1;
  }
  .nav-content_sp {
    display: none;
    z-index: 1000;
    position: fixed;
    top: 68px;
    left: 0;
    background-color: #F7F5F0;
    width: 100%;
    height: 100%;
    padding: 0px 8.56% 0;
    box-sizing: border-box;
  }
  .nav-content_sp__inner {
    width:100%;
    margin-top: 18px;
  }
  .nav-content_sp ul li a:hover {
    color: #ba4f2b;
    font-weight: 500;
    letter-spacing: 0.15em;
  }
  .nav-content_sp ul li a.current {
    color: #ba4f2b;
    font-weight: 500;
  }
  .nav-content_sp__sns {
    display: inline-block;
  }
  .nav-content_sp__sns div {
    display: flex;
    align-items: center;
    margin: 16px auto 16px 0;
  }
  .nav-content_sp__sns span {
    color: #430e04;
    font-family: 'EB Garamond', serif;
    padding-left: 16px;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  .nav-content_sp__sns span:hover {
    color: #ba4f2b;
    letter-spacing: 0.1em;
  }
  .nav-content_sp__address p {
    font-size: 1.4rem;;
  }
  .nav-content_sp__address a {
    display: inline-block;
    color: #ba4f2b;
    font-weight: 500;
    position: relative;
    padding-right: 16px;
    margin-top: 8px;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  .nav-content_sp__address a:hover {
    letter-spacing: 0.15em;
  }
  .nav-content_sp__address a::before {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    border-top: solid 2px #ba4f2b;
    border-right: solid 2px #ba4f2b;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 50%;
    right: 0;
    margin-top: -3px;
  }
  .nav-content_shop-btn {
    display: block;
    position: relative;
    width: 256px;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
  }
  .nav-content_shop-btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    display: block;
    transition-duration: .8s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  .nav-content_shop-btn img:nth-of-type(2) {
    opacity: 0;
  }
  .nav-content_shop-btn:hover img:nth-of-type(1) {
    opacity: 0;
  }
  .nav-content_shop-btn:hover img:nth-of-type(2) {
    opacity: 1;
  }
  .nav_side-shop-btn_sp {
    position: fixed;
    right: 0;
    top: 140px;
    width: 10%;
    background-color: #fff;
    border: 2px solid #eeba0b;
    filter: drop-shadow(0px 0px 4px rgb(157, 126, 87, 30%));
    border-radius: 2px;
    text-align: center;
    line-height: 1;
    box-sizing: border-box;
    z-index: 1;
    
  }
  .nav_side-shop-btn_sp div:before {
    position: absolute;
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/common/side-shop-btn_hover.png) repeat;
    opacity: 0;
    transition-duration: .8s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  .nav_side-shop-btn_sp div:hover:before {
    opacity: 1;
  }
  .nav_side-shop-btn_sp a {
    display: block;
  }
  .nav_side-shop-btn_sp img {
    width: 50%;
    height: auto;
    padding: 10px;
    vertical-align: bottom;
    position: relative;
  }
}

@media (min-width:460px) {
  .nav_side-shop-btn_sp {
    width: 46px;
  }
  .nav_side-shop-btn_sp img {
    width: 18px;
  }
}

@media (min-width: 1024px) {
  .header {
    height: 100px;
    padding: 0;
    z-index: 1000;
  }
  .header_wrap {
    padding: 24px 40px;
  }
  .header_logo {
    width: 128px;
  }
  .header_tel-info {
    margin-right: 20px;
  }
  .header_tel-info p {
    font-size: 1.2rem;
    letter-spacing: -0.01em;
  }
  .header_tel {
    font-size: 2.2rem;
  }
  .header_right-justified-sp {
    display: none;
  }
  .header_right-justified-pc-n {
    display: flex;
    align-items: center;
  }
  .header_content_pc-w {
    display: none;
  }
  /* ---------- PC-n Menu ---------- */
  .nav-content_pc-n ul {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-right: 20px;
  }
  .nav-content_pc-n ul li a{
    display: block;
    width: 100%;
    height: 100%;
    color: #430e04;
    font-size:1.4rem;
    text-align: center;
    position: relative;
    text-decoration: none;
  }
  .nav-content_pc-n ul li a.current {
    color: #ba4f2b;
    font-weight: 500;
  }
  .nav-content_pc-n ul li a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #430e04;
    transition-property: all;
    transition-duration: .8s;
    transition-timing-function: cubic-bezier(0.15, 0.99, 0.43, 0.86);
  }
  .nav-content_pc-n ul li a:hover {
    cursor: pointer;
  }
  .nav-content_pc-n ul li a:hover::after {
    width: 100%;
  }
  .nav-content_pc-n__sns {
    margin-right: 20px;
  }
  .nav-content_shop-btn {
    display: block;
    position: relative;
    width: 120px;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
  }
  .nav-content_shop-btn img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    display: block;
    transition-property: all;
    transition-duration: .8s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  .nav-content_shop-btn img:nth-of-type(2) {
    opacity: 0;
  }
  .nav-content_shop-btn:hover img:nth-of-type(1) {
    opacity: 0;
  }
  .nav-content_shop-btn:hover img:nth-of-type(2) {
    opacity: 1;
  }
}

@media (min-width: 1366px) {
  .header {
    position: relative;
    width: 0;
    height: 0;
    padding: 0;
    background-color: transparent;
    box-sizing: border-box;
  }
  .header_wrap {
    position: fixed;
    display: block;
    top: 64px;
    width: 272px;
    padding-left: 5vw;
    opacity: 1;
  }
  .header_logo {
    width: 184px;
    margin-bottom: 64px;
  }
  .header_right-justified-sp {
    display: none;
  }
  .header_right-justified-pc-n {
    display: none;
  }
  .header_content_pc-w {
    display: block;
  }
   /* ---------- PC-w Menu ---------- */
  .nav-content_pc-w ul li a {
    display: inline-block;
    color: #430e04;
    padding: 24px 0 8px;
    position: relative;
    text-decoration: none;
    line-height: 1;
  }
  .nav-content_pc-w ul li a.current {
    color: #ba4f2b;
    font-weight: 500;
  }
  .nav-content_pc-w ul li a::after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #430e04;
    transition-property: all;
    transition-duration: .8s;
    transition-timing-function: cubic-bezier(0.15, 0.99, 0.43, 0.86);
  }
  .nav-content_pc-w ul li a:hover {
    cursor: pointer;
  }
  .nav-content_pc-w ul li a:hover::after {
    width: 100%;
  }
  .header_tel-info {
    margin: 20px 0 24px;
  }
  .header_tel {
    font-size: 2.6rem;
  }
  .header_tel-info p {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .nav-content_shop-btn {
    width: 184px;
    margin: 0 auto 40px 0;
  }
  .nav-content_pc-w__sns {
    display: inline-block;
  }
  .nav-content_pc-w__sns div {
    display: flex;
    align-items: center;
    width: 168px;
  }
  .nav-content_pc-w__sns span {
    color: #430e04;
    font-family: 'EB Garamond', serif;
    padding-left: 16px;
    transition-property: all;
    transition-duration: .4s;
    transition-timing-function: cubic-bezier(.28,.78,.43,.86);
  }
  .nav-content_pc-w__sns span:hover {
    color: #ba4f2b;
    letter-spacing: 0.1em;
  }
}
/* ---------- footer ---------- */
.footer {
  background-color:#5a3224;
  color: #fff;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left : 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/sec-border_be.png) bottom center;
  background-size: 4000px 8px;
}
.footer-sub::before {
  content: "";
  position: absolute;
  top: -1px;
  left : 0;
  width: 100%;
  height: 8px;
  background: url(../images/common/sec-border_wh.png) bottom center;
  background-size: 4000px 8px;
}
.footer_wrap {
  margin: 0 8.56% 40px;
  padding-top: 48px;
}
.footer_logo {
  width: 136px; 
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  margin-bottom: 40px;
  line-height: 1;
}
.footer_logo img {
  width: 100%;
  height: auto;
}
.footer_company-info__order {
  margin: 40px 0;
  line-height: 1;
}
.footer_company-info__order div {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.1em;
  padding-bottom: 16px;
}
.footer_company-info__tel-num {
  margin-bottom: 8px;
}
.footer_tel {
  font-size: 3.2rem;
  color: #fff;
  padding-bottom: 8px;
}
.footer_shop-btn {
  position: relative;
  width: 256px;
  height: 50px;
  display: block;
  overflow: hidden;
  cursor: pointer;
  margin-top: 32px;
}
.footer_shop-btn img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
  display: block;
  transition-property: all;
  transition-duration: .8s;
  transition-timing-function: cubic-bezier(.28,.78,.43,.86);
}
.footer_shop-btn img:nth-of-type(2) {
  opacity: 0;
}
.footer_shop-btn:hover img:nth-of-type(1) {
  opacity: 0;
}
.footer_shop-btn:hover img:nth-of-type(2) {
  opacity: 1;
}
.footer_map {
  position: relative;
  width: 100%;
}
.footer_map::before {
  content:"";
  display: block;
  padding-top: 61.79%;
}
.footer_map iframe {
  position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
  filter: saturate(60%);
  border-radius: 4px;
}
.footer_copyright {
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  .footer_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 969px;
    margin: 0 auto 40px;
    padding: 48px 40px 0;
  }
  .footer_map {
    width: 560px;
    height: 370px;
  }
  .footer_copyright {
    max-width: 969px;
    text-align: right;
    margin: 0 auto;
  }
}

@media (min-width: 1366px) {
  .footer_wrap {
    max-width: 1500px;
    margin: 0 auto;
  }
  .footer_site-menu {
    width: 200px;
    margin-right: 40px;
  }
  .footer_site-menu div {
    padding-bottom: 48px;
  }
  .footer_site-menu div img {
    width: 100px;
    height: auto;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
  }
  .footer_site-menu ul {
    list-style: none;
    line-height: 1;
  }
  .footer_site-menu ul li {
    margin-bottom: 32px;
  }
  .footer_site-menu ul a{
    color: #fff;
    position: relative;
  }
  .footer_site-menu ul a::after {
    position: absolute;
    content: '';
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition-property: all;
    transition-duration: .8s;
    transition-timing-function: cubic-bezier(0.15, 0.99, 0.43, 0.86);
  }
  .footer_site-menu ul a:hover::after {
    width: 100%;
  }
  .footer_company-info {
    width: 314px;
    margin-right: 40px;
  }
  .footer_map {
    width: 38%;
    max-width: 496px;
  }
  .footer_copyright {
    max-width: 1500px;
    padding-right: 40px;
  }
}