@charset "utf-8";
.menu__list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.menu__float-btn, .common__container, .common__container--small {
  box-sizing: content-box;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .menu__float-btn, .common__container, .common__container--small {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

.common__container--small {
  max-width: 1080px;
}

.common__content {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .common__content {
    padding-bottom: 21.3333333333vw;
  }
}

[v-cloak] {
  display: none;
}

body {
  min-width: 0px;
}
body::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
@media screen and (min-width: 769px) {
  body::before {
    background-image: url(/alcohol/rtd/hyoketsu/index/images/pc/20240722/index-bg.jpg);
  }
}
@media screen and (max-width: 768px) {
  body::before {
    background-image: url(/alcohol/rtd/hyoketsu/index/images/sp/20240722/index-bg.jpg);
  }
}
body.fixed {
  overflow: hidden;
  touch-action: none;
}
@media screen and (min-width: 769px) {
  body.fixed {
    padding-right: 15px;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.common {
  position: relative;
}
.common__contents {
  width: 100%;
}
.common__container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.common__container--small {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .common__container--small {
    width: 89.3333333333vw;
  }
}
.common__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .common__content {
    width: 89.3333333333vw;
  }
}
.common__title {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .common__title {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.common__container--white {
  background-color: #ffffff;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .common__container--white {
    padding-top: 26.6666666667vw;
  }
}

.innerlink-target {
  position: absolute;
  width: 1px;
  height: 200px;
  top: -200px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .innerlink-target {
    height: 150px;
    top: -150px;
  }
}

picture {
  display: block;
}

img {
  display: block;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  text-decoration: none;
  cursor: pointer;
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

.mod-link-text {
  /* /assets/css/common.cssから移植 */
  vertical-align: top;
  color: #333;
  position: relative;
  display: inline-block;
  margin-bottom: 0px;
  padding-left: 22px;
}

.mod-link-text::before {
  background-image: url(/assets/images/icon-arrow-02.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  content: "";
  transition: transform 0.2s ease-in-out;
}

@media screen and (min-width: 769px) {
  .mod-link-text {
    padding-left: 24px;
  }
  .mod-link-text::before {
    top: 3px;
    width: 16px;
    height: 16px;
  }
  .mod-link-text:active::before,
  .mod-link-text:focus::before,
  .mod-link-text:hover::before {
    transform: translate3d(4px, 0, 0);
  }
}
/**
 * ----------------------------------------
 * Vue.js animation
 * ----------------------------------------
 */
.fade-enter-active {
  transition: opacity 1s;
}
.fade-leave-active {
  transition: opacity 1s;
}
.fade-enter, .fade-leave-to {
  opacity: 0;
}

:root {
  --fade-translate-x: 0px;
  --fade-translate-y: 0px;
  --fade-duration: 500ms;
}

/* 表示方向 */
.up {
  --fade-translate-x: 0px;
  --fade-translate-y: 50px;
}

.down {
  --fade-translate-x: 0px;
  --fade-translate-y: -50px;
}

.fromLeft {
  --fade-translate-x: -50px;
  --fade-translate-y: 0px;
}

.fromRight {
  --fade-translate-x: 50px;
  --fade-translate-y: 0px;
}

.jsFade {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
  transition-delay: 0ms;
  transform: translate(var(--fade-translate-x), var(--fade-translate-y));
}
.jsFade.speed--100 {
  transition-delay: 100ms;
}
.jsFade.speed--200 {
  transition-delay: 200ms;
}
.jsFade.speed--300 {
  transition-delay: 300ms;
}
.jsFade.speed--400 {
  transition-delay: 400ms;
}
.jsFade.speed--500 {
  transition-delay: 500ms;
}
.jsFade.speed--600 {
  transition-delay: 600ms;
}
.jsFade.speed--700 {
  transition-delay: 700ms;
}
.jsFade.speed--800 {
  transition-delay: 800ms;
}
.jsFade.speed--900 {
  transition-delay: 900ms;
}
.jsFade.speed--1000 {
  transition-delay: 1000ms;
}
.jsFade.speed--1100 {
  transition-delay: 1100ms;
}
.jsFade.speed--1200 {
  transition-delay: 1200ms;
}
.jsFade.speed--1300 {
  transition-delay: 1300ms;
}
.jsFade.speed--1400 {
  transition-delay: 1400ms;
}
.jsFade.speed--1500 {
  transition-delay: 1500ms;
}
.jsFade.speed--1600 {
  transition-delay: 1600ms;
}
.jsFade.speed--1700 {
  transition-delay: 1700ms;
}
.jsFade.speed--1800 {
  transition-delay: 1800ms;
}
.jsFade.speed--1900 {
  transition-delay: 1900ms;
}
.jsFade.speed--2000 {
  transition-delay: 2000ms;
}
.jsFade.speed--2100 {
  transition-delay: 2100ms;
}
.jsFade.speed--2200 {
  transition-delay: 2200ms;
}
.jsFade.speed--2300 {
  transition-delay: 2300ms;
}
.jsFade.speed--2400 {
  transition-delay: 2400ms;
}
.jsFade.speed--2500 {
  transition-delay: 2500ms;
}
.jsFade.speed--2600 {
  transition-delay: 2600ms;
}
.jsFade.speed--2700 {
  transition-delay: 2700ms;
}
.jsFade.speed--2800 {
  transition-delay: 2800ms;
}
.jsFade.speed--2900 {
  transition-delay: 2900ms;
}
.jsFade.speed--3000 {
  transition-delay: 3000ms;
}
.jsFade.delay--100 {
  transition-delay: 100ms;
}
.jsFade.delay--200 {
  transition-delay: 200ms;
}
.jsFade.delay--300 {
  transition-delay: 300ms;
}
.jsFade.delay--400 {
  transition-delay: 400ms;
}
.jsFade.delay--500 {
  transition-delay: 500ms;
}
.jsFade.delay--600 {
  transition-delay: 600ms;
}
.jsFade.delay--700 {
  transition-delay: 700ms;
}
.jsFade.delay--800 {
  transition-delay: 800ms;
}
.jsFade.delay--900 {
  transition-delay: 900ms;
}
.jsFade.delay--1000 {
  transition-delay: 1000ms;
}
.jsFade.delay--1100 {
  transition-delay: 1100ms;
}
.jsFade.delay--1200 {
  transition-delay: 1200ms;
}
.jsFade.delay--1300 {
  transition-delay: 1300ms;
}
.jsFade.delay--1400 {
  transition-delay: 1400ms;
}
.jsFade.delay--1500 {
  transition-delay: 1500ms;
}
.jsFade.delay--1600 {
  transition-delay: 1600ms;
}
.jsFade.delay--1700 {
  transition-delay: 1700ms;
}
.jsFade.delay--1800 {
  transition-delay: 1800ms;
}
.jsFade.delay--1900 {
  transition-delay: 1900ms;
}
.jsFade.delay--2000 {
  transition-delay: 2000ms;
}
.jsFade.delay--2100 {
  transition-delay: 2100ms;
}
.jsFade.delay--2200 {
  transition-delay: 2200ms;
}
.jsFade.delay--2300 {
  transition-delay: 2300ms;
}
.jsFade.delay--2400 {
  transition-delay: 2400ms;
}
.jsFade.delay--2500 {
  transition-delay: 2500ms;
}
.jsFade.delay--2600 {
  transition-delay: 2600ms;
}
.jsFade.delay--2700 {
  transition-delay: 2700ms;
}
.jsFade.delay--2800 {
  transition-delay: 2800ms;
}
.jsFade.delay--2900 {
  transition-delay: 2900ms;
}
.jsFade.delay--3000 {
  transition-delay: 3000ms;
}

.jsScrollIn {
  opacity: 1;
  transform: translate(0, 0);
}

.js-accordion__trigger {
  position: relative;
}
.js-accordion__target {
  overflow: hidden;
}
.js-accordion__target-enter-active {
  transition: all 0.5s ease-in-out;
}
.js-accordion__target-leave-active {
  transition: all 0.5s ease-in-out;
}
.js-accordion__target-enter, .js-accordion__target-leave-to {
  opacity: 0;
}

@media screen and (min-width: 769px) {
  .menu-bar {
    display: none;
  }
}
.menu-bar__container {
  background-image: url(/alcohol/rtd/hyoketsu/components/menu/images/sp/20241112/menu-bar.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.menu-bar__logo {
  width: 90px;
}
.menu-bar__menu {
  width: 90px;
}

.menu__fixed-bg {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 3999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.menu__bg {
  background-repeat: no-repeat;
  background-position: top left;
  background-size: cover;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  .menu__bg {
    background-image: url(/alcohol/rtd/hyoketsu/components/menu/images/pc/20241112/bg-menu.jpg);
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .menu__bg {
    background-image: url(/alcohol/rtd/hyoketsu/components/menu/images/sp/20241112/bg-menu.jpg);
    width: 100%;
  }
}
.menu__container {
  position: relative;
  border: 1px solid transparent;
  height: 100vh;
}
@media screen and (min-width: 769px) {
  .menu__container {
    max-width: 510px;
  }
}
@media screen and (max-width: 768px) {
  .menu__container {
    max-width: 100%;
    width: 100%;
  }
}
.menu__close-btn {
  position: absolute;
}
@media screen and (min-width: 769px) {
  .menu__close-btn {
    width: 77px;
    top: 0;
    padding: 25px;
    box-sizing: content-box;
    right: 2.9411764706%;
    filter: drop-shadow(0px 2px 20px rgba(14, 14, 14, 0.3));
  }
}
@media screen and (max-width: 768px) {
  .menu__close-btn {
    width: 12.6666666667vw;
    padding: 4vw;
    box-sizing: content-box;
    right: 0;
    top: 65px;
    filter: drop-shadow(0px 1px 10px rgba(14, 14, 14, 0.4));
  }
}
.menu__float-btn {
  position: fixed;
  z-index: 4000;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
}
.menu__open-btn {
  position: absolute;
  z-index: 9999;
}
@media screen and (min-width: 769px) {
  .menu__open-btn {
    width: 77px;
    top: 30px;
    right: 30px;
    filter: drop-shadow(0px 2px 20px rgba(14, 14, 14, 0.3));
  }
}
@media screen and (max-width: 768px) {
  .menu__open-btn {
    width: 12.6666666667vw;
    padding: 2.6666666667vw;
    box-sizing: content-box;
    top: 0;
    right: 0;
    filter: drop-shadow(0px 1px 10px rgba(14, 14, 14, 0.4));
  }
}
@media screen and (max-width: 768px) {
  .menu__list {
    margin-top: 75px;
  }
}
.menu__list a {
  width: 100%;
}
.menu__list a picture {
  width: 100%;
}
.menu__list a.menu__hyoketsu {
  padding: 0;
  margin: auto;
  margin-top: 60px;
  margin-bottom: 10px;
  width: 97px;
}
@media screen and (max-width: 768px) {
  .menu__list a.menu__hyoketsu {
    margin-top: 10.6666666667vw;
    width: 100%;
  }
}
.menu__list a.menu__top {
  padding: 20px 0;
}
.menu__list .item + li {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .menu__list .item + li {
    margin-top: 20px;
  }
}
.menu__list .item > a.menu__top {
  padding: 20px 0 10px 0;
}
.menu__list .item > ul > li a {
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .menu__list .item > ul > li a {
    padding: 15px 0;
  }
}
.menu-float {
  overflow: hidden;
  transform: translateX(100%);
}
.menu-float-enter-active {
  transition: all 0.5s ease-in-out;
  opacity: 1;
  transform: translateX(0);
}
.menu-float-leave-active {
  transition: all 0.5s ease-in-out;
  opacity: 1;
  transform: translateX(0);
}
.menu-float-enter, .menu-float-leave-to {
  opacity: 0;
  transform: translateX(100%);
}

.float {
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  z-index: 3000;
}
@media screen and (min-width: 769px) {
  .float {
    margin-bottom: 50px;
  }
}
.float__container {
  position: relative;
  height: 162px;
}
@media screen and (max-width: 768px) {
  .float__container {
    height: 14.8vw;
  }
}
.float__brandsite {
  transition: all 0.3s;
}
.float__brandsite:hover {
  opacity: 0.7;
  cursor: pointer;
}
.float__brandsite.fixed {
  position: fixed;
  bottom: 50px;
  right: 0;
  z-index: 3000;
}
@media screen and (max-width: 768px) {
  .float__brandsite.fixed {
    bottom: 0;
  }
}