@charset "UTF-8";

body{
    font-family: "M PLUS 1", sans-serif;
}

img{
    max-width: 100%;
}

a{
    text-decoration: none;
}

a:hover{
    color: #dd8cc2;
}

li{
    list-style: none;
}

#header{
    width: 100%;
    margin: 0 auto;
    height: 80px;
    background-color: #7e7171;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
}

#header a{
    color: white;
    text-shadow: 1px 1px 1px #000;
}

#header a:hover{
    color: #dd8cc2;
}

.logo{
    font-size: 30px;
}

#header nav ul{
    display: flex;
}

#header nav ul li{
    margin-left: 30px;
}

@media screen and (max-width:900px) {
    #header nav{
        display: none;
    }
 
}

#mainV{
    background-image: url(../image/mainV.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: calc(100vh - 80px);
    position: relative;
    margin-bottom: 80px;
}

#mainV .site-title{
    font-size: 60px;
    color: #fff;
    text-shadow: 1px 1px 1px #000;
    position: absolute;
    top: 33%;
    left: 5%;
}

@media screen and (max-width:900px) {
    #mainV .site-title{
        font-size: 32px;
    }

    #mainV{
        height: 250px;
        margin-bottom: 40px;
        }   
    }


.wrapper{
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
}

#section1{
    text-align: center;
    margin-bottom: 80px;
}

#section1 .sec_title{
    margin-bottom: 20px;
}

#section1 .flex{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}

#section1 img{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-right: 50px;
}

#section1 .text{
    text-align: left;
    font-size: 18px;
}

.btn{
    display: inline-block;
    border: 1px solid #8b8886;
    padding: 10px 30px;
    text-align: center;
    transition-duration: 0.3s;
    text-shadow: 1px 1px 1px #000;
    background-color: #8b8886;
    border-radius: 120px;
    color: #fff;
}

@media screen and (max-width:900px) {

    #section1 .sec_title{
        margin-bottom: 80px;
    }

    #section1 .flex{
        flex-direction: column;
        margin-bottom: 80px;
    }

    #section1 img{
        width: 150px;
        height: 150px;
        border-radius: 50%;
        margin-right: 0px;
        margin-bottom: 50px;
    }
}

#section2{
    text-align: center;
    margin-bottom: 80px;
    padding: 100px 20px;
    max-width: 100%;
    width: 100%;
    background-color: #7e7171;
}

#section2 .sec_title{
    margin-bottom: 50px
}

#section2 .flex{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

#section2 .flex .item{
    width: 23%;
}

#section2 .title{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 5px;
}

#section2 .text{
    text-align: left;
    letter-spacing: 0.01em;
}

@media screen and (max-width:900px){
   #section2 .flex{
        flex-direction: column;
    }

    #section2 .flex .item{
        width: 100%;
        margin-bottom: 80px;
    }

    #section2 .flex .item:last-child{
        margin-bottom: 0;
    }

    
}


#section3{
    margin-bottom: 80px;
    text-align: center;
}

#section3 .sec_title{
    margin-bottom: 50px
}


#section3 form dl{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

#section3 form dt{
    width: 20%;
    margin-bottom: 20px;
}

#section3 form dd{
    width: 70%;
    margin-bottom: 20px;
}

#section3 form dd input,
#section3 form dd textarea{
    width: 100%;
    border: solid 1px #000;
    border-radius: 10px;
    padding: 10px 0;
}

#section3 form dd textarea{
    resize: none;
}

#section3 form .send{
    border: 1px solid #8b8886;
    padding: 10px 50px;
    text-align: center;
    transition-duration: 0.3s;
    text-shadow: 1px 1px 1px #000;
    background-color: #8b8886;
    border-radius: 120px;
    color: #fff;
    letter-spacing: 0.05em;
}

#section3 form .send:hover{
    color: #dd8cc2;
}

@media screen and (max-width:900px){
    #section3 form dl{
        flex-direction: column;
        margin-bottom: 50px;
    }
}

#shop iframe{
    width: 100%;
    vertical-align: bottom;
}

#footer{
    background-color: #7e7171;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0;
    font-size: 0.8em;
    position: relative;
}

@media screen and (max-width:900px){
    #footer{
        padding: 70px 0;
    }

    .button_top{
        display: none;
    }
}

.button_top{
    display: block;
    position: absolute;
    right: 15px;
    bottom: 15px;
    background-color: #8b8886;
    opacity: 0.7;
    color: #fff;
    font-size: 16px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    

    /* 次に作る上向きの三角と、TOPの文字の位置を揃えるため */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: .3s;

}

.button_top::before{
    content: "";
    display: block;
    width: 10px;
    height: 10px;

    border-top: solid 2px #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
    transition: .3s;
  
}

.button_top::after{
    position: absolute;
    bottom: 15px;
    right: 15px;
}

.button_top:hover{
    background-color: #000;
    color: #fff;
}

/* .button_top:hover::before{
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
} */

/* about1 */
#about1{
    padding: 2%;
}

#about1 .flex{
    display: flex;
    justify-content: space-between;
}

#about1 .sec_title{
    margin-top: 40px;
    margin-bottom: 80px;
    
}

#about1 .flex img{
    width: 40%;
    margin-bottom: 90px;
    border-radius: 12px;
    object-fit: cover;
}

#about1 .text{
    width: 55%;
    margin-bottom: 50px;
}

#about1 .title{
    font-size: 1.4rem;
    margin-bottom: 15px;
}

#about1 .text p{
    line-height: 1.7;
}

@media screen and (max-width:900px){
    #about1 .flex{
        flex-direction: column;
    }

    #about1 .flex img{
        width: 100%;
        margin-bottom: 0;
    }

    #about1 .text{
        width: 100%;
    }

    #about1 .title{
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

#topic1{
    text-align: center;
    
}

#topic1 .sec_title{
    margin-top: 40px;
    margin-bottom: 80px;    
}

#topic1 img{
    border-radius: 12px;
}

#topic1 .item .title{
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 5px;
}

#topic1 .item p{
    max-width: 800px;
    margin: 0 auto 100px;
    line-height: 1.7;
    text-align: left;
}

@media screen and (max-width:900px){
    #topic1 .item p{
        line-height: 1.5;
}
}







