body {
  background-color: #f5f2ee;
  color: #755133;
  max-width: 1000px;
  font-size: 100%;
  font-family: "Kiwi Maru", serif, " Noto Sans JP", sans-serif;

}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  display: inline-block;

}

li {
  list-style-type: none;
}

iframe,
img {
  width: 100%;
}

iframe {
  aspect-ratio: 16/9;
}

section {
  width: 80%;
  margin: 0 auto;
  max-width: 1000px;
}



.top-title {
  font-family: "Ribeye Marrow", serif;
  text-align: center;
  margin-bottom: 2rem;
  margin-top: 2rem;
  border-top: 1px dotted #755133;
  border-bottom: 1px dotted #755133;
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.5rem;
}


/* header-------------------------------------------- */

.header {
  background-image: url(./img/header-brick.png);
  background-size: cover;
  background-position: center;
  height: 50px;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.39);
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

h1 {
  margin: auto;
}

.logo img {
  width: 110px;
  margin: 2px auto 0;
}

.logo img:hover {
  opacity: .6;
  transition: all.5s;
}

.drawer-btn {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  cursor: pointer;
  border: none;
  z-index: 999;
  background-color: #f5f2ee;
  border-radius: 50px;
  margin-left: 89%;
}

.drawer-btn:hover {
  background-color: #e0c9b5;
  opacity: .7;
  transition: all .7s;
}

.drawer-btn>span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5rem;
  height: 2px;
  background-color: #35646B;
  transform: translateX(-50%);
  transition: all .5s;
}

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

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

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


.drawer-btn.is-active>span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);

}

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

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

}


.drawer-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.drawer-nav-item2 {
  display: none;

}

.drawer-nav.is-active {
  opacity: 1;
  visibility: visible;
}

.drawer-nav-inner {
  position: relative;
  width: 80%;
  height: 100vh;
  background-color: #f5f2ee;
  padding: 4rem 1.5rem 1rem;
  margin: 0 0 0 auto;
  overflow: scroll;
  transform: translateX(100%);
  transition: all 0.5s;

}

.drawer-nav.is-active .drawer-nav-inner {
  transform: translateX(0);
  transition: transform 0.5s ease;
}

.drawer-nav-menu {
  list-style: none;
  text-align: center;
}

.drawer-nav-link {
  display: block;
  text-decoration: none;
  color: #755133;
  padding: 1rem 1rem;
}

.drawer-nav-link:hover {
  color: #35646B;
  transition: .6s;
}

.drawer-navlogo img {
  width: 200px;
}

.snslogo-box {
  display: flex;
  justify-content: center;
  margin-top: 1rem;

}

.snslogo img {
  width: 50px;
}


body.is-active {
  height: 100%;
  overflow: hidden;
}

/* mainpage----------------------------------------------------------- */
#viewer {
  margin: 10px auto 0;
  width: 380px;
  height: 619px;
  overflow: hidden;
  position: relative;
}

#viewer img {
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
}

#viewer-pc {
  display: none;
}

.section-box {
  margin-top: -1rem;
}


/* concept-page-------------------------------------------------- */

.concept-page {
  text-align: center;
  padding-top: 30px;
}

.concept-page p {
  padding: 2rem 0;
  font-size: 1rem;
  line-height: 1.9rem;
}

.concept-page-shopbtn {
  margin: 1rem auto;
}

.shop-btn a {
  background-color: #35646B;
  color: #f5f2ee;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  padding-left: 35px;
  box-shadow: 1px 2px 5px #18110a;

}

.shop-btn {
  text-align: center;
}

