@charset "UTF-8";
@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
/* base */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "M PLUS 1p", sans-serif;
  color: #fff;
  line-height: 1.5;
}

main {
  background-image: url("/images/bg_blue.webp");
  background-attachment: fixed;
}
main a {
  color: #000;
  font-weight: 700;
  display: block;
  transition: translate 0.3s;
}
@media (hover: hover) {
  main a:hover {
    cursor: url("/images/cursor.png"), pointer;
    animation: bounce 0.3s linear;
  }
}

img {
  max-width: 100%;
}

/* イントロとあそびかたに使用 */
.sp-only {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-only {
    display: inline !important;
  }
}

.pc-only {
  display: inline;
}
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/*-------------------------
header switchロゴ
-------------------------*/
.header-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .header-logo {
    width: 20vw;
  }
}

/*-------------------------
ナビ
-------------------------*/
nav {
  position: fixed;
  bottom: 30px;
  left: 0;
  z-index: 20;
}

.nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .nav-list {
    row-gap: 0.25rem;
  }
}

.nav-item a {
  display: block;
  text-align: center;
  line-height: 36px;
  background-image: url("/images/nav-base.png");
  background-size: cover;
  background-position: right;
  width: 160px;
  height: 36px;
}
@media screen and (max-width: 767px) {
  .nav-item a {
    font-size: 0.75rem;
    width: 100px;
  }
}

/*-------------------------
KV横キャンペーン吹き出し
-------------------------*/
.bubule {
  position: absolute;
  top: 46vw;
  right: 20px;
  width: 198px;
  animation: fuwafuwa 1s infinite alternate ease-in-out;
}
@media screen and (max-width: 767px) {
  .bubule {
    top: 140vw;
    right: 0;
    width: min(40vw, 200px);
  }
}

@keyframes fuwafuwa {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(15px);
  }
}
/*-------------------------
KV
-------------------------*/
.kv img {
  max-width: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .kv {
    height: min(156vw, 1160px);
    background-color: #0d0d0d;
  }
}

/*-------------------------
shop
-------------------------*/
.shop {
  background-image: url("/images/bg_red.png");
  padding: 30px 0;
  overflow: hidden;
  border-bottom: 2px solid #000;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .shop {
    padding: 2rem 0;
  }
}

.shop-text {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .shop-text {
    width: min(80%, 390px);
    margin-inline: auto;
  }
}

.shop-products-list {
  display: flex;
  column-gap: 2rem;
  justify-content: center;
  margin: 1rem auto 50px;
  width: 92%;
}
@media screen and (max-width: 767px) {
  .shop-products-list {
    column-gap: 1rem;
  }
}

