@charset "utf-8";
.framebox{
    width: calc(100% - 30px);
    height: calc(100vh - 273px);
    display: block;
    margin: 15px auto 0;
    position: relative;
}

.framebox.test02{
    width: calc(100% - 0px);
    height: calc(100vh - 258px);
    margin: 0px auto 0;
}

@media screen and (max-width: 768px) {
    .framebox{
        height: calc(100vh - 230px);
    }
    .framebox.test02{
        height: calc(100vh - 215px);
    }
}
iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.btn_wrap {
    text-align: center;
    padding: 30px 0;
}

.c-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 240px;
    min-height: 50px;
    padding: 8px 24px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-white);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background-color: var(--color-black);
    border: 1px solid var(--color-black);
    border-radius: 50px;
    transition: background-color .4s ease, color .4s ease, border .4s ease;
}

@media screen and (max-width: 768px) {
    .c-button {
        width: 40vw;
        min-width: auto;
        padding: 8px;
    }
}

/*202311*/
.btn_wrap{
    display: flex;
    justify-content: center;
}

.btn_wrap p{
    padding-top: 0.5em;
}

.btn_wrap_box{
    padding: 0 1em;
}

@media screen and (max-width: 768px) {
    .btn_wrap_box{
        width: 50%;
    }
}