@charset "UTF-8";

.p-entry{
    display: flex;
    justify-content: space-between;
    font-family: 'Noto Sans JP', sans-serif;
    text-align: center;
    letter-spacing: 0.5px;
}
.p-entry__item{
    width: 480px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 0px 12px 0px;
}
.p-entry__main{
    display: flex;
    flex-direction: column;
    background: #fff;
    flex-grow: 1;
    padding: 46px 0 50px;
}
.p-entry__title{
    font-size: 24px;
    line-height: 1;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #fff;
    background: #ef7a00;
    margin: 0;
}
.p-entry__text{
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
.p-entry__text__br{
    display: none;
}
.p-entry__button{
    margin-top: 35px;
}
.p-entry__button__item{
    width: 300px;
    height: 60px;
    border-radius: 30px;
    color: #ef7a00;
    display: flex;
    align-items: center;
    margin: 20px auto 0;
    border: 2px solid #ef7a00;
    padding: 0 25px;
    font-weight: 600;
    font-size: 18px;
    position: relative;
}
.p-entry__button__item--orientation{
    background: #ef7a00;
    color: #fff;
}
.p-entry__button__item:first-child{
    margin-top: 0;
}
.p-entry__button__item:hover,
.p-entry__button__item::after{
    color: #ef7a00;
}
.p-entry__button__item--orientation:hover,
.p-entry__button__item--orientation::after{
    color: #fff;
}
.p-entry__button__item:hover{
    text-decoration: none;
    opacity: 0.7;
}
.p-entry__button__item::before{
    content: "";
    width: 20px;
    height: 20px;
    background: url(../images/entry_arrow.png) center top / cover no-repeat;
    margin: 2px 20px 0 0;
}
.p-entry__button__item--orientation::before{
    background-image: url(../images/entry_arrow_orientation.png);
}
@media only screen and (max-width: 1040px) {
    .p-entry{
        display: block;
        width: 480px;
        margin: 0 auto;
    }
    .p-entry__item:nth-child(n+2){
        margin-top: 50px;
    }
}
@media only screen and (max-width: 640px) {
    .main{
        display: block;
        height: auto;
        padding: 35px 0 27px;
    }
    .p-entry{
        width: 100%;
    }
    .p-entry__item{
        width: 100%;
    }
    .p-entry__item:nth-child(n+2){
        margin-top: 25px;
    }
    .p-entry__main{
        padding: 31px 0 35px;
    }
    .p-entry__title{
        font-size: 18px;
        height: 40px;
    }
    .p-entry__text{
        font-size: 15px;
    }
    .p-entry__text__br{
        display: inline;
    }
    .p-entry__button{
        margin-top: 20px;
    }
    .p-entry__button__item{
        width: calc(100% - 40px);
        height: 50px;
        border-radius: 25px;
        margin-top: 15px;
        font-size: 15px;
    }
    .p-entry__button__item::before{
        width: 15px;
        height: 15px;
        margin-right: 15px;
    }
}