* {
    padding: 0;
    margin: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

body {
    font-family: 'Kiwi Maru', serif;
}

img {
    vertical-align: top;
}


@keyframes fuwafuwa {

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

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

.pyon {
    animation: pyon01 2s ease-in-out infinite;
}

@keyframes pyon01 {

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

    50% {
        transform: translate(0, -15px);
    }
}

.pyon2 {
    animation: pyon02 3s ease-in-out infinite;
}

@keyframes pyon02 {

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

    50% {
        transform: translate(0, -20px);
    }
}

.pyon3 {
    animation: pyon03 1.9s ease-in-out infinite;
}

@keyframes pyon03 {

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

    50% {
        transform: translate(0, -25px);
    }
}

.step {
    animation: step04 5s ease-in-out infinite;
}

@keyframes step04 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-6px, -12px) rotate(-2deg);
    }

    50% {
        transform: translate(0, 0);
    }

    75% {
        transform: translate(6px, -12px) rotate(2deg);
    }

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

.step2 {
    animation: step02 6s ease-in-out infinite;
}

@keyframes step02 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-5px, -11px) rotate(-2deg);
    }

    50% {
        transform: translate(0, 0);
    }

    75% {
        transform: translate(5px, -11px) rotate(2deg);
    }

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

.step3 {
    animation: step03 4s ease-in-out infinite;
}

@keyframes step03 {
    0% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-4px, -10px) rotate(-2deg);
    }

    50% {
        transform: translate(0, 0);
    }

    75% {
        transform: translate(4px, -10px) rotate(2deg);
    }

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

/* アニメーションスタートの遅延時間を決めるCSS*/

.delay-time02 {
    animation-delay: 0.5s;
}

.delay-time04 {
    animation-delay: 0.8s;
}

