@charset "UTF-8";
.l-body {
  overflow: visible;
}
body {
  font-family: "Noto Sans JP", Arial, Helvetica, "ＭＳ Ｐゴシック",
  "ヒラギノ角ゴ Pro W3", sans-serif;
}
.main-wakkafes {
  position: relative;
}
.main-wakkafes :where(img) {
  display: block;
  width: 100%;
  height: auto;
}
:root {
  --color-red: #e71e22;
  --color-blue: #0099c9;
  --color-gold: #d7a75a;
  --color-light-blue: #57c3e6;

  --page-navi-translate-top: 130px;
}
@media screen and (max-width: 767px) {
  :root {
    --base-unit: calc(10 / 390 * 100vw);
  }
  .l-main {
    z-index: 1;
  }
}

/* -----------------------------------------------------------
.mv
----------------------------------------------------------- */
.mv {
  position: sticky;
  top: 0;
  z-index: -1;
}
.mv img {
  display: block;
  width: 100%;
  height: auto;
}

/* ----------------------------------------------------------
.page-navi
----------------------------------------------------------- */
.page-navi {
  --header-to-margin: 20px;
  position: sticky;
  top: calc(var(--mc--height--ol-header) - 20px + var(--page-navi-translate-top));
  z-index: 100;
  translate: 0 calc(-1 * var(--page-navi-translate-top));
  height: 0;
  padding: 0 30px;
}
@media screen and (max-width: 1200px) {
  .page-navi {
    top: calc(var(--mc--height--ol-header) + 20px + var(--page-navi-translate-top));
  }
}
.page-navi__inner {
  max-width: 1230px;
  margin-inline: auto;
}
.page-navi__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
}
.page-navi__link {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 500;
  background-color: #0089bd;
  border: 4px solid #fff;
  display: block;
  text-align: center;
  padding: 17px 5px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.hamburger-button {
  display: none;
}
@media screen and (min-width: 768px) {
  .page-navi__link:hover {
    background-color: #47b4df;
  }
}
@media screen and (max-width: 767px) {
  .page-navi {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s;
    background-color: #F0F0F0;
    box-sizing: border-box;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: scroll;
    z-index: 100000;
    translate: none;
  }
  .page-navi.is-open {
    opacity: 1;
    visibility: visible;
  }
  .page-navi__list {
    display: block;
    padding: calc(23 * var(--base-unit)) 0 0;
    position: relative;
    width: calc(24 * var(--base-unit));
    margin-inline: auto;
  }
  .page-navi__list::after {
    content: "";
    display: inline-block;
    background-size: contain;
    vertical-align: middle;
    position: absolute;
    width: calc(11 * var(--base-unit));
    height: calc(12 * var(--base-unit));
    background-image: url(../img/index_logo_wakkafes_02.svg);
    background-repeat: no-repeat;
    left: 50%;
    transform: translateX(-50%);
    top: 18vw;
  }
  .page-navi__item {
    margin-bottom: calc(3.3 * var(--base-unit));
    text-align: center;
  }
  
  .hamburger-button {
    display: block;
    position: fixed;
    z-index: 100001;
    top: var(--mc-layout--offset--of-outer-right);
    right: var(--mc-layout--offset--of-outer-right);
    background: url("/jp/ja/about/ad_library/wakkafes/2026/img/icon_hamburger.png") no-repeat center / contain;
    border-radius: 100%;
    width: calc(5 * var(--base-unit));
    height: calc(5 * var(--base-unit));
    transform: translateY(-20vw);
    border: calc(0.3 * var(--base-unit)) solid transparent;
  }
  .js-hamburger.is-visible {
    display: block;
    animation: hamburgerIn 0.75s forwards;
  }

  @keyframes hamburgerIn {
    0% {
      transform: translateY(-16vw);
    }

    100% {
      transform: translateY(0);
    }
  }

  .hamburger-button span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: calc(1.2 * var(--base-unit));
    width: calc(2.1 * var(--base-unit));
    height: calc(0.2 * var(--base-unit));
    background-color: #646464;
    transition: all 0.4s;
    z-index: 1;
  }
  .hamburger-button span:nth-of-type(1) {
    top: calc(1.3 * var(--base-unit));
  }
  .hamburger-button span:nth-of-type(2) {
    top: calc(2.9 * var(--base-unit));
  }
  .hamburger-button span:nth-of-type(3) {
    top: calc(2.1 * var(--base-unit));
  }
  .hamburger-button.is-active span:nth-of-type(1) {
    transform: translateY(2.133333vw) rotate(-45deg);
  }
  .hamburger-button.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger-button.is-active span:nth-of-type(3) {
    transform: translateY(0vw) rotate(45deg);
  }
}

