@charset "utf-8";
#page_title {
  background: #F0F0DC;
}

#shop_list .wrap {
  padding: 100px 0;
}
#shop_list .title {
  margin: 0 0 20px;
  padding: 0 20px;
}
#shop_list .main_title {
  color: var(--mainColor)!important;
}
#shop_list .list_wrap {
  justify-content: center;
  position: relative;
  z-index: 1;
}
#shop_list .list_wrap .col {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: 25px 0;
}
#shop_list .list_wrap .col a {
  text-decoration: none;
  display: block;
}
#shop_list .list_wrap .col a:hover,
#shop_list .list_wrap .col a:hover img {
  opacity: 1;
}
#shop_list .list_wrap .col .image {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
}
#shop_list .list_wrap .col .image img {
  border-radius: 10px;
  width: 100%;
}
#shop_list .list_wrap .col .name {
  justify-content: space-between;
  align-items: center;
  gap: 0 10px;
  flex-wrap: nowrap;
  margin: 30px 0;
}
#shop_list .list_wrap .col .name h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  min-height: 2.8em;
  display: flex;
  align-items: center;
}
#shop_list .list_wrap .col .name .btn {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  border: 1px solid var(--mainColor);
  position: relative;
  transition: .3s;
}
#shop_list .list_wrap .col .name .btn.arrow:before {
  content: '';
  width: 16px;
  height: 7px;
  background: url(../../../p_common/images/icon/btn_circle_arrow.png) no-repeat center / contain;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: .3s;
}
#shop_list .list_wrap .col a:hover .name .btn {
  background: var(--mainColor);
}
#shop_list .list_wrap .col a:hover .name .btn:before {
  background: url(../../../p_common/images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
  animation: btnArrow .3s ease-out forwards;
}
#shop_list .list_wrap .col p {
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 600;
  letter-spacing: -.07em;
}
#shop_list .list_wrap .col p.floor {
  margin: 0 0 2px;
}
#shop_list .list_wrap .col .tag_list {
  justify-content: flex-start;
  gap: 8px;
}
#shop_list .list_wrap .col .tag_list li {
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 600;
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
  border-radius: 15px;
  padding: 3px 12px;
}
#shop_list .list_wrap .col .btn_wrap {
  margin-top: 30px;
}
#shop_list .list_wrap .col a.rsv_btn {
  color: #fff;
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 600;
  text-align: center;
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #897d55;
  border-radius: 10px;
  position: relative;
}
#shop_list .list_wrap .col a.rsv_btn:hover {
  opacity: .8;
}
#shop_list .list_wrap .col a.rsv_btn:after {
  content: '';
  width: 12px;
  height: 12px;
  background: url(../../../p_common/images/icon/link_wht.png) no-repeat center / contain;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0,-50%);
}
#shop_list .list_wrap .col .btm_cts {
  width: 100%;
  position: relative;
}
#shop_list #sweets .list_wrap .col {
  gap: 0;
}
#shop_list .btn_list .btn_list_wrap {
  justify-content: flex-start;
  gap: 30px;
}
#shop_list .btn_list .btn_list_wrap a.btn {
  justify-content: center;
  align-items: center;
  width: calc((100% - 30px*2)/3);
  height: 80px;
  text-decoration: none;
  border: 1px solid var(--mainColor);
  background: #fff;
  color: var(--mainColor);
  font-size: 16px;
  line-height: 1.6em;
}
#shop_list .btn_list .btn_list_wrap a.btn span {
  padding: 0 30px 0 0;
  position: relative;
}
#shop_list .btn_list .btn_list_wrap a.btn span:after {
  content: '';
  width: 14px;
  height: 6px;
  background: url(../../../p_common/images/icon/btn_circle_arrow.png) no-repeat center / contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0,-50%);
  transition: .3s;
}
#shop_list .btn_list .btn_list_wrap a.btn:hover {
  color: #fff;
  background: var(--mainColor);
  opacity: 1;
}
#shop_list .btn_list .btn_list_wrap a.btn:hover span:after {
  background: url(../../../p_common/images/icon/btn_circle_arrow_wht.png) no-repeat center / contain;
  right: -5px;
}
#shop_list .btn_list p {
  display: block;
  width: 100%;
  margin: 50px 0 0 0;
  padding: 50px 0 0 0;
  border-top: 1px solid var(--mainColor);
  text-align: center;
}
#shop_list .btn_list .wrap {
  padding-bottom: 0;
}

#intro .main_title {
  color: #897D55;
  margin: 0 0 20px;
}
#intro .main_img {
  display: block;
  margin: 60px 0;
  padding: 0;
  text-align: center;
}

#shop_detail {
  background: #F0F0DC;
}
#shop_detail .wrap {
  padding: 100px 0;
}
#menu .menu_wrap,
#shop_detail .container {
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
#menu .menu_cts:nth-child(even) .menu_wrap {
  flex-direction: row-reverse;
}
#menu .menu_wrap .img_main,
#shop_detail .container .img {
  width: 100%;
  max-width: 580px;
}
#menu .menu_wrap .cts,
#shop_detail .container .detail {
  width: 100%;
  max-width: 500px;
}

