#fc-wrapper .fc_modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
}

#fc-wrapper .fc_modal_contain {
    position: relative;
    background: var(--white);
    margin: 10% auto;
    width: 90%;
}

/* 閉じるボタン */
#fc-wrapper .fc_button_wrap {
    width: 100%;
    text-align: right;
}

#fc-wrapper .fc_modal_close{
    position: relative;
    width: 4.8rem;
    height: 4.8rem;
    background: var(--black);
    border-radius: 50%;
    border: transparent;
    cursor: pointer;
    padding: 0;
    margin: 2.4rem 2.4rem 0 0;
}

#fc-wrapper .fc_modal_close span {
    width: 25px;
    height: 2px;
    background: #fff;
    display: inline-block;
    position: absolute;
    left: calc(50% - 12px);
    top: 50%;
    border-radius: 20px;
}

#fc-wrapper .fc_modal_close span:nth-child(1) {
    transform: rotate(45deg) translate(-1px, -1px);
}

#fc-wrapper .fc_modal_close span:nth-child(2) {
    transform: rotate(-45deg) translate(1px, -1px);
}

/* modalコンテンツ 共通 */
#fc-wrapper .fc_modal_box_ttl_pic {
    width: 5%;
    margin: 0 auto;
}

#fc-wrapper .fc_modal_box_txt_wrap {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 85%;
    padding: 4.6rem 0 4.8rem;
    margin: 0 auto;
}

#fc-wrapper .fc_modal_sub_box {
    width: calc(100% / 5 - 2.0rem);
    margin: 0 2rem 2.7rem 0;
}

#fc-wrapper .fc_modal_sub_box:nth-child(5){
    margin-right: 0;
}

#fc-wrapper .fc_modal_sub_box:last-child {
    margin-right: auto;
}

/* modalコンテンツ VIP */
#fc-wrapper #modal1 .fc_modal_box_ttl {
    font-size: 3.2rem;
    font-weight: bold;
    color: #FA5A52;
}

#fc-wrapper #modal1 .fc_modal_box_ttl_wrap span {
    font-size: 1.6rem;
    font-weight: bold;
    color: #F6426A;
}

/* modalコンテンツ REGULAR */
#fc-wrapper #modal2 .fc_modal_box_ttl {
    font-size: 3.2rem;
    font-weight: bold;
    color: var(--yellow);
}

#fc-wrapper #modal2 .fc_modal_box_ttl_wrap span {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--yellow);
}

@media screen and (max-width: 768px) {
#fc-wrapper .fc_modal_contain {
    margin: 50% auto;
}

#fc-wrapper .fc_modal_box_ttl_pic {
    width: 5.6rem;
    height: 5.6rem;
}

#fc-wrapper #modal2 .fc_modal_box_ttl {
    line-height: 4.0rem;
}

#fc-wrapper .fc_modal_box_txt_wrap {
    width: 95%;
    padding: 3.5rem 0 5.9rem;
}

#fc-wrapper .fc_modal_sub_box {
    width: calc(100% / 2 - 1.6rem);
    margin: 0 0.8rem;   
}
}