@charset "UTF-8";
.cont__center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cont__center > * {
  min-height: 0%;
}

.cont__container, .cont__container--small {
  box-sizing: content-box !important;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .cont__container, .cont__container--small {
    max-width: 89.3333333333vw;
    padding-left: 0;
    padding-right: 0;
  }
}

.cont__container--small {
  max-width: 990px;
}
@media screen and (max-width: 768px) {
  .cont__container--small {
    max-width: 89.3333333333vw;
  }
}

.link {
  color: inherit;
  transition: opacity 0.3s;
  cursor: pointer;
}
.link:hover {
  opacity: 0.7;
}

/* common:start */
[v-cloak] {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcOnly {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .spOnly {
    display: none !important;
  }
}

.js-fade {
  opacity: 0;
  transition: 0.4s all;
  transform: translateY(5%);
}
.js-fade-active {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.bg-foot {
  position: relative;
  z-index: 2;
  background-color: #fff;
  padding-top: 15px;
}

@keyframes yurayura {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
.wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
}

.canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* 下にあるボタンなどをクリックできるようにする */
  z-index: 1;
}

/* フェードインする要素の初期状態（非表示） */
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  /* 少し下からスタート */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* 画面内に入ったときに適用されるクラス */
.js-fade-active {
  opacity: 1;
  transform: translateY(0);
  /* 元の位置に戻る */
}

/* common:end */
/* kv:start */
.kv {
  background: #F6EEDC;
  background: linear-gradient(180deg, rgb(246, 238, 220) 0%, rgb(255, 255, 255) 100%);
  /* ====================================
    遅延フェードインのベーススタイル (.js-delay-fadeを持つ要素に適用)
    ==================================== */
  /* フェードイン対象要素 */
  /* ====================================
  	表示時のスタイル (JSで付与されるクラス)
  	==================================== */
}
.kv__container {
  background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/kv_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .kv__container {
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/kv_bg_sp.png);
    background-size: 100%;
    padding-bottom: 66.5333333333vw;
  }
}
.kv__images {
  position: relative;
  width: 100%;
}
.kv__images img {
  width: 100%;
}
.kv h1 {
  margin: 0;
}
.kv__image {
  position: absolute;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
}
.kv .js-kv__image01 {
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .kv .js-kv__image01 {
    z-index: 4;
  }
}
.kv .js-kv__image02 {
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .kv .js-kv__image02 {
    z-index: 3;
  }
}
.kv .js-kv__image03 {
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .kv .js-kv__image03 {
    z-index: 3;
  }
}
.kv .js-kv__image04 {
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .kv .js-kv__image04 {
    z-index: 4;
  }
}
.kv .js-kv__image05 {
  z-index: 3;
}
.kv .js-kv__image06 {
  position: relative;
  z-index: 1;
  margin: 0;
}
.kv .js-kv__image01,
.kv .js-kv__image02,
.kv .js-kv__image03,
.kv .js-kv__image04,
.kv .js-kv__image05,
.kv .js-kv__image06 {
  /* 初期状態: 非表示 */
  opacity: 0;
  /* 任意: わずかな動きを追加してよりリッチに */
  /* transform: translateY(10px); */
  /* アニメーションの時間を定義 */
  transition: opacity 1.2s ease-out;
  /* 0.8秒かけてフェードイン */
  /* transition: opacity 0.8s ease-out, transform 0.8s ease-out; */
  /* 動きも加える場合 */
}
.kv .js-kv__image01,
.kv .js-kv__image02,
.kv .js-kv__image03,
.kv .js-kv__image04,
.kv .js-kv__image05,
.kv .js-kv__image06 {
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
  transform: translateY(20px) translateX(-50%);
}
.kv .js-kv__image01.is-show,
.kv .js-kv__image02.is-show,
.kv .js-kv__image03.is-show,
.kv .js-kv__image04.is-show,
.kv .js-kv__image05.is-show,
.kv .js-kv__image06.is-show {
  transform: translateY(0) translateX(-50%);
}
.kv .js-kv__image01.is-show,
.kv .js-kv__image02.is-show,
.kv .js-kv__image03.is-show,
.kv .js-kv__image04.is-show,
.kv .js-kv__image05.is-show,
.kv .js-kv__image06.is-show {
  /* 表示状態: 透明度を戻す */
  opacity: 1;
  /* 任意: 動きを元に戻す */
  /* transform: translateY(0); */
}
.kv__caution {
  position: absolute;
  width: 782px;
  left: 50%;
  bottom: 126px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1366px) {
  .kv__caution {
    width: 57.2474377745vw;
    bottom: 9.224011713vw;
  }
}
@media screen and (max-width: 768px) {
  .kv__caution {
    width: 89.2vw;
    bottom: 48.5333333333vw;
  }
}

