@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   layout
*
========================================================== */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    padding-bottom: 108px;
}

@media screen and (max-width: 750px) {
    .contents {
        padding-bottom: 22.04927vw;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: relative;
    z-index: 2;
    padding: 33px 20px 65px;
    text-align: center;
}

@media screen and (min-width: 751px) {
    .footer {
        background-color: #534741;
    }
}

@media screen and (max-width: 750px) {
    .footer {
        padding: 0;
    }
}

/*  footer-pagetop
--------------------------------------------- */
@media screen and (max-width: 750px) {
    .footer-pagetop {
        width: 100%;
        height: 9.32091vw;
        background-color: rgba(124, 27, 0, 0.5);
    }
}

.footer-pagetop__link {
    position: absolute;
    top: -80px;
    right: 52px;
}

@media screen and (max-width: 750px) {
    .footer-pagetop__link {
        top: 3.46205vw;
        right: 5.7257vw;
    }
}

.footer-pagetop__link-txt {
    display: block;
    overflow: hidden;
    padding-top: 155px;
    width: 154px;
    height: 0;
    background: url(/img/bg_totop.svg) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .footer-pagetop__link-txt:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .footer-pagetop__link-txt {
        padding-top: 2.66312vw;
        width: 20.7723vw;
        background-image: url(/img/sp/bg_totop.svg);
    }
}

/*  footer-container
--------------------------------------------- */
.footer-container {
    display: inline-block;
    /* padding-left: 99px; */
    text-align: left;
}

@media screen and (max-width: 750px) {
    .footer-container {
        display: block;
        padding: 4.39414vw 5.59254%;
        background-color: #534741;
    }
}

/*  footer-links
--------------------------------------------- */
.footer-links {
    margin-top: 43px;
    margin-left: 1rem;
}

@media screen and (max-width: 750px) {
    .footer-links {
        margin-top: 3.06258vw;
    }
}

.footer-links__list:nth-of-type(n + 2) {
    margin-top: 40px;
}

@media screen and (max-width: 750px) {
    .footer-links__list:nth-of-type(n + 2) {
        margin-top: 1.33156vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-links__list {
        text-align: right;
    }
}

.footer-links__item {
    position: relative;
    display: inline-block;
    padding-left: 53px;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

@media screen and (min-width: 751px) {
    .footer-links__item:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 750px) {
    .footer-links__item {
        padding-left: 7.95796%;
        font-size: 0.5625rem;
    }
}

.footer-links__item::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    background: 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
}

.footer-links__item--mail::before {
    width: 33px;
    height: 24px;
    background-image: url(/img/icon_mail.svg);
}

@media screen and (max-width: 750px) {
    .footer-links__item--mail::before {
        width: 4.39414vw;
        height: 3.19574vw;
    }
}

@media screen and (max-width: 750px) {
    .footer-links__item--tel {
        padding-left: 5.55556%;
    }
}

.footer-links__item--tel::before {
    width: 27px;
    height: 27px;
    background-image: url(/img/icon_tel_white.svg);
}

@media screen and (max-width: 750px) {
    .footer-links__item--tel::before {
        width: 3.59521vw;
        height: 3.59521vw;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    margin-top: 55px;
    /* padding-left: 53px; */
    padding-left: 24px;
}

@media screen and (max-width: 750px) {
    .footer-nav {
        margin-top: 4.92676vw;
        padding-left: 0;
    }
}

.footer-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 750px) {
    .footer-nav__list {
        -ms-flex-pack: end;

        -webkit-box-pack: end;
        justify-content: flex-end;
    }
}

.footer-nav__list-item {
    display: inline;
}

.footer-nav__list-item::after {
    margin-right: 15px;
    margin-left: 12px;
    color: #fff;
    content: "・";
    font-weight: bold;
    font-size: 1rem;
}

@media screen and (max-width: 750px) {
    .footer-nav__list-item::after {
        margin-right: 2.3968vw;
        margin-left: 1.1984vw;
        font-size: 0.5625rem;
    }
}

.footer-nav__list-item:last-of-type::after {
    display: none;
}

.footer-nav__link {
    display: inline-block;
    color: #fff;
    font-weight: bold;
    font-size: 1rem;
}

@media screen and (min-width: 751px) {
    .footer-nav__link:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 750px) {
    .footer-nav__link {
        font-size: 0.5625rem;
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.wrapper {
    padding-bottom: 37px;
    background: url(/img/bg_page.png) 0 0 repeat;
    background-size: 284px auto;
}

@media screen and (max-width: 750px) {
    .wrapper {
        padding-bottom: 4.92676vw;
        background-size: 37.81625vw auto;
    }
}

/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   c-img-icon
--------------------------------------------- */
.c-img-icon {
    position: absolute;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.c-img-icon--concept1 {
    top: 280px;
    z-index: 2;
    margin-left: -37.16667%;
    max-width: 371px;
    width: 30.91667%;
}

@media screen and (max-width: 1000px) {
    .c-img-icon--concept1 {
        top: 350px;
    }
}

@media screen and (max-width: 750px) {
    .c-img-icon--concept1 {
        top: 58.45539vw;
        margin-left: -35.95206vw;
        width: 49.4008%;
    }
}

.c-img-icon--concept1.is-fadein {
    -webkit-animation: yurayura3 8s linear infinite;
    animation: yurayura3 8s linear infinite;
    -webkit-animation-delay: 0;
    animation-delay: 0;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--concept1.is-fadein img {
    -webkit-animation: concept1 3s ease;
    animation: concept1 3s ease;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--concept1 img {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@-webkit-keyframes concept1 {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes concept1 {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.c-img-icon--concept2 {
    top: 37px;
    margin-left: -36.33333%;
    max-width: 237px;
    width: 19.75%;
    opacity: .1;
}

@media screen and (max-width: 750px) {
    .c-img-icon--concept2 {
        top: 8.52197vw;
        margin-left: -35.15313vw;
        width: 25.69907%;
    }
}

.c-img-icon--concept3 {
    top: 191px;
    margin-left: -23.5%;
    max-width: 219px;
    width: 18.25%;
    opacity: .1;
}

@media screen and (max-width: 750px) {
    .c-img-icon--concept3 {
        top: 25.43276vw;
        margin-left: -18.24234vw;
        width: 23.70173%;
    }
}

.c-img-icon--concept4 {
    top: 232px;
    margin-left: 33.66667%;
    max-width: 249px;
    width: 20.75%;
    opacity: .1;
}

@media screen and (max-width: 750px) {
    .c-img-icon--concept4 {
        top: 47.13715vw;
        margin-left: 24.63382vw;
        width: 33.15579%;
    }
}

.c-img-icon--news1 {
    bottom: -190px;
    z-index: 2;
    margin-left: 40.33333%;
    max-width: 387px;
    width: 32.25%;
}

@media screen and (max-width: 750px) {
    .c-img-icon--news1 {
        bottom: -25.69907vw;
        margin-left: 35.95206vw;
        width: 48.86818%;
    }
}

.c-img-icon--news1.is-fadein {
    -webkit-animation: yurayura3 8s linear infinite;
    animation: yurayura3 8s linear infinite;
    -webkit-animation-delay: 0;
    animation-delay: 0;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--news1.is-fadein img {
    -webkit-animation: concept2 3s ease;
    animation: concept2 3s ease;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--news1 img {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@-webkit-keyframes concept2 {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes concept2 {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.c-img-icon--cloud1 {
    top: 93px;
    left: -158px;
    max-width: 564px;
    width: 47%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 750px) {
    .c-img-icon--cloud1 {
        top: 15.0466vw;
        left: -23.03595vw;
        width: 55.65912%;
    }
}

.c-img-icon--cloud1.is-fadein {
    -webkit-animation: yurayura4 8s linear infinite;
    animation: yurayura4 8s linear infinite;
    -webkit-animation-delay: 0;
    animation-delay: 0;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--cloud1.is-fadein img {
    -webkit-animation: cloud1 3s ease;
    animation: cloud1 3s ease;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--cloud1 img {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@-webkit-keyframes cloud1 {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes cloud1 {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.c-img-icon--cloud2 {
    top: 25px;
    right: -39px;
    left: auto;
    max-width: 426px;
    width: 35.5%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 750px) {
    .c-img-icon--cloud2 {
        top: 3.32889vw;
        right: -9.18775vw;
        width: 39.81358%;
    }
}

.c-img-icon--cloud2.is-fadein {
    -webkit-animation: yurayura4 8s linear infinite;
    animation: yurayura4 8s linear infinite;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--cloud2.is-fadein img {
    -webkit-animation: cloud2 3s ease;
    animation: cloud2 3s ease;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--cloud2 img {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
}

@-webkit-keyframes cloud2 {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes cloud2 {
    0% {
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.c-img-icon--shop1 {
    top: 392px;
    margin-left: 41.16667%;
    max-width: 368px;
    width: 30.66667%;
}

@media screen and (max-width: 1100px) {
    .c-img-icon--shop1 {
        top: 74vw;
    }
}

@media screen and (max-width: 750px) {
    .c-img-icon--shop1 {
        top: 96.53795vw;
        margin-left: 35.15313vw;
        width: 42.07723%;
    }
}

.c-img-icon--movies1 {
    top: 104px;
    margin-left: -32.33333%;
    width: 150px;
}

@media screen and (max-width: 750px) {
    .c-img-icon--movies1 {
        display: none;
    }
}

.c-img-icon--sns1 {
    top: -67px;
    right: 0;
    left: auto;
    z-index: 3;
    max-width: 285px;
    width: 23.75%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 750px) {
    .c-img-icon--sns1 {
        top: 2.52996vw;
        width: 35.5526%;
    }
}

.c-img-icon--sns2 {
    top: 62px;
    margin-left: -34.16667%;
    max-width: 196px;
    width: 16.33333%;
    opacity: .1;
}

@media screen and (max-width: 750px) {
    .c-img-icon--sns2 {
        top: 8.65513vw;
        margin-left: -32.49001vw;
        width: 26.89747%;
    }
}

.c-img-icon--sns3 {
    top: 38px;
    margin-left: 35.16667%;
    max-width: 294px;
    width: 24.5%;
    opacity: .1;
}

@media screen and (max-width: 750px) {
    .c-img-icon--sns3 {
        top: 31.69108vw;
        margin-left: 23.96804vw;
        width: 39.1478%;
    }
}

.c-img-icon--foot1 {
    bottom: 37px;
    left: -38px;
    max-width: 425px;
    width: 35.41667%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

@media screen and (max-width: 750px) {
    .c-img-icon--foot1 {
        bottom: 11.18509vw;
        left: -5.99201vw;
        width: 50.33289%;
    }
}

.c-img-icon--foot1.is-fadein img {
    -webkit-animation: foot1 1.5s ease;
    animation: foot1 1.5s ease;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-img-icon--foot1 img {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
}

@-webkit-keyframes foot1 {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes foot1 {
    0% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.c-img-icon--foot2 {
    bottom: 0;
    margin-left: 25.83333%;
    max-width: 189px;
    width: 15.75%;
}

@media screen and (max-width: 750px) {
    .c-img-icon--foot2 {
        margin-left: -29.8269vw;
        width: 23.43542%;
    }
}

/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
.c-kv {
    position: relative;
    height: 846px;
}

@media screen and (max-width: 1000px) {
    .c-kv {
        height: 670px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv {
        height: 101.59787vw;
    }
}

.c-kv__ttl {
    position: relative;
    right: 2px;
    z-index: 1;
    margin-right: auto;
    margin-left: auto;
    padding-top: 106px;
    width: 703px;
}

@media screen and (max-width: 1000px) {
    .c-kv__ttl {
        width: 583px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__ttl {
        right: -0.13316%;
        padding-top: 9.32091vw;
        width: 86.95073%;
    }
}

.c-kv__ttl-item {
    display: block;
    overflow: hidden;
    width: 0;
    height: 0;
    font-size: 0;
}

.c-kv__logo {
    position: absolute;
    top: 0;
    right: 2px;
    left: 0;
    z-index: 10;
    margin-right: auto;
    margin-left: auto;
    padding-top: 106px;
    width: 703px;
}

@media screen and (max-width: 1000px) {
    .c-kv__logo {
        width: 583px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__logo {
        right: -0.13316%;
        padding-top: 9.32091vw;
        width: 86.95073%;
    }
}

.c-kv__logo img {
    opacity: 0;
}

.c-kv__bg {
    position: absolute;
    top: 65px;
    left: 50%;
    width: 593px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .c-kv__bg {
        width: 473px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__bg {
        top: 15.44607vw;
        margin-left: 1.33156%;
        width: 73.23569%;
    }
}

.c-kv__deco {
    position: absolute;
    top: auto;
    left: 50%;
    z-index: 9;
    width: 890px;
    -webkit-transform: translate3d(380px, -150%, 0) rotate(-30deg);
    transform: translate3d(380px, -150%, 0) rotate(-30deg);
}

@media screen and (max-width: 1000px) {
    .c-kv__deco {
        width: 580px;
        -webkit-transform: translate3d(400px, -180%, 0) rotate(-30deg);
        transform: translate3d(400px, -180%, 0) rotate(-30deg);
    }
}

@media screen and (max-width: 750px) {
    .c-kv__deco {
        margin-left: 75.8988%;
        width: 77.23036%;
        -webkit-transform: translate3d(53.33333vw, -180%, 0) rotate(-30deg);
        transform: translate3d(53.33333vw, -180%, 0) rotate(-30deg);
    }
}

.c-kv__img {
    position: absolute;
    left: 50%;
    z-index: 2;
    overflow: hidden;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.c-kv__img--left {
    bottom: 128px;
    margin-left: -419px;
    width: 210px;
    height: 473px;
}

@media screen and (max-width: 1000px) {
    .c-kv__img--left {
        bottom: 58px;
        margin-left: -319px;
        width: 130px;
        height: 290px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__img--left {
        bottom: 20.23968vw;
        margin-left: -38.34887%;
        width: 24.76698%;
        height: 55.79228vw;
    }
}

.c-kv__img--right {
    bottom: 67px;
    margin-left: 411px;
    width: 210px;
    height: 435px;
}

@media screen and (max-width: 1000px) {
    .c-kv__img--right {
        margin-left: 311px;
        width: 130px;
        height: 250px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__img--right {
        bottom: 13.31558vw;
        margin-left: 37.81625%;
        width: 24.76698%;
        height: 46.60453vw;
    }
}

.c-kv__img-icon {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.c-kv__img-icon--left1 {
    bottom: 63px;
    z-index: 2;
    margin-left: -419px;
    width: 253px;
}

@media screen and (max-width: 1000px) {
    .c-kv__img-icon--left1 {
        bottom: 33px;
        margin-left: -319px;
        width: 183px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__img-icon--left1 {
        bottom: 12.25033vw;
        margin-left: -38.34887vw;
        width: 29.8269vw;
    }
}

.c-kv__img-icon--left2 {
    bottom: 239px;
    z-index: 1;
    margin-left: -419px;
    width: 295px;
}

@media screen and (max-width: 1000px) {
    .c-kv__img-icon--left2 {
        bottom: 149px;
        margin-left: -319px;
        width: 225px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__img-icon--left2 {
        bottom: 30.49268vw;
        margin-left: -39.41411vw;
        width: 34.88682vw;
    }
}

.c-kv__img-icon--right1 {
    bottom: 38px;
    z-index: 2;
    margin-left: 407px;
    width: 302px;
}

@media screen and (max-width: 1000px) {
    .c-kv__img-icon--right1 {
        margin-left: 311px;
        width: 232px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__img-icon--right1 {
        bottom: 10.253vw;
        margin-left: 37.28362vw;
        width: 35.68575vw;
    }
}

.c-kv__img-icon--right2 {
    bottom: 187px;
    margin-left: 341px;
    width: 176px;
}

@media screen and (max-width: 1000px) {
    .c-kv__img-icon--right2 {
        bottom: 137px;
        margin-left: 251px;
        width: 136px;
    }
}

@media screen and (max-width: 750px) {
    .c-kv__img-icon--right2 {
        bottom: 26.76431vw;
        margin-left: 29.42743vw;
        width: 20.7723vw;
    }
}

.c-kv__icon {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 1;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

.c-kv__icon--left {
    top: 32px;
    margin-left: -160px;
    width: 649px;
}

@media screen and (max-width: 750px) {
    .c-kv__icon--left {
        top: 8.25566vw;
        margin-left: -3.99467%;
        width: 76.56458%;
    }
}

.c-kv__icon--right {
    top: 80px;
    margin-left: 150px;
    width: 679px;
}

@media screen and (max-width: 750px) {
    .c-kv__icon--right {
        top: 11.98402vw;
        margin-left: 2.66312%;
        width: 61.78429%;
    }
}

/* ---------------------------------------------
*   c-link-circle
--------------------------------------------- */
.c-link-circle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 19px;
}

@media screen and (max-width: 750px) {
    .c-link-circle {
        margin-top: 3.06258vw;
    }
}

.c-link-circle__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    min-width: 127px;
    min-height: 36px;
    width: auto;
    height: auto;
    background: url(/img/bg_more.png) 0 0 no-repeat;
    background-size: 100% 100%;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-link-circle__item:hover {
        opacity: 0.8;
    }
}

.ie .c-link-circle__item {
    padding-top: 5px;
}

@media screen and (max-width: 750px) {
    .c-link-circle__item {
        min-width: 16.91079vw;
        min-height: 4.79361vw;
        font-size: 0.5rem;
    }
}

/* ---------------------------------------------
*   c-link-img
--------------------------------------------- */
.c-link-img {
    position: relative;
    margin-top: 45px;
}

@media screen and (max-width: 750px) {
    .c-link-img {
        margin-top: 5.05992vw;
    }
}

.c-link-img__item {
    position: relative;
    right: 24px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 642px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-link-img__item:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .c-link-img__item {
        right: 2.79627vw;
        width: 85.48602%;
    }
}

.c-link-img__txt {
    position: relative;
    top: -24px;
    padding-right: 25px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-link-img__txt {
        top: -2.66312vw;
        padding-right: 0.39947vw;
    }
}

.c-link-img__txt-item {
    position: relative;
    display: inline-block;
    padding-left: 35px;
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .c-link-img__txt-item {
        padding-left: 4.66045%;
        font-weight: normal;
        font-size: 0.625rem;
    }
}

.c-link-img__txt-item::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 25px;
    height: 25px;
    background: url(/img/icon_tab_black.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
}

@media screen and (max-width: 750px) {
    .c-link-img__txt-item::before {
        width: 3.32889vw;
        height: 3.32889vw;
    }
}

/* ---------------------------------------------
*   c-list-content
--------------------------------------------- */
.c-list-content {
    margin-top: 22px;
}

@media screen and (max-width: 750px) {
    .c-list-content {
        margin-top: 5.99201vw;
    }
}

@media screen and (min-width: 751px) {
    .c-list-content__item:first-of-type .c-list-content__link::before {
        background-image: url(/img/bg_border_top.svg);
    }
}

.c-list-content__item:last-of-type .c-list-content__link::after {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: url(/img/bg_border_bottom.svg) 0 100% no-repeat;
    background-size: 100% auto;
    content: '';
}

@media screen and (max-width: 750px) {
    .c-list-content__item:last-of-type .c-list-content__link::after {
        height: 0.53262vw;
        background-image: url(/img/sp/bg_border.svg);
        background-position-y: 0;
    }
}

.c-list-content__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 22px 8px;
}

@media screen and (max-width: 750px) {
    .c-list-content__link {
        display: block;
        padding: 2.92943vw 2.6087%;
    }
}

.c-list-content__link::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: url(/img/bg_border_medium.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
}

@media screen and (max-width: 750px) {
    .c-list-content__link::before {
        height: 0.53262vw;
        background-image: url(/img/sp/bg_border.svg);
    }
}

.c-list-content__link:hover .c-list-content__txt {
    text-decoration: underline;
}

.c-list-content__data {
    min-width: 150px;
    color: #fff;
    font-weight: bold;
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-list-content__data {
        padding-left: 1.04348%;
        min-width: 100%;
        font-size: 0.5625rem;
    }
}

.c-list-content__txt {
    display: inline-block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    max-width: 645px;
    color: #fff;
    font-weight: bold;
    font-size: 1.125rem;
}

@media screen and (min-width: 751px) {
    .c-list-content__txt {
        padding-left: 8px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-content__txt {
        margin-top: 1.06525vw;
        padding-right: 6.08696%;
        width: 100%;
        word-wrap: break-word;
        font-size: 0.5625rem;
        line-height: 1.65;

        overflow-wrap: break-word;
    }
}

/* ---------------------------------------------
*   c-list-chara
--------------------------------------------- */
.c-list-chara {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    margin-top: 29px;
    margin-right: auto;
    margin-left: auto;
    width: 1075px;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1150px) {
    .c-list-chara {
        width: 645px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-chara {
        margin-top: 6.12517vw;
        width: 81.35819%;
    }
}

.c-list-chara__item {
    margin-top: 10px;
    margin-right: 6px;
    margin-left: 6px;
    width: 203px;
}

@media screen and (max-width: 750px) {
    .c-list-chara__item {
        margin-top: 0;
        margin-right: 1.473%;
        margin-left: 1.473%;
        width: 45.49918%;
    }
}

@media screen and (max-width: 1150px) {
    .c-list-chara__item:nth-of-type(n + 4) {
        margin-top: 20px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-chara__item:nth-of-type(n + 3) {
        margin-top: 7.05726vw;
    }
}

@media screen and (min-width: 751px) {
    .c-list-chara__item:nth-of-type(5n) {
        margin-right: 0;
    }
}

.c-list-chara__link {
    display: block;
    cursor: auto;
}

.c-list-chara__link.js-modal-trigger {
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-list-chara__link.js-modal-trigger:hover {
        opacity: 0.8;
    }
}

/* ---------------------------------------------
*   c-list-card
--------------------------------------------- */
.c-list-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 45px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1080px;
    width: 90%;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 750px) {
    .c-list-card {
        -ms-flex-pack: center;
        margin-top: 7.32357vw;
        width: 94.94008%;

        -webkit-box-pack: center;
        justify-content: center;
    }
}

.c-list-card__item {
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 2.03704%;
    width: 31.94444%;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 1000px) {
    .c-list-card__item {
        width: 48.88889%;
    }
}

@media screen and (max-width: 750px) {
    .c-list-card__item {
        margin-right: 3.22581%;
        width: 48.3871%;
    }
}

@media screen and (min-width: 1001px) {
    .c-list-card__item:nth-of-type(3n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 1000px) {
    .c-list-card__item:nth-of-type(2n) {
        margin-right: 0;
    }
}

@media screen and (max-width: 1000px) {
    .c-list-card__item:nth-of-type(n + 3) {
        margin-top: 80px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-card__item:nth-of-type(n + 3) {
        margin-top: 9.32091vw;
    }
}

@media screen and (min-width: 1001px) {
    .c-list-card__item:nth-of-type(n + 4) {
        margin-top: 80px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-card__item:nth-of-type(3)::before {
        position: absolute;
        top: -11.71771vw;
        right: -2.26365vw;
        z-index: -1;
        width: 20.10652vw;
        height: 21.03862vw;
        background: url(/img/icon_menu4.png) 0 0 no-repeat;
        background-size: 100% auto;
        content: '';
        -webkit-animation: iconYurayura1 3s linear infinite;
        animation: iconYurayura1 3s linear infinite;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;

        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}

@media screen and (min-width: 751px) {
    .c-list-card__item:nth-of-type(4)::before {
        position: absolute;
        top: -80px;
        left: -25px;
        z-index: -1;
        width: 150px;
        height: 157px;
        background: url(/img/icon_menu4.png) 0 0 no-repeat;
        background-size: 100% auto;
        content: '';
        -webkit-animation: iconYurayura1 3s linear infinite;
        animation: iconYurayura1 3s linear infinite;
        -webkit-animation-delay: 0s;
        animation-delay: 0s;

        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
}

.c-list-card__item:nth-of-type(5)::before {
    position: absolute;
    right: -85px;
    bottom: -70px;
    z-index: -1;
    width: 195px;
    height: 174px;
    background: url(/img/icon_menu5.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-animation: iconYurayura2 6s linear infinite;
    animation: iconYurayura2 6s linear infinite;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 750px) {
    .c-list-card__item:nth-of-type(5)::before {
        right: -11.31824vw;
        bottom: -10.51931vw;
        width: 25.96538vw;
        height: 23.03595vw;
    }
}

.c-list-card__item:nth-of-type(6)::before {
    position: absolute;
    top: -83px;
    left: 79px;
    z-index: -1;
    width: 122px;
    height: 210px;
    background: url(/img/icon_menu6.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-animation: topShow 3s linear infinite;
    animation: topShow 3s linear infinite;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 750px) {
    .c-list-card__item:nth-of-type(6)::before {
        top: -9.98668vw;
        left: 12.91611vw;
        width: 14.11451vw;
        height: 24.36751vw;
    }
}

@-webkit-keyframes topShow {
    0% {
        top: -83px;
    }
    10% {
        top: -43px;
    }
    20% {
        top: -83px;
    }
}

@keyframes topShow {
    0% {
        top: -83px;
    }
    10% {
        top: -43px;
    }
    20% {
        top: -83px;
    }
}

@media screen and (max-width: 750px) {
    @-webkit-keyframes topShow {
        0% {
            top: -9.98668vw;
        }
        10% {
            top: -4.66045vw;
        }
        20% {
            top: -9.98668vw;
        }
    }
    @keyframes topShow {
        0% {
            top: -9.98668vw;
        }
        10% {
            top: -4.66045vw;
        }
        20% {
            top: -9.98668vw;
        }
    }
}

.c-list-card__item:nth-of-type(7)::before {
    position: absolute;
    right: 45px;
    bottom: -67px;
    z-index: -1;
    width: 138px;
    height: 162px;
    background: url(/img/icon_menu7.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-animation: bottomShow 3s linear infinite;
    animation: bottomShow 3s linear infinite;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 1000px) {
    .c-list-card__item:nth-of-type(7)::before {
        right: auto;
        left: 45px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-card__item:nth-of-type(7)::before {
        bottom: -8.38881vw;
        left: 21.70439vw;
        width: 18.3755vw;
        height: 21.57124vw;
    }
}

@-webkit-keyframes bottomShow {
    0% {
        bottom: -67px;
    }
    10% {
        bottom: -38px;
    }
    20% {
        bottom: -67px;
    }
}

@keyframes bottomShow {
    0% {
        bottom: -67px;
    }
    10% {
        bottom: -38px;
    }
    20% {
        bottom: -67px;
    }
}

@media screen and (max-width: 750px) {
    @-webkit-keyframes bottomShow {
        0% {
            bottom: -8.38881vw;
        }
        10% {
            bottom: -3.99467vw;
        }
        20% {
            bottom: -8.38881vw;
        }
    }
    @keyframes bottomShow {
        0% {
            bottom: -8.38881vw;
        }
        10% {
            bottom: -3.99467vw;
        }
        20% {
            bottom: -8.38881vw;
        }
    }
}

.c-list-card__item:nth-of-type(9)::before {
    position: absolute;
    top: -60px;
    right: 15px;
    z-index: -1;
    width: 149px;
    height: 147px;
    background: url(/img/icon_menu9.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-animation: iconYurayura1 3s linear infinite;
    animation: iconYurayura1 3s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (max-width: 750px) {
    .c-list-card__item:nth-of-type(9)::before {
        top: auto;
        right: -17.31025vw;
        bottom: 2.66312vw;
        width: 19.84021vw;
    }
}

.c-list-card__img {
    overflow: hidden;
    height: 350px;
    border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 750px) {
    .c-list-card__img {
        height: 46.60453vw;
        border-radius: 2.66312vw 2.66312vw 0 0;
    }
}

.c-list-card__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px 10px 20px;
    height: calc(100% - 350px);
    border-radius: 0 0 20px 20px;
    background-color: #fff;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 750px) {
    .c-list-card__content {
        padding: 3.46205vw 2.89855% 2.66312vw;
        height: calc(100% - 46.60453vw);
        border-radius: 0 0 2.66312vw 2.66312vw;
    }
}

.c-list-card__content-txt {
    min-height: 54px;
    color: #8C6239;
    text-align: center;
    letter-spacing: .01em;
    font-weight: bold;
    line-height: 1.7;
    font-size: 15px;
}

.c-list-card__content-txt span{
    font-size: 90%;
}

@media screen and (max-width: 750px) {
    .c-list-card__content-txt {
        min-height: 7.45672vw;
        font-size: 0.5625rem;
        line-height: 1.6;
    }
}

.c-list-card__content-yen {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
}

.c-list-card__content-yen-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-top: 13px;
    min-width: 120px;
    min-height: 29px;
    width: auto;
    height: auto;
    border-radius: 8px;
    background-color: #E8CE88;
    font-weight: bold;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.ie .c-list-card__content-yen-item {
    padding-top: 6px;
}

@media screen and (max-width: 750px) {
    .c-list-card__content-yen-item {
        padding-top: 0.26631vw;
        min-width: 15.9787vw;
        min-height: 3.86152vw;
        border-radius: 1.06525vw;
        font-size: 0.5625rem;
    }
}

/* ---------------------------------------------
*   c-list-cassette
--------------------------------------------- */
.c-list-cassette {
    position: relative;
    right: 10px;
    margin-top: 45px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1040px;
    width: 86.66667%;
}

@media screen and (max-width: 750px) {
    .c-list-cassette {
        right: auto;
        margin-top: 7.98935vw;
        width: 78.02929%;
    }
}

.c-list-cassette__item:nth-of-type(n + 2) {
    margin-top: 63px;
}

@media screen and (max-width: 750px) {
    .c-list-cassette__item:nth-of-type(n + 2) {
        margin-top: 14.11451vw;
    }
}

.c-list-cassette__section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
    .c-list-cassette__section {
        display: block;
    }
}

.c-list-cassette__img {
    position: relative;
    z-index: 1;
    width: calc(100% - 454px);
}

@media screen and (max-width: 1000px) {
    .c-list-cassette__img {
        width: 100%;
    }
}

/* .c-list-cassette__img::before {
    position: absolute;
    right: -110px;
    bottom: -15px;
    z-index: -1;
    width: 72.5256%;
    height: 173px;
    background: url(/img/icon_shop.png) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
}

@media screen and (max-width: 1200px) {
    .c-list-cassette__img::before {
        bottom: -1.25vw;
        height: 14.41667vw;
    }
}

@media screen and (max-width: 1120px) {
    .c-list-cassette__img::before {
        right: -80px;
        bottom: -5vw;
        width: 58.13953%;
    }
}

@media screen and (max-width: 1050px) {
    .c-list-cassette__img::before {
        right: -60px;
        bottom: -6vw;
    }
}

@media screen and (max-width: 1000px) {
    .c-list-cassette__img::before {
        right: -6.92042%;
        bottom: -15px;
        width: 49.01961%;
        height: 173px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-cassette__img::before {
        right: -7.58988vw;
        bottom: -2.66312vw;
        width: 50.06658vw;
        height: 20.37284vw;
        background-image: url(/img/sp/icon_shop.png);
    }
} */

.c-list-cassette__content {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 18px;
    padding-left: 25px;
    width: 454px;
}

@media screen and (max-width: 1000px) {
    .c-list-cassette__content {
        width: 100%;
    }
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content {
        padding-top: 2.26365vw;
        padding-right: 1.87713%;
        padding-left: 3.07167%;
    }
}

.c-list-cassette__content-ttl {
    padding-left: 12px;
    color: #C1272D;
    font-weight: bold;
    font-size: 1.5rem;
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-ttl {
        padding-left: 2.21843%;
        font-size: 0.96875rem;
    }
}

.c-list-cassette__content-inner {
    margin-top: 14px;
    padding-top: 14px;
    padding-left: 8px;
    border-top: 1px solid #603813;
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-inner {
        margin-top: 1.33156vw;
        padding-top: 0.93209vw;
        padding-left: 1.36519%;
    }
}

.c-list-cassette__content-txt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #603813;
    font-weight: bold;
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-txt {
        font-size: 0.65625rem;
    }
}

.c-list-cassette__content-txt:nth-of-type(n + 2) {
    margin-top: 12px;
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-txt:nth-of-type(n + 2) {
        margin-top: 1.59787vw;
    }
}

.c-list-cassette__content-txt-tel {
    position: relative;
    display: block;
    padding-left: 32px;
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-txt-tel {
        padding-left: 4.26099vw;
    }
}

.c-list-cassette__content-txt-tel::before {
    position: absolute;
    top: calc(50% - 2px);
    left: 2px;
    display: block;
    width: 18px;
    height: 19px;
    background: url(/img/icon_tel_blown.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-txt-tel::before {
        top: calc(50% - 0.26631vw);
        left: 0.26631vw;
        width: 3.19574vw;
        height: 3.32889vw;
    }
}

.c-list-cassette__content-txt-map {
    position: relative;
    display: block;
    margin-left: 31px;
    padding-left: 23px;
    letter-spacing: .08em;
}

@media screen and (min-width: 751px) {
    .c-list-cassette__content-txt-map:hover {
        text-decoration: underline;
    }
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-txt-map {
        margin-left: 3.46205vw;
        padding-left: 3.86152vw;
    }
}

.c-list-cassette__content-txt-map::before {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 15px;
    height: 24px;
    background: url(/img/icon_map.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-txt-map::before {
        width: 2.66312vw;
        height: 4.12783vw;
    }
}

.c-list-cassette__content-txt-time {
    position: relative;
    display: block;
    padding-left: 32px;
    font-size: 1.2rem;
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-txt-time {
        padding-left: 4.5vw;
        font-size: 0.8rem;
    }
}

.c-list-cassette__content-txt-time::before {
    position: absolute;
    top: calc(50% - 2px);
    left: 2px;
    display: block;
    width: 19px;
    height: 18px;
    background: url(/img/icon_time_blown.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (max-width: 750px) {
    .c-list-cassette__content-txt-time::before {
        top: calc(50% - 0.26631vw);
        left: 0.26631vw;
        width: 3.32889vw;
        height: 3.19574vw;
    }
}

/* ---------------------------------------------
*   c-list-movie
--------------------------------------------- */
.c-list-movie {
    z-index: 2;
    margin-top: 75px;
    margin-bottom: 0;
    padding-bottom: 56px;
}

@media screen and (min-width: 751px) {
    .c-list-movie {
        left: 50%;
        width: 1740px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 750px) {
    .c-list-movie {
        margin-top: 9.98668vw;
        margin-bottom: 5.32623vw;
        padding-bottom: 9.05459vw;
    }
}

.c-list-movie__item {
    position: relative;
    margin: 0 9px;
    width: 100%;
    border: 1px solid #603813;
}

@media screen and (max-width: 750px) {
    .c-list-movie__item {
        margin: 0 3.06258vw;
    }
}

.c-list-movie__link {
    display: block;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-list-movie__link:hover {
        opacity: 0.8;
    }
}

.c-list-movie .slick-dots {
    bottom: 0;
}

.c-list-movie .slick-dots li {
    width: 30px;
    height: 26px;
}

@media screen and (max-width: 750px) {
    .c-list-movie .slick-dots li {
        margin: 0 3.32889vw;
        width: 5.19308vw;
        height: 4.5273vw;
    }
}

.c-list-movie .slick-dots li button {
    padding: 0;
    width: 30px;
    height: 26px;
    background: url(/img/icon_slide.svg) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-list-movie .slick-dots li button:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .c-list-movie .slick-dots li button {
        width: 5.19308vw;
        height: 4.5273vw;
    }
}

.c-list-movie .slick-dots li button::before {
    display: none;
}

.c-list-movie .slick-dots li.slick-active button {
    background-image: url(/img/icon_slide_current.svg);
}

/* ---------------------------------------------
*   c-list-sns
--------------------------------------------- */
.c-list-sns {
    position: relative;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    margin-top: 39px;
    margin-right: auto;
    margin-left: auto;
    width: 798px;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (max-width: 1000px) {
    .c-list-sns {
        width: 702px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-sns {
        margin-top: 9.05459vw;
        width: 93.47537%;
    }
}

.c-list-sns__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-right: 78px;
    width: 214px;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (max-width: 1000px) {
    .c-list-sns__item {
        margin-right: 30px;
    }
}

@media screen and (max-width: 750px) {
    .c-list-sns__item {
        margin-right: 3.1339%;
        width: 30.48433%;
    }
}

.c-list-sns__item:nth-of-type(3n) {
    margin-right: 0;
}

.c-list-sns__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    padding-bottom: 10px;
    height: 219px;
    background: url(/img/bg_sns.png) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-list-sns__link:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .c-list-sns__link {
        padding-bottom: 2.13049vw;
        height: 29.16112vw;
    }
}

.c-list-sns__link--tw .c-list-sns__link-icon {
    width: 48px;
}

@media screen and (max-width: 750px) {
    .c-list-sns__link--tw .c-list-sns__link-icon {
        width: 6.39148vw;
    }
}

.c-list-sns__link--insta .c-list-sns__link-icon {
    width: 47px;
}

@media screen and (max-width: 750px) {
    .c-list-sns__link--insta .c-list-sns__link-icon {
        width: 6.25832vw;
    }
}

.c-list-sns__link--tiktok .c-list-sns__link-icon {
    width: 40px;
}

@media screen and (max-width: 750px) {
    .c-list-sns__link--tiktok .c-list-sns__link-icon {
        width: 5.33333vw;
    }
}

/* .c-list-sns__link--fb .c-list-sns__link-icon {
    width: 19px;
}

@media screen and (max-width: 750px) {
    .c-list-sns__link--fb .c-list-sns__link-icon {
        width: 2.52996vw;
    }
} */

.c-list-sns__link-icon {
    margin-right: auto;
    margin-left: auto;
}

.c-list-sns__link-txt {
    margin-top: 12px;
    color: #603813;
    text-align: center;
    font-weight: bold;
    line-height: 1.9;
}

@media screen and (max-width: 750px) {
    .c-list-sns__link-txt {
        font-size: 0.5rem;
    }
}

/* ---------------------------------------------
*   c-section
--------------------------------------------- */
.c-section {
    position: relative;
}

.c-section__news {
    position: relative;
    right: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-top: 64px;
    margin-right: auto;
    margin-left: auto;
    padding: 30px 90px;
    width: 993px;
    height: auto;
    /* min-height: 518px; */
    min-height: 438px;
    background: url(/img/bg_news.png) 0 0 repeat-y;
    background-size: 100% 100%;
}

@media screen and (max-width: 1000px) {
    .c-section__news {
        width: 748px;
    }
}

@media screen and (max-width: 750px) {
    .c-section__news {
        right: 1.33156%;
        margin-top: 25.2996vw;
        padding: 3.99467vw 6.12517% 11.71771vw 8.92144%;
        width: 91.74434%;
        height: auto;
        background-image: url(/img/sp/bg_news_221122.png);
        /* background-size: 100% auto; */
        background-repeat: no-repeat;
        min-height: 300px;
    }
}

.c-section--concept {
    padding-top: 65px;
}

@media screen and (max-width: 750px) {
    .c-section--concept {
        padding-top: 8.65513vw;
    }
}

.c-section--characters {
    margin-top: 114px;
    padding-top: 42px;
    padding-bottom: 59px;
    background-color: rgba(97, 76, 0, 0.5);
}

@media screen and (max-width: 750px) {
    .c-section--characters {
        margin-top: 15.57923vw;
        padding-top: 6.79095vw;
        padding-bottom: 9.45406vw;
    }
}

.c-section--menu {
    padding-top: 71px;
}

@media screen and (max-width: 750px) {
    .c-section--menu {
        padding-top: 8.52197vw;
    }
}

.c-section--online {
    padding-top: 111px;
}

@media screen and (max-width: 750px) {
    .c-section--online {
        padding-top: 7.45672vw;
    }
}

.c-section--shop {
    padding-top: 40px;
}

@media screen and (max-width: 750px) {
    .c-section--shop {
        padding-top: 7.32357vw;
    }
}

.c-section--movies {
    padding-top: 85px;
}

@media screen and (max-width: 750px) {
    .c-section--movies {
        padding-top: 11.85087vw;
    }
}

.c-section--sns {
    padding-top: 85px;
}

@media screen and (max-width: 750px) {
    .c-section--sns {
        padding-top: 12.6498vw;
    }
}

/*  c-section-potuge
--------------------------------------------- */
.c-section-potuge {
    position: relative;
    margin-top: 18px;
    height: 1043px;
    background: url(/img/bg_potsuge.png) 50% 0 repeat;
    background-size: 251px auto;
}

@media screen and (max-width: 1150px) {
    .c-section-potuge {
        height: 1240px;
    }
}

@media screen and (max-width: 1000px) {
    .c-section-potuge {
        height: 1120px;
    }
}

@media screen and (max-width: 750px) {
    .c-section-potuge {
        margin-top: 3.46205vw;
        height: 142.87617vw;
        background-size: 33.4221vw auto;
    }
}

.c-section-potuge__main {
    position: absolute;
    top: 35px;
    left: 50%;
    z-index: 1;
    width: 790px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 1000px) {
    .c-section-potuge__main {
        width: 650px;
    }
}

@media screen and (max-width: 750px) {
    .c-section-potuge__main {
        top: 7.05726vw;
        width: 92.54328%;
    }
}

.c-section-potuge__main-img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    width: 790px;
    height: 750px;
}

@media screen and (max-width: 1000px) {
    .c-section-potuge__main-img {
        width: 650px;
        height: 617px;
    }
}

@media screen and (max-width: 750px) {
    .c-section-potuge__main-img {
        width: 100%;
        height: 87.74967vw;
    }
}

.c-section-potuge__main-img.is-show {
    -webkit-animation: ShowPotsuge 1.5s ease;
    animation: ShowPotsuge 1.5s ease;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.c-section-potuge__main-img img {
    position: relative;
    display: block;
}

.c-section-potuge__main-img img.is-start {
    -webkit-animation: StartPotsuge 3s linear infinite;
    animation: StartPotsuge 3s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.c-section-potuge__main-img img.is-start.is-stop {
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

@-webkit-keyframes StartPotsuge {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    100% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
}

@keyframes StartPotsuge {
    0% {
        -webkit-transform: rotateZ(0);
        transform: rotateZ(0);
    }
    100% {
        -webkit-transform: rotateZ(-360deg);
        transform: rotateZ(-360deg);
    }
}

@-webkit-keyframes ShowPotsuge {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

@keyframes ShowPotsuge {
    0% {
        left: 0;
    }
    100% {
        left: -100%;
    }
}

.c-section-potuge__main-list {
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    overflow: hidden;
    width: 790px;
    height: 750px;
    border-radius: 50%;
}

@media screen and (max-width: 1000px) {
    .c-section-potuge__main-list {
        width: 650px;
        height: 617px;
    }
}

@media screen and (max-width: 750px) {
    .c-section-potuge__main-list {
        top: 2.66312vw;
        width: 100%;
        height: 87.74967vw;
    }
}

.c-section-potuge__main-list-item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.c-section-potuge__icon {
    position: absolute;
}

.c-section-potuge__icon--1 {
    top: 0;
    left: 50%;
    margin-left: -40.58333%;
    width: 223px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .c-section-potuge__icon--1 {
        display: none;
    }
}

.c-section-potuge__icon--2 {
    top: 0;
    left: 50%;
    margin-left: 40.33333%;
    width: 214px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .c-section-potuge__icon--2 {
        display: none;
    }
}

.c-section-potuge__icon--3 {
    bottom: 0;
    left: 50%;
    margin-left: -36.91667%;
    width: 238px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .c-section-potuge__icon--3 {
        left: 0.79893%;
        margin-left: 0;
        width: 14.98003%;
        -webkit-transform: none;
        transform: none;
    }
}

.c-section-potuge__icon--4 {
    bottom: 0;
    left: 50%;
    margin-left: 38.41667%;
    width: 265px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (max-width: 750px) {
    .c-section-potuge__icon--4 {
        right: 1.06525%;
        left: auto;
        margin-left: 0;
        width: 15.0466%;
        -webkit-transform: none;
        transform: none;
    }
}

.c-section-potuge__btn {
    padding-top: 863px;
    text-align: center;
}

@media screen and (max-width: 1000px) {
    .c-section-potuge__btn {
        padding-top: 753px;
    }
}

@media screen and (max-width: 750px) {
    .c-section-potuge__btn {
        padding-top: 103.72836vw;
    }
}

.c-section-potuge__btn-item {
    display: inline-block;
    width: 594px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-section-potuge__btn-item:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .c-section-potuge__btn-item {
        width: 79.09454%;
    }
}

.c-section-potuge__txt {
    margin-top: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-section-potuge__txt {
        margin-top: 4.39414vw;
        font-size: 0.65625rem;
        line-height: 1.7;
    }
}

.c-section-potuge__caution {
    margin-top: 13px;
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-section-potuge__caution {
        margin-top: 1.99734vw;
    }
}

.c-section-potuge__caution-txt {
    position: relative;
    display: inline-block;
    padding-left: 40px;
    color: #FF0000;
    font-weight: bold;
    font-size: 1.125rem;
}

@media screen and (max-width: 750px) {
    .c-section-potuge__caution-txt {
        padding-left: 6.65779vw;
        font-size: 0.65625rem;
    }
}

.c-section-potuge__caution-txt::before {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    height: 26px;
    background: url(/img/icon_volume_red.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
}

@media screen and (max-width: 750px) {
    .c-section-potuge__caution-txt::before {
        width: 5.32623vw;
        height: 0.96875rem;
    }
}

/* ---------------------------------------------
*   c-ttl-heading
--------------------------------------------- */
.c-ttl-heading--potsuge .c-ttl-heading__item-txt {
    right: 8px;
    width: 164px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--potsuge .c-ttl-heading__item-txt {
        right: 0.39947%;
        width: 23.03595%;
    }
}

.c-ttl-heading--potsuge .c-ttl-heading__item-txt::before, .c-ttl-heading--potsuge .c-ttl-heading__item-txt::after {
    margin-top: 7px;
    width: 71px;
    height: 85px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--potsuge .c-ttl-heading__item-txt::before, .c-ttl-heading--potsuge .c-ttl-heading__item-txt::after {
        margin-top: 1.99734vw;
        width: 9.32091vw;
        height: 11.05193vw;
    }
}

.c-ttl-heading--potsuge .c-ttl-heading__item-txt::before {
    left: -98px;
    background-image: url(/img/icon_todays_left.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--potsuge .c-ttl-heading__item-txt::before {
        left: -11.58455vw;
    }
}

.c-ttl-heading--potsuge .c-ttl-heading__item-txt::after {
    right: -91px;
    background-image: url(/img/icon_todays_right.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--potsuge .c-ttl-heading__item-txt::after {
        right: -11.05193vw;
    }
}

.c-ttl-heading--concept .c-ttl-heading__item-txt {
    right: 8px;
    width: 171px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--concept .c-ttl-heading__item-txt {
        right: 0.39947%;
        width: 25.56591%;
    }
}

.c-ttl-heading--news {
    padding-top: 35px;
    padding-left: 32px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--news {
        padding-top: 4.66045vw;
        padding-left: 5.56522%;
    }
}

.c-ttl-heading--news .c-ttl-heading__item-txt {
    right: 8px;
    width: 106px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--news .c-ttl-heading__item-txt {
        right: 3.68324%;
        width: 22.8361%;
    }
}

.c-ttl-heading--news .c-ttl-heading__item-txt::before, .c-ttl-heading--news .c-ttl-heading__item-txt::after {
    width: 67px;
    height: 42px;
    background-image: url(/img/icon_news.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--news .c-ttl-heading__item-txt::before, .c-ttl-heading--news .c-ttl-heading__item-txt::after {
        width: 8.92144vw;
        height: 5.59254vw;
    }
}

.c-ttl-heading--news .c-ttl-heading__item-txt::before {
    left: -98px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--news .c-ttl-heading__item-txt::before {
        left: -13.04927vw;
    }
}

.c-ttl-heading--news .c-ttl-heading__item-txt::after {
    right: -91px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--news .c-ttl-heading__item-txt::after {
        right: -12.78296vw;
    }
}

.c-ttl-heading--characters .c-ttl-heading__item-txt {
    right: 8px;
    width: 240px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--characters .c-ttl-heading__item-txt {
        right: 0.39947%;
        width: 33.68842%;
    }
}

.c-ttl-heading--menu .c-ttl-heading__item-txt {
    right: 4px;
    width: 112px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--menu .c-ttl-heading__item-txt {
        right: 0;
        width: 15.71238%;
    }
}

.c-ttl-heading--menu .c-ttl-heading__item-txt::before, .c-ttl-heading--menu .c-ttl-heading__item-txt::after {
    margin-top: -4px;
    width: 73px;
    height: 73px;
    background-image: url(/img/icon_menu.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--menu .c-ttl-heading__item-txt::before, .c-ttl-heading--menu .c-ttl-heading__item-txt::after {
        margin-top: -0.26631vw;
        width: 9.72037vw;
        height: 9.72037vw;
    }
}

.c-ttl-heading--menu .c-ttl-heading__item-txt::before {
    left: -110px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--menu .c-ttl-heading__item-txt::before {
        left: -14.11451vw;
    }
}

.c-ttl-heading--menu .c-ttl-heading__item-txt::after {
    right: -98px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--menu .c-ttl-heading__item-txt::after {
        right: -13.04927vw;
    }
}

.c-menu-list{
    text-align: right;
    max-width: 1000px;
    margin: -55px auto 0;
    width: 90%;
}

@media screen and (max-width: 750px) {
    .c-menu-list{
        text-align: center;
        margin-top:40px;
        width: 94.94008%;
    }
}

.c-menu-list img{
    width: 180px;
    height: auto;
}

.c-ttl-heading--online .c-ttl-heading__item-txt {
    right: 8px;
    width: 256px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--online .c-ttl-heading__item-txt {
        right: auto;
        width: 35.81891%;
    }
}

.c-ttl-heading--online .c-ttl-heading__item-txt::before, .c-ttl-heading--online .c-ttl-heading__item-txt::after {
    margin-top: 2px;
    width: 52px;
    height: 52px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--online .c-ttl-heading__item-txt::before, .c-ttl-heading--online .c-ttl-heading__item-txt::after {
        margin-top: 0.39947vw;
        width: 6.9241vw;
        height: 6.9241vw;
    }
}

.c-ttl-heading--online .c-ttl-heading__item-txt::before {
    left: -70px;
    background-image: url(/img/icon_online_left.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--online .c-ttl-heading__item-txt::before {
        left: -9.72037vw;
    }
}

.c-ttl-heading--online .c-ttl-heading__item-txt::after {
    right: -86px;
    background-image: url(/img/icon_online_right.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--online .c-ttl-heading__item-txt::after {
        right: -9.85353vw;
    }
}

.c-ttl-heading--shop .c-ttl-heading__item-txt {
    right: 3px;
    width: 92px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--shop .c-ttl-heading__item-txt {
        right: 0.26631%;
        width: 12.25033%;
    }
}

.c-ttl-heading--shop .c-ttl-heading__item-txt::before, .c-ttl-heading--shop .c-ttl-heading__item-txt::after {
    margin-top: -2px;
    width: 70px;
    height: 61px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--shop .c-ttl-heading__item-txt::before, .c-ttl-heading--shop .c-ttl-heading__item-txt::after {
        margin-top: -0.26631vw;
        width: 9.32091vw;
        height: 8.1225vw;
    }
}

.c-ttl-heading--shop .c-ttl-heading__item-txt::before {
    left: -113px;
    background-image: url(/img/icon_shop_left.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--shop .c-ttl-heading__item-txt::before {
        left: -15.0466vw;
    }
}

.c-ttl-heading--shop .c-ttl-heading__item-txt::after {
    right: -114px;
    background-image: url(/img/icon_shop_right.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--shop .c-ttl-heading__item-txt::after {
        right: -15.17976vw;
    }
}

.c-ttl-heading--movies .c-ttl-heading__item-txt {
    right: 7px;
    width: 142px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--movies .c-ttl-heading__item-txt {
        right: 0.26631%;
        width: 18.90812%;
    }
}

.c-ttl-heading--movies .c-ttl-heading__item-txt::before, .c-ttl-heading--movies .c-ttl-heading__item-txt::after {
    margin-top: 6px;
    width: 58px;
    height: 37px;
    background-image: url(/img/icon_movies.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--movies .c-ttl-heading__item-txt::before, .c-ttl-heading--movies .c-ttl-heading__item-txt::after {
        margin-top: 0.66578vw;
        width: 7.72304vw;
        height: 4.92676vw;
    }
}

.c-ttl-heading--movies .c-ttl-heading__item-txt::before {
    left: -88px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--movies .c-ttl-heading__item-txt::before {
        left: -11.4514vw;
    }
}

.c-ttl-heading--movies .c-ttl-heading__item-txt::after {
    right: -90px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--movies .c-ttl-heading__item-txt::after {
        right: -12.38349vw;
    }
}

.c-ttl-heading--sns .c-ttl-heading__item-txt {
    /* right: 7px; */
    width: 75px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--sns .c-ttl-heading__item-txt {
        right: 0.26631%;
        width: 9.98668%;
    }
}

.c-ttl-heading--sns .c-ttl-heading__item-txt::before, .c-ttl-heading--sns .c-ttl-heading__item-txt::after {
    margin-top: -3px;
    width: 48px;
    height: 56px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--sns .c-ttl-heading__item-txt::before, .c-ttl-heading--sns .c-ttl-heading__item-txt::after {
        margin-top: -0.26631vw;
        width: 6.39148vw;
        height: 7.45672vw;
    }
}

.c-ttl-heading--sns .c-ttl-heading__item-txt::before {
    left: -79px;
    background-image: url(/img/icon_sns_left.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--sns .c-ttl-heading__item-txt::before {
        left: -10.51931vw;
    }
}

.c-ttl-heading--sns .c-ttl-heading__item-txt::after {
    right: -89px;
    background-image: url(/img/icon_sns_right.svg);
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--sns .c-ttl-heading__item-txt::after {
        right: -11.98402vw;
    }
}

.c-ttl-heading--contact {
    padding-left: 25px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--contact {
        padding-left: 0;
    }
}

.c-ttl-heading--contact .c-ttl-heading__item-txt {
    margin-left: 0;
    width: 173px;
}

@media screen and (max-width: 750px) {
    .c-ttl-heading--contact .c-ttl-heading__item-txt {
        margin-right: 0.9009%;
        margin-left: auto;
        width: 25.97598%;
    }
}

.c-ttl-heading__item {
    display: block;
}

.c-ttl-heading__item-txt {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.c-ttl-heading__item-txt::before, .c-ttl-heading__item-txt::after {
    position: absolute;
    top: 50%;
    display: block;
    background: 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

/* ---------------------------------------------
*   c-txt-item
--------------------------------------------- */
.c-txt-item {
    position: relative;
    z-index: 2;
    margin-top: 32px;
    color: #603813;
    text-align: center;
    font-weight: bold;
    font-size: 1.3125rem;
    line-height: 2.9;
}

@media screen and (max-width: 750px) {
    .c-txt-item {
        margin-top: 4.79361vw;
        font-size: 0.75rem;
        line-height: 2.53;
    }
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ---------------------------------------------
*   js-object-fit (object-fit)
--------------------------------------------- */
.js-object-fit {
    display: block;
    width: 100%;
    height: 100%;
    font-family: "object-fit: cover";

    -o-object-fit: cover;
    object-fit: cover;
}

/* ---------------------------------------------
*   kv animation
--------------------------------------------- */
.js-kv-anime.is-load.js-cloud-left {
    -webkit-animation: CloudLeft 3s ease;
    animation: CloudLeft 3s ease;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes CloudLeft {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(-80%);
        transform: translateX(-80%);
    }
}

@keyframes CloudLeft {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(-80%);
        transform: translateX(-80%);
    }
}

.js-kv-anime.is-load.js-cloud-right {
    -webkit-animation: CloudRight 3s ease;
    animation: CloudRight 3s ease;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes CloudRight {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%);
    }
}

@keyframes CloudRight {
    0% {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    100% {
        -webkit-transform: translateX(-20%);
        transform: translateX(-20%);
    }
}

.js-kv-anime.is-load.js-deco-left {
    -webkit-animation: DecoLeft 4.5s ease;
    animation: DecoLeft 4.5s ease;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes DecoLeft {
    0% {
        height: 473px;
    }
    100% {
        height: 673px;
    }
}

@keyframes DecoLeft {
    0% {
        height: 473px;
    }
    100% {
        height: 673px;
    }
}

@media screen and (max-width: 1000px) {
    @-webkit-keyframes DecoLeft {
        0% {
            height: 290px;
        }
        100% {
            height: 416px;
        }
    }
    @keyframes DecoLeft {
        0% {
            height: 290px;
        }
        100% {
            height: 416px;
        }
    }
}

@media screen and (max-width: 750px) {
    @-webkit-keyframes DecoLeft {
        0% {
            height: 55.79228vw;
        }
        100% {
            height: 79.36085vw;
        }
    }
    @keyframes DecoLeft {
        0% {
            height: 55.79228vw;
        }
        100% {
            height: 79.36085vw;
        }
    }
}

.js-kv-anime.is-load.js-deco-right {
    -webkit-animation: DecoRight 4.5s ease;
    animation: DecoRight 4.5s ease;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes DecoRight {
    0% {
        height: 435px;
    }
    100% {
        height: 665px;
    }
}

@keyframes DecoRight {
    0% {
        height: 435px;
    }
    100% {
        height: 665px;
    }
}

@media screen and (max-width: 1000px) {
    @-webkit-keyframes DecoRight {
        0% {
            height: 250px;
        }
        100% {
            height: 412px;
        }
    }
    @keyframes DecoRight {
        0% {
            height: 250px;
        }
        100% {
            height: 412px;
        }
    }
}

@media screen and (max-width: 750px) {
    @-webkit-keyframes DecoRight {
        0% {
            height: 46.60453vw;
        }
        100% {
            height: 78.16245vw;
        }
    }
    @keyframes DecoRight {
        0% {
            height: 46.60453vw;
        }
        100% {
            height: 78.16245vw;
        }
    }
}

.js-kv-anime.is-load.js-anime-buru {
    -webkit-animation: AnimeBuru .2s ease 10;
    animation: AnimeBuru .2s ease 10;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes AnimeBuru {
    0% {
        -webkit-transform: translate(0px, 0px) rotateZ(0deg);
        transform: translate(0px, 0px) rotateZ(0deg);
    }
    25% {
        -webkit-transform: translate(2px, 2px) rotateZ(1deg);
        transform: translate(2px, 2px) rotateZ(1deg);
    }
    50% {
        -webkit-transform: translate(0px, 2px) rotateZ(0deg);
        transform: translate(0px, 2px) rotateZ(0deg);
    }
    75% {
        -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
        transform: translate(2px, 0px) rotateZ(-1deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotateZ(0deg);
        transform: translate(0px, 0px) rotateZ(0deg);
    }
}

@keyframes AnimeBuru {
    0% {
        -webkit-transform: translate(0px, 0px) rotateZ(0deg);
        transform: translate(0px, 0px) rotateZ(0deg);
    }
    25% {
        -webkit-transform: translate(2px, 2px) rotateZ(1deg);
        transform: translate(2px, 2px) rotateZ(1deg);
    }
    50% {
        -webkit-transform: translate(0px, 2px) rotateZ(0deg);
        transform: translate(0px, 2px) rotateZ(0deg);
    }
    75% {
        -webkit-transform: translate(2px, 0px) rotateZ(-1deg);
        transform: translate(2px, 0px) rotateZ(-1deg);
    }
    100% {
        -webkit-transform: translate(0px, 0px) rotateZ(0deg);
        transform: translate(0px, 0px) rotateZ(0deg);
    }
}

.js-kv-anime.is-load.js-potetorusu-show {
    -webkit-animation: AnimeShowPotetorusu 2.2s ease;
    animation: AnimeShowPotetorusu 2.2s ease;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.js-kv-anime.is-load.js-potetorusu-show.js-yura {
    -webkit-animation: yurayuraPotetorusu 18s linear infinite;
    animation: yurayuraPotetorusu 18s linear infinite;
    -webkit-animation-delay: 0;
    animation-delay: 0;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes AnimeShowPotetorusu {
    0% {
        -webkit-transform: translate3d(70%, 30%, 0) rotate(0deg);
        transform: translate3d(70%, 30%, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(-129%, 59%, 0) rotate(25deg);
        transform: translate3d(-129%, 59%, 0) rotate(25deg);
    }
}

@keyframes AnimeShowPotetorusu {
    0% {
        -webkit-transform: translate3d(70%, 30%, 0) rotate(0deg);
        transform: translate3d(70%, 30%, 0) rotate(0deg);
    }
    100% {
        -webkit-transform: translate3d(-129%, 59%, 0) rotate(25deg);
        transform: translate3d(-129%, 59%, 0) rotate(25deg);
    }
}

@media screen and (max-width: 1000px) {
    @-webkit-keyframes AnimeShowPotetorusu {
        0% {
            -webkit-transform: translate3d(70%, 30%, 0) rotate(0deg);
            transform: translate3d(70%, 30%, 0) rotate(0deg);
        }
        100% {
            -webkit-transform: translate3d(-163%, 68%, 0) rotate(25deg);
            transform: translate3d(-163%, 68%, 0) rotate(25deg);
        }
    }
    @keyframes AnimeShowPotetorusu {
        0% {
            -webkit-transform: translate3d(70%, 30%, 0) rotate(0deg);
            transform: translate3d(70%, 30%, 0) rotate(0deg);
        }
        100% {
            -webkit-transform: translate3d(-163%, 68%, 0) rotate(25deg);
            transform: translate3d(-163%, 68%, 0) rotate(25deg);
        }
    }
}

@media screen and (max-width: 750px) {
    @-webkit-keyframes AnimeShowPotetorusu {
        0% {
            -webkit-transform: translate3d(70%, 30%, 0) rotate(0deg);
            transform: translate3d(70%, 30%, 0) rotate(0deg);
        }
        100% {
            -webkit-transform: translate3d(-247%, 4%, 0) rotate(25deg);
            transform: translate3d(-247%, 4%, 0) rotate(25deg);
        }
    }
    @keyframes AnimeShowPotetorusu {
        0% {
            -webkit-transform: translate3d(70%, 30%, 0) rotate(0deg);
            transform: translate3d(70%, 30%, 0) rotate(0deg);
        }
        100% {
            -webkit-transform: translate3d(-247%, 4%, 0) rotate(25deg);
            transform: translate3d(-247%, 4%, 0) rotate(25deg);
        }
    }
}

.js-kv-anime.is-load.js-anime-logo {
    opacity: 0;
    -webkit-animation: AnimeLogo .8s ease;
    animation: AnimeLogo .8s ease;
    -webkit-animation-delay: 5s;
    animation-delay: 5s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes AnimeLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes AnimeLogo {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* ---------------------------------------------
*   c-modal
--------------------------------------------- */
.c-modal .slick-arrow {
    position: absolute;
    top: 50%;
    width: 37px;
    height: 66px;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-modal .slick-arrow:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .c-modal .slick-arrow {
        margin-top: -15.9787vw;
        width: 4.26099vw;
        height: 7.45672vw;
    }
}

.c-modal .slick-arrow::before {
    display: block;
    width: 100%;
    height: 100%;
    background: 0 0 no-repeat;
    background-size: 100% auto;
    content: "";
    font-size: 0;
    opacity: 1;
}

.c-modal .slick-arrow.slick-prev {
    left: 27px;
    z-index: 1;
}

@media screen and (max-width: 750px) {
    .c-modal .slick-arrow.slick-prev {
        left: 3.59521vw;
    }
}

.c-modal .slick-arrow.slick-prev::before {
    background-image: url(/img/icon_modal_left.svg);
}

.c-modal .slick-arrow.slick-next {
    right: 27px;
}

@media screen and (max-width: 750px) {
    .c-modal .slick-arrow.slick-next {
        right: 3.59521vw;
    }
}

.c-modal .slick-arrow.slick-next::before {
    background-image: url(/img/icon_modal_right.svg);
}

.c-modal__close {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    margin-top: -206px;
    margin-left: 298px;
    width: 46px;
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

@media screen and (min-width: 751px) {
    .c-modal__close:hover {
        opacity: 0.8;
    }
}

@media screen and (max-width: 750px) {
    .c-modal__close {
        margin-top: -45.93875vw;
        margin-left: 37.81625vw;
        width: 7.85619vw;
    }
}

.c-modal__close img {
    pointer-events: none;
}

.c-modal__slides {
    margin-right: auto;
    margin-left: auto;
    width: 703px;
}

@media screen and (max-width: 750px) {
    .c-modal__slides {
        width: 93.60852%;
    }
}

.c-modal__slide {
    text-align: center;
}

@media screen and (max-width: 750px) {
    .c-modal__slide {
        margin-right: 0;
        margin-left: 0;
    }
}

.c-modal__slide img {
    width: 100%;
}

.js-anime-yura1 {
    -webkit-animation: yurayura1 2s linear infinite;
    animation: yurayura1 2s linear infinite;
    -webkit-animation-delay: 0;
    animation-delay: 0;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes yurayura1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: translate3d(4px, 8px, 0) rotate(-3deg);
        transform: translate3d(4px, 8px, 0) rotate(-3deg);
    }
    50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

@keyframes yurayura1 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    25% {
        -webkit-transform: translate3d(4px, 8px, 0) rotate(-3deg);
        transform: translate3d(4px, 8px, 0) rotate(-3deg);
    }
    50% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
}

.js-anime-yura2 {
    -webkit-animation: yurayura2 4s linear infinite;
    animation: yurayura2 4s linear infinite;
    -webkit-animation-delay: 0;
    animation-delay: 0;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes yurayura2 {
    0% {
        -webkit-transform: translateX(4px) rotate(0deg);
        transform: translateX(4px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateX(-4px) rotate(-3deg);
        transform: translateX(-4px) rotate(-3deg);
    }
    100% {
        -webkit-transform: translateX(4px) rotate(0deg);
        transform: translateX(4px) rotate(0deg);
    }
}

@keyframes yurayura2 {
    0% {
        -webkit-transform: translateX(4px) rotate(0deg);
        transform: translateX(4px) rotate(0deg);
    }
    50% {
        -webkit-transform: translateX(-4px) rotate(-3deg);
        transform: translateX(-4px) rotate(-3deg);
    }
    100% {
        -webkit-transform: translateX(4px) rotate(0deg);
        transform: translateX(4px) rotate(0deg);
    }
}

@-webkit-keyframes yurayuraNeco {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    30% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    60% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    80% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes yurayuraNeco {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    30% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    60% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    80% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes yurayura3 {
    0% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
    30% {
        -webkit-transform: translate3d(-50%, -15px, 0);
        transform: translate3d(-50%, -15px, 0);
    }
    60% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
    80% {
        -webkit-transform: translate3d(-50%, -15px, 0);
        transform: translate3d(-50%, -15px, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes yurayura3 {
    0% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
    30% {
        -webkit-transform: translate3d(-50%, -15px, 0);
        transform: translate3d(-50%, -15px, 0);
    }
    60% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
    80% {
        -webkit-transform: translate3d(-50%, -15px, 0);
        transform: translate3d(-50%, -15px, 0);
    }
    100% {
        -webkit-transform: translate3d(-50%, 0, 0);
        transform: translate3d(-50%, 0, 0);
    }
}

.js-anime-yura3 {
    -webkit-animation: yurayura4 8s linear infinite;
    animation: yurayura4 8s linear infinite;
    -webkit-animation-delay: 0;
    animation-delay: 0;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes yurayura4 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    30% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    60% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    80% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes yurayura4 {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    30% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    60% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    80% {
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0);
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@-webkit-keyframes yurayuraPotetorusu {
    0% {
        -webkit-transform: translate3d(-129%, 59%, 0) rotate(25deg);
        transform: translate3d(-129%, 59%, 0) rotate(25deg);
    }
    30% {
        -webkit-transform: translate3d(-125%, 48%, 0) rotate(25deg);
        transform: translate3d(-125%, 48%, 0) rotate(25deg);
    }
    60% {
        -webkit-transform: translate3d(-129%, 59%, 0) rotate(25deg);
        transform: translate3d(-129%, 59%, 0) rotate(25deg);
    }
    80% {
        -webkit-transform: translate3d(-125%, 48%, 0) rotate(25deg);
        transform: translate3d(-125%, 48%, 0) rotate(25deg);
    }
    100% {
        -webkit-transform: translate3d(-129%, 59%, 0) rotate(25deg);
        transform: translate3d(-129%, 59%, 0) rotate(25deg);
    }
}

@keyframes yurayuraPotetorusu {
    0% {
        -webkit-transform: translate3d(-129%, 59%, 0) rotate(25deg);
        transform: translate3d(-129%, 59%, 0) rotate(25deg);
    }
    30% {
        -webkit-transform: translate3d(-125%, 48%, 0) rotate(25deg);
        transform: translate3d(-125%, 48%, 0) rotate(25deg);
    }
    60% {
        -webkit-transform: translate3d(-129%, 59%, 0) rotate(25deg);
        transform: translate3d(-129%, 59%, 0) rotate(25deg);
    }
    80% {
        -webkit-transform: translate3d(-125%, 48%, 0) rotate(25deg);
        transform: translate3d(-125%, 48%, 0) rotate(25deg);
    }
    100% {
        -webkit-transform: translate3d(-129%, 59%, 0) rotate(25deg);
        transform: translate3d(-129%, 59%, 0) rotate(25deg);
    }
}

@media screen and (max-width: 1000px) {
    @-webkit-keyframes yurayuraPotetorusu {
        0% {
            -webkit-transform: translate3d(-163%, 68%, 0) rotate(25deg);
            transform: translate3d(-163%, 68%, 0) rotate(25deg);
        }
        30% {
            -webkit-transform: translate3d(-159%, 59%, 0) rotate(25deg);
            transform: translate3d(-159%, 59%, 0) rotate(25deg);
        }
        60% {
            -webkit-transform: translate3d(-163%, 68%, 0) rotate(25deg);
            transform: translate3d(-163%, 68%, 0) rotate(25deg);
        }
        80% {
            -webkit-transform: translate3d(-159%, 59%, 0) rotate(25deg);
            transform: translate3d(-159%, 59%, 0) rotate(25deg);
        }
        100% {
            -webkit-transform: translate3d(-163%, 68%, 0) rotate(25deg);
            transform: translate3d(-163%, 68%, 0) rotate(25deg);
        }
    }
    @keyframes yurayuraPotetorusu {
        0% {
            -webkit-transform: translate3d(-163%, 68%, 0) rotate(25deg);
            transform: translate3d(-163%, 68%, 0) rotate(25deg);
        }
        30% {
            -webkit-transform: translate3d(-159%, 59%, 0) rotate(25deg);
            transform: translate3d(-159%, 59%, 0) rotate(25deg);
        }
        60% {
            -webkit-transform: translate3d(-163%, 68%, 0) rotate(25deg);
            transform: translate3d(-163%, 68%, 0) rotate(25deg);
        }
        80% {
            -webkit-transform: translate3d(-159%, 59%, 0) rotate(25deg);
            transform: translate3d(-159%, 59%, 0) rotate(25deg);
        }
        100% {
            -webkit-transform: translate3d(-163%, 68%, 0) rotate(25deg);
            transform: translate3d(-163%, 68%, 0) rotate(25deg);
        }
    }
}

@media screen and (max-width: 750px) {
    @-webkit-keyframes yurayuraPotetorusu {
        0% {
            -webkit-transform: translate3d(-247%, 4%, 0) rotate(25deg);
            transform: translate3d(-247%, 4%, 0) rotate(25deg);
        }
        30% {
            -webkit-transform: translate3d(-244%, -4%, 0) rotate(25deg);
            transform: translate3d(-244%, -4%, 0) rotate(25deg);
        }
        60% {
            -webkit-transform: translate3d(-247%, 4%, 0) rotate(25deg);
            transform: translate3d(-247%, 4%, 0) rotate(25deg);
        }
        80% {
            -webkit-transform: translate3d(-244%, -4%, 0) rotate(25deg);
            transform: translate3d(-244%, -4%, 0) rotate(25deg);
        }
        100% {
            -webkit-transform: translate3d(-247%, 4%, 0) rotate(25deg);
            transform: translate3d(-247%, 4%, 0) rotate(25deg);
        }
    }
    @keyframes yurayuraPotetorusu {
        0% {
            -webkit-transform: translate3d(-247%, 4%, 0) rotate(25deg);
            transform: translate3d(-247%, 4%, 0) rotate(25deg);
        }
        30% {
            -webkit-transform: translate3d(-244%, -4%, 0) rotate(25deg);
            transform: translate3d(-244%, -4%, 0) rotate(25deg);
        }
        60% {
            -webkit-transform: translate3d(-247%, 4%, 0) rotate(25deg);
            transform: translate3d(-247%, 4%, 0) rotate(25deg);
        }
        80% {
            -webkit-transform: translate3d(-244%, -4%, 0) rotate(25deg);
            transform: translate3d(-244%, -4%, 0) rotate(25deg);
        }
        100% {
            -webkit-transform: translate3d(-247%, 4%, 0) rotate(25deg);
            transform: translate3d(-247%, 4%, 0) rotate(25deg);
        }
    }
}

@-webkit-keyframes iconYurayura1 {
    0% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    10% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
    20% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
}

@keyframes iconYurayura1 {
    0% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    10% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
    20% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
}

@-webkit-keyframes iconYurayura2 {
    0% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    30% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
    60% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
}

@keyframes iconYurayura2 {
    0% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
    30% {
        -webkit-transform: rotate(-3deg);
        transform: rotate(-3deg);
    }
    60% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg);
    }
}

/* ---------------------------------------------
*   js-tel-disabled
--------------------------------------------- */
.js-tel-disabled {
    pointer-events: none;
}

/* ---------------------------------------------
*   slider fade
--------------------------------------------- */
.js-slider {
    opacity: 0;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}

.js-slider.slick-initialized {
    opacity: 1;
}

.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
    pointer-events: none;
}

.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.15s ease-out;
    transition: all 0.15s ease-out;
}

.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

/* ==========================================================
*
*   utility
*
========================================================== */
/* ---------------------------------------------
*   background-color
--------------------------------------------- */
.bg-white {
    background-color: #fff !important;
}

/* ---------------------------------------------
*   font-wight
--------------------------------------------- */
.fw-normal {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* ---------------------------------------------
*   text-align
--------------------------------------------- */
.txt-al-center {
    text-align: center !important;
}

.txt-al-right {
    text-align: right !important;
}

.txt-al-left {
    text-align: left !important;
}

@media screen and (min-width: 751px) {
    .pc-hide {
        display: none !important;
    }
}

@media screen and (max-width: 750px) {
    .sp-hide {
        display: none !important;
    }
}

/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 0.66578vw !important;
    }
    .mgt-sp--10 {
        margin-top: 1.33156vw !important;
    }
    .mgt-sp--15 {
        margin-top: 1.99734vw !important;
    }
    .mgt-sp--20 {
        margin-top: 2.66312vw !important;
    }
    .mgt-sp--25 {
        margin-top: 3.32889vw !important;
    }
    .mgt-sp--30 {
        margin-top: 3.99467vw !important;
    }
    .mgt-sp--35 {
        margin-top: 4.66045vw !important;
    }
    .mgt-sp--40 {
        margin-top: 5.32623vw !important;
    }
    .mgt-sp--45 {
        margin-top: 5.99201vw !important;
    }
    .mgt-sp--50 {
        margin-top: 6.65779vw !important;
    }
    .mgt-sp--55 {
        margin-top: 7.32357vw !important;
    }
    .mgt-sp--60 {
        margin-top: 7.98935vw !important;
    }
    .mgt-sp--65 {
        margin-top: 8.65513vw !important;
    }
    .mgt-sp--70 {
        margin-top: 9.32091vw !important;
    }
    .mgt-sp--75 {
        margin-top: 9.98668vw !important;
    }
    .mgt-sp--80 {
        margin-top: 10.65246vw !important;
    }
    .mgt-sp--85 {
        margin-top: 11.31824vw !important;
    }
    .mgt-sp--90 {
        margin-top: 11.98402vw !important;
    }
    .mgt-sp--95 {
        margin-top: 12.6498vw !important;
    }
    .mgt-sp--100 {
        margin-top: 13.31558vw !important;
    }
    .mgt-sp--105 {
        margin-top: 13.98136vw !important;
    }
    .mgt-sp--110 {
        margin-top: 14.64714vw !important;
    }
    .mgt-sp--115 {
        margin-top: 15.31292vw !important;
    }
    .mgt-sp--120 {
        margin-top: 15.9787vw !important;
    }
    .mgt-sp--125 {
        margin-top: 16.64447vw !important;
    }
    .mgt-sp--130 {
        margin-top: 17.31025vw !important;
    }
    .mgt-sp--135 {
        margin-top: 17.97603vw !important;
    }
    .mgt-sp--140 {
        margin-top: 18.64181vw !important;
    }
    .mgt-sp--145 {
        margin-top: 19.30759vw !important;
    }
    .mgt-sp--150 {
        margin-top: 19.97337vw !important;
    }
    .mgt-sp--155 {
        margin-top: 20.63915vw !important;
    }
    .mgt-sp--160 {
        margin-top: 21.30493vw !important;
    }
    .mgt-sp--165 {
        margin-top: 21.97071vw !important;
    }
    .mgt-sp--170 {
        margin-top: 22.63648vw !important;
    }
    .mgt-sp--175 {
        margin-top: 23.30226vw !important;
    }
    .mgt-sp--180 {
        margin-top: 23.96804vw !important;
    }
    .mgt-sp--185 {
        margin-top: 24.63382vw !important;
    }
    .mgt-sp--190 {
        margin-top: 25.2996vw !important;
    }
    .mgt-sp--195 {
        margin-top: 25.96538vw !important;
    }
    .mgt-sp--200 {
        margin-top: 26.63116vw !important;
    }
    .mgt-sp--205 {
        margin-top: 27.29694vw !important;
    }
    .mgt-sp--210 {
        margin-top: 27.96272vw !important;
    }
    .mgt-sp--215 {
        margin-top: 28.6285vw !important;
    }
    .mgt-sp--220 {
        margin-top: 29.29427vw !important;
    }
    .mgt-sp--225 {
        margin-top: 29.96005vw !important;
    }
    .mgt-sp--230 {
        margin-top: 30.62583vw !important;
    }
    .mgt-sp--235 {
        margin-top: 31.29161vw !important;
    }
    .mgt-sp--240 {
        margin-top: 31.95739vw !important;
    }
    .mgt-sp--245 {
        margin-top: 32.62317vw !important;
    }
    .mgt-sp--250 {
        margin-top: 33.28895vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 750px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 0.66578vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 1.33156vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 1.99734vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 2.66312vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 3.32889vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 3.99467vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 4.66045vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 5.32623vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 5.99201vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 6.65779vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 7.32357vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 7.98935vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 8.65513vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 9.32091vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 9.98668vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 10.65246vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 11.31824vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 11.98402vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 12.6498vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 13.31558vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 13.98136vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 14.64714vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 15.31292vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 15.9787vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 16.64447vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 17.31025vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 17.97603vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 18.64181vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 19.30759vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 19.97337vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 20.63915vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 21.30493vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 21.97071vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 22.63648vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 23.30226vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 23.96804vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 24.63382vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 25.2996vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 25.96538vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 26.63116vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 27.29694vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 27.96272vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 28.6285vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 29.29427vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 29.96005vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 30.62583vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 31.29161vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 31.95739vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 32.62317vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 33.28895vw !important;
    }
}

.comming{
    text-align: center;
    margin-top: 30px;
}

@media screen and (min-width: 751px) {
    .comming{
        width: 800px;
        margin-left: auto;
        margin-right: auto;
    }
}