@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt";
  position: relative;
}
body.en {
  letter-spacing: 0;
}
p {
  word-break: break-word;
  position: relative;
}

section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  width: 90%;
  word-break: keep-all;
}

img {
  width: 100%;
  height: auto;
}

/*------------------------------------*/
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}
body.open {
  overflow: hidden;
}

header {
  z-index: 100;
}
header .main_logo,
header .right_wrap {
  z-index: 100;
}
header .main_logo {
  width: 253px;
  padding: 15px 40px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0 100%);
}
header .right_wrap {
  gap: 10px;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
}
@media screen and (max-width: 540px) {
  header .right_wrap > .sns, header .right_wrap > .linktree {
    display: none;
  }
}
header .sns {
  display: flex;
  flex-flow: row wrap;
  gap: 8px;
}
header .sns a {
  width: 18px;
  aspect-ratio: 1/1;
  display: flex;
  position: relative;
}
header .sns a::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -15%;
  width: 130%;
  aspect-ratio: 1/1;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50px;
  z-index: -1;
  backdrop-filter: blur(6px);
}
header .linktree {
  border: #defe68 2px solid;
  border-radius: 5px;
  background-color: #fff;
  padding: 3px 10px;
  height: 22px;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}
header .linktree img {
  height: 100%;
  width: auto;
}

.langswitch {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  padding: 4px 13px;
  border-radius: 100px;
  font-weight: normal;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  list-style: none;
}
.langswitch .lang {
  width: 22px;
  margin-right: 3px;
}

@media screen and (min-width: 841px) {
  .langswitch.pc_block {
    display: flex;
    align-items: center;
    white-space: nowrap;
  }
}

.menu {
  z-index: 100;
  transition: all ease 0.5s;
  position: fixed;
  opacity: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  background-color: rgba(241, 74, 45, 0.8);
  backdrop-filter: blur(10px);
  overflow: auto;
  padding: 5%;
  display: flex;
  flex-flow: column;
  gap: 30px;
}
.menu.open {
  opacity: 1;
  transform: translateX(0);
}
.menu .menu_inner {
  margin-top: 100px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-flow: column;
}
.menu .menu_inner a {
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-size: 2.4rem;
  transition: all ease 0.3s;
}
@media screen and (max-width: 540px) {
  .menu .menu_inner {
    margin-top: 10px;
  }
}
.menu .chara_menu {
  position: absolute;
  bottom: 0;
  right: 10%;
  width: 45%;
}
@media screen and (max-width: 540px) {
  .menu .chara_menu {
    right: -21%;
    width: 85%;
  }
}

.menu_logo {
  max-width: 400px;
  filter: invert(1);
}
@media screen and (max-width: 540px) {
  .menu_logo {
    max-width: 270px;
  }
}

.hamburger {
  cursor: pointer;
  width: 60px;
  aspect-ratio: 1/1;
  background-color: #fd984f;
  flex-flow: column;
  justify-content: center;
  z-index: 101;
  padding: 6px;
  transition: all ease 0.3s;
  gap: 7px;
  display: flex;
  transform-origin: center;
}
.hamburger span {
  width: 100%;
  height: 3px;
  transition: all ease 0.3s;
}
.hamburger span:nth-of-type(1) {
  background-color: #000;
}
.hamburger span:nth-of-type(2) {
  background-color: #000;
}
.hamburger span:nth-of-type(3) {
  background-color: #000;
}
.hamburger:hover {
  gap: 9px;
}
.hamburger.open {
  background: transparent;
  border: none;
}
.hamburger.open:hover {
  gap: 7px;
}
.hamburger.open span:nth-of-type(1) {
  background-color: #fff;
  transform: translateY(5px) rotate(225deg);
}
.hamburger.open span:nth-of-type(2) {
  display: none;
}
.hamburger.open span:nth-of-type(3) {
  background-color: #fff;
  transform: translateY(-5px) rotate(135deg);
}

#mv {
  background-image: url(images/mv_back.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  background-color: #000;
}
#mv .inner {
  display: flex;
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 540px) {
  #mv .inner {
    justify-content: center;
    height: 340px;
  }
}
#mv .chara_01 {
  margin-right: -17%;
  z-index: -1;
  margin-left: -8%;
}
@media screen and (max-width: 540px) {
  #mv .chara_01 {
    position: absolute;
    width: 70%;
    left: -40px;
    top: -10px;
  }
}
#mv .chara_02 {
  margin-left: -11%;
  margin-top: 2%;
  z-index: -1;
  margin-right: -4%;
}
@media screen and (max-width: 540px) {
  #mv .chara_02 {
    position: absolute;
    width: 60%;
    right: -70px;
    top: -20px;
  }
}
#mv .date {
  display: flex;
  margin-top: -12%;
}
#mv .chara_back1 {
  position: absolute;
  right: 0;
  bottom: 3%;
  width: 20%;
}
@media screen and (max-width: 540px) {
  #mv .mv_center {
    width: 75%;
  }
}
@media screen and (max-width: 540px) {
  #mv {
    padding-top: 8rem;
  }
}

.mirror_float img {
  width: 100%;
  height: auto;
}
.mirror_float {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: auto;
  z-index: 1000;
  padding: 18px;
  display: flex;
  flex-flow: column;
  gap: 10px;
  border-radius: 15px 0 0 15px;
  border-right: none;
  background-color: rgba(241, 74, 45, 0.7);
  backdrop-filter: blur(6px);
}
.mirror_float .str {
  color: #000;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.2;
  font-family: "agency-fb", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@media screen and (max-width: 840px) {
  .mirror_float .str {
    font-size: 2rem;
  }
}
.mirror_float .map {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
@media screen and (max-width: 540px) {
  .mirror_float .map {
    height: 100%;
    width: auto;
  }
}
.mirror_float a {
  transition: all 0.5s ease;
  background-color: #fff;
  border-radius: 100px;
  aspect-ratio: 1/1;
  overflow: hidden;
  display: block;
  width: 100%;
}
.mirror_float a:hover {
  animation: jump forwards 0.5s ease;
}
@keyframes jump {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: translateY(-10px);
  }
}
@media screen and (max-width: 540px) {
  .mirror_float a {
    height: 65%;
    width: auto;
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 840px) {
  .mirror_float {
    width: 110px;
  }
}
@media screen and (max-width: 540px) {
  .mirror_float {
    padding: 8px;
    transform: none;
    bottom: 0;
    width: 95%;
    flex-flow: row;
    align-items: center;
    height: 90px;
    top: initial;
    right: 2.5%;
    animation: none;
    border-radius: 10px 10px 0 0;
    justify-content: center;
  }
}

main.hidden_box {
  width: 100%;
  overflow-x: clip;
  background-color: #000;
}
@media screen and (max-width: 540px) {
  main.hidden_box {
    padding-bottom: 90px;
  }
}

#count_down {
  margin-top: -17%;
  padding-top: 0;
  z-index: 2;
}
#count_down .inner {
  max-width: 840px;
}
#count_down .inner > p {
  color: #fff;
  font-size: 3rem;
  text-align: center;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 840px) {
  #count_down .inner > p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 540px) {
  #count_down .inner > p {
    font-size: 1.5rem;
    padding-left: 25px;
  }
}
#count_down .youtube_cont {
  position: relative;
}
#count_down .youtube_cont .youtube_item {
  width: 100%;
}
#count_down .youtube_cont .h2_cd {
  width: 348px;
  max-width: 100%;
  position: absolute;
  right: -34px;
  top: -120px;
}
@media screen and (max-width: 840px) {
  #count_down .youtube_cont .h2_cd {
    width: 278px;
  }
}
@media screen and (max-width: 540px) {
  #count_down .youtube_cont .h2_cd {
    width: 158px;
    top: -68px;
  }
}

