header {
    position: relative;
}

#rabbit1 {
    width: 100%;
    height: 100vh;
    background: url(images/rabbit1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 701px) and (max-width: 1000px) {
    #rabbit1 {
        width: 100%;
        height: 80vh;
        background: url(images/rabbit2.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width: 700px) {
    #rabbit1 {
        width: 100%;
        height: 80vh;
        background: url(images/rabbit3.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}



#logowidthpc {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#navpc {
    background-color: #ffffff;
    opacity: 0.5;
    width: 100%;
    height: 90px;
    position: absolute;
    margin-top: 600px;
}

@media screen and (max-width: 1000px) {
    #navpc {
        margin-top: 460px;
    }
}

@media screen and (max-width: 700px) {
    #navpc {
        margin-top: 0px;
    }
}

@media screen and (max-width: 700px) {
    #ulpc li {
        display: none;
    }
}

.under {
    text-decoration: none;
}

#ulpc {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-between;
    display: flex;
    font-size: 16px;
}

#ulpc li {
    padding-top: 37px;
    padding-bottom: 37px;
    font-family: HGPｺﾞｼｯｸM;
    font-weight: bold;
}

#ulpc li:hover {
    opacity: 0.7;
}

.link {
    color: black;
    text-decoration: none;
}

#logopc {
    position: absolute;
    padding-top: 535px;
}

@media screen and (max-width: 1000px) {
    #logopc {
        padding-top: 395px;
    }
}

@media screen and (max-width: 700px) {
    #logosm {
        padding-left: 10%;
    }
}

@media screen and (min-width: 701px) {
    #logosm {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    #logopc {
        display: none;
    }
}




#navsm {
    background-color: #fff;
    opacity: 0.5;
    display: none;
}

/*ここからスマホハンバーガー*/

#rabbit2 {
    display: flex;
    padding-top: 20px;
    position: relative;
}

@media screen and (min-width: 701px) {
    #hamburger {
        display: none;
    }
}

@media screen and (max-width: 700px) {
    #hamburger {
        background-color: transparent;
        /*透明の背景*/
        position: relative;
        /*ハンバーガーの横線の位置を決めるための基準*/
        cursor: pointer;
        /*リンクを示すカーソルを表示（指差しマーク）*/
        margin: 0 0 0 auto;
        /*左側に余白を作り、ハンバーガーメニューを右端に配置*/
        height: 50px;
        width: 90px;
        /*高さと同じ幅*/
    }

    .icon span {
        position: absolute;
        /*親要素である#hamburgerを基準に位置を指定*/
        left: 15px;
        /*#hamburger内の左がら15pxに横線を配置（幅が60pxなので右からも15px）*/
        width: 35px;
        /*横線の幅が30px*/
        height: 1.5px;
        /*横線の高さが4px*/
        background-color: white;
        /*横線を白色*/
        border-radius: 8px;
        /*横線の両端の角に丸みを持たせる*/
        transition: ease 0.75s;
        /*変化の時間（easeは初期値）*/
    }

    .icon span:nth-of-type(1) {
        top: 14px;
    }

    .icon span:nth-of-type(2) {
        top: 24px;
    }

    .icon span:nth-of-type(3) {
        top: 34px;
    }



    .close span:nth-of-type(1) {
        transform: rotate(45deg);
        /*反時計回りに45度回転*/
        top: 20px;
    }

    .close span:nth-of-type(2) {
        opacity: 0;
    }

    .close span:nth-of-type(3) {
        transform: rotate(-45deg);
        /*時計回りに45度回転*/
        top: 20px;
    }

    #navsm {
        top: 90px;
        /*headerの余白分*/
        left: 0px;
        /*headerの余白分　ヘッダーには左右に15px余白があるので、headerの子要素となる.smは15px分内側に設置されます。その余白を埋めるために左に寄せる。*/
        position: absolute;
        /*絶対配置　top　leftからの位置を絶対配置する*/
        z-index: 10;
        width: 100%;
        font-size: 15px;
        color: black;
    }

    #navsm {
        flex-direction: column;
        /*ulのflexboxを縦並びにする*/
    }

    #navsm li {
        text-align: center;
        /*メニューリストの文字を中央寄せ*/
        border-top: solid 0.5px gray;
        /*リストの境目に白線 */
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/*ここまでスマホハンバーガー*/