/* -----------------------------------------------------------
.intro
----------------------------------------------------------- */
.intro {
  position: relative;
  padding: max(300px, calc(300 / 1440 * 100vw)) 30px 215px;
  background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec01_bg_center.png") no-repeat top center/ cover;
  overflow-x: clip;
  margin-top: calc(-115 / 1440 * 100vw);
}
@media screen and (max-width: 1400px) {
  .intro {
    margin-top: -130px;
  }
}
@media screen and (max-width: 1000px) {
  .intro {
    margin-top: -140px;
  }
}
@media screen and (max-width: 767px) {
  .intro {
    position: relative;
    padding: calc(6 * var(--base-unit)) 0 calc(12 * var(--base-unit));
    background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec01_bg_center_sp.svg") no-repeat top center/ cover;
    margin-top: calc(-6.3 * var(--base-unit));
  }
}

.intro__deco-area {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 1440px;
  height: 100%;
}
.intro__deco-area-inner {
  position: relative;
  width: 1440px;
  height: 100%;
  margin-inline: auto;
}
.intro__deco {
  position: absolute;
}
.intro__deco01 {
  top: -50px;
  right: -820px;
  width: 1316px;
}
.intro__deco02 {
  top: 660px;
  left: -610px;
  width: 1316px;
  rotate: 180deg;
}
@media screen and (max-width: 767px) {
  .intro__deco-area {
    inset: 0;
    translate: none;
    width: 100%;
  }
  .intro__deco-area-inner {
    width: 100%;
    height: 100%;
  }
  .intro__deco01 {
    top: calc(-10 * var(--base-unit));
    right: calc(-55 * var(--base-unit));
    width: calc(83 * var(--base-unit));
  }
  .intro__deco02 {
    top: calc(45 * var(--base-unit));
    left: calc(-50 * var(--base-unit));
    width: calc(83 * var(--base-unit));
  }
}

.intro__head-images-wrap {
  position: relative;
}

.intro__head-deco {
  position: absolute;
  top: 35%;
  left: 50%;
  translate: -50% -50%;
}
.intro__head-deco01 {
  width: min(211px, calc(211 / 1440 * 100vw));
}
.intro__head-deco02 {
  width: min(409px, calc(409 / 1440 * 100vw));
}
.intro__head-deco03 {
  width: min(203px, calc(203 / 1440 * 100vw));
}
.intro__head-deco04 {
  width: min(205px, calc(205 / 1440 * 100vw));
}
.intro__head-deco05 {
  width: min(233px, calc(233 / 1440 * 100vw));
}
.intro__head-deco06 {
  width: min(197px, calc(197 / 1440 * 100vw));
}
.intro__head-deco07 {
  width: min(231px, calc(231 / 1440 * 100vw));
}

.intro__head-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1251px, 90%);
  margin-inline: auto;
}
.intro__head-images .center {
  background-color: #fff;
  border-radius: 50%;
  padding: min(13px, calc(13 / 1440 * 100vw));
  translate: 0 -15%;
  z-index: 2;
}
.intro__head-images .left,
.intro__head-images .right {
  z-index: 1;
}
.intro__head-images .left {
  translate: 25% 0;
  z-index: 1;
}
.intro__head-images .right {
  translate: -25% 0;
}
.intro__head-images-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .intro__head-images-wrap {
    display: none;
  }
  .intro__head-images-sp {
    display: block;
    position: relative;
    z-index: 1;
  }
}

.intro__head-txt {
  color: #fff;
  font-size: 3.875rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin-top: 35px;
}
.intro__head-sub-txt {
  color: #fff;
  font-size: 3.25rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro__head-txt {
    font-size: calc(2.3 * var(--base-unit));
    margin-top: calc(2 * var(--base-unit));
    translate: 2% 0;
    letter-spacing: 0.03em;
  }
  .intro__head-sub-txt {
    font-size: calc(2.3 * var(--base-unit));
  }
}
.intro__content {
  position: relative;
  padding: 20px;
  border-radius: 60px;
  background: linear-gradient(90deg,  rgba(30,171,224,1) 0%,rgba(237,189,116,1) 100%);
  margin: 40px auto 0;
  max-width: 1140px;
  z-index: 2;
}
.intro__content-inner {
  position: relative;
  background-color: #fff;
  border-radius: 40px;
  padding: 75px min(100px, calc(100 / 1180 * 100vw)) 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro__content {
    padding: calc(0.9 * var(--base-unit));
    border-radius: calc(3 * var(--base-unit));
    margin-top: calc(3 * var(--base-unit));
    width: calc(34.6 * var(--base-unit));
  }
  .intro__content-inner {
    border-radius: calc(2 * var(--base-unit));
    padding: calc(7.6 * var(--base-unit)) calc(1.7 * var(--base-unit)) calc(11 * var(--base-unit));
  }
}

