@charset "utf-8";

@media screen and (min-width: 806px) {

    #spinner-box {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
      }
      
      #loading {
        position: relative;
        z-index: 999;
        color: #eee;
      }
    
      #circle-border {
        width: 150px;
        height: 150px;
        padding: 3px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: linear-gradient(0deg, rgba(75, 75, 75, 0) 33%, rgb(196 196 196) 100%);
        animation: spin .8s linear 0s infinite;
        position: absolute;
      }
      
      #circle-core {
        width: 100%;
        height: 100%;
        background-color: #757575;
        border-radius: 50%;
      }

    body {
        background-color: #ffffff;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 16px;
    }

    @font-face {
        font-family: 'Zen Kaku Gothic New';
        src: url(myfont/ZenKakuGothicNew-Light.ttf) format('ttf'),
            url(myfont/ZenKakuGothicNew-Light.woff) format(woff);
        display: swap;
    }

    header,
    footer,
    nav,
    a,
    body,
    div,
    h3,
    p {
        color: #000000;
        margin: 0;
        padding: 0;
    }


    #logo a {
        display: inline-block;
        width: 100%;
        height: 70px;
        cursor: pointer;
    }

    #logo {
        height: auto;
        position: absolute;
        z-index: 9999;
        top: 24px;
        left: 46px;
    }

    #top_img1 img {
        display: none;
    }

    /*==ボタンのためのCSS*/
    .openbtn {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        right: 0;
        width: 70px;
        height: 70px;
        top: 24px;
        right: 46px;
    }

    /*xに変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #ffffff;
        width: 40px;
    }

    .openbtn span {
        left: 16px;
    }

    .openbtn span:nth-of-type(1) {
        bottom: 17px;
    }

    .openbtn span:nth-of-type(2) {
        bottom: 33px;
    }

    .openbtn span:nth-of-type(3) {
        bottom: 49px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    .openbtn.active span:nth-of-type(1) {
        top: 30px;
        left: 16px;
        transform: translateY(6px) rotate(-45deg);
        width: 40px;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3) {
        top: 42px;
        left: 16px;
        transform: translateY(-6px) rotate(45deg);
        width: 40px;
    }

    .openbtn.active {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        opacity: 0.7;
        right: 0;
        width: 70px;
        height: 70px;
        top: 24px;
        right: 46px;
    }

    .openbtn a {
        display: inline-block;
        width: 70px;
        height: 70px;
    }

    .openbtn1 {
        display: none;
    }

    .circle-bg.circleactive {
        background: #707070;
        width: 100%;
        opacity: 0.7;
        height: auto;
    }

    body.appear-2.mainblur {
        filter: grayscale(65%);
        overflow: hidden;
    }

    body.appear-3.mainblur {
        filter: grayscale(65%);
        overflow: hidden;
    }

    /*ナビゲーションのためのCSS*/
    /*アクティブになったエリア*/
    #g-nav {
        position: fixed;
        z-index: 1;
        right: -120%;
        width: 385px;
        height: 100vh;
        background-color: rgba(00, 00, 00, 0.3);
        transition: all 0.6s;
        top: 0;
    }

    .panelactive {
        width: 100%;
    }

    #g-nav.panelactive {
        right: 0;
        z-index: 1;
    }

    #g-nav li a.panelactive {
        color: #ffffff;
    }

    #g-nav.panelactive #g-nav-list {
        /*クラスが付与されたら出現*/
        display: block;
    }

    /*ナビゲーション*/
    #g-navi {
        padding: 0;
        margin: 0;
        width: 100%;
        padding-right: 46px;
    }

    #g-nav ul {
        opacity: 0;
        position: absolute;
        z-index: 999;
        top: 160px;
        list-style-type: none;
        text-align: right;
        padding: 0;
    }

    #g-nav ul li a {
        text-decoration: none;
        font-size: 30px;
        line-height: 2.0;
        color: #ffffff;
    }

    .solid {
        height: 70px;
        padding-right: 46px;
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /*背景が出現後にナビゲーションliを表示
レイアウトによって調整・削除可*/
    #g-nav.panelactove ul li {
        animation-name: gnaviAnime;
        animation-delay: 1s;
        /*0.2秒遅らせて出現*/
        animation-delay: .2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

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

        100% {
            opacity: 1;
        }
    }

    /*上に上がる動き*/
    #top.UpMove {
        animation: UpAnime 0.5s forwards;
    }

    @keyframes UpAnime {
        form {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(0);
        }
    }

    /*下に下がる動き*/
    #top.DownMove {
        animation: DownAnime 0.5s forwards;
    }

    @keyframes DownAnime {
        form {
            opacity: 0;
            transform: translateY(0);
        }

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

    .circle-bg {
        position: fixed;
        z-index: 3;
        right: -120%;
        width: 35%;
        height: 100vh;
        background: #000000;
        transition: all 0.6s;
    }

    #finish_nav ul li a {
        text-decoration: none;
    }

    img {
        width: 100%;
        height: auto;
    }

    #logo a img {
        width: 160px;
        height: 70px;
    }

    #finish_nav ul {
        display: flex;
        list-style-type: none;
        margin: 0;
        text-align: center;
        padding: 0;
        justify-content: center;
    }

    #finish p {
        text-align: center;
        font-size: 14px;
    }

    #finish_nav ul li ::before {
        content: "";
    }

    #finish_nav ul li {
        text-align: center;
    }

    footer {
        padding: 40px 0;
        opacity: 1;
        position: relative;
        z-index: 99;
    }

    #finish1 {
        display: none;
    }


    #logo1 img {
        width: 90px;
        height: 50px;
    }

    #top1 {
        position: fixed;
        background-color: rgba(255, 255, 255, 0.7);
        width: 100%;
        top: 0;
        z-index: 999;
        padding: 12px 0 8px 0;
    }

    /*上に上がる動き*/
    #top1.UpMove {
        animation: UpAnime 1.5s forwards;
        transform: perspective(50px);
    }

    @keyframes UpAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(-100px);
        }
    }

    /*下に下がる動き*/
    #top1.DownMove {
        animation: DownAnime 1.0s forwards;
    }

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

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

    #nav-list ul {
        display: flex;
        list-style-type: none;
        justify-content: right;
        margin: 27px 0;
        padding: 0;
    }

    #nav-list ul li a {
        text-decoration: none;
    }

    #nav-list1 ul {
        display: flex;
        list-style-type: none;
        justify-content: right;
        margin: 0;
        flex-wrap: wrap;
    }

    #nav-list1 ul li a {
        text-decoration: none;
    }

    #top1-1 {
        width: 90%;
        margin: 0 auto;
        max-width: 1080px;
    }

    .solid1 {
        margin-right: 18px;
        margin-top: 14px;
    }

    .fadeUpTrigger {
        opacity: 0;
    }

    #navi li a {
        font-size: 16px;
    }

    #navi1 li a {
        font-size: 16px;
    }

    #g-nav1 {
        display: none;
    }

    .openbtn1 {
        display: none;
    }

    #logo1 a {
        display: inline-block;
        width: 115px;
        height: 50px;
    }

    #logo1 {
        float: left;
    }

    .openbtn1 {
        display: none;
    }

    #top_view {
        width: 100vw;
    }

    #nav-1 {
        position: static;
    }

    #logo-area {
        position: relative;
    }


    #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: absolute;
        z-index: 999;
        width: 100%;
        height: 87vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #page-top {
        position: fixed;
        right: 46px;
        bottom: 40px;
        height: 50px;
        text-decoration: none;
        font-weight: bold;
        transform: rotate(90deg);
        font-size: 90%;
        line-height: 1.5rem;
        color: #ffffff;
        padding: 0 0 0 35px;
        border-top: solid 1px;
        background: rgba(00, 00, 00, 0.3);
    }

    #page-top::before {
        content: "";
        display: block;
        position: absolute;
        top: -1px;
        left: 0px;
        width: 15px;
        border-top: solid 1px;
        transform: rotate(35deg);
        transform-origin: left top;
    }

    body.mainblur .btn_line a {
        position: absolute;
        top: 1000px;
    }

    .btn_line a {
        height: 22px;
        display: block;
        padding: 10px 17px;
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
        z-index: 9999999;
        width: 100%;
    }

    .btn_line a:hover {
        background: rgba(00, 00, 00, 0.5);
        color: #ffffff !important;
        opacity: 0.7;
    }

    .DownMove #before.hover {
        border-top-color: #000000 !important;
        border-right-color: #000000 !important;
    }


    .DownMove #after.hover {
        border-bottom-color: #000000 !important;
        border-left-color: #000000 !important;
    }

    #before,
    #after {
        box-sizing: inherit;
        content: "";
        position: absolute;
        border: 1px solid transparent;
        width: 0;
        height: 0;
    }

    #before {
        top: -4px;
        left: 1px;
    }

    #after {
        bottom: -4px;
        right: 1px;
    }

    .btn_line a:hover #before,
    .btn_line a:hover #after {
        width: 100%;
        height: 100%;
    }

    .btn_line a:hover #before {
        border-top-color: #ffffff;
        border-right-color: #ffffff;
        transition: width 0.15s ease-out, height 0.15s ease-out 0.15s;
    }

    .btn_line a:hover #after {
        border-bottom-color: #ffffff;
        border-left-color: #ffffff;
        transition: border-color 0s ease-out 0.2s, width 0.15s ease-out 0.2s, height 0.15s ease-out 0.3s;
    }

    .btn_line.DownMove {
        border: #212121 1px solid;
    }

    .btn_line a.DownMove {
        color: #212121;
    }

    #splash-logo img {
        width: 160px;
        height: 70px;
    }

    #splash-logo {
        position: relative;
        width: 200px;
        top: -500px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999999;
        animation: fadeout 0.8s ease-in forwards;
    }

    @keyframes fadeout {
        100% {
            opacity: 0.3;
        }

        0% {
            opacity: 1;
        }
    }

    @keyframes fadeout1 {
        100% {
            opacity: 1;
        }

        0% {
            opacity: 0.3;
        }
    }

    #startbg {
        background-color: #d0d0d0;
        width: 100%;
        height: 1000px;
    }


    @keyframes PageAnime {
        0% {
            transform-origin: left;
        }

        100% {
            transform-origin: right;
        }
    }

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

        100% {
            opacity: 1;
        }
    }

    .fadein {
        opacity: 1;
        visibility: visible;
        transform: translate(0px, 0px);
    }

    @keyframes animationZoom1 {
        100% {
            transform: scale(1.1)
        }
    }

    @keyframes animationZoom1 {
        0% {
            transform: scale(0.9)
        }
    }

    ::-webkit-scrollbar-thumb {
        background: #707070;
        border: 2px solid #9b9b9b;
    }

    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #ffffff;
        border: 2px solid rgba(00, 00, 00, 0.1);
    }

    #last img,
    .solid2 img {
        width: 30px;
        height: 30px;
    }

    .solid img {
        width: 40px;
        height: 40px;
        margin-top: 40px;
    }

    .solid2 {
        margin-left: 18px;
        margin-top: 12px;
    }


    #last img {
        margin-bottom: 0px;
        position: relative;
        bottom: 2px;
        left: 16px;
    }

    .secand ::after {
        content: "|";
        margin: 8px;
    }

    /* Loading背景画面設定　*/
    #splash1 {
        /*fixedで全面に固定*/
        width: 100%;
        height: 100vh;
        z-index: 999;
        background: #ffffff;
        text-align: center;
        color: #ffffff;
        background: #757575;
    }

    /* Loading画像中央配置　*/

    body.appear #splash_logo2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 90%);
        z-index: 999999999;
        opacity: 1;
        animation: fadein1 1.3s linear;
    }

    body.appear-1 #splash_logo2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 90%);
        z-index: 9999999999;
    }

    #splash {
        opacity: 0;
    }


    #splash_logo1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -90%);
    }

    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -90%);
    }


    #splash_logo1 span,
    #splash_logo span {
        display: inline-block;
    }

    #splash_logo1 img {
        height: 65px;
        width: 65px;
    }

    #splash_logo img {
        height: 65.1px;
        width: 65.1px;
    }

    #splash_logo2 img {
        width: 210px;
    }

    #splash_logo1.active1 span:before {
        width: 0%;
    }

    #splash_logo.active1 span:before {
        height: 0%;
    }

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

        100% {
            opacity: 1;
        }
    }

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

        100% {
            opacity: 1;
        }
    }


    #splash_logo1 span:before {
        content: "";
        position: absolute;
        right: -18%;
        bottom: 4px;
        width: 100px;
        height: 200%;
        background: #757575;
        transition: all 1.5s linear;
    }

    #splash_logo span:before {
        content: "";
        position: absolute;
        right: -18%;
        top: 4px;
        width: 100px;
        height: 102%;
        background: #757575;
        transition: all 1.5s linear;
    }

    #splash_area {
        position: relative;
        height: 100vh;
    }


    #closebg {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0px;
        z-index: 9;
    }


    .loader {
        position: absolute;
        top: 48%;
        left: 48.7%;
        width: 30px;
        height: 30px;
        -webkit-transform: translate(-50%,-50%);
                transform: translate(-50%,-50%);
    }
    .loader {
        border: 1px solid #ffffff;
        border-radius: 50px;
    }
    .loader:after {
        position: absolute;
        top: -6px;
        right: -6px;
        bottom: -6px;
        left: -6px;
        content: '';
        -webkit-animation: spin 1s linear infinite;
                animation: spin 1s linear infinite;
        border: 6px solid transparent;
        border-top-color: #ffffff;
        border-radius: 50px;
        box-shadow: 0px 0px 0px 1px #ffffff;
    }
    @-webkit-keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
    @keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    body #splash_logo2 {
        opacity: 0;
    }

    body.appear-1 #splash_logo2 {
        opacity: 1;
    }

    body #splash_logo,
    body.appear #splash_logo {
        display: none;
    }

    body.appear-1 #splash_logo {
        display: block;
    }


    body.appear #splash_logo1,
    body.appear-1 #splash_logo1 {
        display: block;
    }

    #splash_logo1 {
        display: none;
    }

    body {
        overflow: hidden;
    }

    body.appear-2 {
        overflow: visible;
    }

    .openbtn,
    .btn_line {
        opacity: 0;
    }

    body.appear-2 .openbtn,
    body.appear-2 .btn_line {
        opacity: 1;
        animation: fadeIn3 0.8s forwards;
    }

    @keyframes fadeIn3 {
        0% {
            opacity: 0;
            transform: translateX(200px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .btn_line {
        position: fixed;
        right: 46px;
        bottom: 40px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        max-width: 220px;
        color: #ffffff;
        border: #ffffff 1px solid;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
    }

    body.appear-3 #spinner-box {
        display: none;
    }

    body.appear-3 #splash_logo3 {
        display: block;
    }
    #splash_logo3 {
        display: none;
    }
    #splash_logo3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #splash_logo3 img {
        width: 210px;
        height: 117px;
    }

    body.appear-3 {
        overflow: scroll;
    }

    body.appear-3 .btn_line,body.appear-3 .openbtn {
        opacity: 1;
    }
    a:hover {
        opacity: 0.7;
    }
}


