.cdt_box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  margin: 0 auto;
  max-width: 1048px;
  border: 15px solid #000;
  padding: 30px 60px;
  background-color: #fff;
  transition: all 0.5s ease;
  position: relative;
}
.cdt_box #CDT {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-around;
}
.cdt_box #CDT p {
  color: #000;
  font-size: 12rem;
  width: calc((100% - 12rem) / 4);
  line-height: 1;
  text-align: center;
  font-family: "agency-fb", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.cdt_box span {
  font-size: 2.2rem;
  width: 25%;
  text-align: center;
  color: #000;
  letter-spacing: 0;
  font-family: "agency-fb", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.cdt_box .h2_cd {
  width: 348px;
  max-width: 100%;
  position: absolute;
  right: -34px;
  top: -120px;
}
@media screen and (max-width: 840px) {
  .cdt_box .h2_cd {
    width: 278px;
  }
}
@media screen and (max-width: 540px) {
  .cdt_box .h2_cd {
    width: 158px;
    top: -68px;
  }
}

/* ---- フッター アメコミ演出 ループ keyframes (4s 1サイクル) ---- */
/* 集中線：フラッシュのみ（スケールなし） */
@keyframes footer-back-in {
  0% {
    opacity: 0;
    filter: brightness(5);
  }
  12% {
    opacity: 1;
    filter: brightness(2.2);
  }
  25% {
    filter: brightness(1);
  }
  30%, 100% {
    opacity: 1;
    filter: brightness(1);
  }
}
/* キャラ：スムーズに下から浮上（オーバーシュートなし） */
@keyframes chara-rise {
  0%, 5% {
    opacity: 0;
    transform: translateY(90px);
  }
  45%, 100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* セリフ：キャラの背後座標からポップ（translate でキャラ位置へオフセット） */
@keyframes message-shout {
  0%, 22% {
    opacity: 0;
    transform: translate(75%, 0) scale(0);
  }
  37%, 100% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}
/* -------------------------------------------------------------- */
footer {
  position: relative;
  z-index: 1;
  margin-top: -29%;
  --footer-il-shift: clamp(24px, 3.6vw, 48px);
}
footer .il_wrap {
  position: relative;
  z-index: 0;
  transform: translateY(var(--footer-il-shift));
}
footer .footer_back {
  width: 100%;
  opacity: 0;
  filter: brightness(5);
}
footer .message,
footer .chara_footer {
  position: absolute;
}
footer .message {
  width: 48%;
  top: 0;
  left: 5%;
  transform-origin: 30% 70%;
  opacity: 0;
  transform: translate(75%, 0) scale(0);
}
@media screen and (max-width: 540px) {
  footer .message {
    width: 58%;
    left: 1%;
  }
}
footer .chara_footer {
  width: 40%;
  bottom: 0;
  right: 5%;
  z-index: 1;
  opacity: 0;
  transform: translateY(90px);
}
@media screen and (max-width: 540px) {
  footer .chara_footer {
    right: 0;
    width: 50%;
    bottom: -6%;
  }
}
footer.footer-visible .footer_back {
  animation: footer-back-in 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
footer.footer-visible .message {
  animation: message-shout 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
footer.footer-visible .chara_footer {
  animation: chara-rise 4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
footer p {
  font-size: 1.4rem;
  text-align: left;
  color: #fff;
  margin: calc(40px + var(--footer-il-shift)) 0 0;
  padding-bottom: 50px;
}
@media screen and (max-width: 540px) {
  footer p {
    font-size: 1rem;
    width: 50%;
    margin: calc(10px + var(--footer-il-shift)) 0 0;
    padding-bottom: 0;
    font-weight: 300;
    line-height: 1.4;
  }
}

/*タブ切り替え*/
#guest {
  background-image: url(images/back_dot.webp);
  background-size: 18px;
  background-color: #fff;
  z-index: 0;
  position: relative;
  padding-top: 13%;
  padding-bottom: 10%;
}
#guest .tab_layout {
  z-index: 1;
  width: min(1320px, 96%);
  display: flex;
  flex-flow: row wrap;
  flex-flow: row;
  justify-content: center;
  position: relative;
  margin: 5rem auto 4rem;
  gap: 24px;
}
@media screen and (max-width: 840px) {
  #guest .tab_layout {
    width: 95%;
    gap: 12px;
  }
}
@media screen and (max-width: 540px) {
  #guest .tab_layout {
    width: 85%;
    gap: 5px;
    margin-bottom: 0;
    flex-wrap: wrap;
  }
}
#guest .tab_layout .tab_01,
#guest .tab_layout .tab_02,
#guest .tab_layout .tab_03,
#guest .tab_layout .tab_04 {
  background-image: url(images/tab.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 300px;
  height: 96px;
  font-size: 3.2rem;
  padding: 0.5rem 1.2rem 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.5s ease;
  cursor: pointer;
  pointer-events: auto;
  color: #000;
  text-align: center;
  line-height: 1.2;
}
#guest .tab_layout .tab_01.active,
#guest .tab_layout .tab_02.active,
#guest .tab_layout .tab_03.active,
#guest .tab_layout .tab_04.active {
  color: #fff;
  background-image: url(images/tab_active.webp);
}
@media screen and (max-width: 840px) {
  #guest .tab_layout .tab_01,
  #guest .tab_layout .tab_02,
  #guest .tab_layout .tab_03,
  #guest .tab_layout .tab_04 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 540px) {
  #guest .tab_layout .tab_01,
  #guest .tab_layout .tab_02,
  #guest .tab_layout .tab_03,
  #guest .tab_layout .tab_04 {
    width: calc((100% - 5px) / 2);
    height: 78px;
    font-size: 1.6rem;
    padding: 0.3rem 0.8rem 1.2rem;
  }
}
@media screen and (max-width: 840px) {
  #guest .tab_layout {
    width: 90%;
  }
}
#guest .guest_wrap {
  justify-content: center;
  padding-bottom: 5%;
}
#guest::before {
  position: absolute;
  top: -2px;
  left: 0;
  content: "";
  width: 100%;
  aspect-ratio: 1/0.3;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #000;
  pointer-events: none;
}
#guest::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  aspect-ratio: 1/0.15;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: #000;
  pointer-events: none;
}

.en #guest .tab_layout .tab_01,
.en #guest .tab_layout .tab_02,
.en #guest .tab_layout .tab_03,
.en #guest .tab_layout .tab_04 {
  font-size: 2.2rem;
  line-height: 1.1;
}
@media screen and (max-width: 540px) {
  .en #guest .tab_layout .tab_01,
  .en #guest .tab_layout .tab_02,
  .en #guest .tab_layout .tab_03,
  .en #guest .tab_layout .tab_04 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 540px) {
  .en #guest .tab_layout .tab_02 {
    font-size: 1.2rem;
    line-height: 1;
  }
}

