@charset "UTF-8";
/* 共通CSS 見出し（h1〜）とかの共通のものをここに書くイメージだけどまあなんか適当によろしく！ */
.body_wrapper{
    overflow: hidden;
}

*{
    letter-spacing: 2px;
}

h2{
    font-size: 2rem;
    line-height: 2rem;
    color: #000000;
}

h5{
   font-size: 1.25rem;
   line-height: 1.25rem;
   color: #acacac; 
}

/* 横幅いっぱいじゃない要素は基本的にこのsectionではさむ想定 */
section{
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* ふわっと表示 */
.inview {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .5s, transform .5s, top .3s, box-shadow .3s;
  }
  
  .inview.late {
    display: none;
    animation: late_inview 1s;
  }
  
  .inview.is_show {
    transform: translateY(0);
    opacity: 1;
  }
  
  .inview.late.is_show {
    display: block;
  }



/* flex */
.flex_side{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.flex_center{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.row_align_top{
    align-items: flex-start;
}


/* ヘッダー */
header{
    width: 100%;
    padding-left: 1rem;
    height: 5rem;
    background-color: #000000;
    position: relative;
    z-index: 10;
}

header .header_text_item{
    height: 5rem;
    line-height: 5rem;
    padding: 0 1rem;
}

header .site_logo{
    background-image: url(../img/logo.png);
    background-size: cover;
    background-position: center;
    width: 8rem;
    height: 8rem;
    overflow: visible;
}

header .business_hours{
    color: #ffffff;
    font-size: 1.25rem;
}

header .tel{
    color: #ffffff;
    font-size: 1.5rem
}

header .tel span{
    color: #ffffff;
    font-size: 1.25rem;
    padding:0 .5rem;
}

header .reserve{
    color: #000000;
    background-color: #ffffff;
    font-size: 1.5rem;
}


/* フッター */
footer {
    width: 100%;
}

footer .info,
footer .contact{
    width: 50%;
    padding: 5%
}

footer .info .logo{
    background-image: url(../img/logo_squre.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    height: 6rem;
    display: block;
}

footer .info .access{
    text-align: center;
    padding: 1rem;
}

footer .info p{
    color: #765133;
    letter-spacing: .2rem;
}

footer .info .access .company{
    font-size: 1.25rem;
}

footer .info .access .company span{
    font-size: 1.75rem;
}

footer .info .address{
    font-size: .75rem;
}

footer .contact{
    text-align: center;
    letter-spacing: .2rem;
}

footer .contact .message{
    background-color: #000000;
    color: #ffffff;
}

footer .contact .message p{
    line-height: 2.5rem;
}

footer .contact .tel{
    background-color: #F7F7F7;
    padding-bottom: 1rem;
    padding-top: .5rem;
}

footer .contact .tel p{
    line-height: 1.75rem;
    font-size: 0.8rem;
}

footer .contact .tel .number{
    font-size: 1.25rem;
    line-height: 2.5rem;
}

footer .contact .tel .number span{
    font-size: 2rem;
    font-weight: bold;
}

footer .contact .tel .number a{
    color: #000;
}

footer .footer_link{
    text-align: center;
    margin-bottom: 2rem;
}

footer .footer_link a{
    display: inline-block;
    color: #765133;
    margin: 0 2rem 1rem;
    transition: opacity .3s ease;
    font-size: .875rem;
}

footer .footer_link a:hover{
    opacity: .5;
}

footer .flex_center{
    margin-bottom: 2rem;
}

/* タブレットサイズ */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    h2{
        font-size: 1.75rem;
        line-height: 1.75rem;
    }
    
    h5{
       font-size: 1rem;
       line-height: 1rem;
       color: #acacac; 
    }

    header{
        height: 3rem;
    }
    
    header .header_text_item{
        height: 3rem;
        line-height: 3rem;
    }
    
    header .site_logo{
        width: 5rem;
        height: 5rem;
    }
    
    header .business_hours{
        font-size: 1rem;
    }
    
    header .tel{
        font-size: 1.125rem
    }
    
    header .tel span{
        font-size: 1rem;
    }
    
    header .reserve{
        font-size: 1.125rem;
    }

    footer .info,
    footer .contact{
        padding: 2%
    }

    footer .info .access .company{
        font-size: 1rem;
    }
    
    footer .info .access .company span{
        font-size: 1.5rem;
    }
}

/* スマホサイズ */
@media screen and (max-width: 768px) {
    h2{
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    
    h5{
       font-size: 1rem;
       line-height: 1rem;
       color: #acacac; 
    }

    header{
        display: none;
    }

    /* 以下はヘッダー表示する時のCSS */
    header {
        padding-left: 0;
        height: 4rem;
    }

    header .header_text_item {
        display: none;
    }

    header .site_logo {
        background-image: url(../img/logo_sp.png);
        background-size: cover;
        background-position: center;
        width: 6rem;
        height: 4rem;
    }

    header .business_hours{
        font-size: 1rem;
    }
    header .header_text_item{
        height: 4rem;
        line-height: 4rem;
    }

    /* フッター */
    footer{
        flex-direction: column;
    }

    footer .info{
        width: 100%;
        order: 2;
    }

    footer .contact{
        width: 100%;
        order: 1;
    }

    footer .info,
    footer .contact{
        padding: 2%
    }

    footer .info p{
        letter-spacing: .1rem;
    }
    
    footer .info .access .company{
        font-size: 1rem;
    }
    
    footer .info .access .company span{
        font-size: 1.4rem;
    }

    footer .info .address{
        font-size: .7rem;
    }

    footer .contact{
        letter-spacing: .1rem;
    }
    
    footer .contact .tel p{
        line-height: 1.5rem;
        font-size: .7rem;
    }
    
    footer .contact .tel .number{
        font-size: 1rem;
    }
    
    footer .contact .tel .number span{
        font-size: 1.4rem;
    }
}