.intro__heading {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
}
.intro__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.18;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
.intro__text.intro__text02 {
  margin-top: 0;
}
.intro__text.intro__text04 {
  margin-top: 18px;
}
.intro__text.intro__text05 {
  position: relative;
  border-bottom: 1px solid #838383;
  padding: 0 0 25px;
  margin-top: 60px;
  max-width: 570px;
  margin-inline: auto;
}
.intro__text05-head {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}
.intro__text05-head > span {
  display: block;
  flex-shrink: 0;
  padding: 0 28px;
}
.intro__text05-head::before {
  content: "";
  background-color: #838383;
  width: 100%;
  height: 1px;
}
.intro__text05-head::after {
  content: "";
  background-color: #838383;
  width: 100%;
  height: 1px;
}
.intro__text05-inner {
  display: inline-block;
  text-align: left;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .intro__heading {
    font-size: calc(2.3 * var(--base-unit));
  }
  .intro__text {
    font-size: calc(1.5 * var(--base-unit));
    line-height: 2;
    margin-top: calc(2.8 * var(--base-unit));
    text-align: left;
  }
  .intro__text.intro__text02.fade-in,
  .intro__text.intro__text03.fade-in,
  .intro__text.intro__text04.fade-in,
  .intro__text.intro__text05.fade-in {
    opacity: 1;
  }
  .intro__text.intro__text02.fade-in.is-show,
  .intro__text.intro__text03.fade-in.is-show,
  .intro__text.intro__text04.fade-in.is-show,
  .intro__text.intro__text05.fade-in.is-show {
    animation: none;
  }
  .intro__text.intro__text04 {
    margin-top: calc(2.8 * var(--base-unit));
  }
  .intro__text.intro__text05 {
    width: calc(27.2 * var(--base-unit));
    margin: calc(6 * var(--base-unit)) auto 0;
    line-height: calc(35 / 15);
    padding-bottom: calc(1.8 * var(--base-unit));
  }
  .intro__text05-head{
    padding-bottom: calc(0.6 * var(--base-unit));
  }
  .intro__text05-head > span {
    width: calc(14.2 * var(--base-unit));
    padding: 0 calc(1.6 * var(--base-unit));
  }
  .intro__text05-inner {
    font-size: calc(1.4 * var(--base-unit));
  }
}

.intro-close-content .intro-close-content-inner {
  display: block;
}
.intro-close-content-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .intro-close-content .intro-close-content-inner {
    display: none;
  }
  .intro-close-content.active .intro-close-content-inner{
    display: block;
  }
  .intro-close-content-btn {
    position: relative;
    display: block;
    font-size: calc(1.5 * var(--base-unit));
    font-family: inherit;
    font-weight: 500;
    background-color: #fff;
    border: calc(0.2 * var(--base-unit)) solid #F27379;
    border-radius: 8px;
    color: #333;
    width: calc(16 * var(--base-unit));
    height: calc(4 * var(--base-unit));
    margin: calc(3 * var(--base-unit)) auto 0;
  }
  .intro-close-content-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10%;
    translate: 0 -50%;
    display: block;
    aspect-ratio: 1;
    background-color: #333;
    mask: url("/assets_r24/images/cmn-mark_triangle_1.svg") no-repeat center / contain;
    width: 1.25em;
    rotate: 180deg;
  }
  .intro-close-content.active .intro-close-content-btn::after{
    rotate: 0deg;
  }
}


.intro__content-deco {
  position: absolute;
  width: 71.4px;
}
.intro__content-deco01 {
  top: 32px;
  left: 30px;
}
.intro__content-deco02 {
  top: 32px;
  right: 30px;
}
.intro__content-deco03 {
  bottom: 32px;
  left: 30px;
}
.intro__content-deco04 {
  bottom: 32px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  .intro__content-deco {
    width: calc(4 * var(--base-unit));
  }
  .intro__content-deco01 {
    top: calc(2 * var(--base-unit));
    left: calc(1.5 * var(--base-unit));
  }
  .intro__content-deco02 {
    top: calc(2 * var(--base-unit));
    right: calc(1.5 * var(--base-unit));
  }
  .intro__content-deco03 {
    bottom: calc(2 * var(--base-unit));
    left: calc(1.5 * var(--base-unit));
  }
  .intro__content-deco04 {
    bottom: calc(2 * var(--base-unit));
    right: calc(1.5 * var(--base-unit));
  }
}