/* kv:end */
/* index:start */
.index {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 805px;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 1366px) {
  .index {
    max-width: 58.9311859444vw;
  }
}
@media screen and (max-width: 768px) {
  .index {
    max-width: none;
    flex-wrap: wrap;
    width: 94.9333333333vw;
  }
}
.index__btn {
  position: relative;
  background-color: #FF6FA2;
  text-align: center;
  width: 260px;
  height: 78px;
  color: #fff;
  font-family: "Noto Sans JP";
  border-radius: 40px;
  font-size: 16px;
  font-weight: bold;
  transition: 0.3s opacity;
  line-height: 1.4375;
}
@media screen and (max-width: 1366px) {
  .index__btn {
    width: 19.0336749634vw;
    height: 5.710102489vw;
    border-radius: 2.9282576867vw;
    font-size: 1.1713030747vw;
  }
}
@media screen and (max-width: 768px) {
  .index__btn {
    width: 46.1333333333vw;
    height: 16.8vw;
    font-size: 3.2vw;
    line-height: 1.3333333333;
    border-radius: 8.8vw;
  }
}
.index__btn::after {
  position: absolute;
  content: "";
  display: block;
  background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/anchor_arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 16.5px;
  height: 16.5px;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1366px) {
  .index__btn::after {
    width: 1.2079062958vw;
    height: 1.2079062958vw;
    bottom: 0.6588579795vw;
  }
}
@media screen and (max-width: 768px) {
  .index__btn::after {
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/anchor_arrow_sp.png);
    width: 4.2666666667vw;
    height: 4.2666666667vw;
    bottom: 1.8666666667vw;
  }
}
.index__btn:first-child {
  padding: 22px 32px;
}
@media screen and (max-width: 1366px) {
  .index__btn:first-child {
    padding: 1.6105417277vw 2.3426061493vw;
  }
}
@media screen and (max-width: 768px) {
  .index__btn:first-child {
    padding: 2.2666666667vw 0 5.3333333333vw;
    margin-right: 2.1333333333vw;
  }
}
.index__btn:not(:first-child) {
  margin-left: 14px;
  padding: 8px 24px;
}
@media screen and (max-width: 1366px) {
  .index__btn:not(:first-child) {
    margin-left: 1.0248901903vw;
    padding: 0.5856515373vw 1.756954612vw;
  }
}
@media screen and (max-width: 768px) {
  .index__btn:not(:first-child) {
    padding: 2.2666666667vw 0 5.3333333333vw;
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .index__btn:last-child {
    margin-top: 4.2666666667vw;
  }
}
.index__btn:hover {
  opacity: 0.7;
}

/* index:end */
/* lead:start */
.lead {
  margin-top: 188px;
}
@media screen and (max-width: 1366px) {
  .lead {
    margin-top: 13.7628111274vw;
  }
}
@media screen and (max-width: 768px) {
  .lead {
    margin-top: 29.6vw;
  }
}
.lead__text {
  width: 506px;
  margin: 0 auto;
}
@media screen and (max-width: 1366px) {
  .lead__text {
    width: 37.0424597365vw;
  }
}
@media screen and (max-width: 768px) {
  .lead__text {
    width: 87.2vw;
  }
}

/* lead:end */
/* package:start */
.package {
  padding-top: 148px;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 226, 236) 100%);
  margin-bottom: -1px;
}
@media screen and (max-width: 1366px) {
  .package {
    padding-top: 10.8345534407vw;
  }
}
@media screen and (max-width: 768px) {
  .package {
    padding-top: 51.0666666667vw;
  }
}
.package__container {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .package__container {
    max-width: none;
  }
}
.package__bg {
  background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/package_bg.png);
  background-position: bottom center;
  background-size: contain;
  background-repeat: repeat-x;
  padding-bottom: 190px;
}
@media screen and (max-width: 1366px) {
  .package__bg {
    padding-bottom: 13.9092240117vw;
  }
}
@media screen and (max-width: 768px) {
  .package__bg {
    background-image: none;
    padding-bottom: 18.6666666667vw;
  }
}
.package__title {
  width: 100%;
  position: relative;
}
.package__title-date {
  width: 17.8623718887%;
  position: absolute;
  top: 61.5853658537%;
  left: 15.1537335286%;
}
@media screen and (max-width: 768px) {
  .package__title-date {
    width: 40.9333333333vw;
    top: -30.2666666667vw;
    left: auto;
    right: 11.3333333333vw;
  }
}
.package__products {
  margin-top: 3.6603221083%;
  margin-inline: auto 7.1742313324%;
  width: 83.0893118594%;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .package__products {
    width: 89.2vw;
    margin-top: 13.3333333333vw;
    margin-inline: auto;
    flex-direction: column;
  }
}
.package__product {
  position: relative;
}
.package__product-01 {
  width: 35.5947136564%;
  margin-top: 21.0572687225%;
  margin-right: 0.8810572687%;
}
@media screen and (max-width: 768px) {
  .package__product-01 {
    width: 100%;
    margin-top: 0;
    margin-right: auto;
  }
}
.package__product-01-btn {
  width: 35.6435643564%;
  top: -12.1848739496%;
  right: 16.0891089109%;
}
@media screen and (max-width: 768px) {
  .package__product-01-btn {
    width: 37.6vw;
    top: 5.7333333333vw;
    right: 0;
  }
}
.package__product-02 {
  width: 28.0176211454%;
  margin-right: 4.6696035242%;
}
@media screen and (max-width: 768px) {
  .package__product-02 {
    width: 100%;
    margin-top: 22.2666666667vw;
    margin-right: auto;
  }
}
.package__product-02-btn {
  width: 45.2830188679%;
  top: 14.3703703704%;
  right: -16.6666666667%;
}
@media screen and (max-width: 768px) {
  .package__product-02-btn {
    width: 37.6vw;
    top: 33.4666666667vw;
    left: 0;
  }
}
.package__product-03 {
  width: 30.8370044053%;
  margin-top: 22.6431718062%;
}
@media screen and (max-width: 768px) {
  .package__product-03 {
    width: 100%;
    margin-top: 20.4vw;
    margin-right: auto;
  }
}
.package__product-03-btn {
  width: 41.1428571429%;
  top: 25.1069900143%;
  right: -6.2857142857%;
}
@media screen and (max-width: 768px) {
  .package__product-03-btn {
    width: 37.6vw;
    top: 4.6666666667vw;
    right: 2.6666666667vw;
  }
}
.package__product-btn {
  position: absolute;
}
.package__caution {
  width: 782px;
  margin-inline: auto;
  margin-top: 44px;
}
@media screen and (max-width: 1366px) {
  .package__caution {
    width: 57.2474377745vw;
    margin-top: 3.2210834553vw;
  }
}
@media screen and (max-width: 768px) {
  .package__caution {
    width: 89.2vw;
    margin-top: 8.5333333333vw;
  }
}
.package__project {
  margin-top: 45px;
}
@media screen and (max-width: 1366px) {
  .package__project {
    margin-top: 3.2942898975vw;
  }
}
@media screen and (max-width: 768px) {
  .package__project {
    margin-top: 11.0666666667vw;
  }
}

