@charset "UTF-8";
/*------------------------------------------
  Base Layout
------------------------------------------*/
html {
    font-size: 62.5%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3.73333vw;
    background: #009bff;
    color: #212721;
    line-height: 1.71;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
}

a {
    color: #212721;
    text-decoration: none;
}

img {
    width: 100%;
}

.is-pc {
    display: none;
}

@media only screen and (min-width: 768px) {
    body {
        font-size: 1.8em;
        background: #3e8959 url(../images/bg-page.png) repeat-y center top;
    }
    a {
        transition: opacity .4s ease;
    }
    a:hover {
        opacity: .7;
    }
    .is-pc {
        display: block;
    }
    .is-sp {
        display: none;
    }
}

/*------------------------------------------
  layout
------------------------------------------*/
.wrapper {
    opacity: 0;
    position: relative;
    z-index: 1;
}
.wrapper.is-active {
    opacity: 1;
    transition: 1s;
}

.l-grid {
    display: -moz-flex;
    display:      flex;
    -ms-flex-pack: justify;
    flex-wrap: wrap;
}

.l-inner {
    padding: 0 5.33333vw;
}

@media only screen and (min-width: 768px) {
    .l-inner {
        padding: 0 25px;
    }
}

.main {
    position: relative;
    overflow: hidden;
    background: #c6d993;
    z-index: 1;
}

@media only screen and (min-width: 768px) {
    .main {
        position: relative;
        width: 520px;
        margin: auto;
        border-left: 20px solid #81aa23;
        border-right: 20px solid #81aa23;
    }
}

.pc-bg {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
}
.pc-bg span {
    opacity: 0;
    position: absolute;
    top: 0;
    margin-left: 10px;
    transform: translateY(-200px);
    background-repeat: no-repeat;
    background-size: 100%;
}
.pc-bg .bubble00 {
    width: 133px;
    height: 165px;
    background-image: url(../images/bubble/00.png);
    left: 20%;
    -webkit-animation: bubbleShake 12s ease 0s infinite normal, bubbleMove1 12s linear 0s infinite normal;
            animation: bubbleShake 12s ease 0s infinite normal, bubbleMove1 12s linear 0s infinite normal;
    -webkit-animation-delay: .5s;
            animation-delay: .5s;
}
.pc-bg .bubble01 {
    left: 85%;
    width: 104px;
    height: 106px;
    background-image: url(../images/bubble/01.png);
    -webkit-animation: bubbleShake 12s ease 0s infinite normal, bubbleMove2 12s linear 0s infinite normal;
            animation: bubbleShake 12s ease 0s infinite normal, bubbleMove2 12s linear 0s infinite normal;
}
.pc-bg .bubble03 {
    left: 90%;
    width: 99px;
    height: 92px;
    background-image: url(../images/bubble/03.png);
    -webkit-animation: bubbleShake 12s ease 0s infinite normal, bubbleMove1 12s linear 0s infinite normal;
            animation: bubbleShake 12s ease 0s infinite normal, bubbleMove1 12s linear 0s infinite normal;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
}
.pc-bg .bubble04 {
    left: 45%;
    width: 64px;
    height: 63px;
    background-image: url(../images/bubble/04.png);
    -webkit-animation: bubbleShake 12s ease 0s infinite normal, bubbleMove2 12s linear 0s infinite normal;
            animation: bubbleShake 12s ease 0s infinite normal, bubbleMove2 12s linear 0s infinite normal;
    -webkit-animation-delay: 6s;
            animation-delay: 6s;
}
.pc-bg .bubble05 {
    left: 15%;
    width: 64px;
    height: 63px;
    background-image: url(../images/bubble/05.png);
    -webkit-animation: bubbleShake 12s ease 0s infinite normal, bubbleMove1 12s linear 0s infinite normal;
            animation: bubbleShake 12s ease 0s infinite normal, bubbleMove1 12s linear 0s infinite normal;
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
}
.pc-bg .bubble06 {
    left: 85%;
    width: 84px;
    height: 84px;
    background-image: url(../images/bubble/06.png);
    -webkit-animation: bubbleShake 12s ease 0s infinite normal, bubbleMove2 12s linear 0s infinite normal;
            animation: bubbleShake 12s ease 0s infinite normal, bubbleMove2 12s linear 0s infinite normal;
    -webkit-animation-delay: 7.5s;
            animation-delay: 7.5s;
}
.pc-bg .bubble07 {
    left: 90%;
    width: 71px;
    height: 95px;
    background-image: url(../images/bubble/07.png);
    -webkit-animation: bubbleShake 12s ease 0s infinite normal, bubbleMove1 12s linear 0s infinite normal;
            animation: bubbleShake 12s ease 0s infinite normal, bubbleMove1 12s linear 0s infinite normal;
    -webkit-animation-delay: 5.5s;
            animation-delay: 5.5s;
}
.pc-bg .bubble08 {
    left: 25%;
    width: 127px;
    height: 135px;
    background-image: url(../images/bubble/08.png);
    -webkit-animation: bubbleShake 12s ease 0s infinite normal, bubbleMove2 12s linear 0s infinite normal;
            animation: bubbleShake 12s ease 0s infinite normal, bubbleMove2 12s linear 0s infinite normal;
    -webkit-animation-delay: 6.5s;
            animation-delay: 6.5s;
}