#menu .menu_wrap .cts .cts_title,
#shop_detail .container .detail .cts_title {
  text-align: left;
  margin-bottom: 25px;
}
#shop_detail .container .detail table {
  width: 100%;
}
#shop_detail .container .detail table tr {
  border-bottom: 1px solid var(--mainColor);
}
#shop_detail .container .detail table th,
#shop_detail .container .detail table td {
  font-size: 14px;
  line-height: 1.8em;
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
  padding: 1em 0;
}
#shop_detail .container .detail table th {
  width: 25px;
  padding: 0;
}
#shop_detail .container .detail table td.ttl {
  width: 90px;
  text-align: center;
}

#menu .wrap {
  padding-bottom: 100px;
}
#menu .menu_cts + .menu_cts {
  margin-top: 100px;
}
#menu .menu_wrap {
  align-items: flex-end;
}
#menu .menu_wrap .cts .img_list {
  margin: 50px 0 0 0;
  gap: 15px;
}
#menu .menu_wrap .cts .img_list img {
  width: calc((100% - 15px)/2);
}
#menu .menu_wrap img.main {
  width: 100%!important;
  height: auto;
}
#menu .btn_wrap {
  margin-top: 100px;
}
#menu .btn_wrap a.btn {
  max-width: 300px;
  height: 60px;
  background: var(--mainColor);
}




/* ========================================================================================================
   1349px以下
   ========================================================================================================*/
@media screen and (max-width: 1349px) {
}


/* ========================================================================================================
   999px以下
   ========================================================================================================*/
@media screen and (max-width: 999px) {
  
}

/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  #shop_list .list_wrap .col {
    gap: 0;
  }
  #shop_list .wrap {
    padding: 50px 0;
  }
  #shop_list .main_title {
    margin-bottom: 50px;
  }
  #shop_list .list_wrap .col .name h3 {
    font-size: 15px;
    min-height: 2.8em;
  }
  #shop_list .list_wrap .col .name .btn {
    width: 35px;
    height: 35px;
    border-radius: 35px;
  }
  #shop_list .list_wrap .col p {
    font-size: 12px;
    letter-spacing: .05em;
  }
  #shop_list .list_wrap .col .tag_list {
    margin: 20px 0 0 0;
  }
  #shop_list .list_wrap .col .tag_list li {
    font-size: 11px;
  }
  #shop_list .list_wrap .col a.rsv_btn {
    font-size: 14px;
    border-radius: 5px;
  }
  #shop_list .list_wrap .col .btn_wrap {
    margin-top: 25px;
  }
  #shop_list .list_wrap .col {
    padding-bottom: 0;
    position: relative;
  }
  #shop_list .list_wrap .col {
    padding-bottom: 0;
    position: relative;
  }
  #shop_list .list_wrap .col .btm_cts {
    position: relative;
  }
  #shop_list .list_wrap .col .name {
    margin: 15px 0;
  }
  #shop_list:before {
    height: 83%;
    top: 47%;
    transform: translate(0, -50%);
    z-index: -1;
  }
  #shop_list .btn_list .wrap {
    padding: 0;
  }
  #shop_list .btn_list .btn_list_wrap {
    gap: 15px;
  }
  #shop_list .btn_list .btn_list_wrap a.btn {
    width: calc((100% - 15px) / 2);
    font-size: 14px;
    line-height: 1.6em;
  }
  #shop_list .btn_list .btn_list_wrap a.btn span {
    text-align: center;
  }
  #shop_list .btn_list p {
    text-align: left;
    font-size: 20px;
    line-height: 1.5em;
  }
  #intro .main_img {
    margin: 50px 0;
    gap: 20px 15px;
  }
  #menu .menu_wrap .cts .img_list {
    margin: 15px 0 0 0;
  }
  #menu .menu_wrap .cts .cts_title,
  #shop_detail .container .detail .cts_title {
    text-align: left;
    margin-bottom: 15px;
  }
  #menu .btn_wrap a.btn {
    max-width: 100%;
    height: 60px;
  }
  #menu .btn_wrap {
    margin-top: 70px;
  }
  #menu .wrap {
    padding-bottom: 70px;
  }
  #shop_detail .wrap {
    padding: 50px 0;
  }
  #shop_detail .cts_title {
    width: 100%;
    font-size: 24px;
    margin: 0 0 10px;
  }
  #shop_detail .container {
    gap: 40px;
  }
  #menu .menu_wrap p {
    font-size: 14px;
  }
  #menu .menu_cts:nth-child(even) .menu_wrap {
    flex-direction: row;
  }

  
}
/* ========================================================================================================
   499px以下
   ========================================================================================================*/
@media screen and (max-width: 499px) {

}