@charset "UTF-8";
/***********************************************
***  Reset
***********************************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --color-primary: #73d6e5;
    --color-secondary: #5ecaaf;
    --color-base:#92cfbe;
  --color-accent: #fd6f8a;
  --color-accent-light: #fff281;
  --color-text: #73a1cc;
  --color-bg: #f5f5f5;
}
html {
  margin-top: 0 !important;
    scroll-behavior: smooth;
}
body {
  position: relative;
  background-color: var(--color-base);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: calc(22.75 / 13);
  font-family:"Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #000;
  -webkit-font-smoothing: subpixel-antialiased;
    letter-spacing: 0.08em;
}

@media (max-width: 799px) {
  body {
    font-size: 12px;
  }
}
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: 400;
}
ul, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
dl, dd {
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
  color: inherit;
  word-break: break-all;
}
figure {
  margin: 0;
  line-height: 0;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
svg {
  width: 100%;
  max-width: 100%;
  vertical-align: middle;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
pre {
  margin: 0;
  font-family: inherit;
  white-space: inherit;
}
p a, dd a, pre a {
  display: inline;
  text-decoration: none;
  color: inherit;
}
p a:hover, dd a:hover, pre a:hover {
  border-bottom: 0;
}
html:not(.viewport--fixed) {
  -webkit-text-size-adjust: 100%;
}
/***********************************************
***  アニメーション
***********************************************/
/* AOSの移動距離を短くする（例：20pxに変更） */
[data-aos="fade-up"] {
  transform: translate3d(0, 30px, 0);
}
[data-aos="fade-down"] {
  transform: translate3d(0, -30px, 0);
}
[data-aos="fade-right"] {
  transform: translate3d(-30px, 0, 0);
}
[data-aos="fade-left"] {
  transform: translate3d(30px, 0, 0);
}
.common-playguide-btn {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
    text-align: center;
}
@media (max-width: 900px) {
.common-playguide-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.common-playguide-btn a {
     display: inline-block;
    background: var(--color-accent);
    color: #fff;
    width: 420px;
    font-size: 18px;
    letter-spacing: 0.08em;
            line-height: 2;
    font-weight: 700;
   padding: 6px 30px 6px 10px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    text-decoration: none;
    letter-spacing: .05em;
    box-shadow: 2px -2px 2px 0 rgb(0 0 0 / 30%);
}

.common-playguide-btn a:hover {
  opacity: .9;

}

.common-playguide-btn a:after {
    position: absolute;
    content: "";
  display: inline-block;
  margin-left: 8px;
  background:url(/assets/img/common/icon-next.svg) center / cover no-repeat;
        width: 25px;
    height: 25px;
    top: 12px;
    right: 30px;
}
    }
@media (max-width: 600px) {
.common-playguide-btn a {
width: 280px;
        font-size: 15px;
        line-height: 1.6;
        padding: 6px 50px 6px 28px;
    }
        .common-playguide-btn a:after {
        top: 6px;
        margin-left: 20px;
            right: 10px;
    }
}
@media (max-width: 460px) {
        .common-playguide-btn a {
        width: 210px;
       padding: 6px 10px;
    }
        .common-playguide-btn a:after {
        top: 13px;
        margin-left: 12px;
            display: none;
    }
}
.common-pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  z-index: 10;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0);
  transition: opacity 0.3s ease;
}

.common-pagetop.is-show {
  opacity: 1;
  pointer-events: auto;
}

.common-pagetop img {
  display: block;
  width: 100%;
  height: auto;
  animation: pagetopHoverCycle 10s linear infinite;
}

@keyframes pagetopHoverCycle {
  0%, 80%   { transform: translateY(0); }
  83.333%   { transform: translateY(-8px); }
  86.666%   { transform: translateY(0); }
  90%       { transform: translateY(-8px); }
  93.333%   { transform: translateY(0); }
  96.666%   { transform: translateY(-8px); }
  100%      { transform: translateY(0); }
}

