@charset "UTF-8";

/*--初めての方へ--*/
#guide + section {
  padding-bottom: 200px;
}
@media screen and (max-width: 900px) {
  #guide + section {
    padding-bottom: 100px;
  }
}

/*--当店公式アプリはこちら--*/
#link_parts + div{
    min-height: 450px;
    position: relative;
    display: flex;
    align-items: center;
}
#link_parts + div:before{
    background: rgb(23 47 59 / 80%);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}
#link_parts + div .heading.block_header_4 .h {
    font-size: 6rem!important;
    font-weight: 600;
    line-height: 1.4;
    color: #fff !important;
}
#link_parts + div .content_wrapper{
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-template-areas:
    "btn1 btn2"
    "title title";
    justify-content: center;
}
#link_parts + div .content_wrapper .heading{
    grid-area: title;
    margin-bottom: initial;
    margin-top: 15px;
}
#link_parts + div .content_wrapper a:nth-of-type(1){
    grid-area: btn1;
}
#link_parts + div .content_wrapper a:nth-of-type(2){
    grid-area: btn2;
}
#link_parts + div .content_wrapper a{
    max-width: 200px;
}
@media screen and (max-width: 800px) {
    #link_parts + div .content_wrapper{
        grid-template-columns: auto;
        grid-template-rows: auto auto auto;
        grid-template-areas:
        "btn1"
        "btn2" 
        "title";
    }
    #link_parts + div .heading.block_header_4 .h {
        font-size: 2.5rem !important;
    }
    #link_parts + div{
        min-height: 300px;
    }
}