@charset "utf-8";
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    overflow-x: hidden; /*スクロールバーを隠す*/
}
a{
    display: block;
    text-decoration: none;
}
li{
    text-decoration: none;
}
ul {
    list-style: none;
}
body{
    font-size:16px;
    line-height: 1.7;
    letter-spacing: .1rem;
    color:rgba(51,51,51,1);
    font-family: 'M PLUS Rounded 1c', sans-serif;
}
.fadein {
    opacity : 0;
    transform: translateY(20px);
    transition: all 1s;
}

/* @media screen and (max-width: 480px){
    body{
        line-height: 1.5;
        letter-spacing: 0;
    }    
} */
/* 横幅が1500px以上の時は内側は1400px以上にはならない */
/* @media(min-width:1500px){
    .area01{
        max-width: 1400px;
    }
} */
.footer-area01{
    background-color: rgb(239,239,239);
}
.footer-grid{
    width: 80vw;
    /* max-width: 1200px; */
    display: grid;
    grid-template-columns: 50% 44% 6%;
    margin: 0 auto;
    padding: 5rem 0;  
    justify-content: center;
}
.footer-grid iframe{
    width: 100%;
}
.footer-add{
    display: grid;
    justify-content: center;
    background-image: url(../image/footer_back.jpg);
    background-size:cover;
    color: #fff;
    padding: 3rem 1rem 2rem 1rem;
    text-align: right;
    line-height: 1.5;
    letter-spacing: 0;
    position: relative;
    z-index: 1;
}
.footer-add::after {
        content: '';
        background-color: rgba(0,0,0,0.3);
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;     
}
.footer-add p:first-of-type{
    font-size: 1.5rem;
    font-weight: 500;
    z-index: 1;
}
.footer-add p{
    position: relative;
    z-index: 1;
}
.footer-add a:hover , .footer_sns a:hover{
    transition: 0.5s;
    opacity: 0.7;
}
.footer-add img{
    margin-left: auto;
    position: relative;
    z-index: 1;
}
.footer-copy{
    align-self: end;
    z-index: 1;
}
.footer_sns{
    display: grid;
    grid-template-columns: 1fr;
    align-items: end;
    padding: 15rem 0rem 1rem 1.5rem;
}
.footer_sns img{
    width: 70%;
}
.footer-area02{
    padding: 1rem;
    background-color: rgba(89,87,87,0.85);
}
.footer-nav{
    width: 90vw;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 4%;
    align-items: center;
    color: #fff;
}
.footer-logo{
    display: flex;
    align-items: center;
}
.footer-logo h1{
    margin-top: 0.5rem;
}
.footer-logo p{
    margin-left: 1.5rem;
    font-size: 1.1rem;
    /* font-weight: 500; */
    letter-spacing: 0;
}
.footer-nav-in{
    display: flex;
    text-decoration: none;
    justify-content: space-between;
}
.footer-nav-in li{
    margin-left: 2rem;
    letter-spacing: 0;
}
.footer-nav-in li a{
    color: #fff;
}