.box {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.4s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.index-wrap {
    background: #ce3333;
}

.is-animation {
    height: 30px;
    transition: .3s;
}

.is-animation .head-wrap {
    transition: .3s;
}

.is-animation .logo img {
    width: 80px;
}

.is-animation .menu {
    padding: 10px 0 10px 25px;
}

.is-animation .Toggle {
    position: absolute;
    right: 19px;
    top: -1px;
    width: 46px;
    height: 43px;
    cursor: pointer;
    z-index: 13;
}

.is-animation .head-wrap:after {
    transition: .3s;
}

.is-animation .toggle-span {
    width: 23px;
}

.is-animation span.menu-text {
    bottom: -3px;
    right: 12px;
}

.is-animation header {
    transition: .3s;
}

/*アニメーション要素のスタイル*/
.animation {
    opacity: 0;
    visibility: hidden;
    transition: 2s;
    transform: translateY(30px);
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.start {
    background: #ce3333;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9000;
}

.start p {
    position: fixed;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
    display: none;
    z-index: 9999;
    text-align: center;
}

.start p img {
    width: 300px;
}


.main-v-wrap {
    background-image: url(../img/main-background.jpg);
    background-size: contain;

    background-position: bottom;
    background-repeat: repeat-x;
    background-color: #fffdec;
}

.lion img {
    width: 110px;
}

.panda img {
    width: 180px;
}

.tiwawa img {
    width: 90px;
}

.suzu-e img {
    width: 120px;
}

.nekonezumi img {
    width: 185px;
}

.nezumi img {
    width: 135px;
}

.usagi img {
    width: 245px;
}

.toraneko img {
    width: 80px;
}

.pengin img {
    width: 177px;
}

.girl img {
    width: 125px;
}

.pengin-wrap {
    display: flex;
}

.toraneko {
    padding: 122px 0 0;
}

.girl {
    padding: 58px 0 0;
}

.main-v {
    max-width: 850px;
    margin: 0 auto;
    padding: 13% 0 0;
    position: relative;
}

.zou {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.zou-wrap {
    display: flex;
}

.usagi {
    padding: 36px 0 0;
}

.nezumi {
    padding: 130px 0 0;
}

.kaiga {
    display: flex;
    justify-content: space-between;
    padding: 0 30px 0;
    position: relative;
}

.kaiga:before {
    content: '';
    width: 160px;
    height: 115px;
    background-image: url(../img/tyou.gif);
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: -6px;
    left: 0px;
    z-index: 5;
}

.lion {
    padding: 105px 0 0;
}

.tiwawa {
    padding: 125px 0 0;
}

.suzu-e {
    padding: 45px 0 0;
}

.nekonezumi {
    padding: 13px 0 0;
}

header {
    background: #ce3333;
    position: fixed;
    width: 100%;
    /* position: relative; */
    z-index: 8;
}

.menu {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: relative;
}

.logo img {
    width: 140px;
}

.head-menu a {
    color: #fff;
}

.head-menu ul {
    display: flex;
    font-size: 16px;
    font-weight: bold;
}

.head-menu ul li {
    padding: 0 0 0 50px;
}

footer {
    background: #ce3333;
}

.foot-wrap {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

p.copy {
    font-size: 12px;
    color: #fff;
    padding: 38px 0 22px;
}

.foot-logo img {
    width: 155px;
}

.foot-logo {
    padding: 0 0 38px;
    position: relative;
}

.foot-menu a {
    color: #fff;
}


.foot-menu ul {
    font-size: 11px;
    display: flex;
    justify-content: center;
    padding: 0 0 35px;
}

.foot-menu ul li+li:before {
    content: '／';
    color: #fff;
    padding: 0 10px;
}

.sns ul li a img {
    width: 35px;
}

.sns ul {
    display: flex;
    justify-content: center;
}

.sns ul li {
    padding: 0 25px 0;
}

.sns {
    padding: 0 0 35px;
}

.buruburu:hover {
    display: inline-block;
    animation: hurueru .6s infinite;
}

@keyframes hurueru {
    0% {
        transform: translate(0px, 0px) rotateZ(0deg)
    }

    25% {
        transform: translate(2px, 2px) rotateZ(1deg)
    }

    50% {
        transform: translate(0px, 2px) rotateZ(0deg)
    }

    75% {
        transform: translate(2px, 0px) rotateZ(-1deg)
    }

    100% {
        transform: translate(0px, 0px) rotateZ(0deg)
    }
}

.panda,
.nekonezumi,
.usagi,
.pengin {
    position: relative;
}

/* ボタンのスタイル */
#page-top {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 100;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #ce3333;
}

/* 矢印のスタイル */
#page-top::before {
    content: "";
    width: 11px;
    height: 11px;
    margin-bottom: -4px;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: rotate(-45deg);
}

/* ホバー時のスタイル */
#page-top:hover {
    transform: scale(1.1);
}

nav.NavMenu {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background: #ce3333;
    color: #fff;
    text-align: center;
    width: 100%;
    transform: translateY(-130%);
    transition: all 0.6s;
    height: 100%;
}

nav.NavMenu ul li {
    list-style-type: none;
}

nav.NavMenu.active {
    transform: translateY(0%);
}

.Toggle {
    position: absolute;
    right: 19px;
    top: 8px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 13;
}

span.menu-text {
    color: #fff;
    font-size: 10px;
    position: absolute;
    bottom: -5px;
    right: 10px;
    font-weight: bold;
}


.toggle-span {
    display: block;
    position: absolute;
    width: 28px;
    border-bottom: solid 2px #fff;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 7px;
}

.toggle-span:nth-child(1) {
    top: 10px;
}

.toggle-span:nth-child(2) {
    top: 18px;
}

.toggle-span:nth-child(3) {
    top: 26px;
}

.Toggle.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: solid 2px #fff;
}

/* 2番目と3番目のspanを45度に */
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: solid 2px #fff;
}

.menu-logo-sp {
    z-index: 200;
}

.head-wrap:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 29px;
    bottom: -21px;
    background: url(../img/menu.gif) center center;
    background-size: 20%;
    background-repeat: repeat-x;
    background-position: center;
}

.logo img {
    width: 100px;
}

.menu {
    padding: 20px 0 20px 20px;
    transition: .3s;
}

.head-menu-wrap {
    position: relative;
}

nav.NavMenu:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 26px;
    bottom: -26px;
    background: url(../img/menu.gif) center center;
    background-size: contain;
    background-repeat: repeat-x;
    background-position: center;
    left: 0;
}

.logo {
    z-index: 1;
}

.head-m {
    max-width: 850px;
    margin: 0 auto;
}

.foot-logo:after {
    content: '';
    background-image: url(../img/tyou-2.png);
    background-size: contain;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: -26px;
}

.hum-menu a {
    color: #fff;
}

