@charset "utf-8";
/*-------------------------------------
全般
----------------------------------------*/

html{
    font-size: 62.5%;
}
*,
*::before,
*::after{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: system-ui;
    background-color: #F0F0F0;
    font-size: 1.6rem;
    line-height: 1.6;
}
.l-wrapper{
    max-width: 1100px;
    padding:0 20px;
    text-align: center;

}

/*--------------------------------------
ページ内
----------------------------------------*/
.ent{
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}
.ent__inner{
    margin-bottom: 200px;
}
.ent__title{
    margin: 0 0 30px;
    font-size: 5.6rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}
.ent__logo{
    margin-bottom: 40px;
}
.ent__logo-img{
    width: 400px;
}
.ent__member-entry{
    margin-bottom: 30px;
    margin-inline: auto;
}
.ent__member-link{
    display: inline-block;
    color: #fff;
    font-size: 3.2rem;
    width: 300px;
    max-width: 100%;
    padding: 15px 10px;
    background-color: #006BBB;
    border: solid 2px transparent;
    border-radius: 15px;
    text-decoration: none;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 15);
    transition: background-color 0.2s ease;
}
.ent__member-link:focus-visible{
    background-color: #fff;
    color: #006BBB;
    font-weight: 800;
    border-color: currentColor;
    outline: none;
}
.ent__member-link:focus-visible:active{
  transform: translateY(4px);
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.2);    
}

.ent__member-link:active{
  transform: translateY(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.ent__link-guide{
    font-size: 3.2rem;
    font-weight: 500;
}
/*---------------------
レスポンシブ対応
-----------------------*/
@media (max-width: 768px){
        .sp--br{
        display: block;
    }
    .l-wrapper{
        max-width: 100vh;
    }
    .ent{
        padding: 0;
    }
    .ent__inner{
        margin: 0;
    }
    .ent__title{
        font-size: 4.8rem;
        margin-bottom: 40px;
    }
    .ent__member-entry{
        margin-bottom: 20px;
    }
    .ent__member-link{
        font-size: 2.4rem;
        padding: 10px 8px;
        width: 260px;
    }
    .ent__link-guide{
        font-size: 2.4rem;
    }
    .ent__logo-img{
        width: 360px;
    }
}