@charset "utf-8";

/* 
header
footer
*/


.l-header{
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 10;
}


.l-header__contents{
    display: flex;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    
}

.l-header__contents-logo{
    margin: 20px;
    
}
.l-header__contents-logo>img{
    width: 150px;
    height: auto;
}
.l-header__navlist{
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.l-header__navlist-item>a{
    display: block;
    white-space: nowrap;
    padding: 20px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    
    border-bottom: 2px solid transparent;
    transition: border-color .25s;
}
.l-header__navlist-item>a:hover{
    border-bottom: 2px solid #333;
}

.l-footer{
    padding: 50px 0 0;
    background-color: #eee;
}

.l-hooter__info{
    display: flex;
    justify-content: space-between;
    margin: 50px 0 0;
}

@media screen and (max-width: 768px) {
    .l-hooter__info{
    display: block;
    text-align: center;
    margin: 50px 0 0;
}
}


.l-hooter__recaptcha{
    font-size: 10px;
}

.l-footer__copyright{
  display: block;
  text-align: right;
  padding: 10px;
}