@charset "UTF-8";

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.afadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

.ifadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#splash {
    /*fixedで全面に固定*/
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 999;
    background: #f3f3f1;
    text-align: center;
    color: #fff;
}

#splash_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
    width: 15vw;
}

/* fadeUpをするアイコンの動き */
.fadeUp1 {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeDownAnime {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ufadeLeft {
    animation-name: fadeLeftAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeLeftAnime {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.efadeRight {
    animation-name: fadeRightAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeRightAnime {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 共通部分 */
body {
    background: #f3f3f1;
}

.logo img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.head {
    padding: 20px 30px 30px 30px;
    display: flex;
}

.nav {
    display: flex;
}

#nav {
    margin-left: auto;
    margin-top: 12px;
}

.menu-item {
    list-style: none;
    display: flex;
    margin-top: 15px;
    gap: 40px;
}

.menu-item a {
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.7;
    font-size: 16px;
    color: #33715f;
}

.menu-item a:hover {
    color: #9cd2b8;
}

.menu-button img {
    object-fit: cover;
    width: 65px;
    height: 60px;
    text-align: left;
    margin-left: 40px;
}

/* TOP */

.top-content {
    position: relative;
}

/*.top-img {
    text-align: center;
}

.top-img img {
    object-fit: cover;
    width: 80%;
}*/

#slider {
    width: 80%;
    height: 90vh;
    margin: 0px auto;
    border-radius: 50px;
    position: relative;
    z-index: 0;
}

.paws-green-white {
    position: absolute;
    left: 81%;
    z-index: 10;
}

.paws-green-white img {
    object-fit: cover;
    width: 150px;
    height: 100px;
}

.top-title {
    position: absolute;
    text-align: center;
    z-index: 997;
}

.top-title img{
    width: 5vw;
    margin-left: 47vw;
    margin-top: 32vh;
}

.paws-green {
    position: absolute;
    left: 4%;
    bottom: 10px;
}

.paws-green img {
    object-fit: cover;
    width: 150px;
    height: 110px;
}

.news {
    margin-left: 55%;
    bottom: -35px;
    position: absolute;
}

.top-news-p {
    background: #ffffff;
    width: 125%;
    height: 5vw;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-news-title {
    background: #ffffff;
    font-family: 'Sawarabi Gothic', serif;
    color: #33715f;
    font-size: 1.1vw;
    font-size: clamp(10px, 1.1vw, 20px);
}

.news-arrow {
    margin-left: 10px;
    margin-top: 7px;
}

.news-arrow img {
    width: 1.5vw;
    height: 1.5vh;
}


/* about */
.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin: 200px 100px 0px 100px;
}

.about-p h1 {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    font-size: 2.5vw;
    margin-bottom: 1.5rem;
    color: #33715f;
}

.about-p p {
    font-family: 'Sawarabi Gothic', serif;
    line-height: 2.5;
    font-size: 1vw;
    color: #000;
}

.about-p p span {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 1.5vw;
    color: #33715f;
}

button {
    color: #ffffff;
}

.about-button {
    background-color: #33715f;
    border: #699680;
    color: white;
    padding: 1vh 4vh;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 1.5rem 2px 0px 2px;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.7;
    font-size: 16px;
}

.about-img img {
    width: 30vw;
}

.about-button:hover {
    background-color: #73a08a;
}

.about-content_1 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    margin: 0px 100px;
}

.about-p_1 h1 {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    font-size: 2.5vw;
    margin-bottom: 1.5rem;
    color: #33715f;
}

.about-p_1 p {
    font-family: 'Sawarabi Gothic', serif;
    line-height: 2.5;
    font-size: 1vw;
    color: #000;
}

.about-p_1 p span {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 1.5vw;
    color: #33715f;
}

.about-img_1 img {
    width: 26vw;
}

.tire {
    text-align: left;
}

.tire img {
    width: 18vw;
}

/* NEWS */
#NEWS {
    margin-top: 50px;
}

.news-back {
    border-radius: 50px;
    width: 80%;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0px auto 100px auto;
}

.news-title {
    text-align: center;
    margin-top: 10px;
    padding-top: 50px;
    color: #33715f;
}

.news-title h2 {
    font-family: 'Black Han Sans';
    font-size: 4vw;
    font-weight: 500;
    line-height: 0.8;
    letter-spacing: 2.5px;
}

.news-title p {
    font-size: 1.5vw;
    font-weight: bolder;
    color: #000;
}

.news-article {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
    margin-bottom: 80px;
}

.news-line {
    text-align: center;
    margin: 0px auto 20px auto;
}

.news-text {
    gap: 40px;
}

.news-img {
    overflow: hidden;
    border-radius: 10px;
}

.news-img img {
    width: 20vw;
    height: 30vh;
    object-fit: cover;
    border-radius: 10px;
    transition: 1s all;
}

.news-img img:hover {
    transform: scale(1.2, 1.2);
    transition: 1s all;
}

.news-p {
    width: 250px;
}

.news-button {
    background-color: #6F47C3;
    width: 100px;
    height: 50px;
    margin: 30px 0px 50px 0px;
    border-radius: 10px;
}

.news-button a {
    color: #fff;
}

.news-button:hover {
    background-color: #8e63ea;
}

.button-news {
    display: flex;
    justify-content: center;
}


/* event */

.event_back {
    position: relative;
}

.event_back_img img {
    width: 100%;
    height: 100%;
}

.event-title {
    text-align: center;
}

.event-title h2 {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 2.5vw;
    color: #fff;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.event-title p {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 1.5vw;
    color: #fff;
}

.event_contents {
    position: absolute;
    right: 0;
    left: 0;
    margin: 350px auto;
}

.event_content {
    display: flex;
    margin-top: 100px;
    gap: 5vw;
    justify-content: center;
    align-items: center;
}

.event_con1 img {
    width: 30vw;
}

.event_con2 img {
    width: 30vw;
}

.event-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.event-button button {
    background-color: #33715f;
    border: #699680;
    color: white;
    padding: 1vh 4vh;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4rem auto;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.7;
    font-size: 16px;
}

.event-button button:hover {
    background-color: #73a08a;
}

.event-p {
    position: absolute;
    margin-top: 80%;
    margin-left: 30px;
}

.event-p h1 {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    font-size: 2vw;
    margin-bottom: 1.5rem;
    color: #33715f;
}

.event-p p {
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.5;
    font-size: 1vw;
    color: #000;
}

.event-p p span {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 1.5vw;
    color: #33715f;
}

.event-content-button {
    background-color: #33715f;
    border: #699680;
    color: white;
    padding: 1vh 4vh;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 1.5rem auto;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.7;
    font-size: 12px;
}

.event-content-button:hover {
    background-color: #73a08a;
}

/* dogrun */
.dogrun_back {
    position: relative;
}

.dogrun_back_img {
    text-align: left;
}

.dogrun_back_img img {
    width: 80%;
    height: 100%;
}

.dogrun-title {
    position: absolute;
    right: 0;
    left: 0;
    display: flex;
    margin-top: 13%;
    margin-left: 35px;
}

.dogrun-title-p p {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.5vw;
    margin-left: 10px;
    color: #33715f;
}

.dogrun-title-p p span {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    margin-right: 20px;
    font-size: 2cap;
    color: #33715f;
}

.dogrun-link {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1vw;
    margin-left: 37vw;
    margin-top: 15px;
}

.dogrun-link a {
    text-decoration: none;
    color: #33715f;
}

.dogrun-content {
    display: flex;
    gap: 3vw;
    position: absolute;
    justify-content: flex-start;
    margin-top: 17vw;
    margin-left: 35px;
    right: 0;
    left: 0;
}

.himawari img {
    object-fit: cover;
    width: 22vw;
}

.himawari p {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.2vw;
    color: #828282;
}

.himawari p span {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.3vw;
    color: #000;
}

.yukawa img {
    object-fit: cover;
    width: 22vw;
}

.yukawa p {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.2vw;
    color: #828282;
}

.yukawa p span {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.3vw;
    color: #000;
}

#DOGRUN {
    z-index: 0;
}

/* paws */
.paws-dogrun-clinic {
    position: absolute;
    z-index: 10;
}

.paws-dogrun-clinic img {
    width: 15vw;
    margin-left: 74.5vw;
    margin-top: 520px;
}

/* clinic */
#CLINIC {
    z-index: 0;
}

