@charset "utf-8";
.main{background: #ffffff;}

.entry-inner{
    padding: 100px 0 30px 0;
}
.entry-lead{
    font-size: 2.1rem;
    text-align: center;
    letter-spacing: 0.06em;
    line-height: 1.5;
    font-weight: 500;
}   
.entry-input{
    width: 100%;
    max-width: 547px;
    height: 75px;
    margin: 43px auto 37px;
    display: block;
    border: 1px solid #231815;
    padding: 20px;
    font-size: 2rem;
}
.entry-btn{
    background: linear-gradient(to right, #7c6e61, #53493f);
    border: none;
    font-size: 2.1rem;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    letter-spacing: 0.16em;
    font-family: "Shippori Mincho", serif;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 354px;
    height: 68px;
    margin: 0 auto;
    position: relative;
    transition: background 0.3s linear;
}
.entry-btn::after{  
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
    background-image: url(../img/common/icon-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 21px;
    height: 8px;
}
.entry-btn:hover{
    background: linear-gradient(to right, #53493f, #7c6e61);
}
.entry-notes{
    text-align: center;
    margin-top: 35px;
}
.entry-notes  li b{font-size: 1.25em;}
.entry-register{
    margin-top: 100px;
}
.entry-desc{
    text-align: center;
    margin: 44px 0 57px;
}
@media screen and (max-width: 768px){
    .entry-inner {
        padding: 50px 0 20px 0;
    }
    .entry-lead{
        font-size: min(5vw, 2rem);
    }
    .entry-input{
        font-size: 1.6rem;
        margin: 33px auto 27px;
        height: 60px;
    }
    .entry-btn{
        height: 48px;
        font-size: 1.8rem;
    }
    .entry-notes{
        margin-top: 25px;
        text-align: left;
    }
    .entry-notes li{
        text-indent: -1em;
        padding-left: 1em;
    }
    .entry-register {
        margin-top: 80px;
    }
    .entry-desc {
        margin: 34px 0 47px;
    }
}