.tab_content {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.tab_content [class^=content_tab0] {
  height: 0;
  opacity: 0;
  z-index: -100;
  transition: all 0.5s ease;
  position: absolute;
  padding-bottom: 5%;
}
.tab_content [class^=content_tab0].active {
  position: relative;
  opacity: 1;
  z-index: 1;
  height: auto;
}

#contents {
  background-image: url(images/back_dot.webp);
  background-size: 18px;
  background-color: #fff;
  padding-top: 25%;
  padding-bottom: 10%;
}
#contents .youtube_cont {
  display: none;
}
#contents::before {
  position: absolute;
  top: -2px;
  left: 0;
  content: "";
  width: 100%;
  aspect-ratio: 1/0.3;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #000;
}
#contents .il {
  width: 300px;
  position: absolute;
  top: -2%;
  left: 0;
}
@media screen and (max-width: 840px) {
  #contents .il {
    width: 160px;
    top: -0.1%;
  }
}
@media screen and (max-width: 540px) {
  #contents .il {
    top: -0.7%;
  }
}
#contents .anchortab_layout_wrap {
  position: sticky;
  top: 50px;
  z-index: 100;
  margin-bottom: -80px;
}
#contents .anchortab_layout_wrap .anchortab_layout {
  width: 800px;
  display: flex;
  flex-flow: row wrap;
  flex-flow: row;
  margin: 0 auto;
  gap: 10px;
}
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_01,
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_02,
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_03 {
  background-image: url(images/tab.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  font-family: "agency-fb", sans-serif;
  font-weight: 900;
  font-style: normal;
  width: 286px;
  height: 90px;
  font-size: 4.5rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: end;
  gap: 5px;
  z-index: 1;
  transition: all 0.5s ease;
  cursor: pointer;
  color: #000;
  text-align: center;
  line-height: 1.2;
  padding-bottom: 24px;
}
@media screen and (max-width: 540px) {
  #contents .anchortab_layout_wrap .anchortab_layout .anchortab_01,
  #contents .anchortab_layout_wrap .anchortab_layout .anchortab_02,
  #contents .anchortab_layout_wrap .anchortab_layout .anchortab_03 {
    font-size: 2.2rem;
    padding-bottom: 35px;
  }
}
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_01 span,
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_02 span,
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_03 span {
  font-size: 3.1rem;
  padding-bottom: 4px;
}
@media screen and (max-width: 540px) {
  #contents .anchortab_layout_wrap .anchortab_layout .anchortab_01 span,
  #contents .anchortab_layout_wrap .anchortab_layout .anchortab_02 span,
  #contents .anchortab_layout_wrap .anchortab_layout .anchortab_03 span {
    font-size: 1.8rem;
    padding-bottom: 0;
  }
}
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_01.anchor_active,
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_02.anchor_active,
#contents .anchortab_layout_wrap .anchortab_layout .anchortab_03.anchor_active {
  color: #fff;
  background-image: url(images/tab_active.webp);
}
@media screen and (max-width: 840px) {
  #contents .anchortab_layout_wrap .anchortab_layout {
    width: 90%;
  }
}
@media screen and (max-width: 840px) {
  #contents {
    padding-top: 35%;
  }
}
@media screen and (max-width: 540px) {
  #contents {
    padding-bottom: 0;
  }
}

#program {
  padding-bottom: 0;
}
#program .il {
  width: 25%;
  position: absolute;
  right: -5%;
  top: -25%;
}
@media screen and (max-width: 840px) {
  #program .il {
    width: 36%;
    position: absolute;
    right: -5%;
    top: -15%;
  }
}
#program .cloud:nth-of-type(4) {
  background-color: rgba(252, 122, 7, 0.5);
}
#program .anchortab_layout {
  width: 800px;
  display: flex;
  flex-flow: row wrap;
  flex-flow: row;
  position: relative;
  border-radius: 50px;
  margin: 5rem auto 4rem;
  position: sticky;
  top: 50px;
  z-index: 100;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}
#program .anchortab_layout .anchor_move_slider {
  width: 33.3333333333%;
  background-color: #000;
  border-radius: 50px;
  height: calc(100% - 6px);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(3px, -50%);
  transition: all 0.5s ease;
}
#program .anchortab_layout .anchortab_01,
#program .anchortab_layout .anchortab_02,
#program .anchortab_layout .anchortab_03 {
  font-size: 4rem;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-items: baseline;
  gap: 5px;
  width: 33.3333333333%;
  z-index: 1;
  transition: all 0.5s ease;
  cursor: pointer;
  color: #000;
  transform: translateY(2px);
}
#program .anchortab_layout .anchortab_01 span,
#program .anchortab_layout .anchortab_02 span,
#program .anchortab_layout .anchortab_03 span {
  font-size: 3rem;
}
#program .anchortab_layout .anchortab_01.anchor_active, #program .anchortab_layout .anchortab_01.anchor_active2,
#program .anchortab_layout .anchortab_02.anchor_active,
#program .anchortab_layout .anchortab_02.anchor_active2,
#program .anchortab_layout .anchortab_03.anchor_active,
#program .anchortab_layout .anchortab_03.anchor_active2 {
  color: #fff;
}
#program .anchortab_layout .anchortab_01.anchor_active ~ .anchor_move_slider, #program .anchortab_layout .anchortab_01.anchor_active2 ~ .anchor_move_slider {
  transform: translate(3px, -50%);
}
#program .anchortab_layout .anchortab_02.anchor_active ~ .anchor_move_slider, #program .anchortab_layout .anchortab_02.anchor_active2 ~ .anchor_move_slider {
  transform: translate(100%, -50%);
}
#program .anchortab_layout .anchortab_03.anchor_active ~ .anchor_move_slider, #program .anchortab_layout .anchortab_03.anchor_active2 ~ .anchor_move_slider {
  transform: translate(calc(200% - 3px), -50%);
}