.hum-menu {
    max-width: 800px;
}

nav.NavMenu ul {
    width: 100%;
    max-width: 350px;
    font-size: 27px;
    font-weight: bold;
}

.hum-menu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.hum-menu li span {
    font-size: 14px;
    font-weight: normal;
}

.hum-menu li {
    margin: 0 20px 50px;
    text-align: center;
    line-height: 1.2;
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    max-width: 800px;
    margin: 12% auto 0;
    position: relative;
}

p.hum-logo img {
    width: 120px;
}

p.address {
    text-align: left;
    font-size: 11px;
    padding: 30px 0 35px;
    line-height: 2;
}

p.policy a {
    color: #fff;
}

p.policy {
    font-size: 10px;
}

.nav-flex:after {
    content: '';
    background-image: url(../img/girl-2.gif);
    display: inline-block;
    background-size: contain;
    width: 161px;
    height: 200px;
    position: absolute;
    bottom: -233px;
    left: 2px;
    background-repeat: no-repeat;
}

/*下*/

.about-pleasant-wrap,
.news-wrap {
    background: #ffd2b5;
}

.about-pleasant h2 img {
    width: 385px;
}

.about-pleasant {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 0 95px;
}

.about-neko-1,
.about-neko-2,
.about-neko-3,
.about-neko-4,
.about-neko-5,
.about-neko-6 {
    position: absolute;
    text-align: center;
}

.about-neko-1 {
    top: 0;
    left: 0;
    right: 72%;
}

.about-neko-2 {
    left: 0;
    right: 62%;
    top: 106px;
}

.about-neko-3 {
    bottom: 18px;
    left: 35px;
}

.about-neko-4 {
    top: 39px;
    left: 57%;
    right: 0;
}

.about-neko-5 {
    left: 68%;
    right: 0;
    bottom: 73px;
}

.about-neko-6 {
    right: 22px;
    bottom: 18px;
}

span.wow img {
    width: 65px;
}

p.about-pleasant-txt {
    color: #704444;
    line-height: 3;
    text-align: center;
    font-size: 16px;
    position: relative;
}

.about-pleasant h2 {
    text-align: center;
    padding: 80px 0 20px;
}

a .about-pleasant-more {
    width: 160px;
    color: #fff;
    text-align: center;
    display: table;
    margin: 45px auto 0;
    border: 2px solid;
    border-radius: 30px;
    padding: 12px 0;
    transition: 0.5s;
    font-size: 14px;
    font-weight: bold;
}

a .about-pleasant-more:hover {
    background-color: #fff;
    color: #ffd2b5;
    border: 2px solid #ffd2b5;
}

.about-pleasant-kira2 img {
    width: 38px;
}

p.about-pleasant-txt:before {
    content: '';
    background-image: url(../img/about-pleasant-kira3.png);
    background-size: contain;
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    right: 331px;
    margin: 0 auto;
}

p.about-pleasant-txt:after {
    content: '';
    background-image: url(../img/about-pleasant-kira1.png);
    background-size: contain;
    display: inline-block;
    width: 136px;
    height: 73px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -20px;
    left: 245px;
    right: 0;
    margin: 0 auto;
    z-index: -1;
}

.about-pleasant-txt-wrap {
    position: relative;
}

.about-pleasant-kira2 {
    position: absolute;
    top: 59px;
    left: 0;
    right: 342px;
    text-align: center;
}

.index-service-wrap {
    padding: 0 0 95px;
}

.index-service h2 img {
    width: 400px;
}

.index-service h2 {
    padding: 85px 0 120px;
    text-align: center;
}

/*スライドショー*/

.index-slideshow-wrap {
    display: flex;
    align-items: center;
    /* height: 80px; */
    overflow: hidden;
}

.index-slideshow {
    display: flex;
}

.index-content {
    width: 195px;
    height: 280px;
    margin: 0 0 0 18px;
    overflow: hidden;
    position: relative;
}

.index-content img {
    width: 195px;
    height: 280px;
}

.index-slideshow {
    display: flex;
    animation: loop-slide 15s infinite linear 0.5s both;
}

