@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:linear-gradient(rgba(0,0,0,0.4),rgba(0,0,0,0.4)), url('../img/conceptback.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
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: 12;
    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 {
    display: flex;
    justify-content: space-between;
}

.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;
}
.vegetable_block p {
    color: #fff;
    text-align:left;
    font-size: 2rem;
    line-height: 1.8;
}
.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 {
    font-size: 0.8rem;
	text-align: center;		/*内容をセンタリング*/
	padding-bottom: 1rem;
    position: absolute;
    width: 100%;
    text-align: center;
    background: #79a1b1;
    color: #fff;
}
/*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;
        z-index: 40;
    }
    .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 p {
        font-size: 1rem;
    }
    .vegetable_block .image img {
        /*width: 70%;*/
        height: 50%;
    }
    .vegetable_block .text-box {
        z-index: 20;
        padding: 10px;
        max-width: 150px;
        transform: translate(-80px,50px);
    }
    footer {
        position: relative;
        width: 100%;
        text-align: center;
        background: #79a1b1;
        color: #fff;
        font-size: 10px;
        bottom: 0;
        left: 0;
    }
    
}
