/* CSS Document */
article{
    padding-bottom: 80px; 
}

#fv{
    margin-bottom: 50px; 
}
#fv h2{
    text-align: left;
    color: #fff;
    padding: 30px 0 30px 20px;
    background: rgba(89, 134, 198, .8);
    font-size: 140%;
    margin-bottom: 50px;
}

#secret {
  margin-bottom: 50px;
}

#secret #login .box {
  border: 5px solid #e6e6e6;
  border-radius: 10px;
  background: #FAF7F0;
  padding: 3%;
  margin: 0 0 2%;
  text-align: center;
}

#secret #login .login-btn {
  margin: 25px 0;
}

#secret #login .login-btn a {
  display: inline-block;
  transition: opacity 0.3s ease;
}

#secret #login .login-btn a:hover {
  opacity: 0.85;
}

#secret #login .login-btn img {
  width: 320px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

#secret #login strong {
  display: block;
  margin-top: 15px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

#menu{
    margin-bottom: 50px; 
}
#menu ul{
    display: inline-flex;
    gap: 15px;
    bottom: 0;
    right: 0;
    flex-direction: column;
    padding-bottom: 50px;
}
#menu ul li a{
    font-weight: 600;
    line-height: 1.4;
    text-decoration: none;
    background: #4A7EBE;
    border-radius: 5px;
    padding: 15px 50px;
    display: flex;
    align-items: baseline;
    gap: 7px;
    position: relative;
    color: #fff;
}
#menu ul li a::before {
    content: url("../module/img/arrow3.svg");
    width: 7px;
    line-height: 0;
}
#menu h3 {
    font-size: 140%;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 2px;
    color: #5986C6;
    align-items: center;
    gap: 10px;
    padding: 0 5px 15px;
    position: relative;
    margin-bottom: 20px;
}
#menu h3::after {
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background: #5986C6;
    border-radius: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}

@media screen and (max-width: 480px) {
    #fv h2 {
        font-size: 120%;
    }
    
    #secret #login .login-btn img {
        width: 100%;
      }
    
    #menu ul {
        display: grid;
    }
    
    
}
