@charset "UTF-8";

/*-- ---------- --*/
/*-- layout css --*/
/*-- ---------- --*/

/*-- l-header --*/
.l-header{
    position: absolute;
    top:0;
    left:0;
    right:0;
    z-index: 1000;
}
.l-header > .container{
    width:100%;
    max-width: 1600px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    height:100px;
}

/*-- ロゴ --*/
.l-header .header-logo{
    position: relative;
    padding:0;
    display: flex;
    margin-right: 8rem;
    align-items: center;
}
.l-header .header-logo img{
    max-width: auto;
    width:auto;
    height:60px;
}
.l-header nav ul{display: flex; align-items: center;gap: 15px;}
.l-header nav img{width: 100%;max-width: 100px;}
@media (max-width:768px){
.l-header > .container{
    height:60px;
}
.l-header .header-logo{
    margin-right: 20px;
}
.l-header .header-logo img{
    max-width: auto;
    width:auto;
    height:25px;
}
.l-header nav img{width: 100%;max-width: 80px;}
}
/*-- l-footer --*/
.l-footer{
    position: relative;
    padding: 0;
}
.l-footer .l-footer__top{
    padding: 30px 0;
    background-color: #241616;
}
.l-footer .l-footer__top ul{
    gap:15px;
}
.l-footer .l-footer__top ul li a{
    color:#fff;
    background: #3a3a3a;
    padding: 20px 5px;
    display: block;
    position: relative;
    text-align: center;
}
.l-footer .l-footer__top ul li a::after{
    content:'';
    position: absolute;
    top:50%;
    transform: translateY(-50%) rotate(45deg);
    right:15px;
    border-top:2px #fff solid;
    border-right:2px #fff solid;
    width:12px;
    height:12px;
}
.l-footer .l-footer__top p{
    margin: 3rem auto 0;
    color:#fff;
    max-width: 1000px;
}
.l-footer__bottom{
    padding: 20px 0;
}
.l-footer__bottom .l-fl{
    justify-content: space-between;
}
.l-footer__bottom .l-fl img{
    max-width:130px;
}
@media screen and (max-width: 1200px){
.l-footer .l-footer__top ul li a{
    font-size: 16px;
    padding: 20px 5px;
}
.l-footer .l-footer__top ul li a::after{
    right:10px;
    border-top:2px #fff solid;
    border-right:2px #fff solid;
    width:12px;
    height:12px;
}
}
@media screen and (max-width: 768px){
.l-footer__bottom .l-fl{
    justify-content: center;
    gap:15px;
}
}
/*-- l-main --*/
.l-main{width:100%;margin: 0 auto;}
section{padding:80px 0 ;}
section:first-child{padding: 0;}
.section__body{
    padding:0;
}
@media screen and (max-width: 768px){
section{padding:6rem 0;}
}