.clinic_back {
    position: relative;
    margin-top: 80px;
}

.clinic_back_img {
    text-align: right;
}

.clinic_back_img img {
    width: 80%;
    height: 100%;
}

.clinic-title-p p {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.5vw;
    margin-left: 10px;
    color: #33715f;
}

.clinic-title-p p span {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    margin-right: 20px;
    font-size: 2cap;
    color: #33715f;
}

.clinic-link {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1vw;
    margin-left: 40vw;
    margin-top: 15px;
}

.clinic-link a {
    text-decoration: none;
    color: #33715f;
}

.clinic-title {
    position: absolute;
    justify-content: flex-end;
    right: 0;
    left: 0;
    display: flex;
    margin-top: 3%;
    margin-right: 35px;
}

.clinic-content {
    display: flex;
    gap: 3vw;
    position: absolute;
    justify-content: flex-end;
    margin-top: 7vw;
    margin-right: 30px;
    right: 0;
    left: 0;
}

.animal img {
    object-fit: cover;
    width: 22vw;
}

.animal p {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.2vw;
    color: #828282;
}

.animal p span {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.3vw;
    color: #000;
}

.rinkusu img {
    object-fit: cover;
    width: 22vw;
}

.rinkusu p {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.2vw;
    color: #828282;
}