/* -----------------------------------------------------------
.section-heading
----------------------------------------------------------- */
.section-heading-wrap {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
.section-heading {
  border-bottom: 3px solid #fff;
  color: #fff;
  font-size: 3.125rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  line-height: 1.3;
  letter-spacing: 0.05em;
  padding-left: 100px;
  width: fit-content;
}
.section-heading__inner {
  display: inline-block;
  border-top: 3px solid #fff;
  text-shadow: 0 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 767px) {
  .section-heading {
    border-bottom: calc(0.3 * var(--base-unit)) solid #fff;
    font-size: calc(3.2 * var(--base-unit));
    line-height: 1.7;
    padding-left: calc(4 * var(--base-unit));
  }
}


/* -----------------------------------------------------------
.section-between
----------------------------------------------------------- */
.section-between-wrap {
  display: grid;
  justify-content: center;
  overflow-x: clip;
}
.section-between {
  position: relative;
  width: 1440px;
}
.section-between img {
  position: absolute;
  z-index: 1;
}
.section-between .img01 {
  top: -1102px;
  right: -685px;
  width: 1823px;
}
@media screen and (max-width: 767px) {
  .section-between-wrap {
    display: none;
  }
}

/* -----------------------------------------------------------
.movie
----------------------------------------------------------- */
.movie {
  position: relative;
  background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec02_bg.png") no-repeat center / cover;
  padding: 25px 0 350px;
  overflow-x: clip;
  margin-top: -5px;
  scroll-margin-top: 200px;
}
.movie__inner {
  position: relative;
  padding: 0 30px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .movie {
    padding: calc(5 * var(--base-unit)) 0 calc(15 * var(--base-unit));
    margin-top: 0;
    scroll-margin-top: 0;
  }
  .movie__inner {
    padding: 0;
  }
}

.movie__deco-area {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 1440px;
  height: 100%;
}
.movie__deco-area-inner {
  position: relative;
  height: 100%;
}
.movie__deco-area-inner img {
  position: absolute;
}
.movie__deco-area-inner .img01 {
  top: -135px;
  left: -782px;
  width: 1812px;
}
.movie__deco-area-inner .img02 {
  top: -65px;
  left: -140px;
  width: 599px;
  rotate: 141deg;
}
@media screen and (max-width: 767px) {
  .movie__deco-area {
    inset: 0;
    translate: none;
    width: 100%;
  }
  .movie__deco-area-inner {
    width: 100%;
    height: 100%;
  }
  .movie__deco-area-inner .img01 {
    top: calc(-8 * var(--base-unit));
    left: calc(-44 * var(--base-unit));
    width: calc(73.8 * var(--base-unit));
  } 
  .movie__deco-area-inner .img02 {
    top: calc(-2 * var(--base-unit));
    left: calc(-7 * var(--base-unit));
    width: calc(26 * var(--base-unit));
  }
}

.movie__content {
  position: relative;
  background-color: #fff;
  box-sizing: border-box;
  padding: 120px min(80px, calc(80 / 1290 * 100vw));
  max-width: 1230px;
  margin: 100px auto 0;
  z-index: 2;
}
.movie__content::before {
  content: "";
  position: absolute;
  bottom: -320px;
  right: -180px;
  background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec02_bg_deco01.png") no-repeat center / contain;
  width: 599px;
  height: 383px;
  rotate: -27deg;
}
@media screen and (max-width: 767px) {
  .movie__content {
    padding: calc(2.6 * var(--base-unit)) calc(2.6 * var(--base-unit)) calc(2.6 * var(--base-unit));
    margin-top: calc(4.7 * var(--base-unit));
    width: calc(36.3 * var(--base-unit));
  }
  .movie__content::before {
    bottom: calc(-15 * var(--base-unit));
    right: calc(-6 * var(--base-unit));
    width: calc(24.5 * var(--base-unit));
    height: calc(15.7 * var(--base-unit));
  }
}

.movie-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: min(20px, calc(20 / 1290 * 100vw));
  row-gap: 40px;
}
.movie-item {
  border-top: 10px solid var(--color-gold);
}
.movie-item.coming-soon {
  position: relative;
  box-sizing: border-box;
  border-top: none;
}
.movie-item.coming-soon::before {
  content: "Coming soon";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  background-color: rgba(0,0,0,0.9);
  color: #fff;
  font-size: min(2.25rem, calc(36 / 1290 * 100vw));
  font-weight: 700;
  line-height: calc(46 / 36);
  z-index: 2;
}

.movie-item__heading {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(1.125rem, calc(18 / 1290 * 100vw));
  font-weight: 700;
  line-height: calc(32 / 18);
  text-align: center;
  height: min(140px, calc(140 / 1290 * 100vw));
}
.movie-item__heading::before {
  content: "";
  background-color: #fde4bc;
  position: absolute;
  inset: 0;
  scale: 1 0;
  transition: scale 0.4s;
  transform-origin: top;
  z-index: -1;
}
.movie-item__link {
  display: block;
  position: relative;
  overflow: hidden;
}
.coming-soon .movie-item__link {
  pointer-events: none;
}
.movie-item__link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  background: url("/jp/ja/about/ad_library/wakkafes/2026/img/icon_play.png") no-repeat center / contain;
  width: 98px;
  height: 98px;
  z-index: 1;
}