/*コンセプト*/

#toptext {
    font-weight: lighter;
    font-family: HGP創英角ﾎﾟｯﾌﾟ体;
    font-weight: bold;
    text-align: center;
    padding-top: 230px;
    margin-bottom: 50px;
    font-size: 2em;
}



@media screen and (max-width: 480px) {
    #toptext {
        font-size: 18px;
        margin-top: 20%;
        padding-top: 40px;
        margin-bottom: 5%;
    }
}

#to_top_matome {
    position: fixed;
    z-index: 1;
    margin-left: 1150px;
    right: 20px;
    bottom: 50px;
    animation: to_top 2s infinite;
}

@media screen and (max-width: 480px) {
    #to_top {
        display: none;
    }
}

@media screen and (min-width: 481px) {
    #to_topsm {
        display: none;
    }
}

#to_top_matome a {
    position: relative;
}

#to_top_matome a::before {
    position: absolute;
}

#to_top_matome:hover {
    opacity: 0.7;
}

.p1 {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1%;
    line-height: 4.5em;
    font-family: 小塚ゴシック Pro;
}

@media screen and (min-width: 1000px) {
    #p1sm {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    .p1 {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    #p1sm {
        width: 90%;
        margin-right: auto;
        margin-left: auto;
        margin-top: 1%;
        line-height: 3.5em;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    #p1sm {
        margin-top: 1%;
        margin-bottom: 20%;
        line-height: 2.5em;
        font-size: 13px;
    }
}

.Breakhonbun {
    opacity: 0;
    transition: opacity 7s;
    animation: 2.0s linear forwards fadeanime2;
    animation-name: fadeanime2;
}

@keyframes fadeanime2 {
    to {
        opacity: 1;
    }
}


.photo1 {
    margin-left: auto;
    margin-right: auto;
    animation: photo1 0.2s ease infinite alternate;
}

@media screen and (min-width: 1001px) {
    #photo1sm {
        display: none;
    }
}

@media screen and (max-width: 1000px) {
    #photo1sm {
        margin-left: auto;
        margin-right: auto;
        animation: photo1 0.2s ease infinite alternate;
    }
}

@media screen and (max-width: 1000px) {
    .photo1 {
        display: none;
    }
}

/*コンセプト終了*/


/*うさぎさんたち題名*/
.fadeisagisanntachi {
    animation-name: fadeanime3;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeanime3 {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*うさぎさんたち題名終了*/


/*うさぎさんたちの紹介*/
#usagisantachi1 {
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    justify-content: space-around;
}

@media screen and (max-width: 700px) {
    #usagisantachi1 {
        display: none;
    }
}

@media screen and (min-width: 701px) and (max-width: 1100px) {
    #usagisantachi2 {
        display: none;
    }
}

@media screen and (min-width: 701px) and (max-width: 1100px) {
    .photo3 {
        display: none;
    }
}

@media screen and (min-width: 1101px) {
    #usagisantachi2 {
        display: none;
    }
}

@media screen and (max-width: 700px) {

    #displayusagi1,
    #displayusagi2 {
        display: flex;
        justify-content: space-around;
    }
}

@media screen and (min-width: 701px) {

    #displayusagi1,
    #displayusagi2 {
        display: flex;
        justify-content: space-around;
    }
}



#h2-1 {
    text-align: center;
    margin-top: 200px;
    padding-top: 3%;
    margin-bottom: 150px;
    padding-bottom: 3%;
    font-size: 28px;
    background-color: #fce9e4;
    font-weight: lighter;
    letter-spacing: 0.1em;
    font-family: HGP創英角ﾎﾟｯﾌﾟ体;
}

@media screen and (max-width: 700px) {
    #h2-1 {
        margin-bottom: 80px;
        margin-top: 120px;
    }
}


.p8 {
    margin-left: 44%;
    margin-top: 10%;
    margin-bottom: 50%;
    font-family: "小塚ゴシック Pro";
    font-weight: bold;
}

.usagisan {
    opacity: 0;
    transition: 1s;
}

.usagisan.fadein {
    opacity: 1;
}


figure.hover-parent {
    width: 250px;
    height: 280px;
    border-radius: 30%;
    position: relative;
    overflow: hidden;
}

