body {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  letter-spacing: .05em;
  color: #333;
  background-color: #f7f4ea;

}

a {
  transition: opacity .3s;
  text-decoration: none;
  color: #333;
}

a:hover {
  opacity: .6;
}

li {
  list-style: none;
}

.sns-item img {
  width: 30px;
}

hr {
  height: 1px;
  background-color: rgb(121, 120, 120);
  width: 20%;
  border: none;
  margin: 10px 0;
}



h2 {
  padding-left: 10px;
  font-family: 'Yuji Syuku', serif;
  font-size: 30px;
}


.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }
}

/*--------------------------------
 レイアウト
---------------------------------*/
.wapper {
  padding: 90px 0;
}

.wapper:nth-of-type(odd) {
  background-color: #cae4c3;

}

.content {
  padding: 0 50px;
}

section {
  padding: 30px;
}



@media screen and (max-width: 767px) {
  .wapper {
    padding: 8% 0;
  }


  .content {
    padding: 0 5%;
  }


  section {
    padding: 8%;
  }
}

/*----------------------------------------------------

   header

------------------------------------------------------*/

.header-container {
  background-color: #f7f4ea;
  display: flex;
  padding: 0 140px;
  justify-content: space-around;

}

#logo {
  padding: 20px 0;
  margin-right: 100px;
}

#logo img {
  width: 150px;
}

#global-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.gnav-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
}

.gnav-item {
  padding-right: 20px;
}


.gnav-item a {
  position: relative;
  font-size: 13px;
  font-weight: bold;
  display: inline-block;
  padding: 5px 0;
  transition: .3s;
  letter-spacing: .05em;
  color: #333;
}

#drawer-nav,
#drawer {

  display: none;
}


@media screen and (max-width: 920px) {


  #logo {

    margin-right: 0;
  }

  #logo img {}

  #global-nav {
    display: none;
  }

  #drawer-nav,
  #drawer {
    display: block;
  }


  .drawer-item a {
    position: relative;
    font-size: 16px;
    font-weight: bold;
    display: inline-block;
    padding: 5px 0;
    transition: .3s;
    letter-spacing: .05em;
    color: #333;
  }

  /*ハンバーガーメニュー*/
  /*中身*/

  #drawer-nav {
    position: absolute;
    height: 100vh;
    width: 40%;
    left: -40%;
    top: 0;
    background: #d0fbde;
    z-index: 9998;
    transition: 0.5s;
  }

  #drawer-nav ul {
    padding-top: 75px;
    font-weight: bold;
  }

  #drawer-nav ul li {
    list-style: none;
    font-size: 16px;
    padding-left: 20px;
  }

  #drawer-nav ul li a {
    display: block;
    text-decoration: none;
    margin-bottom: 20px;
    padding: 10px;
    color: #333;
  }



  /*三本線*/
  /*クリック前*/

  #drawer {
    display: block;
    position: absolute;
    top: 20px;
    left: 10px;
    width: 25px;
    height: 25px;
    z-index: 9999;
  }

  .drawer-line {
    display: block;
    position: absolute;
    left: 0;
    width: 30px;
    height: 4px;
    border-radius: 10px;
    background: #333;
    transition: 0.5s;
  }

  #line1 {
    top: 0;
  }

  #line2 {
    top: 10px;
  }

  #line3 {
    bottom: 0;
  }

  /*クリック後*/
  .in {
    transform: translateX(100%);
  }

  .drawer-line.line_1 {
    transform: translateY(9px) rotate(-45deg);
  }


  .drawer-line.line_2 {
    opacity: 0;
  }


  .drawer-line.line_3 {
    transform: translateY(-12px) rotate(45deg);
  }


}


/*----------------------------------------------------

   スライドショー

------------------------------------------------------*/

.slider {
  position: relative;
  width: 100%;
  padding-top: 61.8%;
}

.slider img {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  left: 0;
  opacity: 0;
  animation: slideshow 24s linear infinite;
  z-index: 100;
}

.slider img:nth-child(2) {
  animation-delay: 8s;
}


.slider img:nth-child(3) {
  animation-delay: 16s;
}

@keyframes slideshow {
  0% {
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  28% {
    opacity: 1;
  }

  38% {
    opacity: 0;
  }

  100% {
    opacity: 0;

  }
}

#catchphrase {
  z-index: 200;
  position: absolute;
  top: 200px;
  left: 100px;
}


#catchphrase img {
  width: 100%;
}


@media screen and (max-width: 640px) {

  #catchphrase {
    left: 0;
    width: 65%;
  }
}

/*----------------------------------------------------

   こだわり

------------------------------------------------------*/


.line {
  max-width: 350px;
}

.line img {
  width: 100%;
}

#about .paragraph {
  padding: 20px;
}

#about p {
  padding: 15px 0;
}

@media screen and (max-width: 767px) {}

/*----------------------------------------------------

  新着情報

------------------------------------------------------*/
.scroll {
  margin-top: 30px;
}

.info {
  -webkit-overflow-scrolling: touch;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-box;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  height: 13em;
  margin: 0 auto;
  overflow-y: scroll
}

@media (min-width:768px) {
  .info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    flex-wrap: wrap
  }
}

.info dd,
.info dt {
  box-sizing: border-box;
  width: 100%;
  padding-bottom: .5em;
  padding-left: .5em
}