.movie-item:nth-child(1) {
  grid-column: 1 / 4;
}
.movie-item__link img {
  transition: scale 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@media screen and (min-width: 768px) {
  .movie-item__link:hover img {
    scale: 1.1;
  }
  .coming-soon .movie-item__link:hover img {
    scale: 1;
  }
  .movie-item:has(.movie-item__link:hover) .movie-item__heading::before {
    scale: 1 1;
  }
  .movie-item.coming-soon:has(.movie-item__link:hover) .movie-item__heading::before {
    scale: 1 0;
  }
}
@media screen and (max-width: 767px) {
  .movie-list {
    grid-template-columns: 1fr;
    row-gap: calc(5 * var(--base-unit));
  }
  .movie-item {
    border-top: calc(1 * var(--base-unit)) solid var(--color-gold);
  }
  .movie-item__heading {
    font-size: calc(1.6 * var(--base-unit));
    line-height: 2;
    height: calc(13 * var(--base-unit));
  } 
  .movie-item__link::before {
    width: calc(9 * var(--base-unit));
    height: calc(9 * var(--base-unit));
  }
  .movie-item:nth-child(1) {
    grid-column: auto;
  }
  .movie-item.coming-soon::before {
    font-size: calc(3.2 * var(--base-unit));
    line-height: calc(46 / 32);
  }
}

/* -----------------------------------------------------------
.gallery
----------------------------------------------------------- */
.gallery {
  position: relative;
  background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec03_bg.png") no-repeat center / cover;
  padding: 35px 0 275px;
  overflow-x: clip;
  scroll-margin-top: 200px;
}
.gallery__inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .gallery {
    padding: calc(4.4 * var(--base-unit)) 0 calc(15.8 * var(--base-unit));
    scroll-margin-top: 0;
  }
}
.gallery__deco-area {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 1440px;
  height: 100%;
}
.gallery__deco-area-inner {
  position: relative;
  height: 100%;
}
.gallery__deco-area-inner img {
  position: absolute;
}
.gallery__deco-area-inner .img01 {
  top: -135px;
  left: -782px;
  width: 1812px;
}
.gallery__deco-area-inner .img02 {
  top: -165px;
  left: -460px;
  width: 900px;
}
@media screen and (max-width: 767px) {
  .gallery__deco-area {
    inset: 0;
    translate: none;
    width: 100%;
  }
  .gallery__deco-area-inner {
    width: 100%;
    height: 100%;
  }
  .gallery__deco-area-inner .img01 {
    top: calc(-8 * var(--base-unit));
    left: calc(-44 * var(--base-unit));
    width: calc(73.8 * var(--base-unit));
  } 
  .gallery__deco-area-inner .img02 {
    top: calc(-6 * var(--base-unit));
    left: calc(-17.6 * var(--base-unit));
    width: calc(38.7  * var(--base-unit));
  }
}

.gallery__content {
  position: relative;
  margin: 100px auto 0;
  max-width: 1230px;
  z-index: 2;
  padding: 0 30px;
}
.gallery__content::before {
  content: "";
  position: absolute;
  bottom: -350px;
  right: -240px;
  background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec03_bg_deco02.png") no-repeat center / contain;
  width: 900px;
  height: 408px;
}
@media screen and (max-width: 767px) {
  .gallery__content {
    margin-top: calc(4.7 * var(--base-unit));
    width: calc(36.3 * var(--base-unit));
    padding: 0;
  }
  .gallery__content::before {
    bottom: calc(-15.6 * var(--base-unit));
    right: calc(-15.3 * var(--base-unit));
    width: calc(38.7 * var(--base-unit));
    height: calc(17.6  * var(--base-unit));
  }
}
.gallery__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(8, 1fr);
  gap: 18px;
  background-color: #fff;
  padding: 82px;
}
@media screen and (max-width: 767px) {
  .gallery__list {
    gap: calc(0.5 * var(--base-unit));
    padding: calc(2.6 * var(--base-unit));
  }
}
.gallery-item:nth-child(3),
.gallery-item:nth-child(6),
.gallery-item:nth-child(13),
.gallery-item:nth-child(16) {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item a {
  display: block;
  overflow: hidden;
}
.gallery-item__image {
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  transition: scale 1.4s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.gallery-item__image--01 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_01.jpg");
}

.gallery-item__image--02 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_02.jpg");
}

.gallery-item__image--03 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_03.jpg");
}

.gallery-item__image--04 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_04.jpg");
}

.gallery-item__image--05 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_05.jpg");
}

.gallery-item__image--06 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_06.jpg");
}

.gallery-item__image--07 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_07.jpg");
}

.gallery-item__image--08 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_08.jpg");
}

.gallery-item__image--09 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_09.jpg");
}

.gallery-item__image--10 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_10.jpg");
}

.gallery-item__image--11 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_11.jpg");
}

.gallery-item__image--12 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_12.jpg");
}

.gallery-item__image--13 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_13.jpg");
}

.gallery-item__image--14 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_14.jpg");
}