[id^=content_anchor0] {
  position: relative;
  padding: 10rem 0;
}
[id^=content_anchor0] h4 {
  font-size: 3rem;
  padding: 0.5rem 4rem;
  border-radius: 50px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  transform: translateX(150px);
}
[id^=content_anchor0] h4::before {
  content: "";
  width: 150px;
  height: 2px;
  background-color: #ddd;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-100%, -50%);
}
[id^=content_anchor0] h4 span {
  font-size: 2rem;
  margin-left: 1rem;
}
[id^=content_anchor0] .inner {
  z-index: 1;
  max-width: 1200px;
  position: relative;
}
[id^=content_anchor0] .item {
  width: 100%;
  height: auto;
  position: relative;
  margin: 5rem auto;
  background-color: #fff;
  flex-flow: column;
  border: 4px solid #000;
  padding-top: 15px;
}
[id^=content_anchor0] .item .date_title {
  display: flex;
  flex-flow: row wrap;
}
[id^=content_anchor0] .item .txt {
  margin: 2rem 5rem;
}
[id^=content_anchor0] .item .txt p {
  font-size: 1.6rem;
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] .item .txt p {
    font-size: 1.4rem;
  }
}
[id^=content_anchor0] .item p.guest_title {
  font-size: 2.2rem;
  color: #000 !important;
  padding: 0 0 5px;
  margin: 0 5rem;
  border-bottom: 5px solid #f14a2d;
  font-family: "agency-fb", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] .item p.guest_title {
    margin: 0 1rem;
  }
}
[id^=content_anchor0] .item p {
  font-size: 2.2rem;
  position: relative;
}
[id^=content_anchor0] .item p.time {
  font-size: 2.8rem;
  color: #fff;
  font-family: "agency-fb", sans-serif;
  font-weight: 700;
  font-style: normal;
  background-color: #000;
  width: 210px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  padding: 0 20px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] .item p.time {
    font-size: 1.5rem;
    width: 100%;
    padding: 5px 10px;
  }
}
[id^=content_anchor0] .item p.title {
  font-weight: 500;
  padding-bottom: 5px;
  padding-top: 5px;
  position: relative;
  font-size: 2.5rem;
  color: #000;
  flex: 1;
  background-color: #f14a2d;
  padding-left: 20px;
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] .item p.title {
    font-size: 1.5rem;
    padding: 5px 10px;
  }
}
[id^=content_anchor0] .item p.txt {
  font-size: 1.5rem;
  line-height: 1.6;
  padding: 3rem 5rem;
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] .item p.txt {
    padding: 1rem;
  }
}
[id^=content_anchor0] .item .guest_wrap {
  gap: 4rem;
  justify-content: center;
  padding: 3rem 5rem 3rem;
}
[id^=content_anchor0] .item .guest_wrap .guest_item {
  transform: none;
  max-width: 160px;
  aspect-ratio: initial;
}
[id^=content_anchor0] .item .guest_wrap .guest_item .name,
[id^=content_anchor0] .item .guest_wrap .guest_item .shoulder {
  color: #000;
}
[id^=content_anchor0] .item .guest_wrap .guest_item::after {
  content: none;
}
[id^=content_anchor0] .item .guest_wrap .guest_item::before {
  left: var(--guest-icon-center-x);
  top: var(--guest-icon-center-y);
  right: auto;
  bottom: auto;
}
[id^=content_anchor0] .item .guest_wrap .guest_item .photo {
  aspect-ratio: 1/1.2;
  border: 3px solid #000;
}
[id^=content_anchor0] .item .guest_wrap .guest_item .photo img {
  -webkit-mask-image: none;
          mask-image: none;
}
[id^=content_anchor0] .item .guest_wrap .guest_item .photo::after {
  content: none;
}
[id^=content_anchor0] .item .guest_wrap .guest_item .photo::before {
  content: none;
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] .item .guest_wrap .guest_item {
    width: 48%;
  }
}
[id^=content_anchor0] .item .guest_wrap .guest_item:before {
  left: var(--guest-icon-center-x);
  top: var(--guest-icon-center-y);
  right: auto;
  bottom: auto;
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] .item .guest_wrap {
    padding: 1rem;
  }
}
[id^=content_anchor0] .item.is-reporter {
  background-color: #feff96;
  max-width: 800px;
}
[id^=content_anchor0] .item.is-reporter p.title {
  background-color: #fff;
  color: #000;
}
[id^=content_anchor0] .item.is-reporter p.txt {
  display: none;
}
[id^=content_anchor0] .item.is-reporter p.guest_title {
  display: none;
  color: #fff !important;
  background: #333 !important;
}
[id^=content_anchor0] .item::before {
  content: "";
  background-color: #fbc9c0;
  border: 4px solid #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: -1;
}
[id^=content_anchor0] .day {
  font-size: 17rem;
  font-family: "agency-fb", sans-serif;
  font-weight: 700;
  font-style: normal;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
}
@media screen and (max-width: 840px) {
  [id^=content_anchor0] .day {
    font-size: 14rem;
  }
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] .day {
    font-size: 8rem;
  }
}
@media screen and (max-width: 540px) {
  [id^=content_anchor0] {
    padding: 10rem 0 5rem;
  }
}

#content_anchor01 {
  padding-bottom: 10%;
}
#content_anchor01::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  aspect-ratio: 1/0.15;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: #000;
}
#content_anchor01 .day {
  top: -2%;
  left: 10%;
  transform: rotate(-10deg);
}
@media screen and (max-width: 840px) {
  #content_anchor01 .day {
    top: -1.5%;
    left: 10%;
    transform: rotate(-7deg);
  }
}
@media screen and (max-width: 540px) {
  #content_anchor01 .day {
    top: -2%;
    left: 7%;
  }
}
#content_anchor01 .chara_02 {
  position: absolute;
  width: 25%;
  top: -13%;
  right: 5%;
}
@media screen and (max-width: 840px) {
  #content_anchor01 .chara_02 {
    width: 32%;
    right: -2%;
    top: -2%;
  }
}
@media screen and (max-width: 540px) {
  #content_anchor01 .chara_02 {
    width: 35%;
    right: 8%;
    top: -4%;
  }
}
@media screen and (max-width: 540px) {
  #content_anchor01 {
    padding-top: 30px;
  }
}

#content_anchor02 {
  background-color: #000;
}
#content_anchor02 .day {
  top: -1.5%;
  right: 12%;
  transform: rotate(10deg);
  color: #fff;
}
@media screen and (max-width: 840px) {
  #content_anchor02 .day {
    top: -0.6%;
    right: 21%;
  }
}
@media screen and (max-width: 540px) {
  #content_anchor02 .day {
    top: 0%;
    right: 10%;
  }
}
#content_anchor02 .youtube_cont::before {
  background-color: #ffeab8;
}
#content_anchor02 .item::before {
  background-color: #ffeab8;
}
#content_anchor02 .item p.title {
  background-color: #ffca4d;
}
#content_anchor02 .item p.guest_title {
  border-bottom: 5px solid #ffca4d;
}
#content_anchor02 .chara_03 {
  position: absolute;
  top: -2%;
  left: -3%;
  width: 25%;
}
@media screen and (max-width: 840px) {
  #content_anchor02 .chara_03 {
    top: -1.5%;
    left: 4%;
    width: 35%;
  }
}
@media screen and (max-width: 540px) {
  #content_anchor02 .chara_03 {
    width: 37%;
    right: 3%;
    top: -0.7%;
  }
}

#content_anchor03 {
  padding-top: 15%;
  padding-bottom: 30%;
}
#content_anchor03::before {
  position: absolute;
  top: -2px;
  left: 0;
  content: "";
  width: 100%;
  aspect-ratio: 1/0.3;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  background: #000;
}
#content_anchor03::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  aspect-ratio: 1/0.22;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: #000;
}
#content_anchor03 .day {
  top: 1.5%;
  left: 12%;
  transform: rotate(-10deg);
}
@media screen and (max-width: 840px) {
  #content_anchor03 .day {
    top: 0.35%;
    transform: rotate(-7deg);
  }
}
#content_anchor03 .youtube_cont::before {
  background-color: #c5dcf8;
}
#content_anchor03 .item::before {
  background-color: #c5dcf8;
}
#content_anchor03 .item p.title {
  background-color: #8a8ad5;
}
#content_anchor03 .item p.guest_title {
  border-bottom: 5px solid #8a8ad5;
}
#content_anchor03 .chara_05 {
  position: absolute;
  width: 25%;
  top: 0.5%;
  right: 1%;
}
@media screen and (max-width: 840px) {
  #content_anchor03 .chara_05 {
    width: 40%;
    top: -0.2%;
  }
}
@media screen and (max-width: 540px) {
  #content_anchor03 .chara_05 {
    top: -1%;
  }
}