.rinkusu p span {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.3vw;
    color: #000;
}

.yumemino img {
    object-fit: cover;
    width: 22vw;
}

.yumemino p {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.2vw;
    color: #828282;
}

.yumemino p span {
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1.3vw;
    color: #000;
}

/* footer */
.footer_back {
    position: relative;
}

.footer-contents {
    display: flex;
}

.footer-content {
    display: flex;
    margin-left: 40px;
    margin-top: 140px;
}

.footer-epet {
    margin-left: 40px;
}

.fotter-content-title {
    margin-left: 20px;
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1vw;
    text-decoration: none;
    color: #fff;
}

.footer-epet {
    margin-left: 40px;
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1vw;
}

.footer-epet a {
    text-decoration: none;
    color: #fff;
}

.footer-event {
    margin-left: 40px;
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1vw;
}

.footer-event a {
    text-decoration: none;
    color: #fff;
}

.footer-clinic {
    margin-left: 40px;
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1vw;
}

.footer-clinic a {
    text-decoration: none;
    color: #fff;
}

.footer-contact {
    margin-left: 40px;
    font-family: 'Sawarabi Gothic', serif;
    font-size: 1vw;
}

.footer-contact a {
    text-decoration: none;
    color: #fff;
}

.footer-title {
    position: absolute;
    right: 0;
    left: 0;
    margin-top: 3%;
}

.epet-img {
    margin-left: 40px;
    margin-top: 140px;
}

.SNS {
    position: absolute;
    display: flex;
    margin-top: 22%;
}

.sns_icon {
    margin-left: 50px;
    margin-top: 5px;
}

.x {
    margin-left: 10vw;
}

.x img{
    width: 6vw;
}

.instagram {
    margin-left: 4vw;
}

.instagram img{
    width: 12vw;
}

.facebook {
    margin-left: 4vw;
}

.facebook img{
    width: 12vw;
}

.footer_back_img {
    text-align: center;
}