.gallery-item__image--15 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_15.jpg");
}

.gallery-item__image--16 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_16.jpg");
}

.gallery-item__image--17 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_17.jpg");
}

.gallery-item__image--18 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_18.jpg");
}

.gallery-item__image--19 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_19.jpg");
}

.gallery-item__image--20 {
  background-image: url("/jp/ja/about/ad_library/wakkafes/2026/img/image_gallery_20.jpg");
}
@media screen and (min-width: 768px) {
  .gallery-item a:hover .gallery-item__image {
    scale: 1.1;
    opacity: 0.5;
  }
}

/* -----------------------------------------------------------
.interview
----------------------------------------------------------- */
.interview {
  position: relative;
  background: url(/jp/ja/about/ad_library/wakkafes/2026/img/sec04_bg.png) no-repeat center / cover;
  padding: 0 0 180px;
  overflow-x: clip;
  scroll-margin-top: 200px;
}
.interview__inner {
  position: relative;
  z-index: 2;
  padding: 0 30px;
}
@media screen and (max-width: 767px) {
  .interview {
    background: url(/jp/ja/about/ad_library/wakkafes/2026/img/sec04_bg_sp.png) no-repeat center / cover;
    padding: calc(4.5 * var(--base-unit)) 0 calc(12.7 * var(--base-unit));
    scroll-margin-top: 0;
  }
  .interview__inner {
    padding: 0;
  }
}

.interview__deco-area {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 1440px;
  height: 100%;
}
.interview__deco-area-inner {
  position: relative;
  height: 100%;
}
.interview__deco-area-inner img {
  position: absolute;
}
.interview__deco-area-inner .img01 {
  top: -135px;
  left: -782px;
  width: 1812px;
}
.interview__deco-area-inner .img02 img{
  top: -195px;
  left: -20px;
  width: 551px;
}
@media screen and (max-width: 767px) {
  .interview__deco-area {
    inset: 0;
    translate: none;
    width: 100%;
  }
  .interview__deco-area-inner {
    width: 100%;
    height: 100%;
  }
  .interview__deco-area-inner .img01 {
    top: calc(-8 * var(--base-unit));
    left: calc(-44 * var(--base-unit));
    width: calc(73.8 * var(--base-unit));
  } 
  .interview__deco-area-inner .img02 img{
    top: calc(-9 * var(--base-unit));
    left: 0;
    width: calc(34  * var(--base-unit));
  }
}

.interview .movie__content {
  margin-top: 90px;
}
.interview .movie__content::before {
  bottom: -200px;
  right: -150px;
  background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec04_bg_deco02.png") no-repeat center / contain;
  width: 525px;
  height: 499px;
  rotate: 0deg;
}
.interview .movie-item:nth-child(1) {
  grid-column: auto;
}
@media screen and (max-width: 767px) {
  .interview .movie__content {
    margin-top: calc(4.5 * var(--base-unit));
  }
  .interview .movie__content::before {
    bottom: calc(-13 * var(--base-unit));
    right: calc(-16  * var(--base-unit));
    width: calc(30 * var(--base-unit));
    height: calc(26  * var(--base-unit));
  }
}

/* -----------------------------------------------------------
.group
----------------------------------------------------------- */
.group {
  position: relative;
  background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec05_bg.png") no-repeat center / cover;
  padding: 180px 30px 75px;
  z-index: 1;
  scroll-margin-top: 100px;
}
.group__inner {
  max-width: 1230px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .group {
    padding: calc(7 * var(--base-unit)) calc(4 * var(--base-unit));
    scroll-margin-top: 0;
  }
}
.group-list-wrap {
  position: relative;
}
.group-list {
  display: grid;
  column-gap: 30px;
}
.group-list01 {
  grid-template-columns: repeat(2, 1fr);
}
.group-list02 {
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 140px;
}
.group-item {
  color: #fff;
  padding-top: 43px;
}
.group-list01 .group-item{
  position: relative;
}
@media screen and (max-width: 767px) {
  .group {
    background: url("/jp/ja/about/ad_library/wakkafes/2026/img/sec05_bg_sp.png") no-repeat center / cover;
  }
  .group-list01,
  .group-list02 {
    grid-template-columns: 1fr;
  }
  .group-list01 {
    row-gap: calc(6 * var(--base-unit));
  }
  .group-list02 {
    row-gap: calc(2.6 * var(--base-unit));
    margin-top: calc(8 * var(--base-unit));
  }
  .group-item {
    padding-top: calc(3 * var(--base-unit));
  }
  .group-list02 .group-item:not(:first-child) {
    padding-top: 0;
  }
}

