@charset "UTF-8";
/* CSS INFORMATION -====================================================
File name : beer.css
Description : ビール＆フード
===================================================================== */
/* =====================================================================
    beer
======================================================================*/
.sub_contents {
  text-align: center;
}

.txt01 {
  text-align: center;
  font-size: 3.2rem;
  line-height: 1.8;
}
.txt01 span {
  font-size: 140%;
}

.txt02 {
  display: block;
  font-size: 2.4rem !important;
  font-weight: 400;
  line-height: 1.6;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px dotted #000;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .txt01 {
    font-size: 2.2rem;
  }
  .txt02 {
    display: inline-block;
    font-size: 1.6rem !important;
    margin: auto;
  }
}
.menu_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 7rem;
  margin-bottom: 14rem;
}
.menu_list li {
  width: calc(50% - 1.5rem);
  margin: 0 3rem 3rem 0;
}
.menu_list li:not(:nth-child(odd)) {
  margin-right: 0;
}
.menu_list li a {
  padding: 2rem;
  border: 2px solid #000;
  box-sizing: border-box;
  text-align: center;
  background: #fff;
  font-size: 4rem;
  border-radius: 1rem;
  transition: all 0.3s;
}
.menu_list li a:hover {
  background: #60bff5;
}
.menu_list li a span {
  display: block;
  padding-top: 0.5rem;
  font-size: 2.6rem;
  color: #b18a2d;
}

@media screen and (min-width: 768px) {
  .menu_list {
    margin-top: 7rem;
    margin-bottom: 14rem;
  }
  .menu_list li {
    width: calc(33.3333333333% - 2rem);
    margin: 0 3rem 0 0;
  }
  .menu_list li:not(:nth-child(odd)) {
    margin-right: auto;
  }
  .menu_list li:last-child {
    margin-right: 0;
  }
  .menu_list li a {
    padding: 2rem;
    font-size: 4rem;
  }
  .menu_list li a span {
    font-size: 2.6rem;
  }
}
.item_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.item_list li {
  width: calc(50% - 2.5rem);
  margin-bottom: 8rem;
  position: relative;
}
.item_list li:not(:nth-child(even)) {
  margin-right: 5rem;
}
.item_list li .photo {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.item_list li .photo:after {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: #fff url(../images/common/icon_plus.svg) no-repeat center center/contain;
  border: 2px solid #000;
  z-index: 2;
}
.item_list li .photo img {
  transition: all 0.3s;
  transform: scale(1);
}
.item_list li .photo:hover img {
  transform: scale(1.2);
}
.item_list li p.store {
  font-size: 3rem;
  display: block;
  position: relative;
  padding-left: 4.5rem;
  text-align: left;
}
.item_list li p.store:after {
  content: "";
  display: block;
  width: 4rem;
  height: 4.8rem;
  position: absolute;
  top: -1.5rem;
  left: 0;
  background: url(../images/beer/icon_beer.svg) no-repeat top left/contain;
  z-index: 1;
}
.food .item_list li p.store:after {
  background: url(../images/beer/icon_food.svg) no-repeat top left/contain;
}
.other .item_list li p.store:after {
  background: url(../images/beer/icon_other.svg) no-repeat top left/contain;
}
.other .item_list li p.t-shirt:after {
  background: url(../images/beer/icon_t-shirt.svg) no-repeat top left/contain;
}

h3.item_tit {
  font-family: "Jost", sans-serif;
  font-size: 7rem;
  text-shadow: 3px 3px 0 #fff;
  padding-bottom: 3rem;
  margin-bottom: 6rem;
  border-bottom: 2px dotted #000;
}

#beer {
  padding-top: 14rem;
  margin-top: -14rem;
}

#food, #other {
  padding-top: 0;
  margin-top: 0;
}

.beer .inner {
  padding-bottom: 0;
  width: 100%;
}

.food .inner,
.other .inner {
  padding: 14rem 0;
}