/* package:end */
/* follow:start */
.follow {
  background-color: #EB5C01;
  padding-top: 85px;
  padding-bottom: 110px;
}
@media screen and (max-width: 1366px) {
  .follow {
    padding-top: 6.2225475842vw;
    padding-bottom: 8.0527086384vw;
  }
}
@media screen and (max-width: 768px) {
  .follow {
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/package_bg_sp.png);
    background-position: top center;
    background-size: 100%;
    background-repeat: no-repeat;
    padding-top: 22.6666666667vw;
    padding-bottom: 21.3333333333vw;
  }
}
.follow__container {
  max-width: 1366px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.follow__logo {
  width: 305px;
  margin-top: -3px;
  margin-inline: auto;
}
@media screen and (max-width: 1366px) {
  .follow__logo {
    width: 22.3279648609vw;
    margin-top: -0.2196193265vw;
  }
}
@media screen and (max-width: 768px) {
  .follow__logo {
    width: 43.7333333333vw;
    margin-top: 0;
  }
}
.follow__icon {
  width: 177px;
  margin-top: 105px;
  margin-inline: auto;
}
@media screen and (max-width: 1366px) {
  .follow__icon {
    width: 12.9575402635vw;
    margin-top: 7.6866764275vw;
  }
}
@media screen and (max-width: 768px) {
  .follow__icon {
    width: 31.0666666667vw;
    margin-top: 16.2666666667vw;
  }
}
.follow__title-head {
  margin-top: -7px;
  margin-bottom: -8px;
}
@media screen and (max-width: 1366px) {
  .follow__title-head {
    margin-top: -0.5124450952vw;
    margin-bottom: -0.5856515373vw;
  }
}
@media screen and (max-width: 768px) {
  .follow__title-head {
    margin-top: 1.8666666667vw;
    margin-bottom: -1.0666666667vw;
  }
}
.follow__lead {
  margin-top: 118px;
  margin-inline: auto;
}
@media screen and (max-width: 1366px) {
  .follow__lead {
    margin-top: 8.6383601757vw;
  }
}
@media screen and (max-width: 768px) {
  .follow__lead {
    margin-top: 13.3333333333vw;
  }
}
.follow__text {
  font-size: 34px;
  color: #fff;
  text-align: center;
  margin-top: 47px;
  font-family: "Noto Sans JP";
  font-weight: bold;
}
@media screen and (max-width: 1366px) {
  .follow__text {
    font-size: 2.4890190337vw;
    margin-top: 3.4407027818vw;
  }
}
@media screen and (max-width: 768px) {
  .follow__text {
    font-size: 5.0666666667vw;
    line-height: 1.5263157895;
    margin-top: 8vw;
    letter-spacing: 0.065em;
  }
}
.follow__term {
  width: 880px;
  margin-top: 72px;
  margin-inline: auto;
}
@media screen and (max-width: 1366px) {
  .follow__term {
    width: 64.4216691069vw;
    margin-top: 5.270863836vw;
  }
}
@media screen and (max-width: 768px) {
  .follow__term {
    width: 89.3333333333vw;
    margin-top: 16vw;
  }
}

/* follow:end */
/* collabo:start */
.collabo__title {
  background-color: #FFD446;
  padding: 11px 0 8px;
  position: relative;
}
@media screen and (max-width: 1366px) {
  .collabo__title {
    padding: 0.8052708638vw 0 0.5856515373vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__title {
    padding: 1.8666666667vw 0 1.0666666667vw;
  }
}
.collabo__title::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #46210E;
  width: 100%;
  height: 3px;
  top: 11px;
  left: 0;
}
@media screen and (max-width: 1366px) {
  .collabo__title::before {
    height: 0.2196193265vw;
    top: 0.8052708638vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__title::before {
    height: 0.4vw;
    top: 1.4vw;
  }
}
.collabo__title::after {
  display: block;
  content: "";
  position: absolute;
  background-color: #46210E;
  width: 100%;
  height: 3px;
  bottom: 8px;
  left: 0;
}
@media screen and (max-width: 1366px) {
  .collabo__title::after {
    height: 0.2196193265vw;
    bottom: 0.5856515373vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__title::after {
    height: 0.4vw;
    bottom: 1.0666666667vw;
  }
}
.collabo__title-text {
  display: block;
  width: 588px;
  margin: 0 auto;
  padding: 23px 0 24px;
}
@media screen and (max-width: 1366px) {
  .collabo__title-text {
    width: 43.0453879941vw;
    padding: 1.6837481698vw 0 1.756954612vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__title-text {
    width: 78.4vw;
    padding: 2.6666666667vw 0 2.8vw;
  }
}
.collabo__bg {
  background-color: #E8D4B1;
  background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/collabo_body_bg.png);
  background-repeat: no-repeat;
  background-size: 1920px;
  background-position: top center;
}
@media screen and (max-width: 1366px) {
  .collabo__bg {
    background-size: 140.5563689605vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__bg {
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/collabo_bg_sp.png);
    background-size: 100%;
    padding-top: 82vw;
    background-position: top center;
  }
}
.collabo__body {
  padding-top: 230px;
  padding-bottom: 65px;
  padding-left: 75px;
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1366px) {
  .collabo__body {
    background-image: none;
    padding-top: 16.8374816984vw;
    padding-bottom: 4.7584187408vw;
    padding-left: 5.4904831625vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__body {
    padding-top: 0;
    background-color: #fff;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    display: block;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
    padding-bottom: 7.4666666667vw;
  }
}
.collabo__contents {
  padding-right: 40px;
}
@media screen and (max-width: 1366px) {
  .collabo__contents {
    padding-right: 2.9282576867vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__contents {
    padding-right: 0;
    padding-top: 8vw;
  }
}
.collabo__lead {
  width: 521px;
}
@media screen and (max-width: 1366px) {
  .collabo__lead {
    width: 38.140556369vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__lead {
    width: 100%;
  }
}
.collabo__text {
  width: 528px;
  margin-top: 23px;
}
@media screen and (max-width: 1366px) {
  .collabo__text {
    width: 38.6530014641vw;
    margin-top: 1.4641288433vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__text {
    width: 100%;
    margin-top: 4vw;
  }
}
.collabo__btn {
  display: block;
  width: 481px;
  text-align: center;
  color: #fff;
  font-size: 26px;
  line-height: 1.2307692308;
  font-weight: bold;
  font-family: "Noto Sans JP";
  background-color: #EB5C01;
  border-radius: 43px;
  padding: 26px 0 27px;
  margin-top: 40px;
  transition: 0.2s opacity;
}
@media screen and (max-width: 1366px) {
  .collabo__btn {
    width: 35.2122986823vw;
    font-size: 1.9033674963vw;
    border-radius: 3.1478770132vw;
    padding: 1.9033674963vw 0 1.9765739385vw;
    margin-top: 2.9282576867vw;
  }
}
@media screen and (max-width: 768px) {
  .collabo__btn {
    width: 100%;
    margin-top: 5.3333333333vw;
    font-size: 5.3333333333vw;
    line-height: 1.1;
    padding: 6.1333333333vw 0 6.4vw;
    border-radius: 34.5333333333vw;
  }
}
.collabo__btn:hover {
  opacity: 0.7;
}

/* collabo:end */
/* entry:start */
.entry {
  background-color: #EB5C01;
  padding-top: 132px;
  padding-bottom: 123px;
  /* アコーディオンの開閉 */
  /* アコーディオンの初期状態（非表示） */
  /* ボタンの開閉状態の見た目 */
}
@media screen and (max-width: 1366px) {
  .entry {
    padding-top: 9.663250366vw;
    padding-bottom: 9.0043923865vw;
  }
}
@media screen and (max-width: 768px) {
  .entry {
    padding-top: 18.6666666667vw;
    padding-bottom: 34.6666666667vw;
  }
}
.entry__container {
  max-width: 912px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1366px) {
  .entry__container {
    max-width: 66.7642752562vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__container {
    max-width: none;
    width: 89.2vw;
  }
}
.entry__title {
  width: 100.4385964912%;
  margin: 0 auto 47px;
}
@media screen and (max-width: 1366px) {
  .entry__title {
    margin-bottom: 3.4407027818vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__title {
    width: 85.0666666667vw;
    margin-bottom: 10vw;
  }
}
.entry__swiper {
  position: relative;
}
.entry__swiper-container {
  display: flex;
}
.entry__swiper-slide {
  position: relative;
  width: 31.5789473684%;
}
.entry__swiper-slide:not(:last-child) {
  margin-right: 25px;
}
@media screen and (max-width: 1366px) {
  .entry__swiper-slide:not(:last-child) {
    margin-right: 1.8301610542vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__swiper-slide {
    width: 89.2vw;
  }
}
.entry__swiper-slide img {
  width: 100%;
}
.entry__swiper-step {
  position: absolute;
  width: 19.4444444444%;
  top: -7.0539419087%;
  left: -2.7777777778%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .entry__swiper-step {
    width: 20vw;
    top: -4.8vw;
    left: -3.0666666667vw;
  }
}
.entry__acc {
  border: 1px solid #fff;
  border-radius: 40px;
  margin-top: 56px;
  position: relative;
  z-index: 10;
  background-color: #EB5C01;
  margin-inline: auto;
}
@media screen and (max-width: 1366px) {
  .entry__acc {
    border-radius: 2.9282576867vw;
    margin-top: 4.0995607613vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc {
    border-radius: 7.6vw;
    margin-top: 6.4vw;
    width: 88.2666666667vw;
  }
}
.entry__acc-btn {
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  font-size: 20px;
  font-family: "Noto Sans JP";
  font-weight: bold;
  padding: 22px 0;
  line-height: 1;
  cursor: pointer;
  position: relative;
  border: none;
  background-color: transparent;
}
@media screen and (max-width: 1366px) {
  .entry__acc-btn {
    font-size: 1.4641288433vw;
    padding: 1.6105417277vw 0;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-btn {
    font-size: 3.7333333333vw;
    line-height: 1.2857142857;
    padding: 4.9333333333vw 0;
  }
}
.entry__acc-btn::before {
  display: block;
  content: "";
  position: absolute;
  background-color: #fff;
  width: 20px;
  height: 2px;
  right: 28px;
  top: 50%;
  transform: translate(-50%);
}
@media screen and (max-width: 1366px) {
  .entry__acc-btn::before {
    width: 1.4641288433vw;
    height: 0.1464128843vw;
    right: 2.0497803807vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-btn::before {
    width: 4vw;
    height: 0.4vw;
    right: 2.4vw;
  }
}
.entry__acc-btn::after {
  display: block;
  content: "";
  position: absolute;
  background-color: #fff;
  width: 20px;
  height: 2px;
  right: 28px;
  top: 50%;
  transform: translate(-50%) rotate(90deg);
  transition: 0.2s transform;
}
@media screen and (max-width: 1366px) {
  .entry__acc-btn::after {
    width: 1.4641288433vw;
    height: 0.1464128843vw;
    right: 2.0497803807vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-btn::after {
    width: 4vw;
    height: 0.4vw;
    right: 2.4vw;
  }
}
.entry__acc-inner {
  color: #fff;
  font-family: "Noto Sans JP";
  padding-right: 5px;
}
@media screen and (max-width: 1366px) {
  .entry__acc-inner {
    padding-right: 0.3660322108vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-inner {
    padding-right: 1.2vw;
  }
}
.entry__acc-block {
  padding: 20px 0 40px;
}
@media screen and (max-width: 1366px) {
  .entry__acc-block {
    padding: 1.4641288433vw 0 2.9282576867vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-block {
    padding: 2.6666666667vw 0 4.4vw;
  }
}
.entry__acc-content {
  padding: 0 40px;
  max-height: 450px;
  overflow: auto;
}
@media screen and (max-width: 1366px) {
  .entry__acc-content {
    padding: 0 2.9282576867vw;
    max-height: 32.9428989751vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-content {
    padding: 0 4.9333333333vw;
    max-height: 114.1333333333vw;
  }
}
.entry__acc-content::-webkit-scrollbar {
  background-color: #fff;
  width: 10px;
  border-radius: 13px;
}
@media screen and (max-width: 1366px) {
  .entry__acc-content::-webkit-scrollbar {
    width: 0.7320644217vw;
    border-radius: 0.9516837482vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-content::-webkit-scrollbar {
    width: 1.6vw;
    border-radius: 13.3333333333vw;
  }
}
.entry__acc-content::-webkit-scrollbar-thumb {
  background-color: #a0a0a0;
  border-radius: 13px;
}
@media screen and (max-width: 1366px) {
  .entry__acc-content::-webkit-scrollbar-thumb {
    border-radius: 0.9516837482vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-content::-webkit-scrollbar-thumb {
    border-radius: 13.3333333333vw;
  }
}
.entry__acc-textLa {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.5;
}
@media screen and (max-width: 1366px) {
  .entry__acc-textLa {
    font-size: 1.4641288433vw;
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-textLa {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 16px;
  }
}
.entry__acc-textSm {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.875;
}
@media screen and (max-width: 1366px) {
  .entry__acc-textSm {
    font-size: 1.1713030747vw;
    margin-bottom: 0.5856515373vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__acc-textSm {
    font-size: 13px;
    line-height: 1.7692307692;
    margin-bottom: 12px;
  }
}
.entry__acc-textSm li {
  padding-left: 1em;
  text-indent: -1em;
}
.entry__acc-textMr1 {
  margin-top: 1em;
}
.entry .js-accordion:hover {
  cursor: pointer;
}
.entry .js-accordion-inner {
  height: 0;
  overflow: hidden;
  transition: 0.3s height;
}
.entry .js-accordion::after {
  transition: 0.2s transform;
}
.entry .js-accordion.is-open::after {
  transform: translate(-50%) rotate(0);
}
@media screen and (max-width: 768px) {
  .entry .swiper-button-prev::after,
  .entry .swiper-button-next::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    height: 60px;
    width: 60px;
    margin: auto;
  }
}
.entry .swiper-button-next {
  display: none;
}
@media screen and (max-width: 768px) {
  .entry .swiper-button-next {
    display: block;
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/entry_arrow02_sp.png);
    background-size: contain;
    width: 5.2vw;
    height: 5.2vw;
    right: 2.5333333333vw;
    margin-top: -2vw;
  }
}
.entry .swiper-button-prev {
  display: none;
}
@media screen and (max-width: 768px) {
  .entry .swiper-button-prev {
    display: block;
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/entry_arrow01_sp.png);
    background-size: contain;
    width: 5.2vw;
    height: 5.2vw;
    left: 2.5333333333vw;
    margin-top: -2vw;
  }
}
.entry__btn {
  display: block;
  width: 912px;
  border: 2px solid #fff;
  background-color: #fff;
  padding: 3px;
  margin-top: 70px;
  margin-inline: auto;
  position: relative;
  transition: 0.3s all;
}
@media screen and (max-width: 1366px) {
  .entry__btn {
    width: 66.7642752562vw;
    border-width: 0.1464128843vw;
    padding: 0.2196193265vw;
    margin-top: 5.1244509517vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__btn {
    width: 89.0666666667vw;
    border-width: 0.2666666667vw;
    padding: 0.4vw;
    margin-top: 16vw;
  }
}
.entry__btn-container {
  display: inline-block;
  width: 100%;
  border: 2px solid #EB5C02;
  font-family: "Noto Sans JP";
  text-align: center;
  color: #EB5C02;
  font-weight: bold;
  font-size: 32px;
  padding-block: 20px;
  transition: 0.3s all;
}
@media screen and (max-width: 1366px) {
  .entry__btn-container {
    border-width: 0.1464128843vw;
    font-size: 2.3426061493vw;
    padding-block: 1.4641288433vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__btn-container {
    border-width: 0.4vw;
    font-size: 6.4vw;
    padding-block: 4.6666666667vw;
  }
}
.entry__btn::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 13px solid #EB5C01;
  border-right: 0;
  right: 37px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s all;
}
@media screen and (max-width: 1366px) {
  .entry__btn::after {
    border-top: 0.6588579795vw solid transparent;
    border-bottom: 0.6588579795vw solid transparent;
    border-left: 0.9516837482vw solid #EB5C01;
    right: 2.7086383602vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__btn::after {
    border-top: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 2.4vw solid #EB5C01;
    right: 4.6666666667vw;
  }
}
.entry__btn:hover {
  background-color: #EB5C01;
}
.entry__btn:hover.entry__btn::after {
  border-left: 13px solid #fff;
}
@media screen and (max-width: 1366px) {
  .entry__btn:hover.entry__btn::after {
    border-left: 0.9516837482vw solid #fff;
  }
}
@media screen and (max-width: 768px) {
  .entry__btn:hover.entry__btn::after {
    border-left: 2.4vw solid #fff;
  }
}
.entry__btn:hover .entry__btn-container {
  border-color: #fff;
  background-color: #EB5C01;
  color: #fff;
}
.entry__caution {
  font-size: 20px;
  line-height: 2.35;
  font-family: "Noto Sans JP";
  color: #fff;
  text-align: center;
  margin-top: 3px;
}
@media screen and (max-width: 1366px) {
  .entry__caution {
    font-size: 1.4641288433vw;
    margin-top: 0.2196193265vw;
  }
}
@media screen and (max-width: 768px) {
  .entry__caution {
    font-size: 4vw;
    line-height: 1.5666666667;
    margin-top: 2.1333333333vw;
  }
}

/* entry:end */
/* event:start */
.event {
  margin-top: -1px;
  background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/event_bg.png), url(/alcohol/beer/ichiban/spring-campaigns/images/event_body_bg.png);
  background-position: top center, top center;
  background-repeat: no-repeat;
  background-size: 1920px;
  background-color: #EB5C01;
}
@media screen and (min-width: 1921px) {
  .event {
    background-size: 100%;
  }
}
@media screen and (max-width: 1366px) {
  .event {
    background-size: 140.5563689605vw;
  }
}
@media screen and (max-width: 768px) {
  .event {
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/event_body_bg_sp.png);
    background-size: 100.5%;
    background-position: top center;
  }
}
.event__bg {
  padding-top: 720px;
  padding-bottom: 88px;
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1921px) {
  .event__bg {
    padding-top: 37.5vw;
    padding-bottom: 4.5833333333vw;
    max-width: 71.1458333333vw;
  }
}
@media screen and (max-width: 1366px) {
  .event__bg {
    padding-top: 52.7086383602vw;
    padding-bottom: 6.4421669107vw;
    background-size: 10.8345534407vw;
  }
}
@media screen and (max-width: 768px) {
  .event__bg {
    padding-top: 184vw;
    padding-bottom: 13.6vw;
  }
}
.event__icon {
  position: absolute;
  width: 178px;
  left: 97px;
  top: -72px;
}
@media screen and (min-width: 1921px) {
  .event__icon {
    width: 9.2708333333vw;
    left: 5.0520833333vw;
    top: -3.75vw;
  }
}
@media screen and (max-width: 1366px) {
  .event__icon {
    width: 13.0307467057vw;
    left: 7.1010248902vw;
    top: -5.270863836vw;
  }
}
@media screen and (max-width: 768px) {
  .event__icon {
    width: 30.8vw;
    right: 5.4666666667vw;
    top: -18.2666666667vw;
  }
}
.event__lead {
  width: 832px;
  margin-inline: auto;
}
@media screen and (min-width: 1921px) {
  .event__lead {
    width: 43.3333333333vw;
  }
}
@media screen and (max-width: 1366px) {
  .event__lead {
    width: 60.9077598829vw;
  }
}
@media screen and (max-width: 768px) {
  .event__lead {
    width: 100%;
  }
}
@media screen and (max-width: 300px) {
  .event__lead {
    padding-top: 16vw;
  }
}

/* event:end */
/* modal:start */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  /* 背景を暗く */
  display: flex;
  align-items: center;
  justify-content: center;
  /* 初期状態は非表示 */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 1000;
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal__content {
  background: #FBF6EB;
  padding: 30px 100px 30px 105px;
  border-radius: 40px 0 40px 0;
  position: relative;
  max-width: 750px;
  width: 90%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .modal__content {
    max-width: none;
    width: 90.9333333333vw;
    padding: 5.3333333333vw 5.3333333333vw 4.8vw 8.6666666667vw;
    border-radius: 5.3333333333vw 0 5.3333333333vw 0;
  }
}
.modal__close-btn {
  position: absolute;
  width: 42px;
  top: 16px;
  /* 位置はデザインに合わせて調整 */
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  transition: 0.2s opacity;
}
@media screen and (max-width: 768px) {
  .modal__close-btn {
    width: 8vw;
    top: 1.3333333333vw;
    right: 1.3333333333vw;
  }
}
.modal__close-btn:hover {
  opacity: 0.7;
}
.modal__ribon {
  width: 330px;
  margin-inline: auto;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .modal__ribon {
    width: 67.7333333333vw;
    margin-inline: 2.6666666667vw auto;
    margin-bottom: 1.8666666667vw;
  }
}
.modal__title {
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .modal__title {
    margin-bottom: 3.2vw;
  }
}
.modal__title-01 {
  width: 378px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .modal__title-01 {
    width: 67.2vw;
    margin-inline: 3.0666666667vw auto;
  }
}
.modal__title-02 {
  width: 388px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .modal__title-02 {
    width: 68.8vw;
    margin-inline: 2.6666666667vw auto;
  }
}
.modal__title-03 {
  width: 452px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .modal__title-03 {
    width: 80.2666666667vw;
    margin-left: -2.1333333333vw;
  }
}
@media screen and (min-width: 769px) {
  .modal__point {
    margin-left: 30px;
  }
}
.modal__point-heading {
  display: block;
  width: 167px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .modal__point-heading {
    width: 32.9333333333vw;
    margin-top: 4.2666666667vw;
    margin-bottom: 0.4vw;
  }
}
.modal__point-text {
  font-family: "Noto Sans JP";
  font-size: 16px;
  line-height: 1.75;
  color: #46210E;
}
@media screen and (max-width: 768px) {
  .modal__point-text {
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
  }
}
.modal__body {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .modal__body {
    flex-direction: column;
  }
}

/* ギャラリー全体の親 */
.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 233px;
  justify-content: center;
  /* 固定高さを指定するか、aspect-ratioを使う */
}
@media screen and (max-width: 768px) {
  .product-gallery {
    flex-direction: row;
    gap: 1.7333333333vw;
    height: 50.2666666667vw;
    width: 67.6vw;
    margin-inline: 2.9333333333vw auto;
  }
}

/* 共通：スライダーのコンテナ */
.product-gallery {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .product-gallery {
    gap: 1.3333333333vw;
  }
}

/* 768px以下（スマホ）：上下に並べる */
@media screen and (max-width: 768px) {
  .product-gallery {
    flex-direction: row;
    /* 左メイン・右サムネイル（または逆） */
  }
  .main-swiper {
    flex: 1;
    min-width: 0;
  }
  .thumb-swiper {
    width: 80px;
    /* 縦並び時の幅を固定 */
    height: 400px;
    /* メインに合わせた高さを指定 */
  }
}
/* 769px以上（PC）：左右に並べる */
@media screen and (min-width: 769px) {
  .product-gallery {
    flex-direction: column;
    /* メインの下にサムネイルが来る */
  }
  .main-swiper {
    width: 100%;
  }
  .thumb-swiper {
    width: 100%;
    height: 80px;
    /* 横並び時の高さを指定 */
  }
}
/* メインスライダー */
.main-swiper {
  flex: 1;
  /* 残りの幅を埋める */
  min-width: 0;
  /* ★超重要：これがないと画像サイズに合わせて無限に広がります */
  max-width: 233px;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-swiper {
    max-width: 50.2666666667vw;
  }
}
.main-swiper::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #D3D3D3;
  top: 0;
  left: 0;
  z-index: 1;
}

/* サムネイルスライダー */
.thumb-swiper {
  height: 72px;
  /* サムネイルの幅を固定 */
  flex-shrink: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .thumb-swiper {
    width: 15.6vw;
    height: auto;
  }
}

/* 画像の基本設定 */
.main-swiper img,
.main-swiper picture {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* 画像全体を表示 */
}

.thumb-swiper .swiper-slide {
  cursor: pointer;
  pointer-events: auto !important;
  /* クリックを阻害させない */
  width: 48px !important;
  height: 48px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .thumb-swiper .swiper-slide {
    margin-bottom: 1.7333333333vw !important;
    width: 15.6vw !important;
    height: 15.6vw !important;
  }
}
.thumb-swiper .swiper-slide::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid #D3D3D3;
  top: 0;
  left: 0;
  z-index: 1;
}
.thumb-swiper .swiper-slide.swiper-slide-thumb-active::after {
  border: 1px solid #F36FA2;
}
@media screen and (max-width: 768px) {
  .thumb-swiper .swiper-slide.swiper-slide-thumb-active::after {
    border-width: 0.2666666667vw;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  height: 60px;
  width: 60px;
  margin: auto;
}

.swiper-button-next {
  background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/modal_arrow02.png);
  background-size: contain;
  width: 34.5px;
  height: 34.5px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/modal_arrow02_sp.png);
    width: 5.2vw;
    height: 5.2vw;
    right: 4vw;
  }
}

.swiper-button-prev {
  background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/modal_arrow01.png);
  background-size: contain;
  width: 34.5px;
  height: 34.5px;
  left: 30px;
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    background-image: url(/alcohol/beer/ichiban/spring-campaigns/images/modal_arrow01_sp.png);
    width: 5.2vw;
    height: 5.2vw;
    left: 4vw;
  }
}

/* modal:end */
/* float:start */
.float {
  position: fixed;
  bottom: 8.3333333333%;
  right: 2.0833333333%;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  width: 219px;
  box-shadow: 6px 6px 20px 0px rgba(235, 224, 190, 0.6);
  transition: 0.2s opacity;
  /* スクロール中、または条件から外れた時 */
}
@media screen and (max-width: 1366px) {
  .float {
    right: 2.9282576867vw;
    width: 16.0322108346vw;
  }
}
@media screen and (max-width: 768px) {
  .float {
    width: 36.5333333333vw;
    bottom: 16vw;
    right: 4vw;
    box-shadow: 6px 6px 2.6666666667vw 0px rgba(235, 224, 190, 0.6);
  }
}
.float__close {
  position: absolute;
  background-color: transparent;
  border: none;
  top: -6.5384615385%;
  right: -7.7625570776%;
  width: 15.5251141553%;
  border-radius: 100%;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2);
  transition: 0.2s opacity;
}
@media screen and (max-width: 768px) {
  .float__close {
    width: 6.8vw;
    right: -2.6666666667vw;
    top: -2.6666666667vw;
    box-shadow: 0px 0px 2.6666666667vw 0px rgba(0, 0, 0, 0.2);
  }
}
.float__close:hover {
  cursor: pointer;
  opacity: 0.7;
}
.float.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.float.is-scrolling {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* クリック防止 */
}

/* float:end */