@-webkit-keyframes bubbleShake {
    0% {
        margin-left: 10px;
    }
    50% {
        margin-left: -80px;
    }
    100% {
        margin-left: 10px;
    }
}

@keyframes bubbleShake {
    0% {
        margin-left: 10px;
    }
    50% {
        margin-left: -80px;
    }
    100% {
        margin-left: 10px;
    }
}

@-webkit-keyframes bubbleMove1 {
    0% {
        transform: translateY(0) rotate(20deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(1000px) rotate(-50deg);
        opacity: 0;
    }
}

@keyframes bubbleMove1 {
    0% {
        transform: translateY(0) rotate(20deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(1000px) rotate(-50deg);
        opacity: 0;
    }
}

@-webkit-keyframes bubbleMove2 {
    0% {
        transform: translateY(0) rotate(-50deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(1000px) rotate(50deg);
        opacity: 0;
    }
}

@keyframes bubbleMove2 {
    0% {
        transform: translateY(0) rotate(-50deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    95% {
        opacity: 1;
    }
    100% {
        transform: translateY(1000px) rotate(50deg);
        opacity: 0;
    }
}

/*------------------------------------------
  component
------------------------------------------*/
/* ========== ttl ========== */
.c-ttl01 {
    text-align: center;
    font-weight: 900;
    letter-spacing: .06em;
    font-size: 114%;
    margin-bottom: .7em;
}
.c-ttl01 span {
    display: inline-block;
    line-height: 1.8;
    padding: 0 .5em;
    background: linear-gradient(transparent 50%, #ffd800 50%);
}

.c-ttl02 {
    font-weight: 900;
    letter-spacing: .06em;
    font-size: 114%;
    margin-bottom: .3em;
}
.c-ttl02 span {
    display: inline-block;
    text-align: center;
    border-radius: 3.73333vw;
    width: 32vw;
}
.c-ttl02 span.blue {
    background: #00a3e0;
    color: #fff;
}
.c-ttl02 span.yellow {
    background: #ffe207;
}

@media only screen and (min-width: 768px) {
    .c-ttl02 span {
        border-radius: 18px;
        width: 154px;
    }
}

/* ========== btn ========== */
.c-btn01 {
    text-align: center;
}
.c-btn01__txt {
    display: inline-block;
    position: relative;
    text-align: center;
    background: #00a3e0;
    width: 48vw;
    border-radius: 5.33333vw;
    border: 3px solid #212721;
    color: #fff;
    font-size: 114%;
    font-weight: 900;
    letter-spacing: .06em;
    padding: .25em 0;
    box-shadow: 2px 4px 0px 0px #212721;
}
.c-btn01__txt:before {
    content: "詳細を見る";
}
.c-btn01 .icon {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 3.73333vw;
    height: 3.73333vw;
    background-image: url(../images/ico-plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.c-btn01.is-active .c-btn01__txt:before {
    content: "閉じる";
}
.c-btn01.is-active .icon {
    background-image: url(../images/ico-minus.svg);
}

@media only screen and (min-width: 768px) {
    .c-btn01__txt {
        width: 230px;
        border-radius: 25px;
    }
    .c-btn01 .icon {
        width: 18px;
        height: 18px;
    }
}

.c-btn02 {
    width: 13.33333vw;
    height: 13.33333vw;
    border-radius: 50%;
    box-shadow: 1px 3px 0px 0px #212721;
    background: #d42e12;
    border: 2px solid #212721;
    display: flex;
    align-items: center;
    justify-content: center;
}
.c-btn02 img {
    width: 7.46667vw;
}

@media only screen and (min-width: 768px) {
    .c-btn02 {
        width: 64px;
        height: 64px;
    }
    .c-btn02 img {
        width: 36px;
    }
}

/* ========== play contents ========== */
.c-play {
    position: relative;
    padding: 25.6vw 0 0;
    background: url(../images/play-contents-bg.svg) no-repeat center top 1em;
    background-size: 100%;
}
.c-play__img {
    position: relative;
    width: 100%;
    height: 72vw;
    background: url(../images/frame01.svg) no-repeat center top;
    background-size: 100%;
    padding: 8vw 0 0;
}
.c-play__img:after {
    content: "";
    width: 100%;
    height: 39.2vw;
    position: absolute;
    left: 0;
    top: -32vw;
    background: url(../images/play-contents-illust.webp) no-repeat center top;
    background-size: auto 100%;
}
.c-play__img a {
    display: block;
    width: 89.33333vw;
    margin: auto;
    position: relative;
    border: 4px solid #fff;
}
.c-play__img .zoom {
    position: absolute;
    bottom: -5.33333vw;
    right: -3.2vw;
}

@media only screen and (min-width: 768px) {
    .c-play {
        padding: 122px 0 0;
    }
    .c-play__img {
        height: 345px;
        padding: 38px 0 0;
    }
    .c-play__img:after {
        height: 188px;
        top: -154px;
    }
    .c-play__img a {
        width: 428px;
        border: 5px solid #fff;
    }
    .c-play__img .zoom {
        bottom: -25px;
        right: -15px;
    }
}

.c-answer {
    margin-top: 5.33333vw;
    padding-bottom: 5.33333vw;
}
.c-answer__inner {
    background: #fff;
    padding: 5.33333vw;
    border-radius: 2.66667vw;
}
.c-answer__ttl {
    margin-bottom: 1.2em;
}
.c-answer__txt {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.66667vw;
}
.c-answer__txt:last-child {
    margin-bottom: 0;
}
.c-answer__txt .icon {
    width: 14.93333vw;
    display: flex;
    gap: 0 1.6vw;
    justify-content: flex-end;
}
.c-answer__txt .icon span {
    display: block;
    width: 6.66667vw;
    height: 6.66667vw;
    border-radius: 50%;
    transform: translateY(-.1em);
}
.c-answer__txt .icon .red {
    border: 3px solid #e50d12;
}
.c-answer__txt .icon .blue {
    border: 3px solid #0431fd;
}
.c-answer__txt .icon .yellow {
    border: 3px solid #ffd800;
}
.c-answer__txt .ellipsis {
    width: 8vw;
    text-align: center;
}
.c-answer__txt .txt {
    width: calc(100% - 22.9333vw);
    margin-left: auto;
}

@media only screen and (min-width: 768px) {
    .c-answer {
        margin-top: 25px;
        padding-bottom: 25px;
    }
    .c-answer__inner {
        padding: 25px;
        border-radius: 13px;
    }
    .c-answer__txt {
        margin-bottom: 13px;
    }
    .c-answer__txt .icon {
        width: 72px;
        gap: 0 8px;
    }
    .c-answer__txt .icon span {
        width: 32px;
        height: 32px;
    }
    .c-answer__txt .ellipsis {
        width: 38px;
    }
    .c-answer__txt .txt {
        width: calc(100% - 110px);
    }
}

/* ========== block ========== */
.c-block {
    background: #fff;
    border-radius: 25px;
    border: 3px solid #212721;
    box-shadow: 2px 4px 0px 0px #212721;
    font-size: 4.53333vw;
    margin-bottom: 5.33333vw;
}
.c-block:last-child {
    margin-bottom: 0;
}
.c-block__ttl {
    position: relative;
    letter-spacing: .06em;
    font-weight: 900;
    line-height: 1.41;
    -ms-word-break: break-all;
        word-break: break-all;
}
.c-block__ttl.type01 {
    padding: 5.33333vw 19.73333vw 5.33333vw 1em;
}
.c-block__ttl.type01 .floor {
    width: 2.5em;
}
.c-block__ttl.type01 .area {
    width: calc(100% - 2.5em);
    margin-left: auto;
}
.c-block__ttl.type02 {
    padding: 5.33333vw 19.73333vw;
    justify-content: center;
}
.c-block__ttl .icon {
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 10.66667vw;
    height: 10.66667vw;
    border-radius: 50%;
    border: 2px solid #212721;
    background-color: #00a3e0;
    background-image: url(../images/ico-plus.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 4.26667vw;
}
.c-block__ttl.is-active .icon {
    background-image: url(../images/ico-minus.svg);
}
.c-block__contents {
    padding: 1.33333vw 1em 8vw;
}
.c-block .box {
    margin-bottom: 8vw;
}
.c-block .box:last-child {
    margin-bottom: 0;
}
.c-block .box-img {
    display: block;
    position: relative;
    width: 100%;
    height: 54.93333vw;
    padding: 5.33333vw;
    background: url(../images/frame02.svg) no-repeat center;
    background-size: 100%;
}
.c-block .box-img > img {
    border: 4px solid #fff;
}
.c-block .box-img .zoom {
    position: absolute;
    bottom: -2.66667vw;
    right: -2.66667vw;
}
.c-block .box-label {
    text-align: center;
    font-weight: 900;
    font-size: 3.73333vw;
    background: #ffe207;
    border-radius: 4.8vw;
    padding: .5em 0;
    margin-top: .8em;
}

@media only screen and (min-width: 768px) {
    .c-block {
        border-radius: 25px;
        font-size: 22px;
        margin-bottom: 25px;
    }
    .c-block__ttl.type01 {
        padding: 25px 95px 25px 1em;
    }
    .c-block__ttl.type02 {
        padding: 25px 95px;
    }
    .c-block__ttl .icon {
        width: 51px;
        height: 51px;
        background-size: 20px;
    }
    .c-block__contents {
        padding: 6px 1em 38px;
    }
    .c-block .box {
        margin-bottom: 38px;
    }
    .c-block .box-img {
        height: 264px;
        padding: 25px;
    }
    .c-block .box-img .zoom {
        bottom: -13px;
        right: -13px;
    }
    .c-block .box-label {
        font-size: 18px;
        border-radius: 23px;
    }
}

/* ========== line ========== */
.line {
    position: relative;
}
.line:before {
    content: "";
    width: 100%;
    height: 1.6vw;
    position: absolute;
    top: -.8vw;
    left: 0;
    background: url(../images/line.svg) repeat-x left top;
    background-size: 100%;
}

@media only screen and (min-width: 768px) {
    .line:before {
        height: 8px;
        top: -4px;
    }
}

/* ========== wave ========== */
.wave {
    position: relative;
}
.wave:before {
    content: "";
    width: 100%;
    height: 10.66667vw;
    position: absolute;
    top: -10.4vw;
    left: 0;
    background-repeat: repeat-x;
    background-position: 0 0;
    background-size: 100vw;
    -webkit-animation: wave 15s linear infinite;
            animation: wave 15s linear infinite;
}

@-webkit-keyframes wave {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -100vw 0;
    }
}

@keyframes wave {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -100vw 0;
    }
}

@media only screen and (min-width: 768px) {
    .wave:before {
        height: 51px;
        top: -50px;
        background-size: 480px;
    }
    @-webkit-keyframes wave {
        from {
            background-position: 0 0;
        }
        to {
            background-position: -480px 0;
        }
    }
    @keyframes wave {
        from {
            background-position: 0 0;
        }
        to {
            background-position: -480px 0;
        }
    }
}

/* ========== walk illust ========== */
.walk-illust {
    position: absolute;
    left: 0;
    bottom: 1.33333vw;
    width: 100%;
    z-index: 10;
}
.walk-illust__chara {
    opacity: 0;
}
.walk-illust__chara.chara01 {
    width: 24.26667vw;
    margin: auto;
}
.walk-illust__chara.chara02 {
    width: 43.46667vw;
    margin-left: 42.93333vw;
}
.walk-illust__footprints {
    position: absolute;
}
.walk-illust__footprints img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.walk-illust__footprints img:first-child {
    position: relative;
}
.walk-illust__footprints.footprints01 {
    width: 40.8vw;
    right: 0;
    bottom: 10.66667vw;
}
.walk-illust__footprints.footprints02 {
    width: 43.73333vw;
    left: 0;
    bottom: 11.73333vw;
}
.walk-illust.js-scr-active .walk-illust__chara {
    opacity: 1;
    transition: opacity .3s 1.6s;
}
.walk-illust.js-scr-active .walk-illust__footprints img {
    opacity: 1;
}
.walk-illust.js-scr-active .walk-illust__footprints .footprints-img02 {
    transition-delay: .4s;
}
.walk-illust.js-scr-active .walk-illust__footprints .footprints-img03 {
    transition-delay: .8s;
}
.walk-illust.js-scr-active .walk-illust__footprints .footprints-img04 {
    transition-delay: 1.2s;
}

@media only screen and (min-width: 768px) {
    .walk-illust {
        bottom: 6px;
    }
    .walk-illust__chara.chara01 {
        width: 116px;
    }
    .walk-illust__chara.chara02 {
        width: 208px;
        margin-left: 206px;
    }
    .walk-illust__footprints.footprints01 {
        width: 196px;
        bottom: 51px;
    }
    .walk-illust__footprints.footprints02 {
        width: 210px;
        bottom: 56px;
    }
}

/* ========== animation ========== */
.bounceIn {
    opacity: 0;
}
.bounceIn.js-scr-active {
    -webkit-animation: bounceIn 1s forwards;
            animation: bounceIn 1s forwards;
}

@-webkit-keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

@keyframes bounceIn {
    0%, 100%, 20%, 40%, 60%, 80% {
        transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* ========== js ========== */
.js-acPrevTrigger, .js-acNextTrigger {
    cursor: pointer;
}

.js-acHide {
    display: none;
}

.js-modal {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0, 0, 0, .8);
    z-index: 9999;
}
.js-modalOuter {
    display: table;
    width: 100%;
    height: 100vh;
    height: 100dvh;
}
.js-modalIn {
    display: table-cell;
    vertical-align: middle;
    padding: 40px 0;
    position: relative;
}
.js-modalContent {
    position: relative;
    max-width: 1200px;
    margin: auto;
}
.js-modalOpen {
    cursor: pointer;
}
.js-modalClose {
    cursor: pointer;
    position: absolute;
    top: 2.66667vw;
    right: 2.66667vw;
    width: 8vw;
    height: 8vw;
    background: url(../images/ico-close.svg) no-repeat;
    background-size: 100%;
}

@media only screen and (min-width: 768px) {
    .js-modalClose {
        top: 13px;
        right: 13px;
        width: 38px;
        height: 38px;
    }
}

/*------------------------------------------
  header
------------------------------------------*/
.header {
    position: absolute;
    top: 2.66667vw;
    left: 2.66667vw;
    z-index: 100;
}
.header-logo {
    width: 26.66667vw;
}

@media only screen and (min-width: 768px) {
    .header {
        top: 20px;
        left: 40px;
    }
    .header-logo {
        width: 187px;
    }
}

/*------------------------------------------
  footer
------------------------------------------*/
.footer {
    margin-top: 61.33333vw;
    padding: 12vw 0 5.33333vw;
    position: relative;
    color: #fff;
    background: #d42e12;
    text-align: center;
}
.footer:after {
    content: "";
    width: 100%;
    height: 71.46667vw;
    position: absolute;
    bottom: 100%;
    left: 0;
    margin-bottom: -7.46667vw;
    background: url(../images/footer-img.svg) no-repeat center;
    background-size: 100%;
}
.footer-logo {
    margin-bottom: 4vw;
}
.footer-logo img {
    width: 67.2vw;
}
.footer-txt {
    font-size: 3.2vw;
    margin-bottom: 6.66667vw;
}
.footer-txt p {
    margin-bottom: .5em;
}
.footer-txt p:last-child {
    margin-bottom: 0;
}
.footer-txt__tel a {
    display: inline-block;
    color: #fff;
    padding-left: 5.33333vw;
    background: url(../images/ico-tel.svg) no-repeat left center;
    background-size: 3.73333vw;
}
.footer-sns {
    margin-bottom: 8vw;
    gap: 2.66667vw 2.66667vw;
    justify-content: center;
}
.footer-sns li {
    width: 10.66667vw;
}
.footer-copy {
    font-size: 2.66667vw;
}

@media only screen and (min-width: 768px) {
    .footer {
        margin-top: 294px;
        padding: 58px 0 25px;
    }
    .footer:after {
        height: 343px;
        margin-bottom: -35px;
    }
    .footer-logo {
        margin-bottom: 20px;
    }
    .footer-logo img {
        width: 322px;
    }
    .footer-txt {
        font-size: 1.5rem;
        margin-bottom: 32px;
    }
    .footer-txt__tel a {
        padding-left: 25px;
        background-size: 18px;
    }
    .footer-sns {
        margin-bottom: 38px;
        gap: 13px 13px;
    }
    .footer-sns li {
        width: 50px;
    }
    .footer-copy {
        font-size: 1.3rem;
    }
}

.fixed-nav {
    position: fixed;
    bottom: 0;
    right: 2.66667vw;
    width: 36.26667vw;
    z-index: 9998;
    transition: opacity .3s;
}
.fixed-nav__close {
    position: absolute;
    right: 0;
    top: -5.33333vw;
    width: 8vw;
    cursor: pointer;
}

@media only screen and (min-width: 768px) {
    .fixed-nav {
        right: 13px;
        width: 174px;
    }
    .fixed-nav__close {
        top: -25px;
        width: 38px;
    }
}

/*------------------------------------------
  contents
------------------------------------------*/
/* ========== mv ========== */
.mv {
    position: relative;
    z-index: 2;
}
.mv-inner {
    position: relative;
    height: 106.66667vw;
    background-image: url(../images/mv-bg.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}
.mv-ttl {
    position: absolute;
    top: 6.93333vw;
    left: 10.66667vw;
    opacity: 0;
    transform: translateY(2em);
    width: 64.26667vw;
}
.mv-illust {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 66.13333vw;
}
.mv.is-active .mv-ttl {
    transition: 1s 1s;
    opacity: 1;
    transform: translateY(0);
}

@media only screen and (min-width: 768px) {
    .mv-inner {
        height: 57.24744vw;
        background-image: url(../images/mv-bg-pc.webp);
        background-position: center top;
    }
    .mv-ttl {
        top: 13.32357vw;
        left: 3.66032vw;
        width: 42.60615vw;
    }
    .mv-illust {
        width: 41.06881vw;
    }
    .mv-scroll {
        position: absolute;
        bottom: 2.78184vw;
        left: 0;
        width: 100%;
        text-align: center;
    }
    .mv-scroll img {
        width: 21.96193vw;
    }
}

.sec {
    position: relative;
}
.sec-inner {
    position: relative;
}

/* ========== menu ========== */
.sec--menu {
    padding: 4.26667vw 0 11.2vw;
    background: url(../images/menu-bg.svg) no-repeat center;
    background-size: cover;
}
.sec--menu .menu-list {
    gap: 4vw 4%;
}
.sec--menu .menu-list li {
    width: 48%;
}

@media only screen and (min-width: 768px) {
    .sec--menu {
        padding: 40px 0 56px;
    }
    .sec--menu .menu-list {
        gap: 20px 4%;
    }
}

/* ========== about ========== */
.sec--about {
    background: #fff url(../images/about-bg.webp) repeat-y center top;
    background-size: 100%;
    padding: 0 0 8.53333vw;
}
.sec--about .about-txt {
    position: relative;
    text-align: center;
    width: 89.33333vw;
    height: 202.66667vw;
    margin: auto;
    background: url(../images/about-txt-bg.webp) no-repeat center top;
    background-size: 100%;
    padding: 52.26667vw 0 0;
    transform: translateY(-2.7em);
}
.sec--about .about-txt__ttl {
    margin-bottom: 1em;
}
.sec--about .about-txt__ttl img {
    width: 56.53333vw;
}
.sec--about .about-txt__txt {
    padding: 0 13.86667vw;
}
.sec--about .about-txt__txt p {
    margin-bottom: 1.4em;
}
.sec--about .about-txt__txt p:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 768px) {
    .sec--about {
        padding: 0 0 40px;
    }
    .sec--about .about-txt {
        width: 428px;
        height: 972px;
        padding: 250px 0 0;
    }
    .sec--about .about-txt__ttl img {
        width: 271px;
    }
    .sec--about .about-txt__txt {
        padding: 0 66px;
    }
}

/* ========== character ========== */
.sec--character {
    background: #fff;
    padding-bottom: 1em;
}
.sec--character .character-ttl {
    text-align: center;
    transform: translateY(-50%);
}
.sec--character .character-ttl img {
    width: 66.66667vw;
}
.sec--character .character-slider {
    overflow: hidden;
    transform: translateY(-1em);
}
.sec--character .character-slider .swiper {
    width: 57.06667vw;
    margin: auto;
    overflow: visible;
}
.sec--character .character-slider .swiper-slide {
    padding: 0 3.2vw;
    height: auto;
}
.sec--character .character-slider .slide-inner {
    background: #e5f5ff;
    border-radius: 2.66667vw;
    height: 100%;
    padding: 5.33333vw 4vw;
}
.sec--character .character-slider .slide-img {
    margin-bottom: 5.33333vw;
}
.sec--character .character-slider .slide-ttl {
    margin-bottom: 2.66667vw;
    text-align: center;
    font-weight: 900;
    background: #ffe207;
    border-radius: 4.8vw;
    padding: .6em 0;
}
.sec--character .character-slider .slide-txt {
    font-size: 86%;
    line-height: 1.66;
}
.sec--character .character-slider .slide-btn {
    cursor: pointer;
    position: absolute;
    z-index: 10;
    top: 46.66667vw;
    width: 11.2vw;
    height: 11.2vw;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.sec--character .character-slider .slide-btn--prev {
    left: -8.8vw;
    background-image: url(../images/btn-prev.svg);
}
.sec--character .character-slider .slide-btn--next {
    right: -8.8vw;
    background-image: url(../images/btn-next.svg);
}

@media only screen and (min-width: 768px) {
    .sec--character .character-ttl img {
        width: 320px;
    }
    .sec--character .character-slider .swiper {
        width: 274px;
    }
    .sec--character .character-slider .swiper-slide {
        padding: 0 15px;
    }
    .sec--character .character-slider .slide-inner {
        border-radius: 13px;
        padding: 25px 19px;
    }
    .sec--character .character-slider .slide-img {
        margin-bottom: 25px;
    }
    .sec--character .character-slider .slide-ttl {
        margin-bottom: 13px;
        border-radius: 23px;
    }
    .sec--character .character-slider .slide-btn {
        top: 224px;
        width: 54px;
        height: 54px;
    }
    .sec--character .character-slider .slide-btn--prev {
        left: -42px;
    }
    .sec--character .character-slider .slide-btn--next {
        right: -42px;
    }
}

/* ========== stamprally ========== */
.sec--stamprally {
    padding: 10.66667vw 0 63.46667vw;
    background: #c6d993 url(../images/stamprally-bg-top.webp) no-repeat center top;
    background-size: 100%;
}
.sec--stamprally:after {
    content: "";
    width: 33.6vw;
    height: 52.26667vw;
    position: absolute;
    bottom: 14.66667vw;
    left: 0;
    background: url(../images/stamprally-bg-bottom.svg) no-repeat center top;
    background-size: 100%;
}
.sec--stamprally .sec-inner {
    z-index: 1;
}
.sec--stamprally .stamprally-ttl {
    text-align: center;
    margin-bottom: 5.33333vw;
}
.sec--stamprally .stamprally-ttl img {
    width: 100%;
}
.sec--stamprally .stamprally-block {
    border-radius: 2.66667vw;
    background: #fff;
}
.sec--stamprally .stamprally-head {
    padding: 2.13333vw 5.33333vw 5.33333vw;
}
.sec--stamprally .stamprally-head__txt {
    font-size: 121%;
    font-weight: 900;
    letter-spacing: .06em;
    line-height: 1.4;
}
.sec--stamprally .stamprally-detail {
    padding: 5.33333vw;
    margin-top: 5.33333vw;
}
.sec--stamprally .stamprally-detail__lead {
    margin-bottom: 6.4vw;
}
.sec--stamprally .stamprally-detail__try {
    margin-bottom: 5.33333vw;
}
.sec--stamprally .stamprally-detail__try .try-step {
    background: #e5f6ff;
    border-radius: 2.66667vw;
    padding: 5.33333vw;
}
.sec--stamprally .stamprally-detail__try .try-step li {
    margin-bottom: 1em;
}
.sec--stamprally .stamprally-detail__try .try-step li:last-child {
    margin-bottom: 0;
}
.sec--stamprally .stamprally-detail__sticker {
    margin-bottom: 5.33333vw;
}
.sec--stamprally .stamprally-detail__sticker img {
    width: 100%;
}
.sec--stamprally .stamprally-detail__sticker .sticker-item {
    display: flex;
    background: #e5f6ff;
    border-radius: 2.66667vw;
    padding: 5.33333vw;
    margin-bottom: 2.66667vw;
    align-items: center;
}
.sec--stamprally .stamprally-detail__sticker .sticker-item__txt {
    width: 38%;
    text-align: center;
    font-weight: 900;
    letter-spacing: .06em;
}
.sec--stamprally .stamprally-detail__sticker .sticker-item__txt .label {
    font-size: 4.8vw;
    width: 20.26667vw;
    height: 20.26667vw;
    background: #ffe207;
    border-radius: 50%;
    margin: 0 auto .3em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sec--stamprally .stamprally-detail__sticker .sticker-item__txt .date {
    color: #00a3e0;
    font-size: 4.26667vw;
    line-height: 1.5;
}
.sec--stamprally .stamprally-detail__sticker .sticker-item__img {
    width: 55%;
    margin-left: auto;
}
.sec--stamprally .stamprally-detail__sticker .sticker-caution {
    font-size: 86%;
}
.sec--stamprally .stamprally-detail__chance {
    margin-bottom: 5.33333vw;
}
.sec--stamprally .stamprally-detail__change {
    margin-bottom: 8vw;
}
.sec--stamprally .stamprally-detail__change:last-child {
    margin-bottom: 0;
}
.sec--stamprally .stamprally-detail__change .change-caution {
    font-size: 86%;
    margin-top: 1em;
}
.sec--stamprally .stamprally-more {
    margin-top: 5.33333vw;
}

@media only screen and (min-width: 768px) {
    .sec--stamprally {
        padding: 51px 0 304px;
    }
    .sec--stamprally:after {
        width: 161px;
        height: 250px;
        bottom: 70px;
    }
    .sec--stamprally .stamprally-ttl {
        margin-bottom: 25px;
    }
    .sec--stamprally .stamprally-block {
        border-radius: 13px;
    }
    .sec--stamprally .stamprally-head {
        padding: 10px 25px 25px;
    }
    .sec--stamprally .stamprally-detail {
        padding: 25px;
        margin-top: 25px;
    }
    .sec--stamprally .stamprally-detail__lead {
        margin-bottom: 30px;
    }
    .sec--stamprally .stamprally-detail__try {
        margin-bottom: 25px;
    }
    .sec--stamprally .stamprally-detail__try .try-step {
        border-radius: 13px;
        padding: 25px;
    }
    .sec--stamprally .stamprally-detail__sticker {
        margin-bottom: 25px;
    }
    .sec--stamprally .stamprally-detail__sticker .sticker-item {
        border-radius: 13px;
        padding: 25px;
        margin-bottom: 13px;
    }
    .sec--stamprally .stamprally-detail__sticker .sticker-item__txt .label {
        font-size: 23px;
        width: 98px;
        height: 98px;
    }
    .sec--stamprally .stamprally-detail__sticker .sticker-item__txt .date {
        font-size: 20px;
    }
    .sec--stamprally .stamprally-detail__chance {
        margin-bottom: 25px;
    }
    .sec--stamprally .stamprally-detail__change {
        margin-bottom: 38px;
    }
    .sec--stamprally .stamprally-detail__change .change-txt {
        margin-bottom: 13px;
    }
    .sec--stamprally .stamprally-more {
        margin-top: 25px;
    }
}

/* ========== event ========== */
.sec--event {
    padding: 8vw 0 63.46667vw;
    background: #fef48e url(../images/event-bg-top.webp) no-repeat center top;
    background-size: 100%;
}
.sec--event:before {
    background-image: url(../images/wave02.webp);
}
.sec--event:after {
    content: "";
    width: 35.2vw;
    height: 53.33333vw;
    position: absolute;
    bottom: 21.33333vw;
    right: 0;
    background: url(../images/event-bg-bottom.svg) no-repeat center top;
    background-size: 100%;
}
.sec--event .sec-inner {
    z-index: 1;
}
.sec--event .event-ttl {
    text-align: center;
    margin-bottom: 10.66667vw;
}
.sec--event .event-ttl img {
    width: 65.33333vw;
}
.sec--event .event-block {
    position: relative;
    margin-top: 9.33333vw;
}
.sec--event .event-block__head {
    position: relative;
    width: 84vw;
    height: 54.93333vw;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    background: url(../images/event-block-head-bg.svg) no-repeat center;
    background-size: 100%;
    margin-bottom: 4vw;
}
.sec--event .event-block__head .head-ttl {
    font-weight: 900;
    font-size: 5.86667vw;
    letter-spacing: .06em;
    line-height: 1.36;
    text-align: center;
}
.sec--event .event-block__head .head-img {
    position: absolute;
}
.sec--event .event-block__detail {
    background: #fff;
    border-radius: 2.66667vw;
    margin-bottom: 2.66667vw;
    padding: 5.33333vw;
    text-align: center;
}
.sec--event .event-block__detail .detail-date {
    margin-bottom: 2.66667vw;
}
.sec--event .event-block__detail .detail-date:last-child {
    margin-bottom: 0;
}
.sec--event .event-block__detail .detail-txt {
    margin-bottom: 2.66667vw;
}
.sec--event .event-block__detail .detail-txt a {
    text-decoration: underline;
    color: #d42e12;
}
.sec--event .event-block01 .event-block__head .head-img {
    width: 35.2vw;
    top: -12.26667vw;
    left: -12.26667vw;
}
.sec--event .event-block02 .event-block__head .head-img {
    width: 40.53333vw;
    top: -9.06667vw;
    right: -14.93333vw;
}
.sec--event .event-bnr {
    position: relative;
    margin-top: 5.33333vw;
}
.sec--event .event-bnr__label {
    position: absolute;
    top: -2.66667vw;
    left: -2.66667vw;
    width: 18.13333vw;
}
.sec--event .event-bnr__link {
    position: absolute;
    width: 100%;
    height: 18.66667vw;
    bottom: 0;
    left: 0;
}

@media only screen and (min-width: 768px) {
    .sec--event {
        padding: 38px 0 304px;
    }
    .sec--event:after {
        width: 168px;
        height: 256px;
        bottom: 102px;
    }
    .sec--event .event-ttl {
        margin-bottom: 51px;
    }
    .sec--event .event-ttl img {
        width: 313px;
    }
    .sec--event .event-block {
        margin-top: 45px;
    }
    .sec--event .event-block__head {
        width: 403px;
        height: 264px;
        margin-bottom: 19px;
    }
    .sec--event .event-block__head .head-ttl {
        font-size: 28px;
    }
    .sec--event .event-block__detail {
        border-radius: 13px;
        margin-bottom: 13px;
        padding: 25px;
    }
    .sec--event .event-block__detail .detail-date {
        margin-bottom: 13px;
    }
    .sec--event .event-block__detail .detail-txt {
        margin-bottom: 13px;
    }
    .sec--event .event-block01 .event-block__head .head-img {
        width: 168px;
        top: -59px;
        left: -59px;
    }
    .sec--event .event-block02 .event-block__head .head-img {
        width: 194px;
        top: -44px;
        right: -72px;
    }
    .sec--event .event-bnr {
        margin-top: 25px;
    }
    .sec--event .event-bnr__label {
        top: -13px;
        left: -13px;
        width: 87px;
    }
    .sec--event .event-bnr__link {
        height: 89px;
    }
}

/* ========== play ========== */
.sec--play {
    padding: 10.66667vw 0 0;
    background: #c7d994 url(../images/play-bg.webp) no-repeat center top;
    background-size: 100%;
}
.sec--play:before {
    background-image: url(../images/wave03.webp);
}
.sec--play .play-ttl {
    text-align: center;
    margin-bottom: 5.33333vw;
}
.sec--play .play-ttl img {
    width: 68.8vw;
}
.sec--play .play-lead {
    margin-bottom: 1em;
}
.sec--play .play-lead p {
    background: #fff;
    border-radius: 2.66667vw;
    padding: 5.33333vw;
}
.sec--play .play-answer {
    text-align: center;
    margin-top: 1em;
}

@media only screen and (min-width: 768px) {
    .sec--play {
        padding: 51px 0 0;
    }
    .sec--play .play-ttl {
        margin-bottom: 25px;
    }
    .sec--play .play-ttl img {
        width: 330px;
    }
    .sec--play .play-lead p {
        border-radius: 13px;
        padding: 25px;
    }
}

/* ========== answer ========== */
.sec--answer {
    padding: 18.66667vw 0;
    background: url(../images/answer-bg.webp) no-repeat center top;
    background-size: 100%;
}
.sec--answer .answer-ttl {
    text-align: center;
    margin-bottom: 9.06667vw;
}
.sec--answer .answer-ttl img {
    width: 33.6vw;
}
.sec--answer .c-play {
    background: none;
}

@media only screen and (min-width: 768px) {
    .sec--answer {
        padding: 90px 0;
    }
    .sec--answer .answer-ttl {
        margin-bottom: 44px;
    }
    .sec--answer .answer-ttl img {
        width: 162px;
    }
}

/* ========== panel ========== */
.sec--panel {
    padding: 5.33333vw 0 24vw;
    background: #fddb23 url(../images/panel-bg.svg) no-repeat center top;
    background-size: 100%;
}
.sec--panel:before {
    background-image: url(../images/wave01.webp);
}
.sec--panel .panel-ttl {
    text-align: center;
    margin-bottom: 10.66667vw;
}
.sec--panel .panel-ttl img {
    width: 65.06667vw;
}

@media only screen and (min-width: 768px) {
    .sec--panel {
        padding: 25px 0 115px;
    }
    .sec--panel .panel-ttl {
        margin-bottom: 51px;
    }
    .sec--panel .panel-ttl img {
        width: 312px;
    }
}

/* ========== decoration ========== */
.sec--decoration {
    padding: 8vw 0 8vw;
    background: #fef48e url(../images/panel-bg.svg) no-repeat center top;
    background-size: 100%;
}
.sec--decoration:before {
    background-image: url(../images/wave02.webp);
}
.sec--decoration:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 61.33333vw;
    background: #fef48e;
}
.sec--decoration .panel-ttl {
    text-align: center;
    margin-bottom: 10.66667vw;
}
.sec--decoration .panel-ttl img {
    width: 65.06667vw;
}
.sec--decoration .decoration-ttl {
    text-align: center;
    margin-bottom: 8vw;
}
.sec--decoration .decoration-ttl img {
    width: 63.46667vw;
}
.sec--decoration .decoration-item {
    margin-bottom: 10.66667vw;
}
.sec--decoration .decoration-item:last-child {
    margin-bottom: 0;
}
.sec--decoration .decoration-item__ttl {
    text-align: center;
    margin-bottom: 4vw;
}
.sec--decoration .decoration-item__ttl > span {
    display: inline-block;
    background: #00a3e0;
    border: 3px solid #212721;
    border-radius: 12.8vw;
    min-width: 42.66667vw;
    font-size: 6.4vw;
    color: #ffe207;
    font-weight: 900;
    position: relative;
    -webkit-text-stroke: 6px #212721;
            text-stroke: 6px #212721;
    paint-order: stroke;
    padding: 0 .5em .1em;
}
.sec--decoration .decoration-item .c-block__contents {
    padding-top: 5.33333vw;
    position: relative;
}
.sec--decoration .decoration-item .c-block__contents:before {
    content: "";
    width: 88%;
    border-top: 4px dotted #00a3e0;
    position: absolute;
    top: 0;
    left: 6%;
}

@media only screen and (min-width: 768px) {
    .sec--decoration {
        padding: 38px 0 40px;
    }
    .sec--decoration:after {
        height: 294px;
    }
    .sec--decoration .panel-ttl {
        margin-bottom: 51px;
    }
    .sec--decoration .panel-ttl img {
        width: 312px;
    }
    .sec--decoration .decoration-ttl {
        margin-bottom: 38px;
    }
    .sec--decoration .decoration-ttl img {
        width: 304px;
    }
    .sec--decoration .decoration-item {
        margin-bottom: 51px;
    }
    .sec--decoration .decoration-item__ttl {
        margin-bottom: 19px;
    }
    .sec--decoration .decoration-item__ttl > span {
        border-radius: 60px;
        min-width: 205px;
        font-size: 30px;
    }
    .sec--decoration .decoration-item .c-block__contents {
        padding-top: 25px;
    }
}