@charset "UTF-8";



/* ----------------------------
  Pages
---------------------------- */
.footer {
  min-height: 100vh;
  box-sizing: border-box;
}



/* ----------------------------
  Top
---------------------------- */
.top {
  height: 100%;
  position: relative;
}



/* ----------------------------
  Keyvisual
---------------------------- */
.keyvisual {
  background-image: url(../img/cocktail/keyvisual-pc.jpg);
}

@media screen and (max-width: 812px) {
  .keyvisual {
    background-image: url(../img/cocktail/keyvisual-sp.jpg);
  }
}



/* ----------------------------
  Overlay
---------------------------- */
.overlay-inner {
  max-width: 645px;
}

@media screen and (max-width: 812px) {
  .overlay-inner {
    max-width: 85.3333333%;
  }
  .overlay-body {
    line-height: 1.5;
    font-size: 12px;
  }
  .overlay-body small {
    margin-top: 1.5em;
  }
}



/* ----------------------------
  Local Nav
---------------------------- */
.local-nav li {
  margin-left: 60px;
}

@media screen and (max-width: 812px) {
  .local-nav li {
    margin-left: 36px;
  }
}


/* ----------------------------
  Beauty
---------------------------- */
.beauty {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
  height: 100%;
  color: #4f4f50;
}

@media screen and (max-width: 812px) {
  .beauty {
    display: block;
    height: auto;
  }
}


/* Beauty Image
---------------------------- */
.beauty-image {
  width: 50%;
  overflow: hidden;
  position: relative;
}
.beauty-image div {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
  opacity: 0;
  -webkit-transition: all 2.1s;
  transition: all 2.1s;
}
.active .beauty-image div {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .beauty-image {
    padding-top: 93.3333333%;
    width: 100%;
  }
}


/* Beauty Body
---------------------------- */
.beauty-body {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  -webkit-box-pack: center; /* Less than android 4.3 */
  -webkit-justify-content: center; /* Less than iOS8 */
  justify-content: center;
  width: 50%;
}
.beauty-inner {
  padding: 90px 140px 40px 60px;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 812px) {
  .beauty-body {
    display: block;
    width: 100%;
  }
  .beauty-inner {
    padding: 50px 5.3333333% 120px;
  }
}


/* Beauty Box
---------------------------- */
.beauty-box {
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  opacity: 0;
  -webkit-transform: translate(0, 16px);
  transform: translate(0, 16px);
}
.active .beauty-box {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}


/* Beauty Head
---------------------------- */
.beauty-head {
  margin-bottom: 28px;
}
.beauty-head em {
  display: block;
  margin-bottom: 40px;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Signerica Fat", fantasy;
  font-size: 36px;
  color: #7e783d;
}
.beauty-head i {
  margin-left: 20px;
  font-size: 50px;
  font-family: "Chronicle Display Roman", serif;
}
.beauty-head span {
  display: block;
  letter-spacing: 0.01em;
  line-height: 1.35;
  font-size: 20px;
}

@media screen and (max-width: 812px) {
  .beauty-head {
    margin-bottom: 20px;
  }
  .beauty-head em {
    margin-bottom: 36px;
    font-size: 30px;
  }
  .beauty-head i {
    margin-left: 26px;
    font-size: 40px;
  }
  .beauty-head span {
    line-height: 1.422222222;
    font-size: 22.5px;
  }
}

@media screen and (max-width: 320px) {
  .beauty-head span {
    font-size: 20px;
  }
}


/* Beauty Text
---------------------------- */
.beauty-text {
  letter-spacing: 0.01em;
  line-height: 1.923076923;
  font-size: 13px;
}
.beauty-text p {
  margin-top: 24px;
}
.beauty-text p:first-child {
  margin-top: 0;
}

@media screen and (max-width: 812px) {
  .beauty-text {
    line-height: 1.615384615;
  }
  .beauty-text p {
    margin-top: 20px;
  }
}