@media screen and (min-width: 701px) and (max-width: 1100px) {
    figure.hover-parent {
        width: 160px;
        height: 190px;
    }
}

@media screen and (max-width: 700px) {
    figure.hover-parent {
        width: 150px;
        height: 180px;
    }
}

figcaption.hover-mask {
    width: 250px;
    height: 310px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    color: #fff;
    display: flex;
    align-items: center;
    text-align: center;
    line-height: 3.5em;
    margin-top: -15px;
    padding-left: 37px;
}

@media screen and (min-width: 701px) and (max-width: 1100px) {
    figcaption.hover-mask {
        width: 140px;
        height: 210px;
        line-height: 3em;
        font-size: 11px;
        padding-left: 21px;
    }
}

@media screen and (max-width: 700px) {
    figcaption.hover-mask {
        width: 130px;
        height: 200px;
        line-height: 3em;
        font-size: 10px;
        padding-left: 21px;
    }
}

figcaption.hover-mask:hover {
    opacity: 1;
    transition: all 0.6s ease;
}


#box {
    margin-top: 40px;
    margin-bottom: 100px;
    text-align: center;
}

a.btn {
    border: 5px groove #fabb7d;
    background-color: #fabb7d;
    font-size: 1rem;
    font-weight: 1000;
    padding: 1rem 2rem;
    vertical-align: middle;
    text-decoration: none;
    letter-spacing: 0.1em;
    color: #fcfafb;
    border-radius: 0.8rem;
}


a.btn:hover {
    opacity: 0.7;
}



#photo13 {
    width: 100%;
    height: 600px;
    background: url(images/photo13.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (max-width: 1000px) {
    #photo13 {
        width: 100%;
        height: 600px;
        background: url(images/photosm13.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}



/*ウサギさんたちの紹介終了*/

/*遊び方*/
#background {
    padding-top: 12%;
    background-image:
        radial-gradient(290px 300px, rgba(254, 234, 233, 0.5) 20% 20%, transparent 20%),
        radial-gradient(800px 780px, rgba(254, 234, 233, 0.5) 20%, transparent 20%),
        radial-gradient(1000px 990px, rgba(254, 234, 233, 0.5) 20%, transparent 20%),
        radial-gradient(400px 380px, rgba(254, 234, 233, 0.5) 20%, transparent 20%),
        radial-gradient(750px 750px, rgba(254, 234, 233, 0.5) 20%, transparent 20%),
        radial-gradient(100px 100px, rgba(254, 234, 233, 0.5) 20%, transparent 20%);
    background-size:
        1130px 1180px,
        910px 1810px,
        2070px 1190px,
        1400px 1620px,
        1120px 1300px,
        1100px 1300px;
    background-position:
        -300px -550px,
        -200px 100px,
        50px 510px,
        -200px -550px,
        -180px -250px,
        130px -150px;
}


#h2-2 {
    text-align: center;
    font-size: 24px;
    width: 130px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    margin-bottom: 50px;
    height: 130px;
    background-color: #fff8ef;
    border-radius: 50%;
    line-height: 130px;
    font-weight: lighter;
    letter-spacing: 0.1em;
    font-family: HGP創英角ﾎﾟｯﾌﾟ体;
}

@media screen and (max-width: 700px) {
    #h2-2 {
        margin-top: 150px;
        margin-bottom: 30px;
    }
}

.fadeLeft {
    animation-name: fadeanime4;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeanime4 {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}




#asobi1 {
    display: flex;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
}

@media screen and (max-width: 1200px) {
    #asobi1 {
        display: block;
        width: 90%;
    }
}

@media screen and (max-width: 900px) {
    #asobi1 {
        width: 90%;
    }
}


@media screen and (max-width: 700px) {
    #asobi1 {
        width: 80%;
    }
}

@media screen and (max-width: 550px) {
    #asobi1 {
        width: 100%;
    }
}

@media screen and (min-width: 1201px) {
    #photo7ipad {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    #photo7 {
        display: none;
    }
}

@media screen and (max-width: 700px) {

    #photo7ipad,
    photo7 {
        display: none;
    }
}

@media screen and (min-width: 701px) {
    #photo7sm {
        display: none;
    }
}





#p2 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#p3 {
    margin-top: 6%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}


#p3:hover {
    opacity: 0.5;
}

a {
    color: black;
}


