﻿@charset "UTF-8";
.p-cocktail-btn {
  border-style: none;
  background-image: -webkit-linear-gradient(left, #ffcd37, #bb7f35);
  background-image: -moz-linear-gradient(left, #ffcd37, #bb7f35);
  background-image: -ms-linear-gradient(left, #ffcd37, #bb7f35);
  background-image: -o-linear-gradient(left, #ffcd37, #bb7f35);
  background-image: linear-gradient(90deg, #ffcd37, #bb7f35);
  color: #ffffff;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
}
.p-cocktail-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.75em;
  height: 0.5em;
  background-color: #ffffff;
  -webkit-mask-image: none;
  mask-image: none;
  clip-path: polygon(0% 0, 50% calc(100% - 30%), 100% 0%, 100% 30%, 50% 100%, 0% 30%);
}
.p-cocktail-btn:hover {
  opacity: 0.8;
}
.p-cocktail__title {
  position: relative;
  overflow: hidden;
}
.p-cocktail__title-bg {
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
}
.p-cocktail__title-bg .p-cocktail__title-bg-img {
  display: block;
  position: absolute;
  top: 0rem;
  right: 0rem;
  bottom: 0rem;
  left: 0rem;
  inset: 0rem;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
}
.p-cocktail__title-inner {
  position: relative;
  z-index: 1;
}
.p-cocktail__title-inner-text {
  padding: 1em;
  text-align: center;
  color: #ffffff;
  font-size: min(3rem, 6vw);
}
.p-cocktail__contents {
  padding: 3.125rem 1.25rem 7.5rem;
  background-image: -webkit-linear-gradient(top, #ebd7b9, white);
  background-image: -moz-linear-gradient(top, #ebd7b9, white);
  background-image: -ms-linear-gradient(top, #ebd7b9, white);
  background-image: -o-linear-gradient(top, #ebd7b9, white);
  background-image: linear-gradient(0deg, #ebd7b9, white);
}
.p-cocktail-items {
  max-width: 75rem;
  width: auto;
  margin-inline: auto;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(25rem, 100%), 1fr));
  grid-gap: 1.875rem;
}
.p-cocktail-items__item {
  padding: min(40px, 5vw);
  grid-row: span 3;
  background-color: #ffffff;
  border-style: solid;
  border-width: 0.125rem;
  border-color: #e2ce9f;
  border-radius: 1.25rem;
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: subgrid;
  grid-template-rows: subgrid;
  grid-gap: 1.25rem;
  box-shadow: 5px 5px 5px #8c644133;
}
.p-cocktail-items__item-title {
  grid-column: span 2;
  padding-bottom: 0.625rem;
  text-align: center;
  font-size: min(2rem, 6vw);
  line-height: 1.5em;
  color: #c3910a;
}
.p-cocktail-items__item-desc {
  font-size: min(1.25rem, 3.75vw);
  line-height: 1.5em;
  font-weight: 700;
}
.p-cocktail-items__item-link {
  padding: 0rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  opacity: 1;
  border-style: none;
  border-radius: 0rem;
  background-color: transparent;
}
.p-cocktail-items__item-link:hover {
  opacity: 0.8;
}
.p-cocktail-items__item-link-image {
  display: block;
  width: 100%;
  height: auto;
}
.p-cocktail-items__item-materials {
  grid-column: span 2;
  color: #c3910a;
}
.p-cocktail-items__item-materials-heading {
  padding-bottom: 0.5em;
  margin-bottom: 1em;
  border-bottom-style: solid;
  border-bottom-width: 0.0625rem;
  font-size: 1.125rem;
  font-weight: 400;
}
.p-cocktail-items__item-materials-items {
  display: -webkit-grid;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
  grid-template-columns: auto 1fr;
  grid-gap: 0.5em 1em;
}
.p-cocktail-items__item-materials-items-name::before {
  content: "・";
}
.p-cocktail-items-modal {
  position: relative;
  max-width: 56.25rem;
  width: auto;
  margin-inline: auto;
}
.p-cocktail-items-modal__video {
  display: block;
  width: 100%;
  height: auto;
}
.p-cocktail-items-modal .p-cocktail-items-modal__close.mfp-close {
  color: white;
}
/*------
  大サイズ
 ------*/
/********************************************************

  モーダルPOPUP

*********************************************************/
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 10000;
  overflow-x: hidden;
}
/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}
/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}
/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 860px;
  width: 90%;
}
/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.modal-close:hover, .modal-close2:hover {
  cursor: pointer;
  opacity: 0.5;
}
/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
}
/*------
  大サイズ
 ------*/
/*------
  小サイズ
 ------*/
@media screen and (min-width: 768px) {
  .single_recipe .making {
    display: flex;
    justify-content: space-between;
  }
  .single_recipe .making > section {
    width: 48%;
  }
  .single_recipe {
    min-width: 0px;
    max-width: 900px;
  }
  .single_recipe .data {
    float: left;
    width: 48%;
  }
  .single_recipe figure.photo {
    float: right;
    width: 48%;
    margin-top: 0;
  }
  .single_recipe .point {
    float: left;
    width: 48%;
    padding-top: 20px;
  }
  .single_recipe .making {
    clear: both;
  }
  .single_recipe .modal-close2 {
    font-size: 50px;
    text-align: right;
    color: #fff;
    font-weight: normal;
    display: inline-block;
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
  }
  .modal-close {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  /*モーダル枠の指定*/
  .modal-container {
    padding: 40px 0;
  }
  .modal-container:before {
    height: 0;
  }
  .modal-body {
    width: 100%;
  }
  .single_recipe .modal-close2 {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -40px;
    right: 0px;
    width: 40px;
    height: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    font-weight: normal;
  }
}
@media screen and (max-width: 767px) {
  .p-section {
    padding-bottom: 40px;
  }
}
.mfp-bg, .mfp-wrap {
  z-index: 10001 !important;
}
/*# sourceMappingURL=./alcholrefreshers.css.map */