@media (max-width: 600px) {
  .common-pagetop {
    width: 45px;
    height: 45px;
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 400px) {
      .common-pagetop {
    right:8px;
  }
}
/***********************************************
***  Common class
***********************************************/
.common-section{
    position:relative;
}
main{
  background: url(/assets/img/common/pattern-check-pink.svg);
    background-size: 8px 8px;
    background-repeat: repeat;
}
.ib{
    display:inline-block;
}
.inner {
  width: 440px;
  margin: 0 auto;
        position: relative;
    z-index: 10;
}
@media (max-width: 500px) {
   .inner {
  width: 90%;
    }
}
.btn-default-container{
    text-align:center;
}
.btn-default{
        position: relative;
    display: inline-block;
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
    background: var(--color-primary);
    border-radius: 40px;
    border: 2px solid #ffffff;
    padding: 6px 50px;
    text-align: center;
    width: min(100%, 320px);
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}
.btn-default.break{
    line-height:1.2;
}
.btn-default a{
    text-decoration:none;
    border: none;
    width:100%;
    height: 100%;
    display: block;
}
.btn-default a::after {
    content: "";
    position: absolute;
    inset: 0 25px 0 auto;
    display: block;
    margin: auto;
    background: url(/assets/img/common/icon-next.svg) center / cover no-repeat;
    width: 25px;
    height: 25px;
}
.btn-default .small{
    font-size:12px;
}
.link-default{
    color: #000;
    position: relative;
    display:inline;
    z-index: 2;
}

.link-default.white{
    color: #fff;
    position: relative;
}
.link-default:before{
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    bottom: -2px;
    left: 0;
    background-color:var(--color-secondary);
    z-index: 0;
}
.link-default:after{
    position: absolute;
    content: "";
    height: 2px;
    width: 0;
    bottom: -2px;
    left: 0;
    background-color:var(--color-accent);
    z-index: 0;
     transform: scale(0, 1); /* 下線を横方向に0倍、縦方向に1倍に変形（非表示） */
  transform-origin: right top; /* 変形の原点を右上に指定 */
  transition: transform .3s; /* 変形をアニメーション化 */
  width: 100%; /* 要素の幅 */
}
.link-default:hover:after{
      transform-origin: left top; /* 変形の原点を左上に指定 */
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.heading-default{
    text-align:center;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: left;
    position: relative;
    z-index: 10;
}
.heading-default:before {
    position: absolute;
    content: "";
    background:url("../img/common/heading-icon-pink.webp ");
    background-size: contain;
    background-repeat: no-repeat;
    width: 160px;
    height: 160px;
    left: -50px;
    top: -40px;
    z-index: -1;
}
.heading-default.yellow:before {
    background:url("../img/common/heading-icon-yellow.webp ");
    background-size: contain;
    background-repeat: no-repeat;
}
.heading-default img{
  height: 120px;
  width: auto;
}
.heading-chara{
    position: absolute;
    width: 120px;
    height: 120px;
    background-size: contain;
    background-repeat: no-repeat;
    right: 0;
    top: 0;
}
.heading-chara-about{
    background-image: url("../img/top/about/about-chara1.webp");
    width: 200px;
    height: 200px;
    right: -40px;
    top: -20px;
}
.heading-chara-event{
    background-image: url("../img/top/event/event-chara1.webp");
    width: 200px;
    height: 400px;
    right: -40px;
    top: -70px;
    z-index: -1;
}
.heading-chara-ticket{
    background-image: url("../img/top/ticket/ticket-chara1.webp");
    width: 240px;
    height: 240px;
    right: -70px;
    top: -60px;
}
.heading-chara-goods{
    background-image: url("../img/top/goods/goods-chara1.webp");
    width: 200px;
    height: 200px;
    right: -60px;
    top: -50px;
}
.sub-heading-default{
    font-size:18px;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    position: relative;
    padding-bottom:12px;
    margin-bottom: 20px;
     display:inline-flex; align-items:center; gap:8px;
        width: 100%;
    word-break: keep-all;
    overflow-wrap: break-word;
}
.sub-heading-default .text{
    padding-top:10px;
}

.sub-heading-default:after{
    position: absolute;
    content: "";
    background:url("../img/common/border-rainbow.svg");
    background-size: auto 6px;
    background-repeat: repeat-x;
    width: 100%;
    height: 6px;
    right: 0;
    bottom:0;
}

.lead-default{
    text-align:center;
    font-size:clamp(15px, 2.2vw, 18px);
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 30px;
    line-height: 1.4;
}
.sub-lead-default{
    font-size:14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
    line-height: 1.4;
}
.common-notice-lists{
    padding-left: 1.5em;
}
.common-notice-list{
    position:relative;
    margin-bottom: 0.5em;
    font-size: 12px;
    letter-spacing: 0.08em;
}
.common-notice-list:before{
    content:"※";
    position: absolute;
    font-size: 10px;
    color:#FF676A;
    left: -1.5em;
    top: 2px;
}
.common-notice-lists.dot .common-notice-list:before{
    content:"・";
    position: absolute;
    font-size: 10px;
    color:#000;
    left: -1.5em;
    top: 2px;
}
.common-notice-lists.number .common-notice-list{
    list-style: decimal;
    position: inherit;
}
.common-notice-lists.notice .common-notice-list{
    margin-bottom: 1em;
}
.common-notice-lists.dot .common-notice-list:before{
    content:"";
    position: absolute;
    width:8px;
    height: 8px;
    border-radius: 50%;
    background-color:#FF676A;
    left: -1.5em;
    top: 6px;
}
.common-notice-lists.dot-gray .common-notice-list:before{
    content:"";
    position: absolute;
    width:6px;
    height: 6px;
    border-radius: 50%;
    background-color:#9A9A9A;
    left: -1.2em;
    top: 8px;
}
.common-notice-lists.kome .common-notice-list{
    margin-bottom:0.5em;
}
.common-notice-lists.kome .common-notice-list:before{
        content:"※";
    position: absolute;
    background-color: transparent;
    font-size: 10px;
    color:#000;
    left: -1.5em;
    top: 2px;
}
.common-notice-lists.dash .common-notice-list{
    margin-bottom:0.5em;
}
.common-notice-lists.dash .common-notice-list:before{
        content:"ー";
    position: absolute;
    background-color: transparent;
    font-size: 10px;
    color:var(--color-secondary);
    left: -1.5em;
    top: 2px;
}
.common-notice-lists.mb0 .common-notice-list{
    margin-bottom:0;
}
@media (max-width: 500px) {
  .heading-default img{
    height: 26vw;
  }
  .heading-default:before {
    width: 40vw;
    left: -10vw;
    top: -11vw;
}
.heading-chara-about {
    width: 47vw;
    height: 50vw;
    right: -9vw;
    top: -8vw;
}
.heading-chara-event {
    width: 38vw;
    height: 122vw;
    right: -5vw;
    top: -13vw;
    z-index: -1;
}
.heading-chara-ticket {
    width: 51vw;
    height: 51vw;
    right: -11vw;
    top: -17vw;
}
.heading-chara-goods {
    width: 46vw;
    height: 47vw;
    right: -10vw;
    top: -16vw;
}
}
/***********************************************
***  BG
***********************************************/
body {
  position: relative;
  background: var(--color-base);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  line-height: calc(22.75 / 13);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #000;
  -webkit-font-smoothing: subpixel-antialiased;
  letter-spacing: 0.08em;
}
body::before {
  content: "";
  position: fixed;
  inset: -200%;
  background: url("../img/common/slide-bg.webp") repeat;
  background-size: 800px auto;
  pointer-events: none;
  z-index: -1;
  animation: bg-move-diagonal 30s linear infinite;
  will-change: transform;
}
@keyframes bg-move-diagonal {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-800px, 800px, 0);
  }
}
/***********************************************
***  wrapper
***********************************************/

