@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{
    height: 100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-menu-button{
    display: none;
}

.header-logo{
    display: block;
    width: 190px;
}

.breadcrumb-001 {
    display: flex;
    gap: 0 22px;
    list-style: none;
    padding: 0;
    font-size: .9em;
}

.breadcrumb-001 li {
    display: flex;
    align-items: center;
}

.breadcrumb-001 li:first-child::before {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 4px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 20C20 20.5523 19.5523 21 19 21H5C4.44772 21 4 20.5523 4 20V11L1 11L11.3273 1.6115C11.7087 1.26475 12.2913 1.26475 12.6727 1.6115L23 11L20 11V20ZM11 13V19H13V13H11Z' fill='%23333333'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    content: '';
}

.breadcrumb-001 li:not(:last-child)::after {
    display: inline-block;
    transform: rotate(45deg);
    width: .3em;
    height: .3em;
    margin-left: 10px;
    border-top: 1px solid #333333;
    border-right: 1px solid #333333;
    content: '';
}

.breadcrumb-001 a {
    color: #333333;
    text-decoration: none;
}

.site-menu ul {
    display: flex;
    justify-content: center;
}

.site-menu ul li{
    list-style: none;
    float: left;
    padding: 10px;
}
.site-menu ul li a{
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}


.footer{
    color:#ffffff;
    background-color: #24211b;
    padding-top: 30px;
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sns-box {
display: flex;
gap: 0.5rem;
}

.btn-sns {
display: flex;
justify-content: center;
align-items: center;
width: 3rem;
height: 3rem;
box-sizing: border-box;
border-radius: 50%;
color: white;
font-size: 1.5rem;
text-align: center;
text-decoration: none;
transition: 0.3s;
}

.btn-sns svg {
fill: #fff;
}

.btn-x {
background-color: #24211b;
}

.btn-sns:hover {
opacity: 0.8;
}

.footer-logo{
    display: block;
    width: 123px;
    margin-top: 20px;
}

.copyright{
    font-size: 14px;
    font-weight: bold;
    margin-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: 50px;
    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: 190px;
    }
    .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: 40px; 
    }
    .footer-logo {
        margin-top: 20px;
    }
    .copyright {
        margin-top: 20px;
    }
}
