@charset "utf-8";
body{
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 16px;
    color: #4B4B4B;
    background-color: #E3D8DA;
}
footer{
    font-size: 14px;
    background-color: #FFF;
}
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 ul{
    display: flex;
    justify-content: center;
    align-items: center;
}
.menu ul li{
    font-size: 15px;
    color: #836871;
    border-right: 1px solid #836871;
    padding: 0 40px;
    white-space: nowrap;
}
.menu ul li:last-child{
    border-right: none;
}
.underline:hover{
    color: #2B2B2B;
    transition: 0.3s;
}
.width800{
    margin: 0 auto;
}
.width1280{
    margin: 0 auto;
}
h1{
    font-size: 20px;
    font-weight: bold;
    color: #2B2B2B;
    text-align: center;
    margin-top: 80px;
}
h2{
    font-size: 18px;
    font-weight: bold;
    color: #2B2B2B;
    display: inline-block;
    border-bottom: 1px solid #4B4B4B50;
    padding-bottom: 10px;
    margin-bottom: 10px;
}
.topmedia{
    background-color: #4B4B4B;
    margin: 20px 0 80px 0;
    position: relative;
}
.topmedia img{
    mix-blend-mode: multiply;
}
.topmedia_item{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.gel img{
    object-fit: contain;
}
.gel ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gel ul li{
    width: 300px;
    background: #FFF;
    border: 1px solid #60555D;
    margin: 0 10px;
    margin-top: 40px;
    padding: 10px;
}
.gel ul li p{
    text-align: center;
    cursor: pointer;
    margin-top: 20px;
    line-height: 20px;
}
.gel ul li img{
    object-fit: contain;
    border: 1px solid #60555D;
    padding: 10px;
}
.gel ul li img:hover{
    opacity: 0.5;
    transition: 0.3s;
}
.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;
}