/* CSS Document */






/* ========================================

main

======================================== */
.main-inner {
    position: relative;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
}
@media screen and ( max-width: 768px ) {
    .main-inner {
        height: auto;
        padding-top: calc( 65 * 100vw / var( --dw ) );
        padding-bottom: calc( 65 * 100vw / var( --dw ) );
    }
}



.main-inner-content {
    position: relative;
    width: 100%;
    margin: 0;
    padding: min( calc( 100 * 100vw / var( --dw ) ), 100px ) 0;
}
@media screen and ( max-width: 768px ) {
    .main-inner-content {
        padding: calc( 50 * 100vw / var( --dw ) ) 0;
    }
}



.main-inner-content-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: min( calc( 100 * 100vw / var( --dw ) ), 100px ) 0;
    padding: 0;
}
.main-inner-content-button a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    min-height: 3em;
    margin: 0 auto;
    padding: 0;
    color: rgba( 255, 140, 0, 1 );
    text-underline-offset: 0.2em;
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: 0.5s;
}
.main-inner-content-button a:hover {
    color: rgba( 255, 140, 0, 0.7 );
    text-decoration: underline;
}
@media screen and ( max-width: 768px ) {
    .main-inner-content-button {
        margin: calc( 50 * 100vw / var( --dw ) ) 0;
    }
    .main-inner-content-button a {
    }
    .main-inner-content-button a:hover {
    }
}


.post-content {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding-bottom: min( calc( 100 * 100vw / var( --dw ) ), 100px );
}
@media screen and ( max-width: 768px ) {
    .post-content {
        max-width: none;
        padding-bottom: calc( 50 * 100vw / var( --dw ) );
    }
}



.post-content-page_title {
    position: relative;
    width: 100%;
    margin: 0 0 min( calc( 100 * 100vw / var( --dw ) ), 100px );
    padding: 0;
    line-height: 1.6;
    letter-spacing: 0.1em;
    text-align: center;
}
@media screen and ( max-width: 768px ) {
    .post-content-page_title {
        margin: 0 0 calc( 50 * 100vw / var( --dw ) );
    }
}




.post-content p {
    position: relative;
    width: 100%;
    margin: 0 0 2em;
    padding: 0;
    line-height: 1.8;
    letter-spacing: 0.1em;
}
@media screen and ( max-width: 768px ) {
    .post-content p {
    }
}



.post-content-button {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: min( calc( 50 * 100vw / var( --dw ) ), 50px ) 0;
}
.post-content-button a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    min-height: 4em;
    margin: 0 auto;
    padding: 0;
    color: #fff;
    text-underline-offset: 0.2em;
    background-color: rgba( 255, 140, 0, 1 );
    border-radius: 10px;
    border: 1px solid #ccc;
    transition: 0.5s;
}
.post-content-button a:hover {
    background-color: rgba( 255, 140, 0, 0.7 );
    text-decoration: underline;
}
@media screen and ( max-width: 768px ) {
    .post-content-button {
        padding: calc( 25 * 100vw / var( --dw ) ) 0;
    }
    .post-content-button a {
        max-width: 85%;
    }
    .post-content-button a:hover {
    }
}