.shop-btn a::before {
  content: '';
  display: block;
  width: 30px;
  height: 30px;
  background-image: url(img/sns-logo/cart.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 5px;
}


.shop-btn a:hover {
  box-shadow: none;
  transition: .5s;
}

.main-sns-logo {
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.main-sns-logo img {
  width: 60px;
  margin: 0 auto;
}

.main-sns-logo img:hover{
  opacity: .6;
  transition: .6s;
}
/* new-itempage------------------------------------- */
.new-item {
  padding-top: 30px;
}

.new-item-text {
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  text-align: center;
}

.new-item-titl {
  display: block;
  width: 300px;
  margin: 0 auto;
}

.new-item h3 {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 900;
  text-align: center;
  color: #35646B;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  font-weight: bold;
  padding-bottom: 1rem;
}

.new-item p {
  font-size: 1rem;
  text-align: center;
}


.new-item a {
  color: #755133;
  padding: 10px;
  border-radius: 150px;
  position: relative;
  padding-right: 35px;
  margin-top: 2rem;
  border: 1px solid #755133;
  box-shadow: 1px 1px 3px black;
  font-size: 0.8rem;
}



.new-item a::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(img/sns-logo/open_in_new.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  right: 10px;
}


.new-item a:hover {
  box-shadow: none;
  opacity: 0.8;
  transition: .3s;
}

/*------ スライダー ---------------------------------------*/
.slider {
  margin: 1rem auto;
  width: 80%;

}

.slider img {
  width: 100%;
}

.slider .slick-slide {
  height: auto !important;
}

.slider .slick-next {
  right: 0 !important;
}

.slider .slick-prev {
  left: 0 !important;
}

.slider .slick-arrow {
  width: initial !important;
  height: initial !important;
  z-index: 2 !important;
}

.slider .slick-arrow:before {
  font-size: 30px !important;
}

/* info--------------------------------- */
.address-page {
  font-style: normal;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.address-page p {
  font-size: 0.7rem;
  line-height: normal;
  margin-top: 1rem;
}

address {
  line-height: 1.5rem;
  font-size: 0.8rem;
}





/* footer----------------------------------------- */

footer {
  background-color: #755133;
  color: #f5f2ee;
  text-align: center;
  padding-bottom: 1rem;

}

.footer-nav {
  text-align: left;
}

.footer-nav-item {
  list-style: none;

}

.footer-nav-item a {
  color: #f5f2ee;
  display: inline-block;
}

.footer-nav-item img:hover {
  opacity: .6;
  transition: .6s;
}

.footer-sns {
  display: flex;
}

.footer-sns img {
  width: 60px;
}

/* item-page----------------------------------- */

.item-page h3 {
  font-size: 1rem;
  text-align: center;
}


.popup_open img:hover {
  cursor: pointer;
  opacity: 0.7;
  transition: .5s;
}

.popup_box {
  text-align: center;
}

.item-page p {
  margin-bottom: 2rem;
  font-size: 1rem;
  text-align: center;

}

.item-page h3 {
  margin-bottom: 1rem;
}

.cutlery-text {
  margin-bottom: 1rem;
}

.item-shop {
  margin: 0;
}


.item-page .shop-btn {
  margin-bottom: 1rem;
}




.item-sub-page {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 0 auto;

}


.item-sub-box {
  background-color: #fff;
  width: 100%;
  padding: 2rem;
}

.item-sub-page {
  max-width: 400px;
  margin: auto;
}

.item-sub-page img {
  width: 180px;
  vertical-align: bottom;
}

.item-sub-page p {
  font-size: 0.7rem;
}

.item-sub-page img:hover {
  opacity: .7;
  transition: .6s;
}


.snsinfo-logobox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.sns-info img {
  width: 40px;
  margin: 0 auto 1rem;
}

.sns-info h3 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 0.7rem;
}


.snsinfo-shop-btn a {
  background-color: #35646B;
  color: #f5f2ee;
  font-size: 0.7rem;
  padding: 7px;
  border-radius: 7px;
  position: relative;
  padding-left: 25px;
  box-shadow: 1px 1px 1px #18110a;

}

.snsinfo-shop-btn {
  text-align: center;
}

.snsinfo-shop-btn a::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  background-image: url(img/sns-logo/cart.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 5px;
}


.snsinfo-shop-btn a:hover {
  box-shadow: none;
  transition: .5s;
}

/* Q&A page-------------------- */
.faq-page {
  max-width: 1000px;
}

.faq-page h3 {
  font-size: 1rem;
  text-align: center;
}

.faq-page p {
  font-size: 0.8rem;
  margin-top: 1rem;
}

.faq {
  background: #ffffff;
  padding: 2em;
  margin-top: 3rem;
  margin-bottom: 3rem;
  border-radius: 20px;
}

.faq-box {
  margin: 1rem auto 3rem;
  position: relative;
}

.layer-in {
  /* ボックス配置指定 */
  position: absolute;
  top: 0;
  left: -70px;
}

.layer-out {
  /* ボックス配置指定 */
  position: absolute;
  top: 0;
  right: -70px;
}

.layer-img {
  width: 50px;

}

.faq dt {
  padding-bottom: 5px;
  margin-bottom: 5px;
  color: #35646B;
  border-bottom: 1px dotted #755133;
}

.faq dt:before {
  content: "Q";
  font-weight: normal;
  background: #35646B;
  color: #fefefe;
  width: 1.5em;
  height: 1.5em;
  line-height: 1.6;
  text-align: center;
  display: inline-block;
  border-radius: 1em;
  margin-right: .5em;
}

.faq dd {
  margin-bottom: 3em;
  font-size: 0.9rem;
}

.faq dd:last-child {
  margin-bottom: 0;
}





/* popup------------------------------------------ */
.popup {
  cursor: pointer;
}

.popup:hover {
  opacity: 0.7;
  transition: .5s;
}


/* popup_list */
.container {
  margin: 50px auto;
}

.popup_list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.popup_list li {
  width: 30.7%;
  margin-bottom: 40px;
}

.popup_list li a {
  display: block;
  width: 100%;
  height: 100%;
}

.popup_list li img {
  width: 100%;
  border-radius: 3px;
}

/* popup_content */
.popup_bg {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(64, 73, 82, 0.8);
  transition: 0.4s;
  z-index: 1000;
}

.popup_content {
  position: relative;
}

.popup_box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1001;
  width: 490px;
  height: 650px;
  background: #f5f2ee;
  padding: 20px;
}

.popup_box .tit {
  text-align: center;
  margin: 0 auto 20px;
}

.popup_box .tit span {
  display: inline-block;
  width: 127px;
  height: 27px;
  color: #f5f2ee;
  font-size: 14px;
  line-height: 27px;
  background: #755133;
  border-radius: 3px;
}

.popup_box img {
  width: 100%;
  border-radius: 3px;
  margin-bottom: 20px;
}

.popup_box p {
  font-size: 14px;
  line-height: 1.8;
}

/* popup_nav */
.popup_nav .prev {
  position: absolute;
  top: 30%;
  left: -40px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
  z-index: 130;
}

.popup_nav .next {
  position: absolute;
  top: 30%;
  right: -40px;
  transform: translateY(-50%);
  width: 30px;
  height: auto;
}

.popup_nav .prev.disabled,
.popup_nav .next.disabled {
  display: none;
}


/*--close btn--*/
.popup_close {
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 120;
}

.popup_close:hover {
  opacity: .6;
  transition: .6s;
}

.popup_close span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  width: 30px;
  height: 2px;
  background: #755133;
  position: absolute;
  left: 50%;
  top: 50%;
}

