@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    overflow-x: hidden; /*スクロールバーを隠す*/
}
a{
    display: block;
    text-decoration: none;
}
li{
    text-decoration: none;
}
ul {
    list-style: none;
}
body{
    font-size:16px;
    line-height: 1.7;
    letter-spacing: .1rem;
    color:rgba(62,58,57,1);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
}

/* @media screen and (max-width: 480px){
    body{
        line-height: 1.5;
        letter-spacing: 0;
    }    
} */
/* 横幅が1500px以上の時は内側は1400px以上にはならない */
/* @media(min-width:1500px){
    .area01{
        max-width: 1400px;
    }
} */
/* #home{
    background-image: url(../image/top01.jpg);
    min-height: 100vh;
} */
/* .big-bg{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
} */

/* ナビ */
.header-nav{
    width: 90vw;
    /* max-width: 1200px; */
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    align-items: center;
}
.header-logo{
    display: flex;
    align-items: center;
}
.header-logo h1{
    margin-top: 0.5rem;
}
.header-logo p{
    margin-left: 1.5rem;
    font-size: 1.1rem;
    /* font-weight: 500; */
    letter-spacing: 0;
}
.header-nav-in{
    display: flex;
    text-decoration: none;
    justify-content: space-between;
}
.header-nav-in li{
    margin-left: 2rem;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 0.95rem;
}
.header-nav-in li a{
    color: rgb(89,87,87);
}

/* 取り扱い商品 */
.item-wrapper01{
    max-width: 1200px;
    /* width: 80vw; */
    margin: 0 auto;
    padding: 8rem 1rem 8rem 1rem;
    /* background-image: url(../image/about-top.jpg);
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: left 0 bottom 18%; */
}
.item-wrapper01 h2{
    /* display: inline-block; */
    font-size: 2rem;
    margin-bottom: -2rem;
}
/* .item-top{
    position: relative;
    height: 75vh;
    background: url(../image/about-top.jpg) no-repeat center;
    background-size: cover;
    margin: 0 0 3rem 0;
    z-index: -1;
    padding: 2rem;
} */

/* .item-top{
    background: url(../image/about-top.jpg) no-repeat center;
    background-size: cover;
} */
/* .top-text{
    margin-top: 15%;
    
} */

.blog-grid{
    display: grid;
    grid-template-columns: 25% 70%;
    /* padding: 1.5rem; */
    grid-column-gap: 5%;
    align-items: center;
}
.top-text{
    /* padding-top: 5rem; */
    color: rgb(87,87,87);
}
.top-text h3{
    font-size: 1.6rem;
}
.top-text div p{
    margin-top: 1.5rem;
    font-size: 1.1rem;
}
.top-text div p:first-of-type{
    margin-top: 3rem;
}
.blog-grid img{
    width: 100%;
}

.deco-line{
    max-width: 1200px;
    border: 2px solid rgb(202,202,202);
    margin: 5rem auto 3rem auto;
}


/* お問い合わせ */
.contact-form{
    margin-bottom: 10rem;
}
.contact-form h3{
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
}
.yougan-contact{
    max-width: 1000px;
    margin: 0 auto;
}
.form-con{
    background-color: rgb(181,181,181);
    padding: 3rem 1rem;
    margin: 3rem auto;
}
.form-item{
    display: grid;
    /* grid-template-columns: 28% 8% 60%; */
    grid-template-columns: 35% 62%;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    grid-column-gap: 2%;
    /* align-items: center; */
}
.man{
    background-color: rgb(195,13,35);
    color: #fff;
    text-align: center;
    padding: 0.3rem 0.8rem;
    border-radius: 0.5rem;
}
.namae-area{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-column-gap: 2%;
}
.form-item-input , .form-item-input02 , .onamae ,.freearea{
    padding: 0.5rem 1rem;
    border: 1px solid rgb(87,87,87);
    background-color: #fff;
}
/* .onamae{
    width: 48%;
} */
.freearea{
    width: 100%;
    height: 20vh;
}
.btn-k-area{
    /* margin: 0 auto; */
    color: #fff;
    background-color: rgb(113,113,113);
    display: inline-block;
    text-align: center;
    /* width: 30%; */
    padding: 1rem 2.5rem;
    margin-top: 2rem;
    margin-left: 40%;
    font-size: 1.1rem;
    font-weight: 500;


}