@charset "UTF-8";
@font-face {
  font-family: "impact";
  src: url("../font/Impact.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
:root {
  --duration: 5s; /* アニメ速度 */
  --g1: #A1A7AC;
  --g2: #EFEFEF;
  --g3: #E2E2E2;
  --g4: #AAADAF;
}

@keyframes verticalSlide {
  0% {
    background-position: 50% 0%;
  }
  50% {
    background-position: 50% 100%;
  }
  100% {
    background-position: 50% 0%;
  }
}
/* 飲み放題プラン */
.freeDrink_page {
  font-family: "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  background: url("../img/campaign/freeDrink/bodyBg.jpg") repeat center;
}
.freeDrink_page .pageWrapper {
  position: relative;
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
  padding-bottom: 40px;
  background-color: #F5F5F5;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.freeDrink_page .pageWrapper .sideBarL, .freeDrink_page .pageWrapper .sideBarR {
  display: block;
  position: absolute;
  top: 0;
  left: -3px;
  width: 3px;
  height: 100%;
  background: linear-gradient(0deg, var(--g1), var(--g2), var(--g3), var(--g4), var(--g1));
  background-size: 300% 300%;
  animation: verticalSlide var(--duration) linear infinite;
}
.freeDrink_page .pageWrapper .sideBarR {
  left: 100%;
  animation: verticalSlide var(--duration) linear infinite reverse;
}
.freeDrink_page .layout {
  padding: 0 20px;
}
.freeDrink_page .cvBtn {
  display: block;
  position: relative;
  width: 100%;
  padding: 18px 0;
  line-height: 1.3;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  text-align: center;
  border: 1px solid #000;
  border-radius: 100px;
  background: #fff;
}
.freeDrink_page .cvBtn::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  width: 10px;
  height: 17px;
  margin: auto;
  background: url("../img/campaign/freeDrink/iconArrowBlack.png") no-repeat center top;
}
.freeDrink_page .mv .catch h1 img {
  max-width: 100%;
  height: auto;
}
.freeDrink_page .mv .catch .mvBtnBox {
  margin-top: 15px;
  padding: 0 20px;
}
.freeDrink_page .service {
  padding: 15px 0 0;
}
.freeDrink_page .service .serviceIntro h2 {
  line-height: 1.4;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.freeDrink_page .service .serviceIntro h2 strong {
  font-size: 30px;
}
.freeDrink_page .service .serviceIntro h2 img {
  max-width: 100%;
  height: auto;
}
.freeDrink_page .service .serviceIntro .introImage {
  margin-bottom: 15px;
  text-align: center;
}
.freeDrink_page .service .serviceIntro .introText {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.freeDrink_page .service .serviceIntro .introText span {
  font-weight: bold;
}
.freeDrink_page .service .serviceIntro .introText strong {
  font-size: 18px;
  font-weight: bold;
  color: #CD1B1B;
}
.freeDrink_page .service .serviceIntro .planBox {
  margin: 10px 0;
  line-height: 1.2;
  font-size: 14px;
  color: #fff;
  text-align: center;
}
.freeDrink_page .service .serviceIntro .planBox img {
  max-width: 100%;
  height: auto;
}
.freeDrink_page .service .serviceIntro .planBox .text {
  font-size: 18px;
}
.freeDrink_page .service .serviceIntro .planBox .jpy {
  font-size: 38px;
  font-weight: bold;
  font-family: "Helvetica", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.freeDrink_page .service .serviceIntro .planBox .price {
  font-size: 50px;
  font-weight: bold;
  font-family: "Helvetica", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.freeDrink_page .service .serviceIntro .planBox small {
  font-size: 30px;
  font-weight: bold;
  font-family: "Helvetica", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}
.freeDrink_page .service .serviceIntro .notes {
  display: block;
  line-height: 1.4;
  font-size: 11px;
  text-align: center;
}
.freeDrink_page .service .ticketBox {
  margin-top: 25px;
}
.freeDrink_page .service .ticketBox p {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.freeDrink_page .service .ticketBox p:before, .freeDrink_page .service .ticketBox p:after {
  content: "";
  display: block;
  width: 20px;
  height: 26px;
  background: url("../img/campaign/freeDrink/txtDecoration.png") no-repeat;
  background-size: 100% 100%;
}
.freeDrink_page .service .ticketBox p:after {
  transform: scale(-1, 1);
}
.freeDrink_page .service .ticketBox .image {
  position: relative;
  padding: 20px 20px 10px;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
}
.freeDrink_page .service .ticketBox .balloon {
  position: absolute;
  top: -10px;
  right: -10px;
}
.freeDrink_page .service .ticketBox .balloon img {
  max-width: 92px;
  height: auto;
}
.freeDrink_page .step {
  padding: 20px 0 30px;
}
.freeDrink_page .step h2 {
  margin-bottom: 20px;
  line-height: 1.4;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.freeDrink_page .step h2 strong {
  font-size: 30px;
}
.freeDrink_page .step .stepList li {
  position: relative;
  margin-bottom: 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}
.freeDrink_page .step .stepList li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  width: 30px;
  height: 10px;
  margin: auto;
  border-top: 10px solid #CD1B1B;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
.freeDrink_page .step .stepList li:last-child {
  margin-bottom: 0;
}
.freeDrink_page .step .stepList li:last-child:after {
  content: none;
}
.freeDrink_page .step .stepList li .imageBox {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
}
.freeDrink_page .step .stepList li .imageBox img {
  max-width: 100%;
  height: auto;
}
.freeDrink_page .step .stepList li .textBox {
  display: flex;
  align-items: center;
  padding: 10px;
}
.freeDrink_page .step .stepList li .textBox .stepImage {
  margin-right: 15px;
}
.freeDrink_page .step .stepList li .textBox .stepImage img {
  max-width: 50px;
  height: auto;
}
.freeDrink_page .step .stepList li .textBox .stepText h3 {
  line-height: 1.2;
  font-size: 14px;
  font-weight: bold;
  font-family: "Helvetica", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #707070;
}
.freeDrink_page .step .stepList li .textBox .stepText p {
  font-size: 18px;
  font-weight: bold;
}
.freeDrink_page .campaign {
  position: relative;
  padding: 50px 0 20px;
  background: url("../img/campaign/freeDrink/campaignBg.jpg") no-repeat center;
  background-size: cover;
}
.freeDrink_page .campaign::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.freeDrink_page .campaign .campaignTtl {
  position: absolute;
  top: -12px;
  left: 0;
  z-index: 1;
}
.freeDrink_page .campaign .layout {
  position: relative;
  z-index: 1;
}
.freeDrink_page .campaign .catch {
  margin-bottom: 18px;
}
.freeDrink_page .campaign h3 {
  margin-bottom: 30px;
  padding: 3px 0;
  font-size: 20px;
  color: #fff;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 5px;
}
.freeDrink_page .campaign ol {
  margin-bottom: 15px;
  list-style: decimal;
  counter-reset: step;
}
.freeDrink_page .campaign ol li {
  position: relative;
  margin-bottom: 36px;
  padding: 12px 10px 5px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.8);
  letter-spacing: -1px;
  list-style: none;
  counter-increment: step;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.15);
}
.freeDrink_page .campaign ol li:before {
  content: "Step " counter(step);
  display: block;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  width: 100px;
  margin: auto;
  padding: 3px;
  line-height: 1;
  font-size: 20px;
  font-family: "impact", sans-serif;
  font-weight: normal;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  border-radius: 1000px;
  background-color: #000;
}
.freeDrink_page .campaign ol li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -18px;
  left: 0;
  right: 0;
  width: 30px;
  height: 10px;
  margin: auto;
  border-top: 10px solid #fff;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}
.freeDrink_page .campaign ol li:last-child {
  margin-bottom: 0;
}
.freeDrink_page .campaign ol li:last-child:after {
  content: none;
}
.freeDrink_page .campaign ol li span {
  color: #FFEF06;
}
.freeDrink_page .campaign ol li span.strong {
  font-size: 20px;
}
.freeDrink_page .campaign ol li small {
  font-size: 14px;
}
.freeDrink_page .campaign ol li .textBox {
  display: inline-block;
  margin: 0 2px;
  padding: 5px 0;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  color: #000;
  border-radius: 3px;
  background-color: #fff;
}
.freeDrink_page .campaign .notes {
  margin-bottom: 15px;
  line-height: 1.4;
  font-size: 12px;
  color: #fff;
}
.freeDrink_page .club {
  padding-top: 20px;
}
.freeDrink_page .club h2 {
  margin-bottom: 15px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.freeDrink_page .club .areaTarget {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.freeDrink_page .club .areaTarget li {
  width: calc((100% - 20px) / 3);
}
.freeDrink_page .club .areaTarget li .areaTargetLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 44px;
  padding: 0 10px;
  font-size: 12px;
  font-weight: bold;
  text-align: left;
  border: 1px solid #000;
  border-radius: 5px;
  background-color: #fff;
}
.freeDrink_page .club .areaTarget li .areaTargetLink:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: rotate(45deg);
}
.freeDrink_page .club .clubBox h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.freeDrink_page .club .clubBox h3:before, .freeDrink_page .club .clubBox h3:after {
  content: "";
  display: inline-block;
  width: 110px;
  height: 1px;
  background-color: #000;
}
.freeDrink_page .club .clubBox .clubList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.freeDrink_page .club .clubBox .clubList li {
  width: calc((100% - 8px) / 2);
  margin-bottom: 11px;
}
.freeDrink_page .club .clubBox .clubList li .clubIcon {
  position: relative;
  margin-bottom: 8px;
  adpect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
}
.freeDrink_page .club .clubBox .clubList li .clubIcon .areaTag {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 5px;
  line-height: 1.6;
  font-size: 10px;
  color: #fff;
  border-bottom-right-radius: 5px;
  background-color: #CD1B1B;
}
.freeDrink_page .club .clubBox .clubList li .clubName {
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}
.freeDrink_page .club .clubBox .clubList li .cvBtn {
  padding: 5px 0;
  line-height: 1.2;
  font-size: 12px;
}
.freeDrink_page .club .clubBox .clubList li .cvBtn::after {
  right: 10px;
  width: 7px;
  height: 12px;
  background: url("../img/campaign/freeDrink/iconArrowBlack.png") no-repeat center top;
  background-size: 100% 100%;
}
.freeDrink_page .note .noteBox {
  padding: 10px 15px;
  border-radius: 5px;
  background-color: #eee;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.05);
}
.freeDrink_page .note .noteBox h2 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.freeDrink_page .note .noteBox p {
  line-height: 1.6;
  font-size: 12px;
}

/*** DRINK MANNER ***/
.drinkManner_page {
  font-size: 16px;
  font-feature-settings: "palt";
}
.drinkManner_page .pageWrapper {
  position: relative;
  max-width: 375px;
  overflow: hidden;
  width: 100%;
  padding-bottom: 40px;
  margin: 0 auto;
  background-color: #F5F5F5;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}
.drinkManner_page .pageWrapper .sideBarL, .drinkManner_page .pageWrapper .sideBarR {
  display: block;
  position: absolute;
  top: 0;
  left: -3px;
  width: 3px;
  height: 100%;
  background: linear-gradient(0deg, var(--g1), var(--g2), var(--g3), var(--g4), var(--g1));
  background-size: 300% 300%;
  animation: verticalSlide var(--duration) linear infinite;
}
.drinkManner_page .pageWrapper .sideBarR {
  left: 100%;
  animation: verticalSlide var(--duration) linear infinite reverse;
}
.drinkManner_page .layout {
  padding: 0 20px;
}
.drinkManner_page .layout .graTtl {
  background: linear-gradient(to right, #d1ad69, #ae8a3f);
  margin: 0 0 20px;
  padding: 3px 7px;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
}
.drinkManner_page .mv {
  padding: 0 0 35px;
  text-align: center;
}
.drinkManner_page .mv .mvBtnBox {
  padding: 25px 0 38px;
}
.drinkManner_page .mv .mvBtnBox .readTxt {
  padding: 0 0 3px;
}
.drinkManner_page .mv .subBox .subTxt {
  margin: 15px 0;
}
.drinkManner_page .about .img {
  margin: 0 0 15px;
}
.drinkManner_page .about .coupon {
  background: linear-gradient(to bottom, transparent 0, transparent 110px, #fff 110px, #fff 100%);
  margin: 26px 0 0;
  padding: 0 8px 15px 0;
  text-align: center;
}
.drinkManner_page .about .coupon + .layout {
  background: #fff;
}
.drinkManner_page .about .readtxt {
  margin: 0 0 20px;
  text-align: center;
}
.drinkManner_page .about .wrap {
  display: flex;
  justify-content: space-between;
}
.drinkManner_page .about .wrap .inBox {
  width: 103px;
  text-align: center;
}
.drinkManner_page .about .wrap .inBox .img {
  margin-bottom: 10px;
}
.drinkManner_page .about .wrap .inBox .txt {
  line-height: 1.25;
  font-size: 14px;
}
.drinkManner_page .about .wrap .inBox .txt b {
  color: #CD1B1B;
}
.drinkManner_page .about .bigTxt {
  background: url(../img/campaign/drinkManner/arrow.svg) center 8px no-repeat;
  background-size: 43px auto;
  padding: 45px 0 40px;
  text-align: center;
}
.drinkManner_page .features {
  padding: 40px 0 0;
}
.drinkManner_page .features .inBox {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.drinkManner_page .features .inBox + .inBox {
  margin-top: 10px;
}
.drinkManner_page .features .inBox .num {
  background: linear-gradient(to right, #d1ad69, #ae8a3f);
  padding: 3px 10px 5px;
  line-height: 1;
  color: #fff;
  font-size: 12px;
  position: absolute;
  top: 0;
  left: 20px;
  border-radius: 0 0 5px 5px;
}
.drinkManner_page .features .inBox .txt {
  width: calc(100% - 100px);
  padding: 0 0 0 20px;
  line-height: 1.5;
  font-size: 18px;
  font-weight: bold;
}
.drinkManner_page .features .inBox .img {
  width: 100px;
}
.drinkManner_page .features .result {
  background: url(../img/campaign/drinkManner/features.png) center 20px no-repeat;
  background-size: 319px auto;
  padding: 24px 0 232px;
  text-align: center;
  font-weight: bold;
}
.drinkManner_page .features .result .add {
  color: #fff;
  font-size: 18px;
}
.drinkManner_page .features .result .txt {
  font-size: 24px;
  line-height: 1.5;
  margin: 15px 0 0;
}
.drinkManner_page .scene .txt {
  margin-top: 5px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
}
.drinkManner_page .scene .txt + .img {
  margin-top: 15px;
}
.drinkManner_page .step {
  margin: 40px 0 15px;
}
.drinkManner_page .step .inBox {
  display: flex;
  align-items: center;
  position: relative;
}
.drinkManner_page .step .inBox:not(:last-child) {
  padding-bottom: 20px;
}
.drinkManner_page .step .inBox:not(:last-child):after {
  content: "";
  display: block;
  background: linear-gradient(to right, #d1ad69, #ae8a3f);
  width: 4px;
  height: 100%;
  position: absolute;
  bottom: -10px;
  left: 42px;
  z-index: 1;
}
.drinkManner_page .step .inBox > * {
  position: relative;
  z-index: 2;
}
.drinkManner_page .step .inBox .img {
  width: 88px;
}
.drinkManner_page .step .inBox .txtArea {
  width: calc(100% - 88px);
  padding-left: 7px;
}
.drinkManner_page .step .inBox .txtArea .num {
  display: inline-block;
  background: linear-gradient(to right, #d1ad69, #ae8a3f);
  margin: 0 0 2px;
  padding: 3px 15px;
  line-height: 1;
  color: #fff;
  font-size: 12px;
  border-radius: 10px;
}
.drinkManner_page .step .inBox .txtArea .txt {
  line-height: 1.2;
  font-size: 18px;
  font-weight: bold;
}
.drinkManner_page .footCv {
  text-align: center;
}
.drinkManner_page .footCv .read {
  margin: 60px 0 50px;
}
.drinkManner_page .footCv .btnBox .readTxt {
  padding: 0 0 3px;
}

/*# sourceMappingURL=campaign.css.map */