#asobi2 {
    line-height: 3.5em;
    margin-top: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: #fff8ef;
    font-family: "小塚ゴシック Pro";
}

@media screen and (max-width: 1200px) {
    #asobi2 {
        margin-top: 0px;
        margin-left: 30%;
        padding-top: 50px;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 700px) {
    #asobi2 {
        padding-top: 30px;
        line-height: 2em;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    #asobi2 {
        padding-top: 30px;
        line-height: 2em;
        font-size: 13px;
    }
}

.asobi2-1 {
    animation-name: fadeanime5;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeanime5 {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}





/*遊び方終了*/

/*ルール*/
#h2-3 {
    text-align: center;
    font-size: 24px;
    width: 130px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    margin-top: 260px;
    height: 130px;
    background-color: #fff8ef;
    border-radius: 50%;
    line-height: 130px;
    font-weight: lighter;
    letter-spacing: 0.1em;
    font-family: HGP創英角ﾎﾟｯﾌﾟ体;
}

@media screen and (max-width: 700px) {
    #h2-3 {
        margin-top: 200px;
        margin-bottom: 70px;
    }
}

#rulematome1 {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 40px;
    padding-bottom: 2%;
    background-color: #fff8ef;
}

.rule {
    display: flex;
    font-size: 16px;
    padding-top: 2%;
    padding-bottom: 2%;
    margin-left: 13%;
    font-family: "小塚ゴシック Pro";
}

@media screen and (max-width: 1000px) {
    .rule {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media screen and (max-width: 700px) {
    .rule {
        line-height: 25px;
        margin-bottom: 5%;
    }
}

@media screen and (max-width: 480px) {
    .rule {
        font-size: 13px;
    }
}



.rulematome1-1 {
    opacity: 0;
    transition: opacity 7s;
    animation: 2.0s linear forwards fadeanime6;
    animation-name: fadeanime6;
}

@keyframes fadeanime6 {
    to {
        opacity: 1;
    }
}

/*ルール終了*/



/*料金*/
#h2-4 {
    text-align: center;
    font-size: 24px;
    width: 130px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    margin-top: 260px;
    height: 130px;
    background-color: #fff8ef;
    border-radius: 50%;
    line-height: 130px;
    font-weight: lighter;
    letter-spacing: 0.1em;
    font-family: HGP創英角ﾎﾟｯﾌﾟ体;
}

@media screen and (max-width: 700px) {
    #h2-4 {
        margin-top: 200px;
        margin-bottom: 70px;
    }
}

#pay1 {
    display: flex;
    width: 70%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1200px) {
    #pay1 {
        display: block;
        width: 90%;
    }
}

@media screen and (max-width: 900px) {
    #pay1 {
        width: 90%;
    }
}


@media screen and (max-width: 700px) {
    #pay1 {
        width: 80%;
    }
}

@media screen and (max-width: 550px) {
    #pay1 {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    #colorsm {
        background-color: #fff8ef;
        padding-top: 50px;
        padding-bottom: 50px;
        margin-left: 30%;
    }
}


@media screen and (max-width: 1200px) {
    #colorsm {
        margin-top: 0px;
        width: 70%;
        margin-left: 0%;
        padding-top: 60px;
        padding-bottom: 40px;
    }
}

@media screen and (max-width: 700px) {
    #colorsm {
        padding-top: 40px;
        line-height: 2em;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    #colorsm {
        padding-top: 40px;
        line-height: 2em;
        font-size: 13px;
    }
}

#p5 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#p6 {
    margin-top: 13%;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#p6:hover {
    opacity: 0.5;
}

#pay2 {
    line-height: 3.5em;
    margin-top: 200px;
    margin-bottom: 300px;
    background-color: #fff8ef;
    font-family: "小塚ゴシック Pro";
}

@media screen and (max-width: 1200px) {
    #pay2 {
        margin-top: 0px;
        background-color: transparent;
    }
}

@media screen and (max-width: 1200px) {
    #pay2 {
        margin-bottom: 200px;
    }
}


@media screen and (min-width: 1201px) {
    #photo8 {
        margin-left: auto;
    }
}

@media screen and (max-width: 700px) {
    #photo8sm {
        margin-left: auto;
    }
}

@media screen and (min-width: 701px) and (max-width: 1200px) {
    #photo8ipad {
        margin-left: auto;
    }
}