.guest_wrap {
  gap: 9rem;
  margin-top: 2rem;
  z-index: 1;
  display: flex;
  flex-flow: row wrap;
}
.guest_wrap.mc {
  justify-content: center;
  max-width: 800px;
  padding-bottom: 100px;
}
.guest_wrap.mc .guest_item:nth-of-type(2n) {
  transform: none;
}
@media screen and (max-width: 540px) {
  .guest_wrap.mc {
    width: 100%;
  }
}
.guest_wrap .guest_item {
  display: block;
  transition: all 0.5s ease;
  position: relative;
  aspect-ratio: 1/1.76;
  width: 100%;
  max-width: 250px;
  --guest-icon-center-x: 100%;
  --guest-icon-center-y: calc(100% * 1.26 / 1.76);
}
.guest_wrap .guest_item .photo {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1/1.26;
  position: relative;
}
.guest_wrap .guest_item .photo img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
  height: 100%;
  width: 100%;
  z-index: 1;
  position: relative;
  transition: all 0.5s ease;
  -webkit-mask-image: url(images/guest_mask.webp);
          mask-image: url(images/guest_mask.webp);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top;
          mask-position: top;
  z-index: 0;
}
.guest_wrap .guest_item .photo::before {
  content: "";
  width: 103%;
  aspect-ratio: 1/1.76;
  background-image: url(images/frame.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: -2%;
  left: -2%;
  z-index: 1;
}
.guest_wrap .guest_item .photo::after {
  content: "";
  width: 100%;
  aspect-ratio: 1/1.76;
  background-image: url(images/guest_back.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.guest_wrap .guest_item .name,
.guest_wrap .guest_item .shoulder {
  text-align: center;
  color: #fff;
}
.guest_wrap .guest_item .name {
  font-size: 1.8rem;
  margin-top: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 5px;
}
@media screen and (max-width: 540px) {
  .guest_wrap .guest_item .name {
    font-size: 1.4rem;
  }
}
.guest_wrap .guest_item .shoulder {
  font-size: 1.1rem;
  font-weight: normal;
}
@media screen and (max-width: 540px) {
  .guest_wrap .guest_item .shoulder {
    font-size: 1rem;
  }
}
.guest_wrap .guest_item::before {
  content: "";
  background-image: url(images/arrow.webp);
  width: 50px;
  aspect-ratio: 1/1;
  background-position: center;
  background-size: 18px;
  z-index: 2;
  position: absolute;
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 100px;
  border: 3px solid #000;
  position: absolute;
  left: var(--guest-icon-center-x);
  top: var(--guest-icon-center-y);
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 540px) {
  .guest_wrap .guest_item::before {
    width: 40px;
    background-size: 15px;
  }
}
.guest_wrap .guest_item.no_link {
  pointer-events: none;
}
.guest_wrap .guest_item.no_link::before {
  content: none;
}
.guest_wrap .guest_item.no_link.photo::before, .guest_wrap .guest_item.no_link.photo::after {
  content: none;
}
.guest_wrap .guest_item:nth-of-type(2n) {
  transform: translateY(20%);
}
@media screen and (max-width: 840px) {
  .guest_wrap .guest_item:nth-of-type(2n) {
    transform: none;
  }
}
.guest_wrap .guest_item::after {
  content: "";
  width: 100%;
  height: 90%;
  position: absolute;
  top: 5%;
  left: 0;
  border: #000 5px solid;
  background-color: #f14a2d;
  transform: skewY(-9deg);
  z-index: -2;
}
.guest_wrap .guest_item:hover::before {
  transform: translate(-50%, -50%) rotate(0deg);
  background-color: #f14a2d;
}
.guest_wrap .guest_item:hover::after {
  transform: translate(15px, 15px) skewY(-9deg);
}
@media screen and (max-width: 540px) {
  .guest_wrap .guest_item {
    max-width: 150px;
  }
}

.fancybox__content {
  max-width: 1000px !important;
  padding: 30px !important;
  padding-top: 0 !important;
}

.compensate-for-scrollbar {
  padding-right: 0 !important;
}

.guest_window {
  width: 100%;
  height: 100%;
}
.guest_window .inner {
  display: flex;
  flex-flow: row wrap;
  gap: 25px;
  width: 100%;
}

.guest_photo {
  width: 200px;
}
.guest_photo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 680px) {
  .guest_photo {
    width: 100%;
  }
}

.txt_field {
  flex: 1;
  display: flex;
  flex-flow: column;
  gap: 5px;
}
.txt_field p {
  font-weight: normal;
  text-align: justify;
  font-size: 1.5rem;
  line-height: 1.5;
}
.txt_field p span {
  display: inline-block;
}
.txt_field p a {
  color: #f14a2d;
}

.sub_t {
  font-size: 1.4rem;
  font-family: "agency-fb", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #f14a2d;
}

.profile {
  width: 100%;
}

h3 {
  display: flex;
  flex-flow: row wrap;
  flex-flow: column;
  align-items: center;
  color: #000;
  font-size: 1.7rem;
  margin: 8rem auto;
  margin-top: 0 !important;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 540px) {
  h3 {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}
h3 span {
  text-align: center;
}
@media screen and (max-width: 540px) {
  h3 span {
    font-size: 1.6rem;
  }
}
h3 .en_txt {
  font-family: "agency-fb", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 5.7rem;
  margin-top: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 540px) {
  h3 .en_txt {
    font-size: 2.7rem;
  }
}

.main_mc_wrap {
  position: relative;
}
.main_mc_wrap .inner {
  gap: 8rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}
.main_mc_wrap:before {
  content: "";
  width: 100vw;
  height: 250px;
  background-image: url(image/check02.webp);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50vw, -50%);
}
.main_mc_wrap .guest_item {
  width: calc((100% - 8rem) / 2);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 773/1237;
}
.main_mc_wrap .guest_item .photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  aspect-ratio: 31/44;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}
.main_mc_wrap .guest_item .photo img {
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.main_mc_wrap .guest_item .photo.ignition {
  transform: rotate(-10deg);
}
.main_mc_wrap .guest_item .photo::before {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 95px;
  right: 15px;
  z-index: 2;
  opacity: 0.8;
}
.main_mc_wrap .guest_item:hover .photo {
  transform: rotate(-10deg);
}
.main_mc_wrap .guest_item .txt {
  display: flex;
  flex-flow: column;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  width: 100%;
}
.main_mc_wrap .guest_item .txt span {
  text-align: center;
  color: #fff !important;
}

.live_streaming_mc_wrap {
  gap: 6rem;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.live_streaming_mc_wrap .guest_item {
  width: calc((100% - 12rem) / 3);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  aspect-ratio: 773/1237;
}
.live_streaming_mc_wrap .guest_item .photo {
  position: absolute;
  top: -38px;
  left: 0;
  width: 100%;
  transition: all 0.5s ease;
  aspect-ratio: 31/44;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}
.live_streaming_mc_wrap .guest_item .photo img {
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
.live_streaming_mc_wrap .guest_item .photo.ignition {
  transform: rotate(-10deg);
}
.live_streaming_mc_wrap .guest_item .photo::before {
  content: "";
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 95px;
  right: 15px;
  z-index: 2;
  opacity: 0.8;
}
.live_streaming_mc_wrap .guest_item:hover .photo {
  transform: rotate(-10deg);
}
.live_streaming_mc_wrap .guest_item .txt {
  display: flex;
  flex-flow: column;
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 500;
  width: 100%;
  justify-content: center;
  height: 70px;
}
.live_streaming_mc_wrap .guest_item .txt span {
  text-align: center;
  color: #fff !important;
}

/*スライダー*/
.slick-track {
  display: flex !important;
  justify-content: center;
}

.slick-dots {
  position: absolute;
  z-index: 3;
  text-align: center;
  margin: 0 0 0 0;
  bottom: 0;
  left: calc(50% - 31.5px);
}

.slick-dots li {
  display: inline-block;
  margin: 0 8px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 5px; /*ドットボタンのサイズ*/
  height: 5px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: rgb(255, 255, 255); /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #111; /*ドットボタンの現在地表示の色*/
}

.sp_block {
  display: none;
}

.pc_block {
  display: block;
}

/*ここまで*/
.reporter_icon {
  max-width: 300px;
  margin-top: 2rem;
}

.youtube_cont {
  display: flex;
  flex-flow: row wrap;
  gap: 15px;
  margin: 5rem 0 10rem;
  padding: 2rem;
  border: 4px solid #000;
  background-color: #fff;
  position: relative;
}
.youtube_cont .youtube_item {
  width: calc((100% - 15px) / 2);
}
.youtube_cont .youtube_item::before {
  content: none;
}
@media screen and (max-width: 840px) {
  .youtube_cont .youtube_item {
    width: 100%;
  }
}
.youtube_cont::before {
  content: "";
  background-color: #fbc9c0;
  border: 4px solid #000;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 15px;
  top: 15px;
  z-index: -1;
}

.youtube_link {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  width: 100%;
}

.youtube_link iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.fix_back {
  position: fixed;
  z-index: -100;
  width: 100%;
  height: 100lvh;
  top: 0;
}
.fix_back video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fix_back::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #000;
  mix-blend-mode: multiply;
  opacity: 0.5;
  position: absolute;
  top: 0;
  left: 0;
}

#top-image-wrap {
  background-color: #000;
  padding: 0;
}

#date_venue {
  background-color: #000;
  padding-top: 15%;
  padding-bottom: 0;
}
#date_venue h2 {
  position: absolute;
  width: 190px;
  top: -46%;
  left: -16%;
}
@media screen and (max-width: 840px) {
  #date_venue h2 {
    left: 3%;
  }
}
@media screen and (max-width: 540px) {
  #date_venue h2 {
    width: 120px;
    left: -10%;
  }
}
#date_venue .chara_back2 {
  position: absolute;
  width: 20.5%;
  top: -27%;
  right: 0;
}
@media screen and (max-width: 840px) {
  #date_venue .chara_back2 {
    top: -13%;
  }
}
@media screen and (max-width: 540px) {
  #date_venue .chara_back2 {
    top: -23%;
  }
}
#date_venue .chara_04 {
  width: 50%;
  position: absolute;
  right: -6%;
  top: -22%;
}
@media screen and (max-width: 840px) {
  #date_venue .chara_04 {
    top: -6%;
  }
}
@media screen and (max-width: 540px) {
  #date_venue .chara_04 {
    top: -9%;
  }
}
#date_venue .chara_back3 {
  position: absolute;
  width: 20.5%;
  bottom: -34%;
  left: 0;
}
@media screen and (max-width: 840px) {
  #date_venue .chara_back3 {
    bottom: -14%;
  }
}
#date_venue .chara_03 {
  width: 47%;
  position: absolute;
  left: -18%;
  bottom: -27%;
}
@media screen and (max-width: 840px) {
  #date_venue .chara_03 {
    bottom: -17%;
  }
}
#date_venue .date_layout1,
#date_venue .date_layout2 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0px;
  justify-content: center;
}
#date_venue .bs_day,
#date_venue .gn_day,
#date_venue .venue_wrap {
  border: 15px solid #000;
  padding: 30px;
  display: flex;
  flex-flow: column;
  background-color: #ddd;
  height: auto;
  position: relative;
}
@media screen and (max-width: 840px) {
  #date_venue .bs_day,
  #date_venue .gn_day,
  #date_venue .venue_wrap {
    width: 100%;
    max-width: 500px;
  }
}
@media screen and (max-width: 540px) {
  #date_venue .bs_day,
  #date_venue .gn_day,
  #date_venue .venue_wrap {
    padding: 10px;
  }
}
#date_venue .bs_day {
  width: 395px;
  max-width: 100%;
  background: linear-gradient(to bottom, #f14a2d 50%, #9f1b0a);
  transform: translateY(-30%);
}
@media screen and (max-width: 840px) {
  #date_venue .bs_day {
    transform: none;
  }
}
@media screen and (max-width: 540px) {
  #date_venue .bs_day {
    width: 80%;
  }
}
#date_venue .gn_day {
  width: 555px;
  max-width: 100%;
  background: linear-gradient(to bottom, #fd984f 50%, #c06a3d);
}
#date_venue .venue_wrap {
  width: 624px;
  max-width: 100%;
  display: flex;
  flex-flow: column;
  gap: 30px;
  background: linear-gradient(to bottom, #ffca4d 50%, #c88f3d);
}
@media screen and (max-width: 540px) {
  #date_venue .venue_wrap {
    gap: 10px;
    width: 85%;
    margin-left: auto;
  }
}
#date_venue .date_num_wrap {
  display: flex;
  justify-content: center;
}
#date_venue .date_num {
  font-family: "agency-fb", sans-serif;
  font-weight: 900;
  font-style: normal;
  font-size: 10rem;
  display: flex;
  align-items: end;
  line-height: 1;
  position: relative;
  z-index: 1;
}
#date_venue .date_num span {
  font-size: 7.5rem;
  padding-bottom: 3px;
}
#date_venue .date_num span:nth-last-of-type(1) {
  background-color: #fff;
  aspect-ratio: 1/1;
  border-radius: 100px;
  font-size: 3rem;
  width: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
  transform: translate(-10px, 10px);
  z-index: -1;
}
@media screen and (max-width: 540px) {
  #date_venue .date_num span:nth-last-of-type(1) {
    font-size: 1.5rem;
    width: 45px;
  }
}
#date_venue .date_category {
  width: 100%;
  background-color: #000;
  color: #fff;
  text-align: center;
  z-index: 2;
  margin-top: 20px;
}
#date_venue .venue {
  font-size: 4rem;
  text-align: center;
}
#date_venue .venue span {
  font-size: 2.8rem;
  display: block;
}
@media screen and (max-width: 540px) {
  #date_venue .venue {
    font-size: 3rem;
  }
  #date_venue .venue span {
    font-size: 1.8rem;
  }
}