@keyframes loop-slide {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.anime-fuwafuwa {
    animation: 3s fuwafuwa infinite;
}

.index-slideshow2-wrap {
    position: relative;
}

.index-service-suzu img {
    width: 150px;
}

.index-service-neko img {
    width: 155px;
}

.index-service-neko2 img {
    width: 45px;
}

.index-service-suzu {
    position: absolute;
    top: -64px;
    left: 50%;
    right: 0;
    text-align: center;
}

.index-service-neko {
    position: absolute;
    bottom: -26px;
    left: 0;
    right: 50%;
    text-align: center;
}

.index-service-neko2 {
    position: absolute;
    bottom: -27px;
    left: 7%;
    right: 0;
    text-align: center;
}

a .service-pleasant-more {
    width: 160px;
    color: #ffd2b5;
    text-align: center;
    display: table;
    margin: 78px auto 0;
    border: 2px solid #ffd2b5;
    border-radius: 30px;
    padding: 12px 0;
    transition: 0.5s;
    font-size: 14px;
    background-color: #fffdec;
    font-weight: bold;
}

a .service-pleasant-more:hover {
    background-color: #ffd2b5;
    color: #fffdec;
    border: 2px solid #ffd2b5;
}



.index-slideshow2-wrap:before {
    content: '';
    background-image: url(../img/index-service-2.png);
    background-size: contain;
    display: inline-block;
    width: 35px;
    height: 34px;
    background-repeat: no-repeat;
    position: absolute;
    top: -35px;
    left: 0;
    right: 50%;
    margin: 0 auto;
    z-index: 10;
}

.index-slideshow2-wrap:after {
    content: '';
    background-image: url(../img/index-service-hukidashi.png);
    background-size: contain;
    display: inline-block;
    width: 120px;
    height: 55px;
    background-repeat: no-repeat;
    position: absolute;
    top: -106px;
    left: 0;
    right: 43%;
    margin: 0 auto;
    z-index: 10;
}

.index-service-3 {
    position: absolute;
    bottom: -11px;
    left: 52%;
    right: 0;
    text-align: center;
}

.index-service-3 img {
    width: 29px;
}

.contact {
    max-width: 800px;
    margin: 0 auto;
    padding: 65px 0 70px;
    position: relative;
}

.contact-wrap {
    background-color: #fff;
    background-image: url(../img/contact-border.jpg), url(../img/contact-border.jpg), url(../img/contact-bk.jpg);
    background-position: top, bottom, center;
    background-size: 50%, 50%, auto;
    background-repeat: repeat-x, repeat-x, no-repeat;
}

a .contact-btn {
    color: #fff;
    width: 240px;
    background: #503939;
    border-radius: 30px;
    margin: 0 auto 30px;
    padding: 19px 30px;
    box-sizing: border-box;
    position: relative;
    transition: 0.5s;
}

a .contact-btn:after {
    content: '→';
    border-radius: 50%;
    background: #fff;
    color: #503939;
    width: 27px;
    height: 27px;
    display: inline-block;
    line-height: 1.7;
    font-size: 15px;
    position: absolute;
    top: 17px;
    right: 25px;
    text-align: center;
    box-sizing: border-box;
    transition: 0.5s;
}

a .contact-btn:hover {
    color: #503939;
    border: 2px solid #503939;
    background: #ffd43b;
}

a .contact-btn:hover:after {
    content: '→';
    border-radius: 50%;
    background: #503939;
    color: #fff;
}

.contact p {
    font-size: 15px;
    line-height: 2;
    text-align: center;
    color: #704444;
}

.contact:before {
    content: '';
    background-image: url(../img/contact-icon.png);
    display: inline-block;
    background-size: contain;
    width: 110px;
    height: 87px;
    background-repeat: no-repeat;
    position: absolute;
    top: -26px;
    right: 16px;
}

.contact:after {
    content: '';
    background-image: url(../img/usagi.gif);
    display: inline-block;
    background-size: contain;
    width: 195px;
    height: 148px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -34px;
    left: 0;
}

.news h2 img {
    width: 183px;
}

.news-suzu {
    position: relative;
}

.news-suzu img {
    width: 130px;
}

.news-suzu:after {
    content: '';
    background-image: url(../img/news-suzu.png);
    background-size: contain;
    display: inline-block;
    width: 213px;
    height: 206px;
    position: absolute;
    top: -35px;
    left: -9px;
    background-repeat: no-repeat;
}

.news h2 {
    position: absolute;
    top: -33px;
}

.news {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

ul.news-list {
    color: #fff;
    line-height: 2;
}

.news-list-wrap {
    display: flex;
    justify-content: space-between;
    margin: 0 89px 0 40px;
    padding: 103px 0 61px;
}

.day {
    display: flex;
}

time {
    font-size: 11px;
}

.label {
    font-size: 10px;
}

.news-text {
    font-size: 12px;
}

ul.news-list {
    color: #fff;
    line-height: 2;
    margin: 7px 0 16px;
    position: relative;
}

ul.news-list li {
    padding: 11px 0;
}

.day {
    display: flex;
    padding: 0 0 10px;
}

.label {
    background-image: url(../img/news-osirase.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    padding: 0 15px;
    margin: 0 0 0 15px;
}

ul.news-list li {
    padding: 17px 0 15px 85px;
    position: relative;
}

ul.news-list li:after {
    content: '';
    background-image: url(../img/news-icon.png);
    background-size: contain;
    display: inline-block;
    width: 21px;
    height: 28px;
    position: absolute;
    left: 30px;
    top: 23px;
}

ul.news-list li:before {
    content: '';
    background-image: url(../img/news-line.png);
    display: inline-block;
    background-size: contain;
    width: 485px;
    height: 9px;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -6px;
    left: 0;
}

ul.news-list:before {
    content: '';
    background-image: url(../img/news-line.png);
    display: inline-block;
    background-size: contain;
    width: 485px;
    height: 9px;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: -3px;
}

.news:before {
    content: '';
    background-image: url(../img/news-star.png);
    background-size: contain;
    display: inline-block;
    position: absolute;
    top: -21px;
    width: 162px;
    height: 72px;
    right: 0;
    background-repeat: no-repeat;
}

.news:after {
    content: '';
    background-image: url(../img/news-heart.png);
    background-size: contain;
    display: inline-block;
    position: absolute;
    bottom: -29px;
    width: 162px;
    height: 72px;
    left: 0;
    background-repeat: no-repeat;
}

.news-wrap {
    margin: 0 0 130px;
}

.index-contents-wrap {
    background: #fffdec;
    padding: 0 0 130px;
    position: relative;
}

.about-neko-1 img,
.about-neko-2 img,
.about-neko-3 img,
.about-neko-4 img,
.about-neko-5 img,
.about-neko-6 img {
    width: 36px;
}

/*スマホ*/

@media screen and (max-width: 810px) {

    .sp {
        display: block;
    }

    .pc,
    .head-menu,
    .pc-2,
    #page-top {
        display: none;
    }

    .line-sp.sp {
        background: #ffd2b5;
        height: 20px;
        width: 100%;
        position: absolute;
        top: -8px;
    }

    nav.NavMenu:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 28px;
        bottom: -21px;
        background: url(../img/menu.gif) center center;
        background-size: 20%;
        background-repeat: repeat-x;
        background-position: center;
        left: 0;
    }

    .mainv-sp.sp img {
        width: 100%;
    }

    .mainv-sp.sp {
        padding: 61px 0 0;
        background-color: #ffd2b5;
    }

    .foot-logo img {
        width: 100px;
    }

    p.copy {
        font-size: 10px;
        padding: 25px 0 15px;
    }

    .foot-menu ul {
        font-size: 9px;
    }

    .sns ul li a img {
        width: 20px;
    }

    .sns ul li {
        padding: 0 15px 0;
    }

    .sns {
        padding: 0 0 25px;
    }

    .start p img {
        width: 190px;
    }

    .nav-flex {
        display: block;
        margin: 130px auto 0;
    }

    nav.NavMenu ul {
        font-size: 19px;
        margin: 0 auto;
    }

    .hum-menu li span {
        font-size: 12px;
    }

    p.address {
        font-size: 10px;
        padding: 25px 0 30px;
        max-width: 170px;
        margin: 0 auto;
    }

    nav.NavMenu .sns {
        padding: 0;
    }

    p.policy {
        font-size: 9px;
        padding: 25px 0 0;
    }

    nav.NavMenu .sns ul li a img {
        width: 35px;
    }

    .nav-flex:after {
        width: 90px;
        height: 138px;
        bottom: -103px;
        left: 27px;
    }

    .about-pleasant h2 {
        padding: 43px 0 18px;
    }

    .about-pleasant h2 img {
        width: 205px;
    }

    span.wow img {
        width: 45px;
    }

    p.about-pleasant-txt {
        font-size: 12px;
    }

    .about-neko-1 img,
    .about-neko-2 img,
    .about-neko-3 img,
    .about-neko-4 img,
    .about-neko-5 img,
    .about-neko-6 img {
        width: 21px;
    }

    p.about-pleasant-txt:before {
        width: 11px;
        height: 13px;
        right: 59%;
    }

    p.about-pleasant-txt:after {
        width: 82px;
        height: 46px;
        bottom: -16px;
        left: 52%;
    }

    .about-neko-1 {
        top: 0;
        left: 0;
        right: 85%;
    }

    .about-neko-2 {
        left: 0;
        right: 72%;
        top: 63px;
    }

    .about-neko-3 {
        bottom: 50px;
        left: 20px;
    }

    .about-pleasant-kira2 img {
        width: 21px;
    }

    .about-pleasant-kira2 {
        top: 40px;
        left: 0;
        right: 56%;
    }

    a .about-pleasant-more,
    a .service-pleasant-more {
        width: 135px;
        margin: 30px auto 0;
        padding: 10px 0;
        font-size: 11px;
        border: 1px solid;
    }

    a .about-pleasant-more:hover {
        border: 1px solid #ffd2b5;
    }

    a .about-pleasant-more {
        margin: 30px auto 0;
    }

    a .service-pleasant-more {
        margin: 55px auto 0;
    }


    .about-pleasant {
        padding: 0 0 55px;
    }

    .index-service h2 img {
        width: 250px;
    }

    .index-service h2 {
        padding: 49px 0 75px;

    }

    .index-content img {
        width: 116px;
        height: 164px;
    }

    .index-content {
        width: 116px;
        height: 164px;
        margin: 0 0 0 18px;
    }

    .index-service-suzu img {
        width: 86px;
    }

    .index-slideshow2-wrap:before {
        width: 23px;
        height: 22px;
        top: -25px;
        left: 0;
        right: 87%;
    }

    .index-service-neko img {
        width: 88px;
    }

    .index-service-neko2 img {
        width: 24px;
    }

    .index-slideshow2-wrap:after {
        width: 80px;
        height: 40px;
        bottom: auto;
        left: 0;
        right: 54%;
        text-align: center;
        top: -48px;
    }

    .index-service-3 {
        bottom: -19px;
        left: 86%;
        right: 0;
        text-align: center;
    }

    .index-service-3 img {
        width: 21px;
    }

    .index-service-neko {
        bottom: -20px;
        left: 0;
        right: 60%;
    }

    .index-service-suzu {
        top: -37px;
        left: 65%;
        right: 0;
    }

    .index-service-wrap {
        padding: 0 0 60px;
    }

    .news h2 img {
        width: 105px;
    }

    .news-suzu img {
        width: 70px;
    }

    .news:before {
        top: -18px;
        width: 110px;
        height: 49px;
        right: 15px;
    }

    .news:after {
        bottom: -19px;
        width: 78px;
        height: 49px;
        left: 15px;
    }

    .index-service-neko2 {
        bottom: -19px;
    }

    .news-list-wrap {
        display: block;
        justify-content: space-between;
        margin: 0 auto;
        padding: 55px 0 60px;
        position: relative;
    }

    ul.news-list {
        position: relative;
        max-width: 315px;
        margin: 0 auto;
    }

    ul.news-list:before,
    ul.news-list li:before {
        width: 315px;
        height: 6px;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center;
    }

    .news-text {
        font-size: 12px;
    }

    time {
        font-size: 11px;
    }

    .label {
        font-size: 10px;
    }

    .label {
        padding: 0 12px;
    }

    .day {
        padding: 0 0 6px;
    }

    ul.news-list li {
        padding: 10px 0 10px 40px;
        position: relative;
    }

    ul.news-list li:after {
        width: 18px;
        height: 24px;
        left: 7px;
        top: 21px;
    }

    .news-suzu {
        position: absolute;
        bottom: -80px;
        right: 62px;
    }

    .news-suzu:after {
        width: 127px;
        height: 130px;
        top: -30px;
        left: -17px;
    }

    .contact:before {
        width: 80px;
        height: 64px;
        top: -21px;
        right: 25px;
    }

    .contact:after {
        width: 125px;
        height: 95px;
        bottom: -31px;
        left: 0;
    }

    a .contact-btn {
        width: 195px;
        margin: 0 auto 22px;
        padding: 13px 30px;
        font-size: 12px;
        margin: 0 auto 22px;
    }

    a .contact-btn:after {
        width: 22px;
        height: 22px;
        font-size: 12px;
        top: 11px;
        right: 19px;
    }

    .contact p {
        font-size: 12px;
    }

    .contact {
        padding: 50px 0 65px;
    }

    .is-animation {
        height: 40px;
    }

    .is-animation .menu {
        padding: 14px 0 10px 15px;
        top: -1px;
    }

    .is-animation .Toggle {
        right: 10px;
        top: -1px;
        width: 46px;
        height: 43px;
    }

    .index-contents-wrap {
        padding: 0 0 80px;
    }

    .news h2 {
        top: -18px;
        left: 0;
        right: 60%;
        text-align: center;
    }
}


/*PC*/

@media only screen and (min-width:810px) {

    .sp {
        display: none;
    }

    .pc {
        display: block;
    }

    #cursor {
        /*transform: translate(0.5, 0.9);*/
        pointer-events: none;
        position: fixed;
        top: -7px;
        left: -4px;
        width: 15px;
        height: 15px;
        background: rgba(76, 40, 22, 0.5);
        border-radius: 50%;
        z-index: 999;
        transition: width 0.3s, height 0.3s, top 0.3s, left 0.3s;
    }

    #cursor.hover {
        top: -18px;
        left: -18px;
        width: 45px;
        height: 45px;
        background: rgba(255, 161, 162, 0.5);
    }

    .try {
        position: absolute;
        top: 25%;
        left: 86%;
        right: 0;
        text-align: center;
    }

    .try img {
        width: 104px;
    }

    .panda a:after {
        content: "";
        position: absolute;
        top: -12px;
        right: -83px;
        display: inline-block;
        pointer-events: none;
        width: 147px;
        height: 73px;
    }

    .panda a:hover:after {
        background: url(../img/about-hukidashi.png);
        /* 表示する画像 */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .nekonezumi a:after {
        content: "";
        position: absolute;
        top: -20px;
        left: -74px;
        display: inline-block;
        pointer-events: none;
        width: 147px;
        height: 73px;
    }

    .nekonezumi a:hover:after {
        background: url(../img/service-hukidashi.png);
        /* 表示する画像 */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .usagi a:after {
        content: "";
        position: absolute;
        top: 26px;
        left: -46px;
        display: inline-block;
        pointer-events: none;
        width: 147px;
        height: 73px;
    }

    .usagi a:hover:after {
        background: url(../img/contact-hukidashi.png);
        /* 表示する画像 */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .pengin a:after {
        content: "";
        position: absolute;
        top: -2px;
        right: -110px;
        display: inline-block;
        pointer-events: none;
        width: 147px;
        height: 73px;
    }

    .pengin a:hover:after {
        background: url(../img/recruit-hukidashi.png);
        /* 表示する画像 */
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center top;
    }

    .head-wrap:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 26px;
        bottom: -26px;
        background: url(../img/menu.gif) center center;
        background-size: contain;
        background-repeat: repeat-x;
        background-position: center;
    }

    .index-content .caption {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        -webkit-transition: all 0.6s ease;
        transition: all 0.6s ease;
        font-size: 16px;
        text-align: center;
        color: #fff;
        text-shadow: 0px 1px 3px black;
        font-weight: bold;
        /* z-index: 26; */
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .index-content:hover .caption {
        opacity: 1;
        padding-top: 90px;
    }

    .index-content .caption span {
        font-size: 10px;
    }

    .index-content .mask {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        background-color: #fff;
        -webkit-transition: all 0.6s ease;
        transition: all 0.6s ease;
    }

    .index-content:hover .mask {
        opacity: 0.5;
        padding-top: 80px;
    }

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

        100% {
            opacity: 1;
        }
    }

    .blinking {
        animation: blink 1s ease-in-out infinite alternate;
    }
}

@media screen and (min-width:810px) and (max-width:1250px) {
    .try {
        top: 19%;
    }
}


@media screen and (min-width:610px) and (max-width:810px) {

    .head-wrap:after {
        height: 29px;
        bottom: -26.5px;
    }

}