.group-ttl {
  color: #fff;
  display: flex;
  align-items: center;
  column-gap: 26px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  font-size: 2.25rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-shadow: 0 4px 4px #C25358;
  width: 100%;
}
.group-ttl span {
  display: block;
  flex-shrink: 0;
}
.group-ttl::before {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.group-ttl::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.group-item__actor {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: calc(27 / 18);
  letter-spacing: 0.05em;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .group-ttl {
    column-gap: calc(1.3 * var(--base-unit));
    font-size: calc(1.8 * var(--base-unit));
    text-shadow: 0 calc(0.4 * var(--base-unit)) calc(0.4 * var(--base-unit)) #C25358;
  }
  .group-ttl span {
    padding-bottom: calc(0.2 * var(--base-unit));
  }
  .group-ttl::before {
    height: calc(0.3 * var(--base-unit));
  }
  .group-ttl::after {
    height: calc(0.3 * var(--base-unit));
  }
  .group-item__actor {
    font-size: calc(1.6 * var(--base-unit));
    margin-top: calc(1 * var(--base-unit));
  }
}

/* -----------------------------------------------------------
.organizer
----------------------------------------------------------- */
.organizer {
  background-color: #fff;
  padding: 95px 30px;
}
.organizer__wakkafes-logo {
  width: 150px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .organizer {
    padding: calc(9 * var(--base-unit)) calc(4 * var(--base-unit));
  }
  .organizer__wakkafes-logo {
    width: calc(14 * var(--base-unit));
  }
}

.organizer__host {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .organizer__host {
    margin-top: calc(9.5 * var(--base-unit));
  }
}

.host-company {
  position: relative;
  border-top: 3px solid var(--color-gold);
  border-bottom: 3px solid var(--color-gold);
  max-width: 560px;
  margin-inline: auto;
  padding: 48px 16px; 
}
@media screen and (max-width: 767px) {
  .host-company {
    border-top: calc(0.3 * var(--base-unit)) solid var(--color-gold);
    border-bottom: calc(0.3 * var(--base-unit)) solid var(--color-gold);
    max-width: 100%;
    padding: calc(4.5 * var(--base-unit)) calc(1.6 * var(--base-unit)); 
  }
}

.host-company__ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
}
.host-company__ttl-inner {
  display: inline-block;
  translate: 0 -60%;
  background-color: #fff;
  padding: 0 16px;
}
@media screen and (max-width: 767px) {
  .host-company__ttl {
    font-size: calc(1.6 * var(--base-unit));
  }
  .host-company__ttl-inner {
    padding: 0 calc(1.3 * var(--base-unit));
  }
}

.host-company__list {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 25px;
}
.host-company__item.asahi {
  width: 100px;
}
.host-company__item.hab {
  width: 175px;
}
.host-company__item.mc {
  width: 114px;
}
.organizer__host-back {
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .host-company__list {
    flex-direction: column;
    row-gap: calc(5 * var(--base-unit));
  }
  .host-company__item.asahi {
    width: calc(11 * var(--base-unit));
  }
  .host-company__item.hab {
    width: calc(17.5 * var(--base-unit));
  }
  .host-company__item.mc {
    width: calc(12 * var(--base-unit));
  }
  .organizer__host-back {
    font-size: calc(1.6 * var(--base-unit));
    margin-top: calc(6.5 * var(--base-unit));
  }
}

.organizer__link {
  text-align: center;
  margin-top: 60px;
}
.organizer__link a{
  background-color: #fff;
  border: 8px solid #F27379;
  border-radius: 9999px;
  font-size: 1.625rem;
  font-weight: 700;
  display: inline-block;
  padding: 28px 38px;
  transition: background-color 0.3s, color 0.3s;
}
.organizer__link a::after {
  content: "";
  display: inline-block;
  mask: url("/assets_r24/images/cmn-mark_newwin_1.svg") no-repeat center / contain;
  background-color: #000;
  width: 26px;
  height: 26px;
  vertical-align: middle;
  margin-left: 16px;
  margin-bottom: 3px;
  transition: background-color 0.3s;
}
@media screen and (max-width: 767px) {
  .organizer__link {
    margin-top: calc(8 * var(--base-unit));
  }
  .organizer__link a{
    border: calc(0.8 * var(--base-unit)) solid #F27379;
    font-size: calc(1.6 * var(--base-unit));
    padding: calc(1.2 * var(--base-unit)) calc(2 * var(--base-unit));
  }
  .organizer__link a::after {
    width: calc(1.8 * var(--base-unit));
    height: calc(1.8 * var(--base-unit));
    margin-left: calc(0.8 * var(--base-unit));
    margin-bottom: calc(0.4 * var(--base-unit));
  }
}

@media screen and (min-width: 768px) {
  .organizer__link a:hover {
    background-color: #F27379;
    color: #fff;
  }
  .organizer__link a:hover::after {
    background-color: #fff;
  }
}

/* -----------------------------------------------------------
.footer
----------------------------------------------------------- */
.footer {
  background-color: #fff;
  padding: 50px 20px;
  border-top: 1px solid #d2d2d2;
}