.year_month {
  color: #fff;
  text-align: center;
  filter: drop-shadow(0 0 5px #000);
  font-size: 4.5rem;
}

.link_btn {
  width: -moz-fit-content;
  width: fit-content;
  height: 57px;
  display: flex;
  color: #000;
  align-items: center;
  font-size: 1.8rem;
  justify-content: center;
  position: relative;
  padding-right: 58px;
  padding-left: 30px;
  background-color: #fff;
  border: 3px solid #000;
  border-radius: 100px;
  margin: 0 auto;
}
.link_btn::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #ffca4d;
  background-image: url(images/arrow.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: 33%;
  background-position: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}
@media screen and (max-width: 540px) {
  .link_btn {
    width: 100%;
    line-height: 1.2;
    text-align: center;
  }
}

.program_inner h3 {
  color: #fff;
}
.program_inner h2 {
  width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  .program_inner h2 {
    width: 180px;
  }
}

/*レスポンシブ*/
@media screen and (max-width: 840px) {
  .sp_block {
    display: block;
  }
  .pc_block {
    display: none;
  }
  .cdt_box #CDT p {
    font-size: 10rem;
    width: calc((100% - 3rem) / 4);
  }
  .cdt_box #CDT {
    gap: 1rem;
  }
  .cdt_box span {
    font-size: 1.2rem;
  }
  .h2_box {
    flex-flow: column;
  }
  h2 .h2_line {
    position: absolute;
    top: 0;
    left: 102px;
    height: 87.5px;
  }
  #date_venue .inner {
    flex-flow: column;
  }
  #date_venue .left,
  #date_venue .right {
    width: 100%;
  }
  #date_venue .date_num {
    text-align: center;
    margin-top: 3rem;
    font-size: 6rem;
  }
  .h2_box p {
    font-size: 4rem;
  }
  #date_venue .year {
    font-size: 3rem;
  }
  #date_venue .left {
    border-right: none;
  }
  .tab_layout {
    margin-bottom: -2.5rem;
    overflow-x: scroll;
    overflow-y: hidden;
  }
  .item_cont .inner {
    width: 100%;
  }
  .h2_box.white {
    flex-flow: row;
  }
  .h2_box.white h2 {
    margin-bottom: -8px;
    width: 40%;
  }
  .streaming_btn {
    width: 60%;
    margin: 0 auto;
    margin-top: 1rem;
  }
  .content_tab02 .item .left,
  .content_tab02 .item .right {
    width: 100%;
  }
  .item .right {
    margin-top: 5rem;
  }
  .content_tab03 .item .left,
  .content_tab03 .item .right,
  .content_tab04 .item .left,
  .content_tab04 .item .right,
  .content_tab05 .item .left,
  .content_tab05 .item .right {
    width: 100%;
  }
  .content_tab03 .item .title,
  .content_tab03 .item .txt,
  .content_tab04 .item .title,
  .content_tab04 .item .txt,
  .content_tab05 .item .title,
  .content_tab05 .item .txt {
    width: 100%;
  }
  .content_tab03 .item .title,
  .content_tab04 .item .title,
  .content_tab05 .item .title {
    font-size: 1.8rem;
  }
  #program .anchortab_layout {
    width: 90%;
  }
  [id^=content_anchor0] .item {
    flex-flow: column;
  }
  [id^=content_anchor0] .item .left,
  [id^=content_anchor0] .item .right {
    width: 100%;
  }
  [id^=content_anchor0] h4 {
    transform: translateX(70px);
  }
  .live_streaming_mc_wrap {
    gap: 1rem;
  }
  .live_streaming_mc_wrap .guest_item {
    width: calc((100% - 6rem) / 3);
  }
  .main_mc_wrap .inner {
    gap: 4rem;
  }
  .live_streaming_mc_wrap .guest_item .txt {
    bottom: 48px;
  }
}
@media screen and (max-width: 540px) {
  .sp_block {
    display: block;
  }
  .pc_block {
    display: none;
  }
  .cdt_box {
    padding: 10px;
    border-radius: 30px;
  }
  .cdt_box #CDT p {
    font-size: 4rem;
    width: calc((100% - 3rem) / 4);
  }
  .cdt_box #CDT {
    gap: 1rem;
  }
  .cdt_box span {
    font-size: 1.2rem;
  }
  h2 {
    padding-left: 0;
    padding-bottom: 0;
    width: 80%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
  }
  .h2_box {
    flex-flow: column;
  }
  #date_venue .inner {
    flex-flow: column;
  }
  #date_venue .left,
  #date_venue .right {
    width: 100%;
  }
  #date_venue .date_num {
    text-align: center;
    margin-top: 0rem;
    font-size: 6rem;
  }
  .h2_box p {
    font-size: 2rem;
  }
  #date_venue .year {
    font-size: 3rem;
  }
  #date_venue .left {
    border-right: none;
  }
  .item_cont .inner {
    width: 100%;
  }
  .h2_box.white {
    flex-flow: row;
  }
  .h2_box.white h2 {
    margin-bottom: -13px;
    width: 80%;
  }
  .streaming_btn {
    width: 100%;
    margin-top: 1rem;
  }
  .content_tab02 .item .left,
  .content_tab02 .item .right {
    width: 100%;
  }
  .live_streaming_mc_wrap .guest_item .txt span {
    font-size: 1rem;
    letter-spacing: 0;
  }
  .item .right {
    margin-top: 0;
  }
  .content_tab03 .item .left,
  .content_tab03 .item .right,
  .content_tab04 .item .left,
  .content_tab04 .item .right,
  .content_tab05 .item .left,
  .content_tab05 .item .right {
    width: 100%;
  }
  .content_tab03 .item .title,
  .content_tab03 .item .txt,
  .content_tab04 .item .title,
  .content_tab04 .item .txt,
  .content_tab05 .item .title,
  .content_tab05 .item .txt {
    width: 100%;
  }
  .content_tab03 .item .title,
  .content_tab04 .item .title,
  .content_tab05 .item .title {
    font-size: 1.8rem;
  }
  .txt_field {
    margin-top: 3rem;
    padding-left: 0;
  }
  .guest_window .df_row {
    flex-flow: column;
  }
  .guest_photo img {
    height: auto;
  }
  h2 img {
    height: auto;
  }
  #date_venue .date_num span {
    font-size: 4rem;
  }
  .date_category {
    margin-top: 2rem !important;
    font-size: 1.5rem;
    padding-top: 1rem;
  }
  .venue_layout {
    flex-flow: column;
    margin-bottom: 0;
  }
  .venue_layout .venue,
  .venue_layout .s_venue {
    width: 100%;
    padding: 0 !important;
    text-align: center !important;
  }
  #program .anchortab_layout .anchortab_01,
  #program .anchortab_layout .anchortab_02,
  #program .anchortab_layout .anchortab_03 {
    font-size: 2.2rem;
  }
  #program .anchortab_layout .anchortab_01 span,
  #program .anchortab_layout .anchortab_02 span,
  #program .anchortab_layout .anchortab_03 span {
    font-size: 1.6rem;
  }
  .guest_wrap {
    gap: 5rem 3rem !important;
    justify-content: center;
  }
  [id^=content_anchor0] h4 {
    transform: translateX(30px);
  }
  [id^=content_anchor0] .item .left {
    padding-right: 0;
    margin-bottom: 40px;
  }
  [id^=content_anchor0] .guest_wrap {
    gap: 1rem !important;
  }
  #program .anchortab_layout {
    top: 20px;
  }
  [id^=content_anchor0] .item p {
    font-size: 1.8rem;
  }
  [id^=content_anchor0] .item p.txt {
    font-size: 1.5rem;
  }
  .live_streaming_mc_wrap .guest_item .txt {
    bottom: 28px;
  }
  .main_mc_wrap .guest_item .txt {
    bottom: 25px;
  }
}
.txt-r {
  color: red;
}

