@charset "UTF-8";

/*************************************************/

html {
    height: -webkit-fill-available;
}

body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background: #000;
}

.videoIframeWrap {
    position: relative;
    padding-top: calc(100% * 194 / 299);
}

.videoIframeWrap > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media screen and (max-width:450px) {
    .videoIframeWrap {
        position: relative;
        padding-top: calc(100% * 3 / 4);
    }
}


.wrapper {
    position: relative;
    width: 100%;
    display: block;
}

#page .wrapper {
    padding-top: 100px;
}

main {
    z-index: 1;
}

::selection {
    color: #fff !important;
    background-color: #000 !important;
}

::-moz-selection {
    color: #fff;
    background-color: #000;
}

body {
    font-family: "Hina Mincho", serif;
    font-weight: 400;
    font-style: normal;
    min-width: 320px;
    margin: 0 auto;
    font-size: 14px;
    overflow-x: hidden;
    overflow-y: scroll;
    position: relative;
    color: #fff;
}

main {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media screen and (max-width: 768px) {
    main {
        overflow-x: hidden;
    }
}


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


a {
    color: #887C52;
    text-decoration: none;
}



/**** load
---------------------------------------------------------------*/
#loading {
    width: 100%;
    height: 100%;
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    text-align: center;
    animation: up_animation ease-in-out;
    animation-duration: 1s;
    animation-delay: 3.2s;
    animation-fill-mode: both;
}

@media screen and (max-width: 786px) {
    #loading {
        animation: up_animation_sp ease-in-out;
        animation-duration: .5s;
    animation-delay: 3.2s;
    animation-fill-mode: both;
    }
}

#loading .loader {
    position: fixed;
    height: 106px;
    width: 560px;
    top: 50%;
    left: 50%;
    margin-left: -280px;
    margin-top: -53px;
}
@media screen and (max-width: 786px) {
    #loading .loader {
        height: 106px;
        width: 340px;
        margin-left: -170px;
    }
}


.op_text1 {
    animation: alpha_animation_in ease-in-out;
    animation-duration: 1s;
    animation-delay: .3s;
    animation-fill-mode: both;
    display: block;
    line-height: 1;
    position: relative;
    z-index: 2;
    color: #FFF;
    font-size: 20px;
}

@media screen and (max-width: 786px) {
    .op_text1,.op_text2 {
    font-size: 18px;
        line-height: 1.6;
    }
}

.op_text {
    position: relative;
    display: block;
    animation: alpha_animation ease-in-out;
    animation-duration: 1s;
    animation-delay: 2.5s;
    animation-fill-mode: both;
}

.op_text1 {
    margin-bottom: 30px;
}

@media screen and (max-width: 786px) {
    .op_text1 {
    margin-bottom:15px;
    }
}



@keyframes alpha_animation_in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }

}


@keyframes alpha_animation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }

}


@keyframes up_animation {
    0% {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}


@keyframes up_animation_sp {
    0% {
        transform: translateY(0);
    }

    to {
        transform: translateY(-190%);
    }
}

/*----------------------------------------------------------------------
slider
----------------------------------------------------------------------*/
#slider {
    width: 100%;
    height: 100vh !important;
}

.sns_link{
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	text-transform: uppercase;
	color: #fff;
}

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



/** TOP
-------------------------------------------------------------------------------**/


@media screen and (max-width: 768px) {
    
    img.center_logo{
        width:96px;
    }
     img.center_sns{
        width:24px;
    }
}


section {
    padding: 3rem 0;
    min-width: 1200px;
}

.page_inner {
    max-width: 1100px;
    margin: auto;
    padding: 0 8.4%;
}

.page_inner_L {
    max-width: 1200px;
    margin: auto;
}

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

    section,
    .page_inner,
    .page_inner_L {
        min-width: 320px;
        width: 100%;
    }

    section > * {
        box-sizing: border-box;
    }

}


.box__area {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 768px) {
    .box__area {
        flex-wrap: wrap;
    }
}

.left_box {
    width: 50%;
}

.right_img {
    width: 50%;
    text-align: right;
}

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

    .right_img {
        width: 100%;
        margin-top: 2rem;
    }
}




/*========= 固定ボタン===============*/

#page-top_sp {
    position: fixed;
    z-index: 10000;
}

#page-top {
    position: fixed;
    z-index: 10000;
    opacity: 0;
    transform: translateY(100px);
}



/* fadeUp ********************************************/