/* Beauty Button
---------------------------- */
.beauty-button {
  width: 250px;
  position: absolute;
  left: -20px;
  top: 0;
  opacity: 0;
  -webkit-transform: translate(-24px, 0);
  transform: translate(-24px, 0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.active .beauty-button {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.beauty-button button {
  box-shadow: 8px 9px 0 rgba(11, 11, 11, 0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.active .beauty-button button {
  box-shadow: 8px 9px 0 rgba(11, 11, 11, 0.4);
  -webkit-transition-delay: 1.3s;
  transition-delay: 1.3s;
}

@media screen and (max-width: 812px) {
  .beauty-button {
    width: 185px;
    left: 5.3333333%;
    top: -10px;
  }
  .beauty-button button {
    box-shadow: 4px 5px 0 rgba(11, 11, 11, 0);
  }
  .active .beauty-button button {
    box-shadow: 4px 5px 0 rgba(11, 11, 11, 0.4);
  }
}



/* ----------------------------
  Event
---------------------------- */
.event {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-align: center; /* Less than android 4.3 */
  -webkit-align-items: center; /* Less than iOS8 */
  align-items: center;
  -webkit-box-pack: center; /* Less than android 4.3 */
  -webkit-justify-content: center; /* Less than iOS8 */
  justify-content: center;
  padding: 88px 0 54px;
  background: #8e8669;
  color: #fff;
}
.event-inner {
  max-width: 732px;
  width: 100%;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-transition-delay: 0.7s;
  transition-delay: 0.7s;
}
.active .event-inner {
  opacity: 1;
}

@media screen and (max-width: 812px) {
  .event {
    display: block;
    padding: 64px 5.3333333% 40px;
  }
}


/* Event Head
---------------------------- */
.event-head {
  line-height: 1;
  text-align: center;
  font-family: "Neutraface 2 Text", sans-serif;
}
.event-head em {
  display: block;
  letter-spacing: 0.075em;
  font-size: 38px;
}
.event-head span {
  display: block;
  margin-top: 10px;
  letter-spacing: 0.05em;
  font-size: 18px;
}

@media screen and (max-width: 812px) {
  .event-head em {
    letter-spacing: 0.05em;
    font-size: 25px;
  }
  .event-head span {
    line-height: 1.2;
    font-size: 15px;
  }
}


/* Event Info
---------------------------- */
.event-info {
  margin-top: 30px;
  line-height: 1.6;
  text-align: center;
  font-size: 15px;
}
.event-info br {
  display: none;
}

@media screen and (max-width: 812px) {
  .event-info {
    margin-top: 28px;
    font-size: 13px;
  }
}

@media screen and (max-width: 320px) {
  .event-info br {
    display: block;
  }
}


/* event Note
---------------------------- */
.event-note {
  margin-top: 12px;
  text-align: center;
}
.event-note br {
  display: none;
}

@media screen and (max-width: 812px) {
  .event-note {
    margin-top: 28px;
  }
}

@media screen and (max-width: 320px) {
  .event-note br {
    display: block;
  }
}


/* Event List
---------------------------- */
.event-list {
  display: -webkit-box; /* Less than android 4.3 */
  display: -webkit-flex; /* Less than iOS8 */
  display: flex;
  -webkit-box-pack: justify; /* Less than android 4.3 */
  -webkit-justify-content: space-between; /* Less than iOS8 */
  justify-content: space-between;
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.event-list li {
  width: 240px;
}
.event-list a {
  display: block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.event-list a:hover {
  opacity: 0.6;
}
.event-list img {
  max-width: none;
  width: 100%;
}
.event-list p {
  margin: 6px 6px 0 10px;
  line-height: 1.8;
  font-size: 10px;
}

@media screen and (max-width: 812px) {
  .event-list {
    display: block;
    margin-top: 26px;
  }
  .event-list li {
    margin-top: 18px;
    width: 100%;
  }
  .event-list li:first-child {
    margin-top: 0;
  }
  .event-list li:after {
    content: "";
    display: block;
    clear: both;
  }
  .event-list img {
    width: 48.5074627%;
    float: left;
    margin-right: 6.7164179%;
  }
  .event-list p {
    margin: 0;
    line-height: 1.714285714;
    font-size: 10.5px;
    overflow: hidden;
    position: relative;
    top: -4px;
  }
}


/* Event Button
---------------------------- */
.event-button {
  margin: 38px auto 0;
  max-width: 320px;
}

@media screen and (max-width: 812px) {
  .event-button {
    margin-top: 40px;
    max-width: 225px;
  }
}


/* Event Credit
---------------------------- */
.event-credit {
  margin-top: 42px;
  text-align: center;
  line-height: 2.7;
  font-family: "Neutraface 2 Text", sans-serif;
  font-size: 10px;
}

@media screen and (max-width: 812px) {
  .event-credit {
    line-height: 1.842105263;
  }
}


/* Event SNS
---------------------------- */
.event-sns {
  margin-top: 44px;
}

@media screen and (max-width: 812px) {
  .event-sns {
    margin-top: 70px;
  }
}
