@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Kaisei+HarunoUmi:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Kaisei HarunoUmi', cursive;
    /*font-family: 'Darumadrop One', cursive;*/
    font-size: 1.2rem;
    border-top: 10px solid #79a1b1;
    width: 100vw;
    height: 100vh;
    margin: 0 auto;
    background-image: url('../img/vegetableback.jpg');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}
a:hover {
    color: pink;
}
.header {
    margin: 20px auto 0;
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: space-between;
}
.logo {
    margin: 0px 0 0 20px;
    float:left;
}
.logo img {
    width: 10vw;
    height: 10vh;
}
.header .btn-gNav {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 30;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
/*.header .btn-gNav span {
    position: absolute;
    width: 100%;
    height: 4px;
    background: #ffffff;
    border-radius: 10px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}*/
.header .btn-gNav span:nth-child(1) {
    top: 0;
}
.header .btn-gNav span:nth-child(2) {
    top: 10px;
}
.header .btn-gNav span:nth-child(3) {
    top: 20px;
}
.header .btn-gNav.open span:nth-child(1) {
    background: #ffffff;
    top: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.header .btn-gNav.open span:nth-child(2),
.header .btn-gNav.open span:nth-child(3) {
    top: 6px;
    background: #ffffff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.btn-gNav {
    display: none;
}

.gNav .gNav-menu {
    position: fixed;
    display: flex;
    justify-content: space-between;
    z-index: 30;
}

.gNav .gNav-menu li {
    margin: 0 auto;
    padding: 0 20px;
}

.header ul li a {
    display: block;
}
.container .Top {
    text-align: right;
    color: white;
    font-size: 7rem;
    margin: 40px;

}
.container h2 {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 4rem;
    margin-top: 80px;
    padding: 50px;
}
.container_service .service_block {
    display: flex;
    justify-content: space-between;
}
.container_service .text-box h2 {
    color: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 4rem;
    margin-top: 150px;
    padding: 50px;
}
.container_service .text-box p {
    color: #fff;
    text-align: center;
    font-size: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    max-width: 60%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-left: auto;
    margin-right: auto;
}
.footer {
    margin-top: 40px;
}
.pp_link {
    text-align: right;
}
.copy {
    text-align: center;
    background: #79a1b1;
    color: #fff;
    font-size: 12px;
    padding: 7px 0 3px;
}
.reason_block {
    padding-top: 5%;
    padding-bottom: 5%;
    display: flex;
    justify-content: space-between;
    background-color: rgb(230, 159, 192);
}
.reason_block .reason {
    width: 30%;
    text-align: center;
}
.reason_block .reason img {
    margin-bottom:  10px;
    width: 90%;
    height: 60%;
}
.reason_block .reason .ttl {
    color: white;
    font-weight: bold;
    font-size: 3rem;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.reason_block .reason .explain {
    font-size: 1.5rem;
    font-family: sans-serif;
    color: white;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.container h3 {
    color: #fff;
    font-weight: normal;
    font-size: 2rem;
}
.carrot {
    display: flex;
    width: 1150px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.carrot .image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow:hidden ;
}
.carrot .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 10;
}
.carrot .text-box {
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-80px,50px);
    
}
.carrot .text-box p {
    /*font-family: sans-serif;*/
    color: white;
}
.onion {
    display: flex;
    width: 1150px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.onion .image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow:hidden ;
}
.onion .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 10;
}
.onion .text-box {
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-80px,50px);
    
}
.onion .text-box p {
    /*font-family: sans-serif;*/
    color: white;
}
.beets {
    display: flex;
    width: 1150px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.beets .image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow:hidden ;
}
.beets .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 10;
}
.beets .text-box {
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-80px,50px);
}
.beets .text-box p {
    /*font-family: sans-serif;*/
    color: white;
}
.Garlic {
    display: flex;
    width: 1150px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.Garlic .image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow:hidden ;
}
.Garlic .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 10;
}
.Garlic .text-box {
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-80px,50px);
    
}
.Garlic .text-box p {
    /*font-family: sans-serif;*/
    color: white;
}
.potato {
    display: flex;
    width: 1150px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.potato .image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow:hidden ;
}
.potato .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 10;
}
.potato .text-box {
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-80px,50px);
    
}
.potato .text-box p {
    /*font-family: sans-serif;*/
    color: white;
}
.rakkyo {
    display: flex;
    width: 1150px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.rakkyo .image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow:hidden ;
}
.rakkyo .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 10;
}
.rakkyo .text-box {
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-80px,50px);
    
}
.rakkyo .text-box p {
    /*font-family: sans-serif;*/
    color: white;
}
.aojiso {
    display: flex;
    width: 1150px;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.aojiso .image {
    position: relative;
    width: 600px;
    height: 400px;
    overflow:hidden ;
}
.aojiso .image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    z-index: 10;
}
.aojiso .text-box {
    z-index: 20;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transform: translate(-80px,50px);
    
}
.aojiso .text-box p {
    /*font-family: sans-serif;*/
    color: white;
}
.other {
    color: white;
    font-size: 3rem;
    text-align: center;   
}
.other p {
    margin-bottom: 50px;
    
}
.other .link {
    margin-bottom: 60px;
}
.other .link a {
    font-size: 5rem;
    background-color: rgb(34, 192, 113);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.other .shoplist {
    font-size: 4rem;
}
.access {
    display: flex;
    justify-content: center;
}
.access .list {
    color: white;
    padding-top: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    padding: 40px;
    max-width: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}
.list .kuuhaku {
    margin-top: 2rem;
}
.access .list ul {
    padding-left: 0;
}
.access .list li {
    list-style: none;
}
.question {
    text-align: center;
}
.question p {
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
}
.question a {
    background-color: rgb(34, 192, 113);
    font-size: 2rem;
}
/*main*/

/*sp*/
@media screen and (max-width: 798px){
    .btn-gNav {
        background: url("/img/menu.png");
        display: block;
        width: 60px;
        height: 60px;
        margin-top: 40px;
        padding: 40px;
        float: right;
        background-repeat: no-repeat;
        background-size: 30px;
        cursor: pointer;
    }
    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        font-size: 16px;
        box-sizing: border-box;
        z-index: 30;
        padding-top: 50px;
        transition: .3s;
    }
    .gNav.open {
        right: 0;
    }
    .gNav .gNav-menu {
        padding: 0;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }
    .gNav .gNav-menu li {
        width: 86%;
        padding: 15px;
        border-bottom: #525252 1px solid;
    }
    .Top h1 {
        font-size: 3rem;
    }
    .container h2 {
        font-size: 1.5rem;
    }
    .logo img {
        margin-left: 40px;
    }
    .vegetable_block {
        font-size: 50%;
    }
    .vegetable_block .image img {
        /*width: 70%;*/
        height: 50%;
    }
    .vegetable_block .text-box {
        z-index: 20;
        padding: 10px;
        max-width: 150px;
        transform: translate(-80px,50px);
    }
    .carrot {
        display: flex;
        width: 100vw;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .onion {
        display: flex;
        width: 100vw;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .beets {
        display: flex;
        width: 100vw;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .Garlic {
        display: flex;
        width: 100vw;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .potato {
        display: flex;
        width: 100vw;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .rakkyo {
        display: flex;
        width: 100vw;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .aojiso {
        display: flex;
        width: 100vw;
        justify-content: center;
        align-items: center;
        margin-bottom: 50px;
    }
    .other p {
        font-size: 1rem;
    }
    .other .link a {
        font-size: 2rem;
    }
}