.fadeUp {
    -webkit-animation-name: fadeUpAnime;
    animation-name: fadeUpAnime;
    -webkit-animation-duration: 0.5s;
    animation-duration: 0.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUp.late {
    -webkit-animation-name: fadeUpAnime;
    animation-name: fadeUpAnime;
    -webkit-animation-duration: 1.2s;
    animation-duration: 1.2s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

.fadeUp.late_2 {
    -webkit-animation-name: fadeInAnime;
    animation-name: fadeInAnime;
    -webkit-animation-duration: 5s;
    animation-duration: 5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        -webkit-transform: translateY(100px);
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}


@-webkit-keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInAnime {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


.delay-time02 {
    animation-delay: 0.2s;
}

.delay-time04 {
    animation-delay: 0.4s;
}

.delay-time06 {
    animation-delay: 0.6s;
}

.delay-time08 {
    animation-delay: 0.8s;
}

.fadeUpTrigger {
    opacity: 0;
}


/*========= ローディング画面のためのCSS ===============*/
#splash {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999999;
    text-align: center;
    color: #fff;
}

#splash-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}


/*========= 画面遷移のためのCSS ===============*/

/*画面遷移アニメーション*/
.splashbg {
    display: none;
}

body.appear .splashbg {
    display: block;
    content: "";
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    background-color: rgba(153, 230, 252, 0.9);
    /*伸びる背景色の設定*/
    -webkit-animation-name: PageAnime;
    animation-name: PageAnime;
    -webkit-animation-duration: 0.2s;
    animation-duration: 0.2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime {
    0% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    50% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    50.001% {
        -webkit-transform-origin: right;
        transform-origin: right;
    }

    100% {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
}

@keyframes PageAnime {
    0% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }

    50% {
        -webkit-transform-origin: left;
        transform-origin: left;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }

    50.001% {
        -webkit-transform-origin: right;
        transform-origin: right;
    }

    100% {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scaleX(0);
        transform: scaleX(0);
    }
}

/*画面遷移の後のコンテンツ設定*/
#container {
    opacity: 0.01;
}

body.appear #container {
    -webkit-animation-name: PageAnimeAppear;
    animation-name: PageAnimeAppear;
    -webkit-animation-duration: 0.8s;
    animation-duration: 0.8s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}



/** footer
------------------------------------------**/

footer {
    color: #FFF;
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
}

footer a {
    color: #FFF;
}

.logo {
    font-size: 0.8em;
    margin-bottom: 2px;
}


.line {
    border: 1px solid #FFF;
    width: 100%;
    text-align: center;
    line-height: 123px;
    font-size: 42px;
    max-width: 490px;
}

@media screen and (max-width: 768px) {
    .line {
        width: auto;
        display: block;
        font-size: 25px;
        line-height: 96px;
        margin: 2rem 0;
    }
}


.footers p {
    line-height: 1.3;
    margin-bottom: .4rem
}



@media screen and (max-width: 768px) {
    .logo {
        margin-top: 24px;
        margin-bottom: 0;
        width: 100%;
        text-align: center;
    }

}


.copy {
    font-size: .7em;
    text-align: center;
    padding-bottom: 1rem;
}

@media screen and (max-width: 768px) {
    .copy {
        width: 100%;
        font-size: .6em;
    }
}



/** Utility
***************************************************************/
.u-fs-2em {
    font-size: 2em;
}

.u-fs-1_9em {
    font-size: 1.9em;
}

.u-fs-1_8em {
    font-size: 1.8em;
}

.u-fs-1_7em {
    font-size: 1.7em;
}

.u-fs-1_6em {
    font-size: 1.6em;
}

.u-fs-1_5em {
    font-size: 1.5em;
}

.u-fs-1_4em {
    font-size: 1.4em;
}

.u-fs-1_3em {
    font-size: 1.3em;
}

.u-fs-1_2em {
    font-size: 1.2em;
}

.u-fs-1_1em {
    font-size: 1.1em;
}

.u-fs-1em {
    font-size: 1em;
}

.u-fs-09em {
    font-size: .9em;
}

.u-fs-08em {
    font-size: .8em;
}

.u-fs-07em {
    font-size: .7em;
}

.u-fs-06em {
    font-size: .6em;
}

.u-fs-05em {
    font-size: .5em;
}

.u-lh--2 {
    line-height: 2;
}

.u-mt-80 {
    margin-top: 80px;
}

.u-mt-63 {
    margin-top: 63px;
}

.u-mt-56 {
    margin-top: 56px;
}

.u-mt-48 {
    margin-top: 48px;
}

.u-mt-40 {
    margin-top: 40px;
}

.u-mt-24 {
    margin-top: 24px;
}

.u-mt-20 {
    margin-top: 20px;
}

.u-mt-24 {
    margin-top: 24px;
}

.u-mr-8 {
    margin-right: 8px;
}

.u-mr-16 {
    margin-right: 16px;
}

.u-mt-16 {
    margin-top: 16px;
}

.u-mt-8 {
    margin-top: 8px;
}

.u-mt-0 {
    margin-top: 0;
}

.u-mb-16 {
    margin-bottom: 16px;
}

.u-mb-32 {
    margin-bottom: 32px;
}

.u-mb-64 {
    margin-bottom: 64px;
}

.u-mb-80 {
    margin-bottom: 80px;
}

.u-mb-0 {
    margin-bottom: 0;
}

.u-pb-0 {
    padding-bottom: 0;
}

.u-pt-0 {
    padding-top: 0;
}

.u-pt-40 {
    padding-top: 40px;
}

.u-min-h-200 {
    min-height: 200px;
}

.u-over__hidden {
    overflow: hidden;
}

.text__center {
    text-align: center !important;
}

.text__left {
    text-align: left !important;
}

.text__right {
    text-align: right !important;
    line-height: 1;
}

.dash {
    letter-spacing: -2px;
    margin-right: 4px;
}

.bold {
    font-weight: 700;
}

.chu {
    font-size: .6em;
}


.u-c-red {
    color: #d7003a;
}

.u-c-blue {
    color: #0071bc !important;
}

.u-c-fff {
    color: #fff;
}

.u-line {
    border-bottom: 1px solid #0071bc;
    display: inline-block;
}

.u-flex {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.u-flex img {
    height: auto;
    max-width: 240px;
    padding: 1px;
}


/* media Query
========================================================= */
@media screen and (max-width: 768px) {
    .u-pconly {
        display: none !important;
    }
}

@media screen and (min-width:769px) {
    .u-sponly {
        display: none !important;
    }

}