@media screen and (min-width: 1201px) {
    #photo8ipad {
        display: none;
    }
}

@media screen and (max-width: 1200px) {
    #photo8 {
        display: none;
    }
}

@media screen and (max-width: 700px) {

    #photo8ipad,
    photo8 {
        display: none;
    }
}

@media screen and (min-width: 701px) {
    #photo8sm {
        display: none;
    }
}



.photo8-1 {
    animation-name: fadeanime7;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeanime7 {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.pay2-1 {
    animation-name: fadeanime8;
    animation-duration: 3s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeanime8 {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



@media screen and (min-width: 701px) {
    #photo9sm {
        display: none;
    }
}

@media screen and (max-width: 701px) {
    #photo9 {
        display: none;
    }
}



/*料金終了*/

/*Information*/
h3 {
    padding-top: 100px;
    font-size: 28px;
    text-align: center;
    font-weight: lighter;
    letter-spacing: 0.1em;
    font-family: HGP創英角ﾎﾟｯﾌﾟ体;
}


#display {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
    display: flex;
}

@media screen and (max-width: 1200px) {
    #display {
        width: 90%;
    }
}

@media screen and (max-width: 1000px) {
    #display {
        width: 80%;
    }
}

@media screen and (max-width: 999px) {
    #display {
        width: 70%;
        display: block;
    }
}

@media screen and (max-width: 700px) {
    #display {
        width: 100%;
    }
}

@media screen and (max-width: 999px) {

    #photo10,
    #photo10sm {
        display: none;
    }
}

@media screen and (min-width: 999px) {

    #photo10ipad,
    #photo10sm {
        display: none;
    }
}

@media screen and (max-width: 999px) {
    #photo10ipad {
        width: 100%;
        height: 60vh;
        background: url(images/photo10.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

#display2 {
    width: 45%;
    margin-left: 15%;
    margin-top: 3%;
}

@media screen and (max-width: 1200px) {
    #display2 {
        width: 45%;
        margin-left: 10%;
    }
}

@media screen and (max-width: 999px) {
    #display2 {
        width: 70%;
        margin-left: 25%;
        margin-right: auto;
        padding-top: 10%;
    }
}

@media screen and (max-width: 480px) {
    #display2 {
        width: 80%;
        margin-left: 15%;
        font-size: 13px;
        padding-bottom: 10%;
    }
}

.p7 {
    padding: 40px;
}

@media screen and (max-width: 999px) {
    .p7 {
        padding-top: 20px;
        padding-left: 0px;
        padding-right: 0px;
        padding-bottom: 10px;
    }
}


#footer {
    background-color: #fff8ef;
}

#p9 {
    background-color: #fff8ef;
    text-align: center;
    padding-top: 8%;
    padding-bottom: 2%;
    font-size: 0.8em;
}



/*Information終了*/








/*コンセプトのウサギが弾む箇所*/
@keyframes photo1 {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-10px);
    }
}

/*Topへ戻るボタン(横に動く)*/
@keyframes to_top {
    0% {
        transform: translate(2px, 0px);
    }

    5% {
        transform: translate(-2px, 0px);
    }

    10% {
        transform: translate(2px, 0px);
    }

    15% {
        transform: translate(-2px, 0px);
    }

    20% {
        transform: translate(2px, 0px);
    }

    25% {
        transform: translate(-2px, 0px);
    }

    30% {
        transform: translate(0px, 0px);
    }
}


/*Breakへようこそ！*/
.Breakyoukoso {
    opacity: 0;
    animation: 2.0s linear forwards fadeanime1;
    animation-name: fadeanime1;
}

.A {
    animation-delay: 0.0s;
}

.B {
    animation-delay: 0.1s;
}

.C {
    animation-delay: 0.2s;
}

.D {
    animation-delay: 0.3s;
}

.E {
    animation-delay: 0.4s;
}

.F {
    animation-delay: 0.5s;
}

.G {
    animation-delay: 0.6s;
}

.H {
    animation-delay: 0.7s;
}

.I {
    animation-delay: 0.8s;
}

.J {
    animation-delay: 0.9s;
}

.K {
    animation-delay: 1.0s;
}

.L {
    animation-delay: 1.1s;
}

@keyframes fadeanime1 {
    to {
        opacity: 1;
    }
}