@charset "UTF-8";

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

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

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

body {
    margin: 0;
    padding: 0;
    height: auto;
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴシック', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', 'Arial', 'YuGothic', 'Meiryo', sans-serif;
    letter-spacing: normal;
    text-align: center;
    position: relative;
    box-sizing: border-box;
    overflow: scroll;
    scrollbar-width: none;
    color: #000000;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
    display: block;
}

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

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

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

a {
    text-decoration: none;
}

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

:root {
    --nav-height: 56px;
    --infobar-height: 40px;
    --footer-height: 32px;
    --font-color: rgba(255, 255, 255, 1.0);
    --font-color2: rgba(0, 96, 128, 1.0);
    --nav-background: rgba(0, 0, 0, 0.5);
    --nav-background2: rgba(3, 31, 37, 0.8);
    --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;
    /*overflow: hidden;*/
    color: var(--font-color);
    background-color: rgba(7, 7, 60, 0.85);
    z-index: 9999;
}

.wrapper {
    position: relative;
    width: 100%;
    height: auto;
    /*min-height: calc(100dvh - var(--nav-height) - var(--footer-height));*/
    min-height: calc(100dvh - var(--footer-height));
    margin: 0;
    padding: 32px 0 0 0;
    vertical-align: top;
    overflow: hidden;
    /*background-color: rgba(255, 255, 0, 0.2);*/
}

.contents {
    position: relative;
    width: calc(100% - 32px);
    height: auto;
    margin: var(--nav-height) auto 0 auto;
    padding: 0 0 56px 0;
    vertical-align: top;
    overflow: hidden;
    color: var(--font-color);
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    /*border: 1px solid #c7c7ef;*/
}

.footer {
    width: 100%;
    height: var(--footer-height);
    line-height: var(--footer-height);
    font-size: 10px;
    text-align: center;
    vertical-align: top;
    overflow: hidden;
    color: rgba(7, 7, 60, 0.9);
    background-color: rgba(248, 248, 248, 0.9);
}

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

.main_back {
    background: linear-gradient(-45deg, rgba(248, 248, 248, 0.9), rgba(248, 248, 248, 0.9), rgba(248, 248, 248, 0.9), #c7c7ef);
}

.contens_back {
    background: linear-gradient(-45deg, #c7c7ef, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9));
}

.contents_image {
    position: relative;
    width: 100%;
    height: 200px;
    margin: 8px 0;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}

.contents_image img {
    width: 100%;
    border-radius: 4px;
}

.contents_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.0em;
    color: #ffffff;
    text-shadow: 1px 1px #000000;
    /*background-color: red;*/
}

.notify {
    color: white;
    text-shadow: 1px 1px 1px #000;
}

.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) {
    .wrapper {
        max-width: 1440px;
        margin: 0 auto;
    }
}

/*-------------------------------------------------------------------------------------------------------------------
    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) {
    .body {
        max-width: 100%;
        overflow-x: hidden;
    }
}

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

@media screen and (max-width: 520px) and (orientation: portrait) and (hover: none) and (pointer: coarse) {
    .header {
        position: relative;
    }

    .wrapper {
        padding: 0 0 0 0;
    }

    .contents {
        width: calc(100% - 16px);
        margin: 16px 8px 0 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) {
    .header {
        position: relative;
    }

    .wrapper {
        padding: 0 0 0 0;
    }

    .contents {
        width: calc(100% - 32px);
        margin: 16px 16px 0 16px;
    }

    .pc_block {
        display: none;
    }

    .pc_inline {
        display: none;
    }

    .mobile_block {
        display: block;
    }

    .mobile_inline {
        display: inline-block;
    }
}