@charset "utf-8";
body{
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 16px;
    color: #4B4B4B;
    overflow-x: hidden;
}
footer{
    font-size: 14px;
}
h1{
    font-size: 24px;
    font-weight: bold;
    color: #2B2B2B;
    text-align: center;
    margin-top: 80px;
}
h2{
    font-size: 14px;
    font-weight: bold;
    color: #2B2B2B;
    text-align: center;
    margin-top: 10px;
}
h3{
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
}
h4{
    font-size: 12px;
    font-weight: bold;
    color: #FFF;
}
h5{
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
}
h6{
    font-size: 18px;
    font-weight: bold;
    color: #2B2B2B;
    display: inline-block;
    border-bottom: 1px solid #4B4B4B50;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
a{
    display: block;
}
img{
    object-fit: cover;
}
.search{
    background-color: #4B4B4B;
    display: inline-block;
    text-align: center;
    padding: 15px;
    border-radius: 100%;
    position: fixed;
    bottom: 40px;
    right: 40px;
    transition: all 0.5s ease 0s;
    z-index: 2;
    cursor: pointer;
}
.search p{
    font-size: 10px;
    color: #FFF;
    margin: 2px 0;
}
.search:hover{
    transform: scale(1.1,1.1);
}
.top{
    display: flex;
    justify-content: center;
    position: relative;
}
.top nav ul{
    display: flex;
    margin-top: 30px;
    position: absolute;
    right: 40px;
}
.top nav ul li{
    text-align: center;
}
.logo{
    margin-top: 20px;
}
.nav{
    font-size: 10px;
    opacity: 0;
    cursor: pointer;
}
.top nav ul li:hover{
    opacity: 0.5;
    transition: 0.3s;
}
.top nav ul li:hover .nav{
    animation: 0.5s fadeup ease-in-out forwards;
}
@keyframes fadeup{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.menu{
    width: 100%;
    background-color: #836871;
    padding: 10px 0;
    margin-top: 20px;
}
.menu ul{
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.menu ul li{
    font-size: 15px;
    color: #FFF;
}
.search_form input{
    width: 150px;
    font-size: 14px;
    color: #4B4B4B;
    background-color: #FFF;
    border: 1px solid #FFF;
    padding: 2px;
}
.underline:hover{
    color: #2B2B2B;
    transition: 0.3s;
}
.area1{
    background-color: #FCF9F7;
    padding-bottom: 80px;
}
.width800{
    margin: 0 auto;
}
.width1280{
    margin: 0 auto;
}
.top_slide{
    width: 100%;
    height: 800px;
    overflow: hidden;
    position: relative;
}
.top_slide img{
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-animation: slideshow 30s 0s infinite;;
    animation: slideshow 30s 0s infinite;
    cursor: pointer;
}
.top_slide img:nth-of-type(2){
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
}
.top_slide img:nth-of-type(3){
    -webkit-animation-delay: 20s;
    animation-delay: 20s;
}
@keyframes slideshow{
    0%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    35%{
        opacity: 1;
    }
    50%{
        opacity: 0;
        z-index: 9;
    }
    100%{
        opacity: 0;
    }
}
@-webkit-keyframes slideshow{
    0%{
        opacity: 0;
    }
    30%{
        opacity: 1;
    }
    35%{
        opacity: 1;
    }
    50%{
        opacity: 0;
        z-index: 9;
    }
    100%{
        opacity: 0;
    }
}
.topic ul{
    width: 980px;
    margin: 20px auto;
}
.topic ul li{
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #4B4B4B50;
    padding: 20px 10px;
}
.news:hover{
    opacity: 0.5;
    transition: 0.3s;
}
.button{
    text-align: center;
    cursor: pointer;
}
.button p{
    font-size: 12px;
    color: #FFF;
    background: #60555D url(../img/rightwhite.png) no-repeat 90% 50%/5px;
    border: 1px solid #60555D;
    display: inline-block;
    padding: 12px 40px;
    border-radius: 40px;
    margin-top: 20px;
}
.button p:hover{
    color: #60555D;
    background: #FFF url(../img/right.png) no-repeat 90% 50%/5px;
    border: 1px solid #60555D;
    transition: 0.3s;
}
.slide{
    display: flex;
    overflow: hidden;
    margin-top: 80px;
}
.slider{
    display: flex;
    animation: scroll-left 20s infinite linear 0.5s both;
}
.slide ul li{
    background: #FFF;
    border: 1px solid #60555D;
    padding: 10px;
}
.slide ul li img{
    object-fit: contain;
    border: 1px solid #60555D;
    padding: 10px;
}
.slide p{
    font-size: 14px;
    text-align: center;
    line-height: 18px;
    margin-top: 10px;
}
.new{
    position: relative;
    right: 320px;
    top: 2px;
}
@keyframes scroll-left{
    form{
        transform: translateX(0);
    }
    to{
        transform: translateX(-100%);
    }
}
.slide:hover .slider{
    animation-play-state: paused;
}
.shop{
    width: 600px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #836871;
    padding: 20px;
    margin: 0 auto;
    margin-top: 80px;
    text-align: center;
    line-height: 24px;
    transition: all 0.5s ease 0s;
}
.shop:hover{
    transform: scale(0.95,0.95);
}
.list ul{
    display: flex;
    justify-content: center;
    margin-top: 40px;
    border-bottom: 1px solid #4B4B4B50;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.list ul li{
    width: 300px;
    margin: 0 20px;
}
.list ul li img{
    width: 100%;
    object-fit: cover;
}
.list ul li img::before{
    padding-top: 100%;
    display: block;
}
.list ul li:hover{
    opacity: 0.5;
    transition: 0.3s;
}
.list p{
    cursor: pointer;
}
.date{
    display: flex;
    justify-content: end;
    margin: 10px 0;
}
.title{
    line-height: 20px;
}
.design ul{
    display: flex;
    justify-content: center;
    align-items: end;
    margin: 0 40px;
    margin-top: 40px;
}
.design ul li{
    margin: 0 10px;
    overflow: hidden;
    cursor: pointer;
}
.design ul li img:hover{
    transform:scale(1.2,1.2);
	transition:0.8s;
}
.popicon{
    position: relative;
}
.design_button{
    background-color: #836871;
    display: inline-block;
    text-align: center;
    padding: 20px;
    border-radius: 100%;
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 1;
}
.design_button p{
    font-size: 12px;
    color: #FFF;
    line-height: 16px;
}
.store{
    width: 100%;
    color: #FFF;
    background-color: #60555D;
    padding: 80px 0;
    margin-top: 80px;
}
.h1{
    font-size: 24px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
}
.h2{
    font-size: 14px;
    font-weight: bold;
    color: #FFF;
    text-align: center;
    margin: 10px 0 40px 0;
}
.img{
    text-align: center;
}
.store{
    margin: 0 auto;
    margin-top: 80px;
}
.store img{
    display: block;
    cursor: pointer;
    margin: 0 auto;
}
.store ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}
.store ul li{
    line-height: 40px;
    margin: 0 20px;
}
.store table{
    width: 400px;
    margin-top: 40px;
}
.store tr{
    border-color: #FFFFFF50;
    border-style: solid;
    border-width:  1px 0;
}
.store tr th{
    padding: 5px 0;
}
.store tr td{
    padding: 5px 0;
}
.map{
    position: relative;
}
.maps{
    width: 200px;
    background-color: #A37E84;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}
.rightmaps{
    position: absolute;
    bottom: 15px;
    right: 190px;
}
.maps:hover{
    transform: scale(0.95,0.95);
}
.sns{
    background-color: #4B4B4B;
    position: relative;
}
.snsback{
    mix-blend-mode: multiply;
}
.snsitem{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
}
.link{
    display: flex;
    justify-content: center;
    margin-top: 40px;
}
.snslink{
    background: linear-gradient(to bottom, #836871, #A37E84);
    display: inline-block;
    text-align: center;
    padding: 20px;
    border-radius: 100%;
    margin: 0 40px;
    transition: all 0.5s ease 0s;
}
.snslink:hover{
    transform: scale(1.1,1.1);
}
footer .width1280{
    display: flex;
    justify-content: space-between;
    margin: 80px 40px;
}
.footer{
    display: flex;
    gap: 100px;
    line-height: 30px;
}
.copyright{
    color: #FFF;
    background-color: #4B4B4B;
    text-align: center;
    padding: 10px 0;
}
.footerlink{
    margin-top: 20px;
}
.footerlink p:hover{
    opacity: 0.5;
    transition: 0.3s;
}