.popup_close span:nth-child(1) {
  transform: translate(-50%, 50%) rotate(45deg);
}

.popup_close span:nth-child(2) {
  transform: translate(-50%, 50%) rotate(-45deg);
}

@media screen and (max-width : 600px) {
  .popup_box {
    width: 80%;
    height: auto;
    margin: 0 auto;
    background: #f5f2ee;
    flex-direction: column;
    align-items: center;
  }

  .popup_nav .prev {
    left: 25px;
    width: 20px;
  }

  .popup_nav .next {
    right: 25px;
    width: 20px;
  }
}

/* ここまでpopup------------------------------------------- */

/* fadein------------------------------------------------- */

.content {

  opacity: 0;
}

.content.inview {
  animation-name: fade-in;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-delay: .7s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}


@keyframes fade-in {
  0% {
    transform: translateY(40px);
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}


/* ここからPC版↓↓↓↓↓↓↓↓--------------------------------------------- */

@media screen and (min-width: 768px) {
  body {
    max-width: 100%;
  }

  img {
    max-width: 1300px;
    /* width: 80%; */
    margin: auto;

  }

  .concept-page,
  .item-page,
  .info {
    max-width: 1300px;
    margin: 0 auto;
  }

  .top-title {
    font-size: 2rem;
    margin-top: 6rem;
  }

  /* header------------------------------- */
  .header {
    height: 60px;
  }

  h1 {
    margin-left: 1rem;
    margin-top: 5px;
  }

  .logo-img {
    width: 150px;
  }

  .drawer-nav-item2 {
    display: block;
    align-items: center;
  }

  .drawer-nav-item2 img {
    width: 30px;
  }

  .drawer-navpc ul {
    display: flex;
    justify-content: end;
    gap: 1rem;
    padding-right: 2rem;
    align-items: center;
  }

  .drawer-navpc a {
    color: #755133;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.427);

  }

  .drawer-navpc a:hover {
    color: #35646B;
    transition: .4s;
    opacity: .7;
  }

  .drawer-btn {
    display: none;
  }


  .snslogo,
  .drawer-navlogo {
    display: none;
  }


  #viewer {
    display: none;

  }

  #viewer-pc {
    display: block;
    margin: 50px auto 0;
    width: 90%;
    height: 1079px;
    position: relative;
    overflow: hidden;
  }

  #viewer-pc img {
    top: 0;
    left: 0;
    right: 0;
    position: absolute;
  }

  .main-visual {
    text-align: center;
  }



  .section-box {
    margin-top: -25rem;
  }


  .concept-pcpage {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }

  .concept-page img {
    width: 50%;

  }

  .concept-page p {
    line-height: 2.5rem;
    font-size: 1rem;
    padding: 1rem;
  }


  .main-sns-logo img {
    width: 80px;
    margin: 0 auto;
  }


  .new-item-titl {
    width: 400px;

  }

  .new-item h3 {
    font-size: 2rem;
    padding-bottom: 0;
  }

  .new-item p {
    font-size: 1.2rem;
    margin-top: 3rem;
  }

  /* info--------------------------------- */
  iframe {
    width: 100%;
    margin: 0;
  }

  .access-page {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
  }

  .address-page {
    font-style: normal;
    margin-top: 0;

  }

  .address-page p {
    font-size: 1rem;
  }

  address {
    line-height: 2.5rem;
    font-size: 1.2rem;
  }

  .container {
    text-align: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .popup_open img {
    width: 100%;
  }

  .item-sub-page {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    gap: 2rem;

  }

  .item-sub-page img {
    width: 100%;
  }

  .item-sub-page p {
    font-size: 0.7rem;
  }

  .layer-in {
    left: -100px;
  }

  .layer-out {
    right: -100px;
  }

  .layer-img {
    width: 70px;

  }

  .sns-info img {
    width: 40px;
    margin: 0 auto 1rem;
  }

  /* popup--------------------------- */
  .popup_open img {
    width: 100%;
  }

  .popup_open {
    display: inline;
    margin: 0;

  }

  .popup_nav .prev {
    left: 30px;
    width: 25px;
  }

  .popup_nav .next {
    right: 30px;
    width: 25px;
  }

}