.info dt {
  font-style: normal;
  font-weight: initial
}

@media (min-width:768px) {
  .info dt {
    width: 12.5em;
    margin-bottom: .5em;
    border-bottom: 1px dotted #343a40
  }
}

.info dt:first-of-type {
  padding-top: .5em;
  border-top: 1px dotted #343a40
}

.info dt time {
  margin-right: .5em
}

.info dt span {
  box-sizing: border-box;
  display: inline-block;
  width: 7em;
  margin-right: .5em;
  padding: 0 .5em;
  background-color: #009688;
  color: #fff;
  font-size: .8em;
  line-height: 1.75;
  text-align: center
}

.info time {
  color: #333
}

.info dd {
  margin-left: 0;
  margin-bottom: .5em;
  border-bottom: 1px dotted #343a40
}

@media (min-width:768px) {
  .info dd {
    width: calc(100% - 12.5em)
  }

  .info dd:first-of-type {
    padding-top: .5em;
    border-top: 1px dotted #343a40
  }
}

.info dd:nth-of-type(-n+3) {
  position: relative
}



/*----------------------------------------------------

   sns

------------------------------------------------------*/

#sns {
  display: flex;
  justify-content: center;
}

.sns-it {
  padding: 20px;
  margin: 20px;
  background-color: #bce2e8;
}

.sns-it h3 {
  font-size: 12px;
}


.sns-it h3::after {
  content: '';
  margin-top: 3px;
  bottom: 0;
  left: 0;
  display: block;
  width: 64px;
  height: 4px;
  background: #1b1b1b;
}

.sns-it img {
  padding-top: 20px;
  width: 100%;

}


@media screen and (max-width: 767px) {

  #sns {
    display: block;
  }


  .sns-it {
    margin-bottom: 20px;
  }

  .sns-it h3 {
    font-size: 12px;
  }


  .sns-it h3::after {
    content: '';
    margin-top: 3px;
    bottom: 0;
    left: 0;
    display: block;
    width: 64px;
    height: 4px;
    background: #1b1b1b;
  }

}

@media screen and (max-width: 767px) {}

/*----------------------------------------------------

  footer

------------------------------------------------------*/

footer {
  background-color: #f7f4ea;
  padding: 20px 40px;
}

.footer-container {
  padding: 30px;
}

#footer-nav ul {
  display: flex;
  justify-content: center;
}

#footer-nav ul li {
  padding: 20px 0;
}

#footer-nav .nav-item::before {
  content: "|";
  margin-right: 0.3em;
  margin-left: 0.3em
}


#footer-nav .sns {
  padding-top: 20px;
  text-align: center;
}

#footer-nav .sns-item {
  margin-left: 15px;
}


footer p {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .footer-container {
    text-align: center;
  }

  #footer-nav ul {
    display: block;
  }

  #footer-nav .nav-item::before {
    display: none;
  }
}

/*--------------------------------
 Contact
---------------------------------*/

#contact {
  background-color: #cae4c3;

}

#contact h2 {}

form {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  padding: 30px 30px 0;
}

form table {
  border-spacing: 0;
  padding-left: 15%;
}

form td {
  padding: 20px;
}

form th {
  padding: 15px;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}

.hissu,
.ninni {
  padding-right: 4em;
}


.after {
  position: absolute;
  padding: 0 5px;
  font-size: 85%;
  color: #f34848;
}



form input,
form textarea {
  background: #f2f2f2;
  margin: 0 5px;
  width: 300px;
  padding: 5px;
  box-sizing: border-box;
}

.contact-fome .button {
  text-align: center;
  padding: 20px 0;
}


form input[type="submit"] {
  padding: 10px;
  color: #333;
  margin: 5px;
  cursor: pointer;
  width: 150px;
}

form input[type="submit"]:hover {
  opacity: 0.4;
}


@media screen and (max-width: 767px) {

  form table,
  form tr,
  form th,
  form td {
    display: block;
  }


  form table {
    padding-left: 0;
  }

  form th {
    width: auto;
    border-bottom: none;
    padding: 13px 10px 0 5em;
  }


  .hissu,
  .ninni {
    padding-left: 2em;
  }

  .hissu::after,
  .ninni::after {
    right: auto;
    left: 15px;
  }

  form input[type="text"],
  form textarea {
    width: calc(100% - 10px);
  }
}


/*----------------------------------

          下層ページ
          
-------------------------------------*/

/*　　　店舗紹介　　　*/

#acces-img {
  width: auto;
}

#acces-img img {

  display: block;
  margin: auto;
  width: 100%;
}


.acces-article {
  padding-top: 60px;
}


.accses {
  text-align: center;
}

.ac-table {
  margin: auto;
  text-align: left;
  border-collapse: separate;
  border-spacing: 32px 0px;
}

.map {
  width: auto;
  max-width: 500px;
  margin: auto;
}

.map img {
  width: 100%;
  padding: 20px 0 80px;
}



/*      商品紹介　　*/

.goods {
  padding: 50px 80px;
  text-align: center;
}

.goods h2 {}

.goods-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.goods-list li {
  padding: 24px;
}

.goods-list figure {}


.goods-list img {
  width: 100%;
}


.goods-list p {}