.shop-products-item {
  display: flex;
  width: 365px;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .shop-products-item .package-button {
    display: flex;
    justify-content: center;
  }
}
.shop-products-item .package-button::after {
  transform: rotate(90deg);
}
.shop-products-item a {
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  background-color: rgba(0, 0, 0, 0.8);
  border-image-outset: 3px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  padding: 0 1rem;
  position: relative;
  width: 100%;
  height: 80px;
}
.shop-products-item a::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 38%;
  right: 0;
  background-color: #ffffff;
  -webkit-mask-image: url("/images/btn-arrow.svg");
  -webkit-mask-size: cover;
  mask-image: url("/images/btn-arrow.svg");
  mask-size: cover;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .shop-products-item a {
    flex-direction: column;
    padding: 0;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .shop-products-item a::after {
    display: none;
  }
}
.shop-products-item p {
  color: #F1E24F;
  font-weight: 700;
  font-size: clamp(0.875rem, 1.8vw, 1rem);
  width: calc(42% - 1rem);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .shop-products-item p {
    width: 100%;
  }
}
.shop-products-item .img {
  width: 58%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .shop-products-item .img {
    width: 100%;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.shop-products-item .img .hpo-logo {
  width: 105px;
}
.shop-products-item .package-txt {
  width: 48%;
}
.shop-products-item .package-shop {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .shop-products-item .package-shop::after {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 38%;
    right: 0;
    background-color: #ffffff;
    -webkit-mask-image: url("/images/btn-arrow.svg");
    -webkit-mask-size: cover;
    mask-image: url("/images/btn-arrow.svg");
    mask-size: cover;
    vertical-align: middle;
  }
  .shop-products-item .package-shop::after {
    transform: rotate(90deg);
  }
}

.shop-original {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.shop-original .shop-original-title {
  max-width: 92%;
}
.shop-original .shop-original-list {
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  background-color: rgba(0, 0, 0, 0.8);
  border-image-outset: 3px;
  border-radius: 9px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5%;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .shop-original .shop-original-list {
    width: 92%;
    margin: 1rem auto 20px;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
  .shop-original .shop-original-list li:last-child {
    transform: translateX(50%);
  }
  .shop-original .shop-original-list a {
    display: flex;
    flex-direction: column;
  }
}
.shop-original .shop-original-list img {
  display: block;
  margin: 0 auto;
  margin-bottom: 18px;
}
.shop-original .shop-original-list .shop-original-item-img {
  width: 100%;
  height: auto;
  padding-bottom: 18px;
  border-bottom: 2px solid #F1E24F;
}
.shop-original .shop-original-list .shop-original-item-txt {
  color: #fff;
  font-weight: 300;
}

/*-------------------------
intro
-------------------------*/
.intro {
  text-align: center;
  position: relative;
  padding-top: 50px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .intro {
    padding-bottom: 60px;
  }
}

.intro-lead {
  width: 95%;
  margin-inline: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro-lead {
    max-width: 500px;
  }
}

.intro-text-wrap {
  position: relative;
}

/* 装飾写真 */
.intro-other {
  position: absolute;
}
.intro-other.other01 {
  top: min(10vw, 160px);
  left: calc(50% + 35vw);
  transform: translateX(-50%) rotate(13deg);
  width: min(13.89vw, 200px);
}
@media screen and (max-width: 767px) {
  .intro-other.other01 {
    top: -40px;
    width: min(20.51vw, 160px);
  }
}
.intro-other.other02 {
  bottom: -50px;
  left: calc(50% + 35vw);
  transform: translateX(-50%) rotate(-15deg);
  width: min(13.89vw, 200px);
}
@media screen and (max-width: 767px) {
  .intro-other.other02 {
    width: min(20.51vw, 160px);
  }
}
.intro-other.other03 {
  bottom: -50px;
  left: 20px;
  transform: rotate(15deg);
  width: min(13.89vw, 200px);
}
@media screen and (max-width: 767px) {
  .intro-other.other03 {
    width: min(20.51vw, 160px);
    bottom: -60px;
  }
}
.intro-other img {
  border: 2px solid #fff;
  box-shadow: 4px 4px 0px 0px #000;
}
@media screen and (max-width: 767px) {
  .intro-other img {
    box-shadow: 2px 2px 0px 0px #000;
  }
}

/* 本文 */
.intro-text {
  font-size: clamp(1.125rem, 1.67vw, 1.5rem);
  font-weight: 700;
  text-align: center;
  line-height: 2;
  padding-inline: 1rem;
}
@media screen and (max-width: 767px) {
  .intro-text {
    font-size: clamp(0.875rem, 2.35vw, 1.125rem);
    line-height: 2.2;
    margin-top: 1rem;
  }
}
.intro-text span {
  display: inline;
  background-color: #000;
  padding: 0.25rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .intro-text span {
    padding: 0.25rem;
  }
}
.intro-text span.big {
  font-size: 170%;
}

/* 流れる写真 */
.intro-pictures {
  display: flex;
  overflow: hidden;
}

.intro-pictures-list {
  display: flex;
  column-gap: 2rem;
  margin-top: 90px;
  animation: loop-list 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .intro-pictures-list {
    column-gap: 1rem;
  }
}

@keyframes loop-list {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.intro-pictures-item {
  width: 16.6666666667vw;
}
@media screen and (max-width: 767px) {
  .intro-pictures-item {
    width: 33.3333333333vw;
  }
}
.intro-pictures-item:last-child {
  margin-right: 2rem;
}
@media screen and (max-width: 767px) {
  .intro-pictures-item:last-child {
    margin-right: 1rem;
  }
}
.intro-pictures-item img {
  border-radius: 0.5rem;
  border: 1px solid #fff;
}

/* 注意テキスト */
.intro-attention {
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  background-color: rgba(0, 0, 0, 0.8);
  border-image-outset: 3px;
  border-radius: 9px;
  width: 640px;
  margin: 90px auto 0;
  padding: 1.5rem;
  display: flex;
  column-gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .intro-attention {
    width: 90%;
    padding: 0.5rem;
    column-gap: 1rem;
    font-size: 0.8125rem;
    margin: 50px auto 0;
  }
}

.intro-attention-icon {
  width: 42px;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .intro-attention-icon {
    width: 30px;
  }
}

.intro-attention-text {
  text-align: left;
}

/*-------------------------
member
-------------------------*/
.member {
  background-image: url("/images/bg_red.png");
  position: relative;
  padding-bottom: 40px;
  border-bottom: 2px solid #000;
}

.member-title-wrap {
  width: 1200px;
  width: 92%;
  margin-inline: auto;
}
.member-title-wrap h2 {
  position: absolute;
  z-index: 2;
  top: -50px;
}
@media screen and (max-width: 767px) {
  .member-title-wrap h2 {
    width: 322.85px;
    max-width: 100%;
    top: -20px;
  }
}

.member-inner {
  overflow: hidden;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .member-inner {
    padding-top: 50px;
  }
}

/* リード文 */
.member-lead-wrap {
  transform: rotate(-7deg);
  background-color: #fff;
  text-align: center;
  margin: 0 calc(50% - 60vw);
  width: 120vw;
  position: relative;
}

.member-lead {
  width: min(56%, 700px);
  margin: auto;
  position: relative;
  padding-block: 0.25rem;
}
@media screen and (max-width: 767px) {
  .member-lead {
    width: 74%;
  }
}

/* リード周りの装飾写真 */
.member-other {
  position: absolute;
}
.member-other.other01 {
  top: 0;
  left: 104%;
  transform: rotate(15deg);
  width: min(10vw, 144px);
  border: 2px solid #fff;
  box-shadow: 4px 4px 0px 0px #000;
}
@media screen and (max-width: 767px) {
  .member-other.other01 {
    box-shadow: 2px 2px 0px 0px #000;
  }
}
@media screen and (max-width: 767px) {
  .member-other.other01 {
    top: min(100%, 80px);
    left: 90%;
    width: 62px;
  }
}
.member-other.other02 {
  top: 0;
  left: -110px;
  transform: rotate(-15deg);
  width: 84px;
}
@media screen and (max-width: 767px) {
  .member-other.other02 {
    top: -30px;
    left: -20px;
    width: 42px;
  }
}

/* コンテンツ */
.member-content {
  margin-top: 90px;
  padding-bottom: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .member-content {
    margin-top: 50px;
  }
}

.swiper-member {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}

.member-list {
  padding-block: 3px;
}

.member-box {
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  background-color: rgba(0, 0, 0, 0.8);
  border-image-outset: 3px;
  border-radius: 9px;
  text-align: center;
  padding: 1rem;
  width: 180px !important;
}
@media screen and (max-width: 767px) {
  .member-box {
    padding: 0.25rem;
    width: 150px !important;
  }
}

.member-img {
  background-color: #fff;
  height: 140px;
  display: flex;
  align-items: end;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .member-img {
    height: 110px;
  }
}
.member-img img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .member-img img {
    width: 62px;
  }
}
.member-img .face {
  width: 110px;
}
@media screen and (max-width: 767px) {
  .member-img .face {
    width: 80px;
  }
}
.member-img .w-small {
  width: 70px;
}
@media screen and (max-width: 767px) {
  .member-img .w-small {
    width: 52px;
  }
}

.member-name {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  font-size: 0.875rem;
  flex-direction: column;
  height: 2rem;
}
@media screen and (max-width: 767px) {
  .member-name {
    font-size: 0.8125rem;
  }
}
.member-name span {
  font-size: 80%;
}

/* 前へ次への矢印カスタマイズ */
.swiper-member .swiper-button-prev,
.swiper-member .swiper-button-next {
  height: 32px;
  width: 32px;
  position: absolute;
  bottom: 0px;
  top: auto;
}
.swiper-member .swiper-button-prev {
  left: calc(50% - 40px);
}
.swiper-member .swiper-button-next {
  right: calc(50% - 40px);
}

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

.swiper-button-prev::after {
  background-image: url(/images/member-arrow.svg);
  transform: rotate(180deg);
}

.swiper-button-next::after {
  background-image: url(/images/member-arrow.svg);
}

/*-------------------------
play
-------------------------*/
.play {
  padding-top: 60px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .play {
    padding-top: 40px;
  }
}

.play-title-wrap {
  width: 1200px;
  width: 92%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .play-title-wrap {
    width: 96%;
  }
}
.play-title-wrap::before, .play-title-wrap::after {
  content: "";
  display: inline-block;
  background-image: url(/images/play-daruma.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: min(7vw, 100px);
  height: min(7vw, 100px);
}
@media screen and (max-width: 767px) {
  .play-title-wrap::before, .play-title-wrap::after {
    width: 40px;
    height: 40px;
  }
}
.play-title-wrap h2 {
  margin-inline: 2rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .play-title-wrap h2 {
    width: 274.45px;
    max-width: 100%;
    margin-inline: 0.5rem;
  }
}

/* コンテンツ */
.play-content {
  margin-top: 30px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .play-content {
    margin-top: 20px;
  }
}

.swiper-play {
  max-width: 1200px;
  width: 92%;
  margin: auto;
}

.play-detail-list {
  padding-block: 3px;
}

.play-detail-box {
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  background-color: rgba(0, 0, 0, 0.8);
  border-image-outset: 3px;
  border-radius: 9px;
  padding: min(2vw, 2.5rem);
  height: auto;
}
@media screen and (max-width: 767px) {
  .play-detail-box {
    padding: 1rem 0.5rem;
  }
}
.play-detail-box .title {
  color: #F1E24F;
  font-weight: 700;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .play-detail-box .title {
    font-size: 1.125rem;
  }
}
.play-detail-box .contents {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .play-detail-box .contents {
    margin-top: 1.5rem;
  }
}
.play-detail-box .text {
  font-size: clamp(1rem, 1.25vw, 1.125rem);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .play-detail-box .text {
    font-size: 0.875rem;
  }
}
.play-detail-box .text-yellow {
  color: #F1E24F;
}
.play-detail-box.page02 .img {
  text-align: center;
}
@media screen and (max-width: 550px) {
  .play-detail-box.page02 .img {
    max-width: 250px;
    margin-inline: auto;
  }
}
.play-detail-box.page03 .contents, .play-detail-box.page05 .contents {
  display: flex;
  column-gap: 2.5rem;
  row-gap: 2.5rem;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .play-detail-box.page03 .contents, .play-detail-box.page05 .contents {
    column-gap: 1rem;
    row-gap: 1rem;
    flex-wrap: wrap;
  }
}
.play-detail-box.page03 .img, .play-detail-box.page05 .img {
  width: 230px;
  flex-shrink: 0;
}
.play-detail-box.page03 .img {
  text-align: right;
}
.play-detail-box.page04 {
  container-type: inline-size;
}
.play-detail-box.page04 .contents {
  display: flex;
  column-gap: 1.5rem;
}
@container (max-width: 400px) {
  .play-detail-box.page04 .contents {
    flex-direction: column;
    row-gap: 1rem;
  }
}
.play-detail-box.page04 .command-wrap {
  flex: 1;
  font-size: 0;
}
.play-detail-box.page04 .command-title {
  color: #F1E24F;
  font-weight: 700;
  font-size: 1.125rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .play-detail-box.page04 .command-title {
    font-size: 0.9375rem;
  }
}
.play-detail-box.page04 .command-title:first-child {
  margin-top: 0;
}
.play-detail-box.page04 .command-detail {
  font-size: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .play-detail-box.page04 .command-detail {
    font-size: 0.8125rem;
  }
}

/* 前へ次への矢印カスタマイズ */
.swiper-play .swiper-button-prev,
.swiper-play .swiper-button-next {
  height: 32px;
  width: 32px;
}
@media screen and (min-width: 768px) {
  .swiper-play .swiper-button-prev,
  .swiper-play .swiper-button-next {
    bottom: 0px;
    top: auto;
  }
  .swiper-play .swiper-button-prev {
    left: calc(50% - 110px);
  }
  .swiper-play .swiper-button-next {
    right: calc(50% - 110px);
  }
}

/* ページネーション */
.swiper-pagination {
  font-family: "DotGothic16", sans-serif;
  width: 122px;
  height: 29px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.swiper-pagination::before {
  content: "";
  display: inline-block;
  background-image: url(/images/play-pagination.svg);
  width: 122px;
  height: 32px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

/*-------------------------
campaign
-------------------------*/
.campaign {
  background-image: url("/images/bg_red.png");
  padding-top: 60px;
  padding-bottom: 60px;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 767px) {
  .campaign {
    padding-top: 40px;
  }
}

.campaign-title-wrap {
  width: 1200px;
  width: 92%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.campaign-title-wrap::after {
  content: "";
  display: inline-block;
  background-image: url(/images/member/chr2.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: min(8vw, 109px);
  height: min(8vw, 109px);
}
@media screen and (max-width: 767px) {
  .campaign-title-wrap::after {
    width: 71px;
    height: 71px;
    position: absolute;
    bottom: -17px;
    right: 0;
  }
}
.campaign-title-wrap h2 {
  margin-right: 2rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .campaign-title-wrap h2 {
    width: 302px;
    max-width: 100%;
    margin-right: 0;
  }
}

/* コンテンツ */
.campaign-content {
  max-width: 1200px;
  width: 92%;
  margin: 40px auto 0;
  display: flex;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .campaign-content {
    flex-direction: column;
    row-gap: 2.5rem;
    margin-top: 20px;
  }
}

.campaign-block {
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  background-color: rgba(0, 0, 0, 0.8);
  border-image-outset: 3px;
  border-radius: 9px;
  width: calc((100% - 2.5rem) / 2);
  margin-inline: auto;
  text-align: center;
  padding: min(2vw, 2.5rem);
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .campaign-block {
    width: 100%;
    padding: 1rem 0.5rem;
  }
}
.campaign-block .lead {
  font-size: 1.125rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .campaign-block .lead {
    font-size: 1rem;
  }
}
.campaign-block .title {
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 3px solid #BE1012;
  padding-block: 0.5rem;
}
@media screen and (max-width: 767px) {
  .campaign-block .title {
    font-size: 1.25rem;
  }
}
.campaign-block .text {
  margin-top: 1rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .campaign-block .text {
    font-size: 0.875rem;
  }
}

.campaign-btn-wrap {
  width: 280px;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .campaign-btn-wrap {
    max-width: 100%;
  }
}

.campaign02-btn-head {
  margin-top: 2.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}
@container (max-width: 400px) {
  .campaign02-btn-head {
    font-size: 0.75rem;
  }
}
.campaign02-btn-head .strong {
  font-size: 1.25rem;
  display: inline-block;
}
@container (max-width: 400px) {
  .campaign02-btn-head .strong {
    font-size: 1rem;
  }
}
.campaign02-btn-head:before, .campaign02-btn-head:after {
  position: relative;
  display: inline-block;
  content: "";
  background: #F1E24F;
  width: 2px;
  height: 2em;
  margin: 0 1em;
  margin-top: -0.2em;
  vertical-align: middle;
}
@container (max-width: 270px) {
  .campaign02-btn-head:before, .campaign02-btn-head:after {
    display: none;
  }
}
.campaign02-btn-head:before {
  transform: rotate(-35deg);
}
.campaign02-btn-head:after {
  transform: rotate(35deg);
}

.campaign02-btn-wrap {
  width: 280px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .campaign02-btn-wrap {
    max-width: 100%;
  }
}

.campaign-btn {
  display: block;
  font-size: 0.875rem;
  position: relative;
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  border-image-outset: 3px;
  border-radius: 9px;
  background-color: #AAAAAA;
  opacity: 50%;
  color: #000;
}
@media screen and (max-width: 767px) {
  .campaign-btn {
    border-radius: 7px;
  }
}

button.campaign-btn {
  color: #000;
  font-weight: 700;
  width: 100%;
}

.modal-image {
  display: none; /* 最初は非表示 */
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8); /* 半透明の背景 */
  cursor: pointer;
}
.modal-image img {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 90%;
  max-height: 90%;
}

/*-------------------------
bbs
-------------------------*/
.bbs {
  overflow: hidden;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .bbs {
    padding-top: 50px;
  }
}

/* head文 */
.bbs-head-wrap {
  transform: rotate(-7deg);
  background-color: #fff;
  text-align: center;
  margin: 0 calc(50% - 60vw);
  width: 120vw;
  position: relative;
}

.bbs-head {
  width: min(56%, 700px);
  margin: auto;
  position: relative;
  padding-block: 0.25rem;
}
@media screen and (max-width: 767px) {
  .bbs-head {
    width: 74%;
  }
}

/* ボタン */
.bbs-btn-wrap {
  width: 580px;
  margin: 30px auto 0;
  padding: 3px;
}
@media screen and (max-width: 767px) {
  .bbs-btn-wrap {
    width: 90%;
  }
}

.bbs-btn {
  display: block;
  font-size: 0.875rem;
  position: relative;
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot_b.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  border-image-outset: 3px;
  border-radius: 9px;
  background-color: #F1E24F;
  font-size: 2.125rem;
  background-color: #BE1012;
  padding: 1rem;
  color: #fff;
  text-align: center;
  box-shadow: 8px 8px 8px 0px rgba(0, 0, 0, 0.2);
}
.bbs-btn::after {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  position: absolute;
  top: 38%;
  right: 0;
  background-color: #ffffff;
  -webkit-mask-image: url("/images/btn-arrow.svg");
  -webkit-mask-size: cover;
  mask-image: url("/images/btn-arrow.svg");
  mask-size: cover;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .bbs-btn {
    font-size: 1.25rem;
    padding: 0.5rem;
  }
}

/*-------------------------
policy
-------------------------*/
.policy {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .policy {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .policy h2 {
    width: 309.1px;
    max-width: 100%;
  }
}

.policy-inner {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .policy-inner {
    flex-direction: column;
    row-gap: 2rem;
  }
}

.policy-content {
  text-align: center;
  max-width: 100%;
}

.policy-lead {
  font-weight: 700;
  text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.3);
  font-size: clamp(1rem, 1.39vw, 1.25rem);
}

.policy-btn-wrap {
  width: 280px;
  margin: 1.5rem auto 0;
  max-width: 100%;
}

.policy-btn {
  display: block;
  font-size: 0.875rem;
  position: relative;
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot_b.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  border-image-outset: 3px;
  border-radius: 9px;
  background-color: #F1E24F;
  color: #000;
  font-weight: 700;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
  width: 100%;
  transition: translate 0.3s;
}
.policy-btn::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-image: url("/images/btn-plus.svg");
  background-size: contain;
  position: absolute;
  top: 30%;
  right: 0;
}
@media (hover: hover) {
  .policy-btn:hover {
    cursor: url("/images/cursor.png"), pointer;
    animation: bounce 0.3s linear;
  }
}

/* ダイアログ */
dialog {
  background-color: transparent;
  position: relative;
  overscroll-behavior: contain;
  border: 0;
  display: block;
  position: fixed;
  inset: 0;
  transition: opacity 0.5s ease-out;
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  dialog {
    padding-top: 40px;
    padding-inline: 3px;
  }
}

dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.8);
}

dialog:not([open]) {
  opacity: 0;
  pointer-events: none;
}

html:has(dialog[open]) {
  overflow: hidden;
}

.policy-modal-box {
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  background-color: rgba(0, 0, 0, 0.8);
  border-image-outset: 3px;
  border-radius: 9px;
  max-width: 800px;
  padding: 1rem 0 1rem 1rem;
}
@media screen and (max-width: 767px) {
  .policy-modal-box {
    padding: 0.5rem 0 0.5rem 0.5rem;
  }
}

.policy-modal-inner {
  height: 540px;
  overflow-y: auto;
  padding-right: 1rem;
  scrollbar-width: thin;
}
@media screen and (max-width: 767px) {
  .policy-modal-inner {
    max-height: 60vh;
    padding-right: 0.5rem;
  }
}
.policy-modal-inner::-webkit-scrollbar {
  width: 3px;
}
.policy-modal-inner::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 3px;
}

.policy-modal-text {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .policy-modal-text {
    font-size: 0.8125rem;
  }
}
.policy-modal-text span {
  font-weight: 700;
  color: #F1E24F;
}
.policy-modal-text ul {
  display: flex;
  flex-direction: column;
  row-gap: 1em;
}
.policy-modal-text li {
  text-indent: -1em;
  padding-left: 1em;
}

.close-modal {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 1rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .close-modal {
    width: 20px;
    height: 20px;
    right: 0;
  }
}
.close-modal::after {
  content: "";
  display: inline-block;
  background-image: url(/images/modal-close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .close-modal::after {
    width: 20px;
    height: 20px;
  }
}

/*-------------------------
spec
-------------------------*/
.spec {
  padding-bottom: 60px;
  position: relative;
}

.spec-title-wrap {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}
.spec-title-wrap h2 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .spec-title-wrap h2 {
    width: 329.45px;
    max-width: 100%;
    margin-inline: auto;
  }
}

.spec-detail {
  max-width: 800px;
  width: 92%;
  margin: -30px auto 0;
  padding: 2.5rem;
  border-style: solid;
  border-width: 9px;
  border-image-source: url("/images/dot.png");
  border-image-slice: 9;
  border-image-repeat: repeat;
  image-rendering: pixelated;
  background-color: rgba(0, 0, 0, 0.8);
  border-image-outset: 3px;
  border-radius: 9px;
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
@media screen and (max-width: 767px) {
  .spec-detail {
    padding: 2.5rem 0.5rem 1rem;
  }
}
.spec-detail .spec-package {
  text-align: center;
  max-width: 214px;
  margin-inline: auto;
}
.spec-detail .spec-collection {
  width: 80%;
  margin-bottom: 1rem;
}
.spec-detail dl {
  display: flex;
  column-gap: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .spec-detail dl {
    font-size: 0.8125rem;
  }
}
.spec-detail dt {
  color: #F1E24F;
  width: 30%;
  text-align: right;
}
.spec-detail dd {
  width: 60%;
}
.spec-detail li {
  text-indent: -1em;
  padding-left: 1em;
}

/*-------------------------
shoplist
-------------------------*/
.shoplist {
  padding-bottom: 120px;
  position: relative;
}

.shoplist-title-wrap {
  max-width: 1200px;
  width: 92%;
  margin-inline: auto;
}
.shoplist-title-wrap h2 {
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .shoplist-title-wrap h2 {
    width: 329.45px;
    max-width: 100%;
    margin-inline: auto;
  }
}

.shop-list {
  max-width: 1200px;
  width: 92%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .shop-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-list li a img {
    width: 100%;
  }
}

/* 装飾 */
.chr-walk01,
.chr-walk02 {
  display: none;
}
@media screen and (min-width: 1025px) {
  .chr-walk01,
  .chr-walk02 {
    display: block;
    position: absolute;
    width: min(11.11vw, 160px);
  }
}

@media screen and (min-width: 1025px) {
  .chr-walk01 {
    top: min(10vw, 160px);
    left: max(50% + 35vw, 50% + 440px);
    transform: translateX(-50%) rotate(-15deg);
  }
}

@media screen and (min-width: 1025px) {
  .chr-walk02 {
    top: 60%;
    left: min(50% - 35vw, 50% - 470px);
    transform: translateX(-50%) rotate(30deg);
  }
}

.chr-line {
  display: flex;
  overflow: hidden;
}
.chr-line img {
  max-width: none;
  width: 1797px;
}
.chr-line img:first-child {
  animation: loop-chr 50s -25s linear infinite;
}
.chr-line img:last-child {
  animation: loop-chr2 50s linear infinite;
}
@media screen and (max-width: 767px) {
  .chr-line img {
    width: 380vw;
  }
}

@keyframes loop-chr {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-chr2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*-------------------------
aside 番組バナーエリア
-------------------------*/
aside {
  background-image: url("/images/bg_red.png");
  padding-block: 1rem;
}
aside .bnr-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
aside .bnr-item {
  max-width: 200px;
  width: 40%;
}
aside a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  aside a:hover {
    opacity: 0.8;
  }
}

/*-------------------------
footer
-------------------------*/
footer {
  background-color: #000;
  padding-inline: 1rem;
}
@media screen and (max-width: 767px) {
  footer {
    padding-bottom: 140px;
  }
}

.footer-logo-list {
  display: flex;
  column-gap: 2.5rem;
  justify-content: center;
  align-items: center;
  padding-block: 4rem;
  width: 80%;
  margin: auto;
  padding-left: min(9vw, 100px);
}
@media screen and (max-width: 767px) {
  .footer-logo-list {
    column-gap: 5vw;
    padding-block: 2rem;
    width: 95%;
    padding-left: 13vw;
  }
}
.footer-logo-list a {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .footer-logo-list a:hover {
    opacity: 0.8;
  }
}

.copyright {
  text-align: center;
  font-size: 0.875rem;
  padding-bottom: 2rem;
}

.pagetop {
  position: fixed;
  bottom: 30px;
  right: 5px;
  width: 92px;
  z-index: 2;
  opacity: 0;
  transition: translate 0.3s;
}
@media (hover: hover) {
  .pagetop:hover {
    cursor: url("/images/cursor.png"), pointer;
    animation: bounce 0.3s linear;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 66px;
  }
}/*# sourceMappingURL=style.css.map */