@charset "UTF-8";
@media screen and (min-width:850px) {
    /* PC版のcss */



    body {
        background-color: #fff;
        font-family: "BIZ UDPゴシック", "BIZ UDPGothic", "メイリオ", "Meiryo", "sans-serif", serif;
    }


    * {
        margin: 0;
        padding: 0;
    }

    img {
        max-width: 100%;
    }

    ul {
        list-style: none;
    }

    nav {
        list-style: none;
    }

    p {
        margin-top: 25px;
    }

    a {
        color: #AB7474;
        text-decoration: none;
    }

    h2 {
        text-align: center;
        margin-top: 200px;
        margin-bottom: 50px;
        font-weight: bold;
        color: #AB7474;
    }

    .HeaderInner {
        height: 90px;
        background-color: #c5f837;
        display: flex;
        justify-content: space-between;
        margin-top: -20px;
    }

    .HeaderInner-icon {
        height: 70px;
        display: flex;
        justify-content: flex-start;
        margin-top: 15px;
        color: #ab7474;
        font-weight: bold;
        font-size: 20px;
    }

    .HeaderInner-icon p {
        margin-top: 30px;
    }

    .HeaderInner-menu {
        display: flex;
        justify-content: flex-end;
        margin-top: 45px;
        gap: 40px;
        color: #ab7474;
        font-weight: bold;
    }

    .shopping {
        display: flex;
        justify-content: flex-end;
        margin-top: -10px;
        padding-right: 20px;
    }


    .mainPhoto {
        text-align: center;
        max-width: 100%;
        height: 100%;

    }

    .HeaderOuter {
        height: 50px;
        width: 100%;
        margin-top: -2px;
        background-color: #c5f837;
        top: 1400px;
        margin-bottom: 200px;
    }

    .news {
        display: flex;
        justify-content: center;
        gap: 70px;
        margin-bottom: 170px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }

    .news.show {
        opacity: 1;
        transform: translateY(0);
    }

    .contentsItem1,
    .contentsItem2,
    .contentsItem3 {
        height: 290px;
        width: 100%;
        background-color: #c5f837;
        display: flex;
        justify-content: center;
        padding-top: 15px;
        gap: 85px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }

    .contentsItem1.show,
    .contentsItem2.show,
    .contentsItem3.show {
        opacity: 1;
        transform: translateY(0);
    }

    .contentsName1,
    .contentsName2,
    .contentsName3 {
        text-align: center;
        display: flex;
        justify-content: center;
        padding-left: 140px;
        padding-right: 140px;
        margin-top: -100px;
        margin-bottom: 150px;
        font-size: 25px;
        font-weight: bold;
        color: #AB7474;
        opacity: 0;
        transform: translateY(50px);
    }

    .contentsName1 {
        gap: 67px;
        transition: 0.8s ease 1s;
    }

    .contentsName2 {
        gap: 67px;
        transition: 0.8s ease 1s;
    }

    .contentsName3 {
        gap: 65px;
        transition: 0.8s ease 1s;
    }


    .contentsName1.show,
    .contentsName2.show,
    .contentsName3.show {
        opacity: 1;
        transform: translateY(0);
    }

    .contentsName1 p,
    .contentsName2 p,
    .contentsName3 p {
        font-size: 15px;
        width: 230px;
        margin-top: 3px;
        margin-bottom: 3px;
    }

    .shop {
        height: 220px;
        width: 700px;
        background-color: #fde9ef;
        border-radius: 10px;
        margin-left: auto;
        margin-right: auto;
        padding: 5px;
        margin-bottom: 150px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }

    .shop.show {
        opacity: 1;
        transform: translateY(0);
    }

    .shopName {
        text-align: left;
        -moz-text-align-last: justify;
        text-align-last: justify;
        font-size: 18px;
        color: #AB7474;
        line-height: 40px;
        padding: 30px;
        margin-bottom: 150px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }

    .shopName.show {
        opacity: 1;
        transform: translateY(0);
    }

    .shopping2 {
        text-align: center;
        margin-bottom: 50px;
    }

    .FooterInner {
        display: flex;
        justify-content: space-between;
        height: 100px;
        background-color: #c5f837;
        margin-bottom: -50px;
    }

    .FooterInner-icon {
        height: 70px;
        display: flex;
        justify-content: flex-start;
        color: #ab7474;
        font-weight: bold;
        font-size: 20px;
    }

    .FooterInner2 {
        float: right;
        margin-right: 250px;
        margin-top: -40px;
    }


    .FooterInner2-list li {
        display: inline-block;
        justify-content: space-around;
    }

    .FooterInner2-list li+li {
        border-left: 1px solid #714545;
        height: 1.5em;
        padding-left: 6px;
        padding-right: 6px;
    }

    .FooterInner2-instw {
        display: flex;
        justify-content: left;
        gap: 40px;
        margin-top: 15px;
    }

    .copy {
        display: flex;
        justify-content: flex-start;
        color: #000000;
        font-size: 10px;
        margin-left: 10px;
    }
}