.footer_back_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* ABOUT PAGE */
.eve-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
    margin-top: 50px;
}

.eve-title-img img {
    width: 40vw;
}

.eve-title-p p {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1.2;
    margin-right: 20px;
    font-size: 2.2cap;
    color: #33715f;
}

.eve-title-p span {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    margin-right: 20px;
    color: #33715f;
    border-bottom: 2px solid #33715f;
    display: inline-block;
    padding-bottom: 5px;
}

.eve-img {
    text-align: center;
    margin-top: 100px;
}

.eve-img img {
    height: 80%;
    width: 80%;
}

.even-title {
    text-align: center;
    margin-top: 100px;
}

.even-title h2 {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 2.5vw;
    color: #33715f;
    border-bottom: 2px solid #33715f;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.even-title p {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 1.5vw;
    color: #33715f;
}

.even-p {
    text-align: center;
    margin-top: 50px;
}

.even-p p {
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.5;
    font-size: 1.2vw;
    color: #000;
}

.even-p p span {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    font-size: 1.7vw;
    color: #33715f;
}

.business-p {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

.business-p p {
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.5;
    font-size: 1.2vw;
    color: #000;
}

.business-img {
    text-align: center;
}

.abo-news-title {
    text-align: center;
}

.abo-news-title p {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 2.5vw;
    color: #33715f;
}

.abo-news-ba {
    position: relative;
}

.abo-news-content {
    display: flex;
    gap: 50px;
    position: absolute;
    justify-content: center;
    align-items: center;
    right: 0;
    left: 0;
    border-bottom: solid #000 1px;
    width: 700px;
    margin-left: 300px;
}

.abo-news-p {
    text-align: center;
    margin-top: 100px;
}

.abo-news-img {
    margin-top: 100px;
}

.abo-news-content_1 {
    display: flex;
    gap: 50px;
    position: absolute;
    justify-content: center;
    align-items: center;
    right: 0;
    left: 0;
    border-bottom: solid #000 1px;
    width: 700px;
    margin-left: 300px;
    margin-top: 125px;
}

.abo-news-p_1 {
    text-align: center;
    margin-top: 100px;
}

.abo-news-img_1 {
    margin-top: 100px;
}

.abo-news-content_2 {
    display: flex;
    gap: 50px;
    position: absolute;
    justify-content: center;
    align-items: center;
    right: 0;
    left: 0;
    border-bottom: solid #000 1px;
    width: 700px;
    margin-left: 300px;
    margin-top: 250px;
}

.abo-news-p_2 {
    text-align: center;
    margin-top: 100px;
}

.abo-news-img_2 {
    margin-top: 100px;
}

.abo-news-content_3 {
    display: flex;
    gap: 50px;
    position: absolute;
    justify-content: center;
    align-items: center;
    right: 0;
    left: 0;
    width: 700px;
    margin-left: 300px;
    margin-top: 375px;
}

.abo-news-p_3 {
    text-align: center;
    margin-top: 100px;
}

.abo-news-img_3 {
    margin-top: 100px;
}

.abo-news-back {
    text-align: center;
    margin-bottom: 80px;
}

.abo-news-back img {
    object-fit: cover;
    width: 80%;
    height: 100%;
}

/* EVENT PAGE */
/* CLINIC PAGE */
.e-title {
    text-align: center;
}

.e-title h2 {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 2.5vw;
    color: #fff;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.e-title p {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 1.5vw;
    color: #fff;
}

.e_contents {
    right: 0;
    left: 0;
    margin: 100px auto;
}

.e_content {
    display: flex;
    gap: 5vw;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

.e_con1 img {
    width: 30vw;
}

.e_con2 img {
    width: 30vw;
}

.e-button {
    display: flex;
    justify-content: center;
    align-items: center;
}

.e-button button {
    background-color: #33715f;
    border: #699680;
    color: white;
    padding: 1vh 4vh;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4rem auto;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.7;
    font-size: 16px;
}

.e-button button:hover {
    background-color: #73a08a;
}

.e-p {
    position: absolute;
    margin-top: 80%;
    margin-left: 30px;
}

.e-p h1 {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    font-size: 2vw;
    margin-bottom: 1.5rem;
    color: #33715f;
}

.e-p p {
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.5;
    font-size: 1vw;
    color: #000;
}

.e-p p span {
    font-family: 'Sawarabi Gothic', serif;
    font-weight: bold;
    line-height: 1;
    font-size: 1.5vw;
    color: #33715f;
}

/* CONTACT PAGE */
.contact-back {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 50px;
}

.contact-back img {
    object-fit: cover;
    width: 80%;
    height: 100%;
}

.contact-content {
    position: relative;
    z-index: 999;
}

.cantact-cont {
    margin-top: 100px;
}

.name {
    position: absolute;
    margin-left: 450px;
    margin-top: 75px;
}

.name-back {
    position: absolute;
    width: 550px;
    height: 50px;
    background-color: #e0e0e0;
    margin-left: 430px;
    margin-top: 60px;
    opacity: 0.33;
    border-radius: 10px;
}

.ruby {
    position: absolute;
    margin-left: 450px;
    margin-top: 155px;
}

.ruby-back {
    position: absolute;
    width: 550px;
    height: 50px;
    background-color: #e0e0e0;
    margin-left: 430px;
    margin-top: 140px;
    opacity: 0.33;
    border-radius: 10px;
}

.company {
    position: absolute;
    margin-left: 450px;
    margin-top: 240px;
}

.company-back {
    position: absolute;
    width: 550px;
    height: 50px;
    background-color: #e0e0e0;
    margin-left: 430px;
    margin-top: 225px;
    opacity: 0.33;
    border-radius: 10px;
}

.number {
    position: absolute;
    margin-left: 450px;
    margin-top: 320px;
}

.number-back {
    position: absolute;
    width: 550px;
    height: 50px;
    background-color: #e0e0e0;
    margin-left: 430px;
    margin-top: 305px;
    opacity: 0.33;
    border-radius: 10px;
}

.email {
    position: absolute;
    margin-left: 450px;
    margin-top: 405px;
}

.email-back {
    position: absolute;
    width: 550px;
    height: 50px;
    background-color: #e0e0e0;
    margin-left: 430px;
    margin-top: 390px;
    opacity: 0.33;
    border-radius: 10px;
}

.ki {
    position: absolute;
    margin-left: 450px;
    margin-top: 490px;
}

.ki-back {
    position: absolute;
    width: 550px;
    height: 120px;
    background-color: #e0e0e0;
    margin-left: 430px;
    margin-top: 480px;
    opacity: 0.33;
    border-radius: 10px;
}

.question {
    position: absolute;
    margin-left: 450px;
    margin-top: 650px;
}

.question-back {
    position: absolute;
    width: 550px;
    height: 350px;
    background-color: #e0e0e0;
    margin-left: 430px;
    margin-top: 635px;
    opacity: 0.33;
    border-radius: 10px;
}

.contact-button {
    background-color: #33715f;
    border: #699680;
    color: white;
    padding: 1vh 4vh;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin-top: 1025px;
    margin-left: 500px;
    cursor: pointer;
    border-radius: 50px;
    font-family: 'Sawarabi Gothic', serif;
    line-height: 1.7;
    font-size: 16px;
    position: absolute;
}

.contact-button:hover {
    background-color: #73a08a;
}

@media screen and (max-width: 960px) {
    .logo img {
        object-fit: cover;
        width: 100%;
        height: 100%;
    }

    .menu-item {
        display: none;
    }

    .menu-item a {
        display: none;
    }

    .menu-item a:hover {
        display: none;
    }

    .news{
        display: none;
    }
}

@media screen and (max-width: 820px) {
    .paws-green-white{
        display: none;
    }
}

@media screen and (max-width: 960px) {
    
}