.footer__logo-wrapper {
  width: 118px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
}

.footer__logo-wrapper img {
  width: 100%;
}

.footer__copyright {
  font-size: 14px;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: calc(30 / 375 * 100vw) calc(10 / 375 * 100vw);
    border-top: 1px solid #d2d2d2;
  }

  .footer__logo-wrapper {
    width: calc(90 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }

  .footer__copyright {
    font-size: calc(10 / 375 * 100vw);
  }
}

/* -----------------------------------------------------------
.fade-in
----------------------------------------------------------- */
.fade-in {
  opacity: 0;
  will-change: animation;
}

.fade-in.is-show {
  animation: scrollFadeIn 1.25s ease forwards;
}

@keyframes scrollFadeIn {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.blur-in {
  opacity: 0;
}

.blur-in.is-show {
  animation: scrollBlurIn 1.25s ease forwards;
}

.gallery::before,
.gallery::after {
  opacity: 0;
}

.gallery.is-show::before {
  opacity: 0;
  animation: scrollBlurIn 1.5s ease 0.75s forwards;
}

.gallery.is-show::after {
  opacity: 0;
  animation: scrollBlurIn 1.5s ease 1.75s forwards;
}

@keyframes scrollBlurIn {
  0% {
    opacity: 0;
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    filter: blur(0);
  }
}

/* -----------------------------------------------------------
.ローディング
----------------------------------------------------------- */
.loading {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #fff;
  transition: all 1s;
}

.loading.is-loaded {
  opacity: 0;
  visibility: hidden;
}

.loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: lodingLogo 1.5s ease 0.5s forwards;
  opacity: 0;
  width: 350px;
}

@keyframes lodingLogo {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .loading__logo {
    width: calc(200 / 375 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .js-gotop {
    z-index: 10000;
  }
}

/* -----------------------------------------------------------
#modalGallery
----------------------------------------------------------- */
.modalGallery_wrap {
  display: none;
}

#modalGallery {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#modalGallery .img {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  max-width: 900px;
  width: 100%;
}

#modalGallery .img::before {
  content: "";
  display: block;
  padding-top: 66.68%;
}

#cboxLoadedContent > div > div {
  width: 100% !important;
  height: auto !important;
}

/* ===============================================================================================
+ Colorbox | http://www.jacklmoore.com/colorbox/
----------------------------------------------------------------------------------------------- */
#colorbox,
#cboxOverlay,
#cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
}
#cboxWrapper {
  max-width: none;
}
#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}
#cboxMiddleLeft,
#cboxBottomLeft {
  clear: left;
}
#cboxContent {
  position: relative;
}
#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#cboxTitle {
  margin: 0;
}
#cboxLoadingOverlay,
#cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#cboxPrevious,
#cboxNext,
#cboxClose,
#cboxSlideshow {
  cursor: pointer;
}
.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}
.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}
#colorbox,
#cboxContent,
#cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}
#cboxOverlay {
  background: #000;
}
#colorbox {
  outline: 0;
}
#cboxContent {
  margin-top: 20px;
  background: #000;
}
.cboxIframe {
  background: #fff;
}
#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}
#cboxLoadedContent {
  border: 5px solid #000;
  background: #000;
}
#cboxTitle {
  position: absolute;
  top: -20px;
  left: 0;
  color: #ccc;
}
#cboxCurrent {
  position: absolute;
  top: -20px;
  right: 0px;
  color: #ccc;
}
#cboxLoadingGraphic {
  background: url(/jp/ja/about/ad_library/wakkafes/2026/img/colorbox_loading.gif)
    no-repeat center center;
}
#cboxPrevious,
#cboxNext,
#cboxSlideshow,
#cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}
#cboxPrevious:active,
#cboxNext:active,
#cboxSlideshow:active,
#cboxClose:active {
  outline: 0;
}
#cboxSlideshow {
  position: absolute;
  top: -20px;
  right: 90px;
  color: #fff;
}
#cboxPrevious {
  position: absolute;
  top: 50%;
  left: 5px;
  margin-top: -32px;
  background: url(/jp/ja/about/ad_library/wakkafes/2026/img/colorbox_controls.png)
    no-repeat top left;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}
#cboxPrevious:hover {
  background-position: bottom left;
}
#cboxNext {
  position: absolute;
  top: 50%;
  right: 5px;
  margin-top: -32px;
  background: url(/jp/ja/about/ad_library/wakkafes/2026/img/colorbox_controls.png)
    no-repeat top right;
  width: 28px;
  height: 65px;
  text-indent: -9999px;
}
#cboxNext:hover {
  background-position: bottom right;
}
#cboxClose {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  background: url(/jp/ja/about/ad_library/wakkafes/2026/img/colorbox_controls.png)
    no-repeat top center;
  width: 38px;
  height: 19px;
  text-indent: -9999px;
}