    @charset "utf-8";

    .clearfix {
        display: block;
    }

    .sp {
        display: none;
    }

    #wrapper {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        color: #111;
    }

    .bgy {
        background-color: #ffff82 !important;
    }

    .bold {
        font-weight: bold;
    }

    .red {
        color: #f34141 !important;
    }

    .blue {
        color: #4b82af !important;
    }

    .pink {
        color: #ff5b9f;
    }

    .beige {
        color: #a3957f;
    }

    .f120 {
        font-size: 120%;
    }

    .f150 {
        font-size: 150%;
    }

    .f170 {
        font-size: 170%;
    }

    .f200 {
        font-size: 200%;
    }

    .mb0 {
        margin-bottom: 0 !important;
    }

    .mt0 {
        margin-top: 0 !important;
    }

    figure {
        margin: 2rem 0 1.5rem !important;
    }

    figure video {
        width: 100%;
        text-align: center;
    }

    p {
        margin: 0 0 1.2rem;
    }

    .note {
        font-size: 10px;
    }

    .center {
        text-align: center;
    }

    .right {
        text-align: right;
    }

    .shadow {
        filter: drop-shadow(0px 3px 4px #aaa);
    }

    .underline {
        text-decoration: underline;
    }


    /* 見出し */
    h2.heading {
        position: relative;
        padding: 1rem 1rem 1.2rem;
        margin: 3rem 0 1.5rem;
        border-bottom: 3px solid #333;
        background:
            radial-gradient(#f2eded 30%, transparent 30%),
            linear-gradient(#e9d3cd 0 100%);
        background-repeat: repeat, no-repeat;
        background-size: 10px 10px, 100% 100%;
        font-size: 26px;
        text-align: center;
    }

    h2.heading:before,
    h2.heading:after {
        position: absolute;
        left: 50%;
        content: "";
        height: 0;
        width: 0;
    }

    h2.heading:before {
        top: 100%;
        border: 9px solid;
        border-color: transparent;
        border-top-color: #333;
        margin-left: -9px;
    }

    h2.heading:after {
        top: 99%;
        border: 6px solid;
        border-color: transparent;
        border-top-color: #e9d3cd;
        margin-left: -6px;
    }

    h2.heading p {
        color: #333;
        line-height: 1.5;
    }


    /* 小見出し */
    p.sub-heading {
        position: relative;
        margin-bottom: 1.5rem;
        padding-bottom: 0.5rem;
        font-weight: bold;
        font-size: 23px;
    }

    p.sub-heading::before {
        position: absolute;
        left: -10px;
        bottom: 0px;
        width: 100%;
        height: 10px;
        transform: skew(-45deg);
        background-image: repeating-linear-gradient(90deg, transparent 0 4px, #f3d38e 4px 8px);
        content: '';
    }

    /* arrow */
    .arrow {
        animation: 2s fuwafuwa infinite;
    }

    @keyframes fuwafuwa {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-20px);
        }
    }

    /* voicebox */
    .voicebox {
        margin: 2em auto;
        background-color: #F6EEEC;
        padding: 2.5em 2em 2em;
        position: relative;
    }

    .voicebox .box_title {
        background-image: repeating-linear-gradient(-45deg, #F6EEEC 0, #F6EEEC 3px, #fafafa 3px, #fafafa 6px);
        /*ストライプ*/
        border-left: 2px dotted rgba(0, 0, 0, .1);
        border-right: 2px dotted rgba(0, 0, 0, .1);
        transform: rotate(-2deg);
        font-size: 1em;
        padding: 10px 20px;
        line-height: 1;
        position: absolute;
        top: -15px;
        left: 20px;
    }

    .voicebox figure {
        text-align: center;
    }

    /* バウンド */
    .bound {
        animation: 3s 0s bound ease-in infinite;
    }

    @keyframes bound {

        79%,
        90%,
        97%,
        100% {
            -webkit-transform: translate(0);
            transform: translate(0);
        }

        85% {
            -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
        }

        94% {
            -webkit-transform: translateY(-4px);
            transform: translateY(-4px);
        }

        99% {
            -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
        }
    }

    /*slider*/

    .slider img {
        margin: 0 auto;
    }

    .slider .slick-prev,
    .slider .slick-next {
        display: none !important;
    }

    /* クロスフェード */
    .trouble-img__inner {
        max-width: 600px;
        height: 400px;
        margin: 0 auto 1.5rem;
        overflow: hidden;
        position: relative;
    }

    .img {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: all 1.0s;
    }

    .current-img {
        opacity: 1;
        z-index: 20;
    }

    /*点滅*/
    .blinking {
        animation: blink .5s ease-in-out infinite alternate;
    }

    @keyframes blink {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    .relative {
        position: relative;
        margin-bottom: 20px;;
    }

    .slide_position {
        width: 100%;
        margin-top: -90%;
        position: absolute;
        left: 0%;
    }


    /*スマホ
------------------------------*/

    @media screen and (max-width: 750px) {
        .pc {
            display: none;
        }

        .sp {
            display: block;
        }

        #wrapper {
            width: auto;
            max-width: none;
            margin: 0 auto;
            padding: 0 0.5rem;
        }

        h2.heading {
            padding: 0.8rem 0.8rem 0.9rem;
            font-size: 23px;
        }

        p.sub-heading {
            font-size: 21px;
        }

        .arrow {
            width: 80%;
            margin: 0 auto;
            padding: 1.2rem;
        }

        .voicebox {
            margin: 2em auto !important;
            background-color: #F6EEEC;
            padding: 1em 1.5em 1.5em !important;
            position: relative;
        }

        .trouble-img__inner {
            height: 270px;
        }
    }