@media screen and (min-width: 768px) {
  .item_list li {
    width: calc((100% - 15rem) / 4);
    margin-bottom: 8rem;
  }
  .item_list li:not(:nth-child(even)) {
    margin-right: auto;
  }
  .item_list li:not(:nth-child(4n)) {
    margin-right: 5rem;
  }
  .item_list li .photo:after {
    width: 4rem;
    height: 4rem;
  }
  .item_list p.store {
    font-size: 2.2rem !important;
    padding-left: 3.5rem;
  }
  .item_list p.store:after {
    width: 4rem;
    height: 3.7rem;
    top: -1rem;
  }
  h3.item_tit {
    font-size: 5rem;
    padding-bottom: 2.3rem;
    margin-bottom: 5rem;
  }
  #beer {
    padding-top: 24rem;
    margin-top: -24rem;
  }
  #food, #other {
    padding-top: 14rem;
    margin-top: -14rem;
  }
  .beer .inner {
    padding-bottom: 10rem;
    width: 100%;
  }
  .food .inner,
  .other .inner {
    padding: 10rem 0;
  }
}
.popup .half {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.popup .half .logo {
  width: 24rem;
  margin: 5rem auto;
}
.popup .half .img_slider {
  display: block;
  width: 100%;
}
.popup .half .img_slider .slick-dots li button:before {
  font-size: 10px;
}
.popup .half .img_slider .slick-dots li.slick-active button:before {
  color: #ad8b1c;
}
.popup .popup_list {
  height: 70vh;
  overflow-y: scroll;
  padding-right: 2rem;
}
.popup .popup_list::-webkit-scrollbar {
  width: 10px;
}
.popup .popup_list::-webkit-scrollbar-track {
  background-color: #fff;
}
.popup .popup_list::-webkit-scrollbar-thumb {
  background-color: #60bff5;
  border-radius: 8px;
}
.popup .popup_list .info {
  padding-bottom: 4rem;
}
.popup .popup_list p.store {
  display: block;
  font-size: 4rem !important;
  color: #ad8b1c !important;
  padding: 0 0 3rem;
  border-bottom: 2px dotted #ad8b1c;
  text-align: center;
  margin-bottom: 3rem;
}
.popup .popup_list p.txt {
  font-size: 3.2rem;
  line-height: 1.8;
  text-align: left;
  padding-bottom: 10rem;
}
.popup .popup_list a.web {
  display: inline-block;
  font-size: 4rem;
  position: relative;
  padding-left: 12rem;
}
.popup .popup_list a.web::before {
  content: "";
  display: block;
  width: 10.4rem;
  height: 10.4rem;
  border-radius: 50%;
  border: 2px solid #000;
  position: absolute;
  top: calc(50% - 5.2rem);
  left: 0;
  transform: rotate(90deg);
  transition: all 0.3s;
  background: #fdd514 url(../images/common/icon_pagetop.svg) no-repeat top left/contain;
}
.popup .popup_list a.web:hover::before {
  background: #60bff5 url(../images/common/icon_pagetop.svg) no-repeat top left/contain;
}

@media screen and (min-width: 768px) {
  .popup .half {
    width: 90%;
    margin: auto;
    justify-content: space-between;
    flex-direction: row;
  }
  .popup .half .logo {
    width: 27.9069767442%;
    margin: 0;
  }
  .popup .half .img_slider {
    display: block;
    width: 58.1395348837%;
  }
  .popup .popup_list {
    height: 100%;
    max-height: 80vh;
  }
  .popup .popup_list .info {
    padding-bottom: 0;
  }
  .popup .popup_list p.store {
    font-size: 2.8rem;
  }
  .popup .popup_list p.txt {
    font-size: 1.8rem;
    padding-bottom: 4rem;
  }
  .popup .popup_list a.web {
    font-size: 1.8rem;
    padding-left: 5rem;
  }
  .popup .popup_list a.web::before {
    width: 3.6rem;
    height: 3.6rem;
    top: calc(50% - 1.8rem);
  }
}
/* =====================================================================
    slick
======================================================================*/
@media screen and (min-width: 768px) {
  .img_slider {
    overflow: visible;
  }
  .img_slider .slick-prev {
    transform: scale(-1, 1);
    left: -5rem;
    transition: all 0.3s;
  }
  .img_slider .slick-prev:hover {
    transform: scale(-1.7, 1.7);
  }
  .img_slider .slick-next {
    right: -5rem;
    transition: all 0.3s;
  }
  .img_slider .slick-next:hover {
    transform: scale(1.7);
  }
}