/* オーバーレイ */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* モーダルウィンドウ */
.modal-window {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: auto;
    background-color: #fff;
    border-radius: 20px;
    z-index: 11;
    max-width: 480px;
    padding: 1.5rem;
    /*max-height: 60vh;
    overflow: scroll;*/
}
.modal-window button.h-32,
.modal-window a.h-32{
    height: 56px;
    width: 100%;
}

/* 閉じるボタン */
.button-close {
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    /*margin:30px auto;*/
}

/*POPタイトル*/
.modal_ttl{
    /*line-height: 4.4rem;*/
    /*font-size: 3.3rem;*/
    /*font-weight: 600;*/
    /*margin-top: 3rem;*/
    /*margin-bottom: 3rem;*/
    line-height: 1.3;
    font-size: 20px;
    text-align: center;
    margin-top: 35px;
    margin-bottom: 35px;
}
/*ボタン*/
.create_modal_btn{
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    /*font-size: 2.75rem;*/
    font-size: 15px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}
.button-close{
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /*font-size: 2.5rem;*/
    font-size: 15px;
    font-weight: bold;
}
.modal_btn_contents{
    padding: 0px 6rem;
    margin-bottom: 1.5rem;
}

/*天気情報POP*/
.weather_modal{
    width: 75%;
}

.weather_modal .modal_ttl{
    /*font-size: 2.75rem;*/
    font-size: 18px;
    /*margin-top: 2.5rem;
    margin-bottom: 2.5rem;*/
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 2;
}

.weather_select_list{
    max-width: 60%;
    margin: 0 auto;
}
.weather_item{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-content: flex-start;
    align-items: flex-start;
    /*font-size: 2.5rem;*/
    font-size: 16px;
    /*margin-bottom: 2rem;*/
    margin-bottom: 10px;
}
.weather_item p{
    font-weight: bold;
    margin-bottom: 1rem;
}
.weather_item p span{

}
.weather_item ul{
    width: 100%;
}
.weather_item li{
    /*margin-left: 3rem;*/
    /*margin-bottom: 1rem;*/
    margin-bottom: 7px;
    margin-left: 20px;
}
.weather_item li label{
    display: block;
    width: 100%;
}

.weather_modal .check-box__text::before{
    /*top: 0.25rem;*/
}
.weather_modal .check-box__text::after{
    /*top: 60%;*/
}

/*クーポン利用(ログイン誘導)*/
.coupon_use{
    display: flex;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
    /*font-size: 2.75rem;*/
    font-size: 15px;
    font-weight: bold;
    justify-content: center;
    align-items: center;
}
.cupon_modal_ttl{
    /*line-height: 4.4rem;*/
    line-height: 1;
    /*font-size: 3.3rem;*/
    font-size: 20px;
    font-weight: 600;
    /*margin-top: 3rem;*/
    margin-top: 15px;
    /*margin-bottom: 3rem;*/
    margin-bottom: 15px;
}

.cupon_modal_ttl span{
    /*font-size: 2.2rem;*/
    font-size: 15px;
    display: block;
    /*margin-top: 1rem;*/
    margin-top: 10px;
    line-height: normal;
}

.cupon_modal_txt{
    /*font-size: 2.5rem;*/
    font-size: 15px;
    text-align: left;
    /*line-height: 3.8rem;*/
    /*line-height: 3;*/
    line-height: 34px; /*旅行決済用に調整*/
}

.cupon_modal_btn{
    width: 100%;
    /*font-size: 2.75rem;*/
    font-size: 15px;
    /*margin-top: 3rem;*/
    margin-top: 15px;
}

.coupon_area_detail{
    margin-left: 2rem;
    background-color: #fb923c;
    color: #fff;
    padding: 0.3rem 0.7rem;
    border-radius: 0.4rem;
}