@keyframes mvChara01In {
  0% {
    opacity: 0;
    transform: translateX(-180px) scaleY(1.06);
  }
  55% {
    opacity: 1;
    transform: translateX(12px) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scaleY(1);
  }
}
@keyframes mvChara02In {
  0% {
    opacity: 0;
    transform: translateX(180px) scaleY(1.06);
  }
  55% {
    opacity: 1;
    transform: translateX(-12px) scaleY(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scaleY(1);
  }
}
@keyframes mvBackIn {
  0% {
    opacity: 0;
    transform: scale(0.3) rotate(-20deg);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) rotate(4deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}
#mv .chara_01 {
  animation: mvChara01In 0.55s cubic-bezier(0.16, 1.5, 0.5, 1) 0.1s both;
}

#mv .chara_02 {
  animation: mvChara02In 0.55s cubic-bezier(0.16, 1.5, 0.5, 1) 0.35s both;
}

#mv .chara_back1 {
  animation: none;
}

@keyframes dvChara04In {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(-70px) rotate(8deg);
  }
  58% {
    opacity: 1;
    transform: translateX(-10px) translateY(6px) rotate(-1.5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0);
  }
}
@keyframes dvChara03In {
  0% {
    opacity: 0;
    transform: translateX(-120px) translateY(70px) rotate(-8deg);
  }
  58% {
    opacity: 1;
    transform: translateX(10px) translateY(-6px) rotate(1.5deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0);
  }
}
#date_venue .chara_04,
#date_venue .chara_03 {
  opacity: 0;
}

