@charset "utf-8";

*,
::before,
::after{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

ul,
ol{
    list-style: none;
}

a{
    color: inherit;
    text-decoration: none;
}

body{
    font-family: sans-serif;
    font-size: 16px;
    color: #000000;
    line-height: 1;
    background-color: #ffffff
}

img{
    max-width: 100%;
}

.header-inner{
    max-width: 1200px;
    height: 110px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-menu-button{
    display: none;
}

.header-logo{
    display: block;
    width: 100px;
}

.site-menu ul{
    display: flex;
}

.site-menu ul li{
    margin-left: 20px;
    margin-right: 20px;
}

.site-menu ul li a{
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
}

.footer{
    color: #ffffff;
    background-color: #5a5856;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/***追従するトップへ戻るボタン***/
#page-top {
    position: fixed;
    right: 5px;
    bottom: 20px;
    height: 50px;
    text-decoration: none;
    font-weight: bold;
    transform: rotate(90deg);
    font-size: 90%;
    line-height: 1.5rem;
    color: #737373;
    padding: 0 0 0 35px;
    border-top: solid 1px;
}
#page-top::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0px;
    width: 15px;
    border-top: solid 1px;
    transform: rotate(35deg);
    transform-origin: left top;
}
/***トップへ戻るボタンここまで***/

.instagram-logo{
    display: block;
    width: 100px;
    padding-top: 20px;
    margin: auto;
    text-align: center;
}

.footer-logo{
    display: block;
    width: 200px;
    padding-top: 20px;
    margin: auto;
    text-align: center;
}

.copyright{
    font-size: 20px;
    font-weight: bold;
    padding-top: 20px;
}










@media (max-width: 800px){
    .site-menu ul{
        display: block;
        text-align: center;
    }
    
    .site-menu li{
        margin-top: 20px;
    }
    
    .header{
        position:fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: #ffffff;
        height: 100px;
        z-index: 10;
        box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    }
    
    .header-inner{
        padding-left: 20px;
        padding-right: 20px;
        height: 100%;
        position: relative;
    }
    
    .header-logo{
        width: 100px;
    }
    
    .header-site-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        color: #ffffff;
        background-color: #736E62;
        padding-top: 30px;
        padding-bottom: 50px;
        display: none;
    }
    
    .header-site-menu.is-show {
        display: block;
    }
    
    .toggle-menu-button{
        display: block;
        width: 44px;
        height: 34px;
        background-image: url(/images/common/icon-menu.png);
        background-size: 50%;
        background-position: center;
        background-repeat: no-repeat;
        background-color: transparent;
        border: none;
        border-radius: 0;
        outline: none;
    }
    
    .main{
        padding-top: 50px;
    }
    
    .instagram-logo{
        padding-top: 20px;
    }
    
    .footer-logo{
        padding-top: 20px;
    }
    
    .copyright{
        padding-top: 20px;
    }
}
