@charset "UTF-8";

/*-------------------------------------------------------------------------------------------------------------------
    style.css
---------------------------------------------------------------------------------------------------------------------
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    height: auto;
    font-family: 'Noto Sans JP', 'Arial', 'YuGothic', 'Meiryo', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2em;
    letter-spacing: normal;
    text-align: center;
    overflow: scroll;
    scrollbar-width: none;
    color: #000000;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

body:before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(100vh + 96px);
    /*background-image: url(../images/back_001.jpg);*/
    /*background-position: center;*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
}

body::-webkit-scrollbar {
    display: none;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: 100%;
}

a {
    text-decoration: none;
}

/*-------------------------------------------------------------------------------------------------------------------
*/

:root {
    --nav-height: 48px;
    --infobar-height: 0;
    --footer-height: 88px;
    --font-color: rgba(0, 0, 0, 1.0);
    --nav-background: rgba(0, 0, 0, 0.5);
    --nav-barcolor: rgb(233, 231, 224);
    --nav-fontcolor: rgb(240, 240, 240);
    --nav-hovercolor: rgba(253, 164, 208, 0.9);
}

.header {
    position: relative;
    /*position: fixed;*/
    /*top: 0;*/
    /*left: 0;*/
    width: 100%;
    height: var(--nav-height);
    line-height: var(--nav-height);
    margin: 0;
    padding: 0;
    vertical-align: top;
    color: var(--font-color);
    background-color: #006080;
}

.wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: calc(100dvh - var(--nav-height) - var(--footer-height));
    margin: 0;
    padding: 0;
    vertical-align: top;
    overflow: scroll;
    background: linear-gradient(-45deg, rgba(248, 248, 248, 0.9), rgba(248, 248, 248, 0.9), rgba(248, 248, 248, 0.9), #c7c7ef);
    /*background-color: rgba(255, 0, 0, 0.2);*/
}

.contents {
    position: relative;
    width: calc(100% - 32px);
    height: auto;
    margin:  32px auto 0 auto;
    padding: 32px ;
    vertical-align: top;
    overflow: scroll;
    border-radius: 4px;
    background: linear-gradient(-45deg, #c7c7ef, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
    /*background-color: rgba(255, 0, 0, 0.2);*/
}

.footer {
    position: relative;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    width: 100%;
    height: var(--footer-height);
    margin: 0;
    padding: 8px;
    font-size: 10px;
    font-weight: 600;
    text-align: center;
    color: #006080;
    background-color: rgba(248, 248, 248, 0.9);
}

/*-------------------------------------------------------------------------------------------------------------------
*/

.pc_block {
    display: block;
}

.pc_inline {
    display: inline-block;
}

.mobile_block {
    display: none;
}

.mobile_inline {
    display: none;
}

/*-------------------------------------------------------------------------------------------------------------------
    PC wide
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (min-width: 1440px) {
    .contents {
        max-width: 1440px;
    }
}

/*-------------------------------------------------------------------------------------------------------------------
    PC narrow
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 1000px) {
}

/*-------------------------------------------------------------------------------------------------------------------
    tablet portrait
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 959px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone portrait
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 520px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
    .contents {
        width: calc(100% - 16px);
        margin:  8px auto 0 auto;
        padding: 8px 8px 32px 8px;
    }

    .pc_block {
        display: none;
    }

    .pc_inline {
        display: none;
    }

    .mobile_block {
        display: block;
    }

    .mobile_inline {
        display: inline-block;
    }
}

/*-------------------------------------------------------------------------------------------------------------------
    Smartphone landscape
---------------------------------------------------------------------------------------------------------------------
*/

@media screen and (max-width: 896px) and (orientation: landscape) and (hover: none) and (pointer: coarse) {
    .contents {
        width: calc(100% - 32px);
        margin:  16px auto 0 auto;
        padding: 24px ;
    }

    .pc_block {
        display: none;
    }

    .pc_inline {
        display: none;
    }

    .mobile_block {
        display: block;
    }

    .mobile_inline {
        display: inline-block;
    }
}