#date_venue.dv-visible .chara_04 {
  animation: dvChara04In 0.6s cubic-bezier(0.22, 1.4, 0.5, 1) 0.05s both;
}

#date_venue.dv-visible .chara_03 {
  animation: dvChara03In 0.6s cubic-bezier(0.22, 1.4, 0.5, 1) 0.28s both;
}

@keyframes charaInRight {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(15px);
  }
  65% {
    opacity: 1;
    transform: translateX(-8px) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes charaInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(15px);
  }
  65% {
    opacity: 1;
    transform: translateX(8px) translateY(-4px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
#content_anchor01 .chara_02,
#content_anchor02 .chara_03,
#content_anchor03 .chara_05 {
  opacity: 0;
}

@keyframes charaOutRight {
  from {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(100px) translateY(15px);
  }
}
@keyframes charaOutLeft {
  from {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100px) translateY(15px);
  }
}
#content_anchor01.chara-visible .chara_02 {
  animation: charaInRight 0.55s cubic-bezier(0.22, 1.4, 0.5, 1) forwards;
}

#content_anchor02.chara-visible .chara_03 {
  animation: charaInLeft 0.55s cubic-bezier(0.22, 1.4, 0.5, 1) forwards;
}

#content_anchor03.chara-visible .chara_05 {
  animation: charaInRight 0.55s cubic-bezier(0.22, 1.4, 0.5, 1) forwards;
}

#content_anchor01.chara-exit .chara_02 {
  animation: charaOutRight 0.4s ease-in forwards;
}

#content_anchor02.chara-exit .chara_03 {
  animation: charaOutLeft 0.4s ease-in forwards;
}

#content_anchor03.chara-exit .chara_05 {
  animation: charaOutRight 0.4s ease-in forwards;
}

@keyframes ilIdleWash {
  0% {
    transform: translateX(0px) translateY(0px) scale(1);
  }
  68% {
    transform: translateX(0px) translateY(0px) scale(1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.5, 1);
  }
  73% {
    transform: translateX(18px) translateY(-16px) scale(0.92);
  }
  79% {
    transform: translateX(-22px) translateY(14px) scale(1.1);
  }
  84% {
    transform: translateX(16px) translateY(-10px) scale(0.94);
  }
  89% {
    transform: translateX(-12px) translateY(7px) scale(1.05);
  }
  93% {
    transform: translateX(6px) translateY(-3px) scale(0.99);
  }
  97% {
    transform: translateX(-2px) translateY(1px) scale(1.01);
  }
  100% {
    transform: translateX(0px) translateY(0px) scale(1);
  }
}
#program .il {
  animation: ilIdleWash 5s linear infinite;
}

@keyframes ilThreePoint {
  0% {
    transform: translateX(0) translateY(0);
    animation-timing-function: step-end;
  }
  33.333% {
    transform: translateX(-22px) translateY(-22px);
    animation-timing-function: step-end;
  }
  66.666% {
    transform: translateX(22px) translateY(22px);
    animation-timing-function: step-end;
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
#contents .il {
  animation: ilThreePoint 3s linear infinite;
}

#pamphlet .inner {
  max-width: 600px;
}
#pamphlet .inner .venue_layout p {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 540px) {
  #pamphlet .inner .venue_layout p {
    font-size: 14px;
  }
}
#pamphlet .inner .venue_layout .link_btn {
  margin: 0 auto;
}
@media screen and (max-width: 540px) {
  #pamphlet .inner .venue_layout .link_btn {
    font-size: 2rem;
  }
}
@media screen and (max-width: 540px) and (min-width: 520px) {
  #count_down {
    margin-top: 5%;
    padding-bottom: 4.5rem;
  }
  #date_venue {
    padding-top: 32%;
  }
  #date_venue h2 {
    top: -10%;
    left: 3%;
  }
  #date_venue .chara_04 {
    top: 6%;
  }
  #date_venue .chara_03 {
    bottom: -6%;
  }
}
@media screen and (max-width: 519px) and (min-width: 500px) {
  #count_down {
    margin-top: 2%;
    padding-bottom: 4rem;
  }
  #date_venue {
    padding-top: 29%;
  }
  #date_venue h2 {
    top: -14%;
    left: 2%;
  }
  #date_venue .chara_04 {
    top: 4%;
  }
  #date_venue .chara_03 {
    bottom: -8%;
  }
}
@media screen and (max-width: 499px) and (min-width: 480px) {
  #count_down {
    margin-top: -1%;
    padding-bottom: 3.5rem;
  }
  #date_venue {
    padding-top: 26%;
  }
  #date_venue h2 {
    top: -18%;
    left: 1%;
  }
  #date_venue .chara_04 {
    top: 2%;
  }
  #date_venue .chara_03 {
    bottom: -10%;
  }
}
@media screen and (max-width: 479px) and (min-width: 445px) {
  #count_down {
    margin-top: -5%;
    padding-bottom: 3rem;
  }
  #date_venue {
    padding-top: 23%;
  }
  #date_venue h2 {
    top: -22%;
    left: 0;
  }
  #date_venue .chara_04 {
    top: 0;
  }
  #date_venue .chara_03 {
    bottom: -14%;
  }
}
@media screen and (max-width: 444px) and (min-width: 421px) {
  #count_down {
    margin-top: -11%;
    padding-bottom: 2rem;
  }
  #date_venue {
    padding-top: 20%;
  }
  #date_venue h2 {
    top: -28%;
    left: -2%;
  }
  #date_venue .chara_04 {
    top: -4%;
  }
  #date_venue .chara_03 {
    bottom: -18%;
  }
}

/* ========================================
   ★ パンチエフェクト ON/OFF ここをコメント解除でオン
   ======================================== */
/* punch-effect: OFF
.punch-effect {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform-origin: center center;
}
punch-effect: OFF *//*# sourceMappingURL=content.css.map */