.main {

  background-color: #fff;
  box-shadow:0 0 15px rgba(0, 0, 0, 0.20);
    position: relative;
    z-index: 10;
    overflow: hidden;
    width: 540px;
    margin: 0 auto;
}

.right-area {
  
    position: fixed;
    right: 0;
    z-index: 20;
    width: calc(50% - 270px);
        text-align: center;
}

.header {
    width: fit-content;
    margin: 16vh auto 0;
    padding: 40px 30px;
    box-shadow: 4px 4px 0 var(--color-accent);
    background: url(/assets/img/common/pattern-check-pink.svg);
    background-size: 8px 8px;
    background-repeat: repeat;
    border-radius: 40px;
    border: 2px solid  var(--color-secondary);
    position: relative;
}
.header:before{
  position:absolute;
  content:"";
  background:url(../img/common/header/chara-pig.png) center / contain no-repeat;
    width:90px;
    height:200px;
    top:80px;
    right: -40px;
    transform: rotate(10deg);

}
.header::after{
  position:absolute;
  content:"";
  background:url(../img/common/header/chara-duck.png) center / contain no-repeat;
    width:200px;
    height:200px;
    top:230px;
    left:-100px;

}
.header-x-btn:before{
  position:absolute;
  content:"";
  background:url(../img/common/header/chara-cat.png) center / contain no-repeat;
    width:100px;
    height:200px;
    top:-80px;
    right: -100px;
}
@media (min-width: 1400px) {

.header {
    margin: 24vh auto 0;
    }
}
@media (max-width: 1400px) {
.main {
   margin: 0 0 0 calc(50% - 410px);
}
.right-area {
  
    width: 420px;
}
}
@media (max-width: 1200px) {
.main {
   margin: 0 0 0 calc(50% - 450px);
}
.right-area {
  
    width: 400px;
}
    
}