@media screen and (max-width:849px) and (min-width:751px) {
    /* タブレット版のcss */



    body {
        background-color: #fff;
        font-family: "メイリオ", "Meiryo", "sans-serif", serif;
    }


    * {
        margin: 0;
        padding: 0;
    }

    img {
        max-width: 100%;
    }

    ul {
        list-style: none;
    }

    li {
        font-size: 18px;
    }

    nav {
        list-style: none;
    }

    p {
        margin-top: 25px;
    }

    a {
        color: #AB7474;
        text-decoration: none;
    }

    h2 {
        text-align: center;
        margin-top: 100px;
        margin-bottom: 50px;
        font-weight: bold;
        color: #AB7474;
    }

    .news img {
        max-width: 85%;
    }

    .contentsItem1 img,
    .contentsItem2 img,
    .contentsItem3 img {
        max-width: 80%;
    }

    li {
        font-size: 15px;
    }

    .HeaderInner {
        height: 80px;
        background-color: #c5f837;
        display: flex;
        justify-content: space-between;
    }

    .HeaderInner-icon {
        height: 70px;
        display: flex;
        justify-content: flex-start;
        color: #ab7474;
        font-weight: bold;
        font-size: 15px;
    }

    .HeaderInner-icon p {
        margin-top: 30px;
    }

    .HeaderInner-menu {
        display: flex;
        justify-content: flex-end;
        margin-top: 35px;
        gap: 40px;
        color: #ab7474;
        font-weight: bold;
    }

    .shopping {
        display: flex;
        justify-content: flex-end;
        margin-top: -3px;
        margin-right: 10px;

    }

    .mainPhoto {
        text-align: center;
        width: 100%;
        height: 400px;
    }

    .HeaderOuter {
        height: 30px;
        margin-top: -2px;
        background-color: #c5f837;
        top: 1300px;
        margin-bottom: 40px;

    }

    .news {
        display: flex;
        justify-content: center;
        text-align: center;
        margin-bottom: 60px;
        padding-left: 20px;
        padding-right: 20px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;

    }

    .news.show {
        opacity: 1;
        transform: translateY(0);
    }


    .contentsItem1,
    .contentsItem2,
    .contentsItem3 {
        text-align: center;
        height: 230px;
        width: 100%;
        background-color: #c5f837;
        display: flex;
        justify-content: center;
        padding-top: 5px;
        gap: 65px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }

    .contentsItem1.show,
    .contentsItem2.show,
    .contentsItem3.show {
        opacity: 1;
        transform: translateY(0);
    }

    .contentsName1,
    .contentsName2,
    .contentsName3 {
        text-align: center;
        margin-top: -77px;
        margin-bottom: 100px;
        display: flex;
        justify-content: center;
        gap: 13%;
        width: 100%;
        font-size: 25px;
        font-weight: bold;
        color: #AB7474;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }


    .contentsName1.show,
    .contentsName2.show,
    .contentsName3.show {
        opacity: 1;
        transform: translateY(0);
    }

    .contentsName1 p,
    .contentsName2 p,
    .contentsName3 p {
        font-size: 12px;
        margin-top: -2px;
        width: 160px;
    }

    .shop {
        height: 150px;
        width: 470px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 80px;
        padding: 5px;
        background-color: #fde9ef;
        border-radius: 10px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;

    }

    .shop.show {
        opacity: 1;
        transform: translateY(0);
    }

    .shopName {
        text-align: left;
        -moz-text-align-last: justify;
        text-align-last: justify;
        font-size: 1rem;
        color: #AB7474;
        line-height: 30px;
        padding-top: 20px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }

    .shopName.show {
        opacity: 1;
        transform: translateY(0);
    }

    .shopping2 {
        text-align: center;
        margin-bottom: 50px;
    }

    .FooterInner {
        display: flex;
        justify-content: space-between;
        height: 90px;
        background-color: #c5f837;
        margin-bottom: -50px;
    }

    .FooterInner-icon {
        height: 70px;
        display: flex;
        justify-content: flex-start;
        color: #ab7474;
        font-weight: bold;
        font-size: 15px;
    }

    .FooterInner2 {
        float: right;
        width: 460px;
        margin-top: -30px;
    }


    .FooterInner2-list li {
        display: inline-block;
        justify-content: space-around;
    }

    .FooterInner2-list li+li {
        border-left: 1px solid #714545;
        height: 1.5em;
        padding-left: 4px;
        padding-right: 4px;
    }

    .FooterInner2-instw {
        display: flex;
        justify-content: left;
        gap: 40px;
        margin-top: 10px;
    }

    .FooterInner2-instw img {
        width: 40px;
    }

    .copy {
        display: flex;
        justify-content: flex-start;
        color: #000000;
        margin-left: 10px;
        font-size: 10px;
    }

}

@media screen and (max-width:750px) {
    /* スマホ版のcss */



    body {
        background-color: #fff;
        font-family: "メイリオ", "Meiryo", "sans-serif", serif;
    }


    * {
        margin: 0;
        padding: 0;
    }

    img {
        max-width: 100%;
    }

    ul {
        list-style: none;
    }

    li {
        font-size: 18px;
    }

    nav {
        list-style: none;
    }

    li {
        font-size: 9px;
    }

    p {
        margin-top: 25px;
    }

    a {
        color: #AB7474;
        text-decoration: none;
    }

    h2 {
        text-align: center;
        margin-top: 60px;
        margin-bottom: 30px;
        font-weight: bold;
        color: #AB7474;
    }

    .HeaderInner-icon img,
    .FooterInner-icon img,
    .FooterInner2-instw img {
        max-width: 70%;
    }

    .contentsItem1 img,
    .contentsItem2 img,
    .contentsItem3 img {
        max-width: 65%;
    }


    .HeaderInner {
        height: 60px;
        background-color: #c5f837;
        display: flex;
        justify-content: space-between;
    }

    .HeaderInner-icon {
        height: 50px;
        display: flex;
        justify-content: flex-start;
        color: #ab7474;
        font-weight: bold;
        font-size: 15px;
    }

    .HeaderInner-icon p {
        margin-top: 17px;
        margin-left: -20px;
    }

    .HeaderInner-menu {
        display: flex;
        justify-content: flex-end;
        margin-top: 23px;
        gap: 16px;
        color: #ab7474;
        font-weight: bold;
    }

    .shopping {
        display: none;
    }

    .mainPhoto {
        display: flex;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        height: 100%;

    }

    .HeaderOuter {
        height: 30px;
        margin-top: -2px;
        background-color: #c5f837;
        top: 1300px;
    }

    .news {
        display: flex;
        margin-left: auto;
        margin-right: auto;
        gap: 20px;
        margin-bottom: 90px;
        max-width: 400px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }

    .news.show {
        opacity: 1;
        transform: translateY(0);
    }

    .contentsItem1,
    .contentsItem2,
    .contentsItem3 {
        height: 110px;
        background-color: #c5f837;
        display: flex;
        text-align: center;
        gap: 6px;
        padding-top: 10px;
        padding-bottom: 15px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }

    .contentsItem1.show,
    .contentsItem2.show,
    .contentsItem3.show {
        opacity: 1;
        transform: translateY(0);
    }

    .contentsName1,
    .contentsName2,
    .contentsName3 {
        text-align: center;
        margin-top: -45px;
        margin-bottom: 100px;
        display: flex;
        justify-content: center;
        width: 100%;
        font-size: 27px;
        font-weight: bold;
        color: #AB7474;
        gap: 12%;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;
    }


    .contentsName1.show,
    .contentsName2.show,
    .contentsName3.show {
        opacity: 1;
        transform: translateY(0);
    }

    .contentsName1 p,
    .contentsName2 p,
    .contentsName3 p {
        font-size: 5px;
        margin-top: 0;
        width: 100px;
    }

    .shop {
        height: 100px;
        width: 350px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 70px;
        padding: 5px;
        background-color: #fde9ef;
        border-radius: 10px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;


    }

    .shop.show {
        opacity: 1;
        transform: translateY(0);
    }

    .shopName {
        text-align: left;
        -moz-text-align-last: justify;
        text-align-last: justify;
        font-size: 3px;
        color: #AB7474;
        line-height: 20px;
        padding-left: 3px;
        padding-right: 3px;
        padding-top: 7px;
        padding-bottom: 7px;
        opacity: 0;
        transform: translateY(50px);
        transition: 0.8s ease 1s;

    }

    .shopName.show {
        opacity: 1;
        transform: translateY(0);
    }

    .shopping2 {
        text-align: center;
        margin-bottom: 50px;
    }

    .FooterInner {
        display: flex;
        justify-content: space-between;
        height: 77px;
        background-color: #c5f837;
        margin-bottom: -50px;
    }

    .FooterInner-icon {
        height: 70px;
        display: flex;
        justify-content: flex-start;
        color: #ab7474;
        font-weight: bold;
        font-size: 15px;
    }

    .FooterInner-icon p {
        margin-top: 15px;
        margin-left: -20px;
    }

    .FooterInner2 {
        float: right;
        width: 180px;
        margin-top: -25px;
    }


    .FooterInner2-list li {
        display: inline-block;
        justify-content: space-around;
    }

    .FooterInner2-list li+li {
        border-left: 1px solid #714545;
        height: 1.5em;
        padding-left: 4px;
        padding-right: 4px;
    }

    .FooterInner2-instw {
        display: flex;
        justify-content: left;
        gap: 30px;
        margin-top: 7px;
    }

    .FooterInner2-instw img {
        width: 25px;
    }

    .copy {
        display: flex;
        justify-content: flex-start;
        color: #000000;
        margin-left: 10px;
        margin-top: 10px;
        font-size: 8px;
    }
}