/*@mediaルールを使ったレスポンシブなCSSの記述例*/
@media screen and (max-width: 805px) {

    /*基本レイアウトはここから↓*/
    * {
        margin: 0;
        padding: 0;
        color: #000000;
    }

    body.mainblur .btn_line a {
        position: absolute;
        top: 1000px;
    }


    #top1 {
        display: none;
    }

    #logo1 img {
        width: 115px;
        height: 50px;
    }

    /* Loading背景画面設定　*/
    #splash1 {
        /*fixedで全面に固定*/
        width: 100%;
        height: 100vh;
        z-index: 999;
        background: #ffffff;
        text-align: center;
        color: #ffffff;
        background: #757575;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #nav-1 {
        display: none;
    }

    #splash-logo img {
        width: 140px;
        height: 60px;
    }


    body.appear #splash-logo1 img {
        width: 140px;
        height: 60px;
        animation: fadeout1 0.8s ease-out forwards;
    }

    #splash-logo {
        position: absolute;
        top: 340px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999999;
        animation: fadeout 0.8s ease-in forwards;
    }

    body.appear-1 #splash-logo1 img {
        width: 140px;
        height: 60px;
        animation: Zoom 0.5s linear forwards;
    }

    @keyframes fadeout {
        100% {
            opacity: 0.3;
        }

        0% {
            opacity: 1;
        }
    }


    @keyframes fadeout1 {
        100% {
            opacity: 1;
        }

        0% {
            opacity: 0.3;
        }
    }


    @keyframes Zoom {
        100% {
            transform: scale(1.1, 1.1)
        }

        0% {
            transform: scale(1, 1)
        }
    }

    #logo-area {
        position: relative;
        height: 700px;
    }



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

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

    @keyframes PageAnime {
        0% {
            transform-origin: left;
            transform: scaleY(1);
        }

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

        50.001% {
            transform-origin: right;
        }

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

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

        100% {
            opacity: 1;
        }
    }

    .fadein {
        opacity: 1;
        visibility: visible;
        transform: translate(0px, 0px);
    }


    @keyframes animationZoom1 {
        100% {
            transform: scale(1.1)
        }
    }

    @keyframes animationZoom1 {
        0% {
            transform: scale(0.9)
        }
    }

    .btn_line a {
        height: 22px;
        display: block;
        padding: 5px 10px;
        color: #ffffff;
        font-weight: 600;
        text-decoration: none;
    }


    .btn_line {
        position: fixed;
        right: 3%;
        bottom: 30px;
        display: flex;
        justify-content: space-around;
        align-items: center;
        margin: 0 auto;
        max-width: 220px;
        color: #ffffff;
        transition: all 0.3s;
        font-weight: 600;
        border: #ffffff 1px solid;
        text-decoration: none;
    }

    #before,
    #after {
        box-sizing: inherit;
        content: "";
        position: absolute;
        border: 2px solid transparent;
        width: 0;
        height: 0;
    }

    #before {
        top: 0;
        left: 0;
    }

    #after {
        bottom: 0;
        right: 0;
    }

    .btn_line a:hover #before,
    .btn_line a:hover #after {
        width: 100%;
        height: 100%;
    }


    #top1 {
        position: fixed;
        background-color: rgba(255, 255, 255, 0.7);
        width: 100%;
        top: 0;
        z-index: 999;
        padding: 10px 3%;
    }

    /*上に上がる動き*/
    #top1.UpMove {
        animation: UpAnime 1.5s forwards;
        transform: perspective(50px);
    }

    @keyframes UpAnime {
        from {
            opacity: 1;
            transform: translateY(0);
        }

        to {
            opacity: 0;
            transform: translateY(-100px);
        }
    }

    /*下に下がる動き*/
    #top1.DownMove {
        animation: DownAnime 1.0s forwards;
    }

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

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

    #nav-list ul {
        display: flex;
        list-style-type: none;
        justify-content: right;
        display: none;
        margin: 0;
    }

    #nav-list ul li a {
        text-decoration: none;
    }

    #top1-1 {
        width: 1080px;
        margin: 0 auto;
    }

    .solid1 {
        margin: 6px 12px 0 0;
    }

    #nav-1 {
        position: absolute;
        right: 385px;
        top: 0;
        margin: auto 0;
    }

    .fadeUpTrigger {
        opacity: 0;
    }

    #navi li a {
        font-size: 16px;
    }

    body {
        background-color: #ffffff;
        font-family: 'Zen Kaku Gothic New', sans-serif;
        font-size: 14px;
    }

    @font-face {
        font-family: 'Zen Kaku Gothic New';
        src: url(myfont/ZenKakuGothicNew-Light.ttf) format('ttf'),
            url(myfont/ZenKakuGothicNew-Light.woff) format(woff);
        display: swap;
    }

    header,
    footer,
    nav,
    a,
    body,
    div,
    h3,
    p {
        color: #000000;
        margin: 0;
        padding: 0;
    }


    #logo {
        height: auto;
        position: absolute;
        z-index: 9999;
        padding: 43px 3%;
        top: -6px;
    }

    #top_img img {
        display: none;
    }


    /*==ボタンのためのCSS*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        cursor: pointer;
        right: 3%;
        top: 30px;
        width: 50px;
        height: 50px;
    }

    /*xに変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #ffffff;
        width: 30px;
    }

    .openbtn span {
        left: 11px;
    }

    .openbtn span:nth-of-type(1) {
        bottom: 34px;
    }

    .openbtn span:nth-of-type(2) {
        bottom: 24px;
    }

    .openbtn span:nth-of-type(3) {
        bottom: 14px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    .openbtn.active span:nth-of-type(1) {
        top: 19px;
        left: 11px;
        transform: translateY(6px) rotate(-45deg);
        width: 30px;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .openbtn.active span:nth-of-type(3) {
        top: 31px;
        left: 11px;
        transform: translateY(-6px) rotate(45deg);
        width: 30px;
    }

    .openbtn.active {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        opacity: 0.7;
        right: 0;
        width: 50px;
        height: 50px;
        top: 30px;
        right: 3%;
    }

    .circle-bg.circleactive {
        background: #707070;
        width: 100%;
        opacity: 0.7;
        height: auto;
    }

    /*ナビゲーションのためのCSS*/
    /*アクティブになったエリア*/
    #g-nav {
        position: fixed;
        z-index: 1;
        top: 0;
        right: -120%;
        width: 240px;
        height: 100vh;
        background-color: rgba(00, 00, 00, 0.3);
        transition: all 0.6s;
        top: 0;
    }

    #g-nav.panelactive {
        right: 0;
        z-index: 1;
        position: fixed;
    }

    #g-nav li a.panelactive {
        color: #ffffff;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav-list {
        display: none;
        /*ナビの数が増えた場合縦スクロール*/
        position: absolute;
        z-index: 999;
        width: 100%;
        height: 110vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav.panelactive #g-nav-list {
        /*クラスが付与されたら出現*/
        display: block;
    }

    /*ナビゲーション*/
    #g-navi {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    #g-nav ul {
        opacity: 0;
        position: absolute;
        z-index: 999;
        top: 133px;
        list-style-type: none;
        text-align: right;
    }

    #g-nav ul li a {
        text-decoration: none;
        font-size: 23px;
        line-height: 2.0;
        color: #ffffff;
    }

    .solid {
        padding-right: 20px;
        height: 50px;
    }

    /*背景が出現後にナビゲーションを表示*/
    #g-nav.panelactive ul {
        opacity: 1;
    }

    /*背景が出現後にナビゲーションliを表示
レイアウトによって調整・削除可*/
    #g-nav.panelactove ul li {
        animation-name: gnaviAnime;
        animation-delay: 1s;
        /*0.2秒遅らせて出現*/
        animation-delay: .2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

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

        100% {
            opacity: 1;
        }
    }

    .circle-bg {
        position: fixed;
        z-index: 3;
        top: 32px;
        right: -120%;
        width: 35%;
        height: 80vh;
        background: #000000;
        transition: all 0.6s;
    }

    /*==ボタンのためのCSS*/
    .openbtn1 {
        position: absolute;
        z-index: 999;
        cursor: pointer;
        right: 8%;
        top: 10px;
        width: 50px;
        height: 50px;
    }

    /*xに変化*/
    .openbtn1 span {
        display: inline-block;
        transition: all .4s;
        /*アニメーションの設定*/
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background: #ffffff;
        width: 30px;
    }

    .openbtn1 span {
        left: 11px;
    }

    .openbtn1 span:nth-of-type(1) {
        bottom: 34px;
    }

    .openbtn1 span:nth-of-type(2) {
        bottom: 24px;
    }

    .openbtn1 span:nth-of-type(3) {
        bottom: 14px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    .openbtn1.active span:nth-of-type(1) {
        top: 19px;
        left: 11px;
        transform: translateY(6px) rotate(-45deg);
        width: 30px;
    }

    .openbtn1.active span:nth-of-type(2) {
        opacity: 0;
        /*真ん中の線は透過*/
    }

    .openbtn1.active span:nth-of-type(3) {
        top: 31px;
        left: 11px;
        transform: translateY(-6px) rotate(45deg);
        width: 30px;
    }

    .openbtn1.active {
        position: absolute;
        z-index: 9999;
        cursor: pointer;
        opacity: 0.7;
        right: 0;
        width: 50px;
        height: 50px;
        top: 30px;
        right: 3%;
    }

    .circle-bg.circleactive {
        background: #707070;
        width: 100%;
        opacity: 0.7;
        height: auto;
    }

    body.appear-2.mainblur {
        filter: grayscale(65%);
        overflow: hidden;
    }

    body.appear-2.mainblur .btn_line {
        left: 500px;
    }

    /*ナビゲーションのためのCSS*/
    /*アクティブになったエリア*/
    #g-nav1 {
        position: fixed;
        z-index: 1;
        top: 0;
        right: -120%;
        width: 240px;
        height: 100%;
        background-color: rgba(00, 00, 00, 0.3);
        transition: all 0.6s;
    }

    #g-nav1.panelactive {
        right: 0;
        z-index: 1;
        position: fixed;
    }

    #g-nav1 li a.panelactive {
        color: #ffffff;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav1-list {
        display: none;
        /*ナビの数が増えた場合縦スクロール*/
        position: absolute;
        z-index: 999;
        width: 100%;
        height: 110vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    #g-nav1.panelactive #g-nav-list {
        /*クラスが付与されたら出現*/
        display: block;
    }

    /*ナビゲーション*/
    #g-navi1 {
        padding: 0;
        margin: 0;
        width: 100%;
    }

    #g-nav1 ul {
        opacity: 0;
        position: absolute;
        z-index: 999;
        top: 133px;
        list-style-type: none;
        text-align: right;
    }

    #g-nav1 ul li a {
        text-decoration: none;
        font-size: 23px;
        line-height: 2.0;
        color: #ffffff;
    }


    /*背景が出現後にナビゲーションを表示*/
    #g-nav1.panelactive ul {
        opacity: 1;
    }

    /*背景が出現後にナビゲーションliを表示
レイアウトによって調整・削除可*/
    #g-nav1.panelactove ul li {
        animation-name: gnaviAnime;
        animation-delay: 1s;
        /*0.2秒遅らせて出現*/
        animation-delay: .2s;
        animation-fill-mode: forwards;
        opacity: 0;
    }

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

        100% {
            opacity: 1;
        }
    }

    .circle-bg {
        position: fixed;
        z-index: 3;
        top: 32px;
        right: -120%;
        width: 35%;
        height: 80vh;
        background: #000000;
        transition: all 0.6s;
    }

    /*ナビゲーションの固定*/
    nav {
        /*stickyで固定*/
        position: -webkit-sticky;
        /*Safari*/
        position: sticky;
        /*固定したい位置*/
        top: 20%;
    }

    img {
        width: 100%;
        height: auto;
    }

    #logo a img {
        width: 92px;
        height: 40px;
    }

    #logo a {
        display: inline-block;
        width: 92px;
        height: 40px;
    }

    #finish {
        display: none;
    }

    #finish_nav1 ul {
        display: flex;
        list-style-type: none;
        margin: 0;
        text-align: center;
        padding: 0;
        font-size: 14px;
        justify-content: center;
        line-height:
            1.5;
    }

    #finish_nav1 {
        text-align: center;
        margin: 0 auto;
    }

    #finish1 p {
        text-align: center;
        font-size: 14px;
    }

    #finish_nav1 ul li ::before {
        content: "";
    }


    #finish_nav1 ul li {
        text-align: center;
    }

    footer {
        padding: 40px 0;
        position: relative;
        z-index: 99;
    }

    .last_finish {
        margin-top: 16px;
    }

    #finish_nav1 ul li a {
        text-decoration: none;
    }

    #finish1 {
        width: 90%;
        margin: 0 auto;
    }

    .secand ::after {
        content: "|";
        margin: 7px;
    }

    #last1 img {
        width: 20px;
        height: 20px;
        margin-left: 14px;
    }

    .solid img {
        width: 30px;
        height: 30px;
        margin-top: 30px;
    }

    .openbtn a {
        display: inline-block;
        width: 50px;
        height: 50px;
    }

    #closebg {
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0px;
        z-index: 9;
    }

    #splash_logo2 img {
        width: 138px;
    }


    #splash_logo {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #splash_logo span {
        display: inline-block;
    }

    #splash_logo.active1 span:before {
        height: 0%;
    }



    .loader {
        position: absolute;
        top: 50%;
        left: 48%;
        width: 23px;
        height: 23px;
        -webkit-transform: translate(-50%,-50%);
                transform: translate(-50%,-50%);
    }
    .loader {
        border: 1px solid #ffffff;
        border-radius: 50px;
    }
    .loader:after {
        position: absolute;
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
        content: '';
        -webkit-animation: spin 1s linear infinite;
                animation: spin 1s linear infinite;
        border: 4px solid transparent;
        border-top-color: #ffffff;
        border-radius: 50px;
        box-shadow: 0px 0px 0px 1px #ffffff;
    }
    @-webkit-keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
    @keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
        }
        100% {
            -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }

    body.appear #splash_logo {
        display: block;
    }

    /* Loading背景画面設定　*/
    #splash1 {
        /*fixedで全面に固定*/
        width: 100%;
        height: 100vh;
        z-index: 999;
        background: #ffffff;
        text-align: center;
        color: #ffffff;
        background: #757575;
    }

    /* Loading画像中央配置　*/
    body.appear #splash_logo {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -90%);
        z-index: 999999999;
        animation: fadein 1.3s forwards;
        animation-delay: 0.5s;
    }

    body.appear-1 #splash_logo {
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -90%);
        opacity: 1;
        z-index: 9999999;
    }

    body.appear #splash_logo2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 90%);
        z-index: 999999999;
        opacity: 1;
        animation: fadein1 1.3s linear;
    }

    body.appear-1 #splash_logo2 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, 90%);
        z-index: 9999999999;
    }

    #splash {
        opacity: 0;
    }


    #splash_logo1 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-49%, -90%);
        z-index: 999999999;
    }

    #splash_logo1 span {
        display: inline-block;
    }

    #splash_logo img {
        height: 43px;
        width: 43px;
    }

    #splash_logo1 img {
        height: 43px;
        width: 43px;
    }


    #splash_logo1.active1 span:before {
        width: 0%;
    }

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

        100% {
            opacity: 1;
        }
    }

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

        100% {
            opacity: 1;
        }
    }


    #splash_logo1 span:before {
        content: "";
        position: absolute;
        right: -18%;
        bottom: 2px;
        width: 100px;
        height: 106%;
        background: #757575;
        transition: all 1.5s linear;
    }


    #splash_logo span:before {
        content: "";
        position: absolute;
        left: 42%;
        top: 2px;
        width: 100px;
        height: 106%;
        background: #757575;
        transition: all 1.5s linear;
    }


    #closebg {
        width: 100%;
        position: absolute;
        top: 0px;
        z-index: 9;
    }



    body #splash_logo2 {
        opacity: 0;
    }

    body.appear-1 #splash_logo2 {
        opacity: 1;
    }

    body #splash_logo,
    body.appear #splash_logo {
        display: none;
    }

    body.appear-1 #splash_logo {
        display: block;
    }


    body.appear #splash_logo1,
    body.appear-1 #splash_logo1 {
        display: block;
    }

    #splash_logo1 {
        display: none;
    }

    body {
        overflow: hidden;
    }

    body.appear-2 {
        overflow: visible;
    }

    .openbtn,
    .btn_line {
        opacity: 0;
    }

    body.appear-2 .openbtn,
    body.appear-2 .btn_line {
        opacity: 1;
        animation: fadeIn3 0.8s forwards;
    }

    @keyframes fadeIn3 {
        0% {
            opacity: 0;
            transform: translateX(200px);
        }

        100% {
            opacity: 1;
            transform: translateX(0);
        }
    }

    body.appear-2.mainblur #splash_logo2,body.appear-2.mainblur #splash_logo1,body.appear-2.mainblur #splash_logo {
        z-index: 0;
    }

    #splash_area {
        position: relative;
        height: 100vh;
    }

    .btn_line.DownMove {
        border: #212121 1px solid;
    }

    .btn_line a.DownMove {
        color: #212121;
    }
    #splash_logo3 {
        display: none;
    }

    body.appear-3 #spinner-box {
        display: none;
    }

    body.appear-3 #splash_logo3 {
        display: block;
    }
    #splash_logo3 {
        display: none;
    }
    #splash_logo3 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #splash_logo3 img {
        width: 143px;
        height: 79px;
    }

    body.appear-3 {
        overflow: scroll;
    }

    body.appear-3 .btn_line,body.appear-3 .openbtn {
        opacity: 1;
    }
    body.appear-3.mainblur {
        filter: grayscale(65%);
        overflow: hidden;
    }

    #spinner-box {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: transparent;
      }
      
      #loading {
        position: relative;
        z-index: 999;
        color: #eee;
      }
    
      #circle-border {
        width: 100px;
        height: 100px;
        padding: 3px;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: linear-gradient(0deg, rgba(75, 75, 75, 0) 33%, rgb(196 196 196) 100%);
        animation: spin .8s linear 0s infinite;
        position: absolute;
      }
      
      #circle-core {
        width: 100%;
        height: 100%;
        background-color: #757575;
        border-radius: 50%;
      }
}


@media (max-width: 430px) {
    .loader {
        left: 51%;
    }
}

@media (max-width: 375px) {
    #splash_logo1 {
        transform: translate(-50%, -90%);
    }
}