@charset "UTF-8";

*{
    margin: 0 ;
    padding: 0;
    line-height: 1;
    box-sizing: border-box;
}
body {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #444;
    background-color: #81985d;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
}
img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
header .logo{
    position: relative;
    left: 60%;
    top: 100px; 
    width: 30%;
    background-color: #fff;
    border-radius: 64% 36% 59% 41% / 35% 59% 41% 65%;
    z-index: 1;
}
header .logo h1{
    text-align: center;
    font-size: 50px;
    padding: 50px
}
header .logo h1 span{
    display: block;
    font-size: 30px;
    margin-bottom: 30px;
    font-family: 'Josefin Slab', serif;
}
header p{
    position: absolute;
    width: 20%;
    height: 20%;
    top: 5%;
    left: 6%;
    z-index: 1;
}
header .slider li{
    height: 60vh;
    margin-left: 50px;
}
header .slider li img{
    object-fit: cover;
    width: 70%;
    height: 100%;
    object-position: center;
    border-radius: 30% 70% 46% 54% / 47% 30% 70% 53%;
    rotate: -5deg;
}
#burger{
    position: fixed;
    z-index: 1;
    width: 44px;
    height: 44px;
    right: 5%;
    top: 30px;
    transition: .5s;
    cursor: pointer;
    z-index: 2;
}
#burger span{
    position: absolute;
    width: 80%;
    height: 2px;
    background-color: rgb(61, 63, 62);
    inset: 0;
    margin: auto;
    transition: .3s;
}
#burger span:nth-of-type(1){
    background-color: rgb(61, 63, 62); 
    top: -38%;
}
#burger span:nth-of-type(3){
    background-color:rgb(61, 63, 62); 
    top: 38%;
}
#burger.active span:nth-of-type(1){
    top: 10%;
    background-color: #fff;
}
#burger.active span:nth-of-type(2){
    opacity: 0;
}
#burger.active span:nth-of-type(3){
    top: -10%;
    background-color: #fff;
}
.nav_pc{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0%;
    background-color: rgb(61, 63, 62);
    transition: .3s;
    z-index: 1;
}
.nav_pc .nav_inner{
    padding-top: 100px;
}
.nav_pc .nav_inner a{
    display: block;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-weight: bold;
    letter-spacing: .1em;
    font-family: 'Josefin Slab', serif;
}
.nav_pc.drawer{
    top:0;
}
.main.container{
    margin: 0 auto;     
    max-width: 1240px;
}
.main h2{
    font-size: 30px;
    padding-bottom: 50px;
    text-align: center;
}
.item{   
    padding: 120px 100px;
    font-family: 'Josefin Slab', serif;
    max-width: 1240px;
    margin: 80px auto;     
    background-color: #fff;
    border-radius: 50% 50% 50% 40%/60% 70% 80% 50%;
}
.item ul{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    grid-gap: 30px;
}
#soap.item ul li:nth-child(1){
    grid-column: 1/2;
    grid-row: 1/3;
}
#soap.item ul li:nth-child(1) .photo img{
    aspect-ratio: auto;
} 
#bomb.item ul li:nth-child(1){
    grid-column: 1/2;
    grid-row: 1/3;
}
#bomb.item ul li:nth-child(1) .photo img{
    aspect-ratio: auto;
} 
.item ul .photo img{
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 5px 1px #a6a6a6;
}
.item ul  h3{
    padding: 10px 8px 10px;
}
.item ul  p{
    padding: 0 10px;
    font-size: 14px;
}
footer{
    background-color: #9b9362;
}
footer p{
    padding: 50px 0;
    text-align: center;
    font-size: 14px;
}
@media (max-width:768px){
    header .logo {
        top: -10px;
        left: -20px;
        width: 50%;  
    }
    header .logo h1{
        font-size: 30px;
        padding: 50px 60px 30px;
    }
    header .logo h1 span{
        font-size: 20px;
        margin-bottom: 10px;
    } 
    header p{
        width: 20%;
        height: 20%;
        top: 10%;
        left: 80%;
    }
    header .slider li{
        height: 50vh;
    }
    header .slider li img{
        width: 100%;
    }
    .main.container{
        margin-top: 50px;     
    }
    .item{   
        padding: 100px 60px;
        margin: 0 auto;    
        border-radius: 0;
    }
}