@media (max-width: 1000px) {
.main {
   margin: 0 0 0 10px;
}
.right-area {
  
    width: 320px;
}
    
}
@media (max-width: 900px) {
    .header {
    box-shadow: inherit;
    background: transparent;
    border: none;
}
.header:before, .header:after{
    display:none; 
}
.header-x-btn:before{
    display:none; 
}
.main{
  margin: 0 auto;
}
}

@media (max-width: 550px) {
 .main {
width: 100%;
}
}
/***********************************************
***  Header
***********************************************/

.header-logo {
  width: 200px;
  margin: 0 auto 40px;
}
.header-logo a{
    width:100%;
    height: 100%;
    display:block;
}
   .header-x-btn{
         background-color: var(--color-secondary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    margin-top: 20px;
    box-shadow: 3px 3px 0 var(--color-accent);
    position: relative;
    }

    .header-x-btn a{
        display:block;
        width: 100%;
        height:100%;
        position: relative;
        padding: 7px 14px 2px 36px;
    }
.header-x-btn a:before{
    position:absolute;
    content: "";
    background:url(../img/common/header/x-icon.svg);
    width: 18px;
    height: 18px;
    background-size: contain;
    top: 7px;
    left: 12px;
}
    .header-x-icon{
        width:30px;
        display: inline-block;
    }
.global-navigation {
  text-align: center;
}
.global-navigation-mob-btn {
  display: none;
}
.global-navigation-lists {
      background-size: contain;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.global-navigation-list {
    font-size: 22px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}
.global-navigation-list .red{
        color: #e50013;
}

.global-navigation-list a {
  display: block;
  position: relative;
}
.global-navigation-list a:before {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
      background-color: #fff2f7;
  background-size: 100px auto;
  background-repeat: repeat;
  transition: .2s;
  z-index: -1;
  left: 0;
  top: 0;
}
.global-navigation-list a:hover:before {
  width: 100%;
}
.global-navigation-list img {
  height: 30px;
  width: auto;
}
.header.fixed {
  position: fixed;
  z-index: 999;
  width: 100%;
  top: 0;
  left: 0;
  margin-top: 0;
  animation: DownAnime 1s forwards;
}
.header.fixed .header-logo {
  width: 100px;
  padding: 10px;
}
.header.fixed.pages {
  animation: inherit;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header.fixed > .global-navigation {
  display: none;
}
#global-navigation-mob-btn-check {
  display: none;
}
.global-navigation-mob-unshown {
  display: none;
}
.header-playguide-btn{
    margin: 30px auto 0;
        padding: 8px 30px;
        width: min(100%, 240px);
    font-size: 18px;
    background-color: var(--color-accent);
}
.header-playguide-btn a::after{
        inset: 0 10px 0 auto;
}
@media only screen and (max-width: 900px) {
.header-playguide-btn{
    display:none;
    }
  .header.fixed {
    border-top: none;
    border-bottom: none;
  }
  .header {
    margin-top: 0;
      width: 100%;
      padding-top: inherit;
  }
  .global-navigation-mob-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: start;
    z-index: 90;
    box-shadow: 4px 4px 0 var(--color-accent);
    padding: 10px;
    border-radius: 50%;

    background-color: var(--color-accent-light);
  }
  .global-navigation-mob-btn-inner {
    position: relative;
    width: 40px;
    height: 20px;
    margin-top: 5px;
  }
  .global-navigation-mob-btn-line {
    position: absolute;
   background-color: var(--color-secondary);
    width: 100%;
    height: 4px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
  .global-navigation-mob-btn-line:nth-of-type(1) {
    position: absolute;
    top: 0;
    left: 0;
  }
  .global-navigation-mob-btn-line:nth-of-type(2) {
    position: absolute;
    top: 14px;
    left: 0;
  }
  .global-navigation-mob-btn-text {
    position: absolute;
    top: 16px;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }
  .header-logo {
           width: 280px;
        margin-top: 50px;
  }
 
  .global-navigation-lists {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    background: transparent;
    position: relative;
  }
  .global-navigation-lists:before {
    position: absolute;
    content: "";
    width: 70%;
    max-width: 320px;
    height: 150px;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: url("../img/common/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .global-navigation-list {
            padding: 0;
        margin: 0 auto 16px;
        display: inline-block;
        list-style: none;
        width: 100%;
        text-align: center;
  }
  .global-navigation-list:nth-child(5), .global-navigation-list:nth-child(6) {
    border-bottom: none;
  }
  .global-navigation-list a {
    display: inline-block;
    font-size: 24px;
    box-sizing: border-box;
    color: #000;
    text-decoration: none;
    position: relative;
  }
  .global-navigation {
    width: 100%;
    height: 100%;
    position: fixed;
    flex-direction: column;
    justify-content: flex-start;
    top: -100vh;
    left: 0;
    z-index: 80;
    background: #fff;
    overflow-x: hidden;
    transition: all 0.5s;
  }

  .header.fixed > .global-navigation {
    display: block;
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation {
    top: 0;
    display: block;
    background:url(../img/common/pattern-check-pink.svg);
    background-size: 8px 8px;
    background-repeat: repeat;
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn .global-navigation-mob-btn-line {
    top: 10px;
    transform: rotate(25deg);
  }
  #global-navigation-mob-btn-check:checked ~ .global-navigation-mob-btn .global-navigation-mob-btn-line:nth-of-type(2) {
    bottom: 0;
    transform: rotate(-25deg);
  }
  #global-navigation-mob-btn-check:checked ~ #global-navigation-mob-close {
    display: block;
    opacity: .5;
  }
}


/***********************************************
***  footer
***********************************************/
.footer{
    padding:60px 0 20px;
}
.footer-bnr-container{
  margin-bottom: 40px;
}
.footer-bnr-text{
    max-width: 220px;
    margin: 0 auto 20px;
}
@media only screen and (max-width: 1100px) {
    .footer{
    padding:60px 0 80px;
}
}

  .footer-bnr-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
  }
.footer-bnr{
  max-width: 300px;
  margin: 0 auto;
}
.footer-bnr a{
    width:100%;
    height: 100%;
    display:block;
}
.footer-bnr img{
    height: auto;
  transition: transform .6s ease; 
}
.footer-bnr:hover img {
  transform: scale(1.05);
}

.footer-copyright{
    font-size: 11px;
    text-align: center;
}