@charset "UTF-8";

/* 筑紫フォントは以下3行をコピペ */
/* font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
font-weight: 300;
font-style: normal; */

/* クレーフォントは以下3行をコピペ */
/* font-family: "fot-klee-pro", sans-serif;
font-weight: 500;
font-style: normal; */

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

html {
    /* scroll-behavior: smooth; */
    overflow-x: hidden;
}

body {
    width: 100%;
    background-color: #EDE8E8;
    font-size: 100%;
    line-height: 1;
    text-align: center;
    overflow-x: hidden;
}

.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
}

nav {
    unicode-bidi: isolate;
}

/* ローディング画面 */
/* .loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 999;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader video {
    height: 70%;
    position: absolute;
} */

/* ヘッダー */

/*sp*/
@media screen and (max-width:767px) {

    header {
        position: fixed;
        width: 100%;
        height: 7%;
        padding: 0 5%;

        overflow: hidden;
        z-index: 3;

        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #202C2B;
    }

    header .left {
        position: relative;
        width: 100%;
        height: 100%;
        top: 40%;
        text-align: left;
    }

    header .left img {
        height: 45%;
    }

    /* ハンバーガーメニュー */
    .hamburger-menu {
        width: 40px;
        height: 40px;
        top: 13%;
        position: relative;
        border: none;
        background: transparent;
        appearance: none;
        padding: 0;
        cursor: pointer;
        z-index: 9999;
    }

    .hamburger-menu__bar {
        display: inline-block;
        width: 25px;
        height: 1px;
        background: #EDE8E8;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        transition: 0.5s;
        background-color: #EDE8E8;
    }

    .hamburger-menu__bar:first-child {
        top: 35%;
    }

    .hamburger-menu__bar:nth-child(2) {
        top: 50%;
    }

    .hamburger-menu__bar:last-child {
        top: 65%;
    }

    .hamburger-menu--open .hamburger-menu__bar {
        top: 50%;
    }

    .hamburger-menu--open .hamburger-menu__bar:first-child {
        transform: translateX(-50%) translateY(-50%) rotate(45deg);
    }

    .hamburger-menu--open .hamburger-menu__bar:last-child {
        transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    }

    .hamburger-menu--open .hamburger-menu__bar:nth-child(2) {
        display: none;
    }

    /* ハンバーガーのナビゲーション↓*/
    .navigation {
        width: 100%;
        height: 100vh;
        background: #202C2B;
        position: fixed;
        top: 7%;

        z-index: 9998;
        margin-left: -5vw;

        display: none;
    }

    .navigation_frame {
        padding: 70px 10px 0px 10px;
        display: flex;
        justify-content: center;
        text-align: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .navigation_list {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 15%;
        padding-top: 15px;

        text-align: center;
    }

    .navigation a {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #EDE8E8;

        margin: 0;
        display: inline-block;
        font-size: 30px;
        margin-bottom: 50px;
    }

    .navigation_ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    /* snsアイコン */
    .navigation-img {
        width: 100%;
        display: flex;
        justify-content: center;
        text-align: center;
        gap: 80px;
    }

    .navigation-img img {
        height: 2rem;
    }

    .main-logo {
        height: 75vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        overflow: hidden;
    }

    .main-logo img {
        width: 90%;
        max-width: 70vh;
        position: absolute;
    }

    .summary {
        width: 100%;
        height: 650px;
        background: #202C2B;

        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .top {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #EDE8E8;
    }

    .summary-right,
    .summary-center,
    .summary-left {
        height: 550px;
        text-align: left;
    }

    .summary-right {
        font-size: 16px;
        letter-spacing: 0.6em;
        line-height: 1.4em;

        opacity: 0;
    }

    .summary-center {
        font-size: 52px;
        margin-right: 0.5em;
        margin-left: 0.5em;
        letter-spacing: 0.7em;
    }

    .summary-left {
        font-size: 16px;
        letter-spacing: 0.6em;
        line-height: 1.6em;

        opacity: 0;
    }

    .contents {
        width: 100%;
        height: 80vh;
        padding: 0 5%;
        background: linear-gradient(180deg, #9A1E23 0%, #6D2120 100%);
    }

    .con_top {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding-top: 30px;
    }

    .line1,
    .line2 {
        width: 300px;
        height: 7px;
        color: #BB8A32;
    }

    .line1 {
        border-top: solid 1px;
        border-bottom: solid 2px;
        margin-bottom: 10px;
    }

    .line2 {
        border-top: solid 2px;
        border-bottom: solid 1px;
        margin-top: 10px;
    }

    .movie,
    .eizo {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #EDE8E8;
    }

    .movie {
        font-size: 16px;
        letter-spacing: 1em;
    }

    .eizo {
        font-size: 45px;
    }

    .movie-container {
        width: 100%;
        /* max-width: 70vh; */
        height: 50vw;
        /* max-height: 50%; */

        margin-top: 40px;
    }

    .circle {
        display: inline-block;
        width: 235px;
        height: 122px;
        border-radius: 50% / 0 0 100% 100%;
        background: #6D2120;

        margin-top: -1px;
    }

    .koikoi {
        width: 100%;
        height: 500px;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;

        padding-bottom: 120px;

        position: relative;
    }

    .back {
        height: 500px;
        display: flex;
        position: absolute;
        margin-top: 120px;
        overflow: hidden;
    }

    .back_r,
    .back_l {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 52px;
        color: #000000;
        opacity: 12%;

        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;

        letter-spacing: 0.8em;
    }

    .back_r {
        padding-left: 80vw;
    }

    .h1 {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 50px;
        margin-top: 50px;
    }

    .h2,
    .h3 {
        font-family: "fot-klee-pro", sans-serif;
        font-weight: 500;
        font-style: normal;
    }

    .h2 {
        font-size: 24px;
    }

    .h3 {
        font-size: 15px;
    }

    .introduce {
        width: 100%;
        height: 990px;
        background: #202C2B;

        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        color: #EDE8E8;

        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .intro_logo {
        height: 64px;
    }

    .rect {
        width: 220px;
        height: 220px;
        background-color: #8D2A29;
        border: #BB8A32 1px solid;

        font-family: "fot-klee-pro", sans-serif;
        font-weight: 500;
        font-style: normal;
        color: #EDE8E8;

        margin-top: 30px;
        margin-bottom: 30px;

        position: relative;

        display: flex;
        justify-content: space-between;
        flex-direction: column;
    }

    .intro-top {
        width: 100%;
        display: flex;
        margin-top: 4%;
    }

    .intro-text {
        width: 100%;
        display: flex;
        text-align: end;
        justify-content: flex-end;
        flex-direction: column;
    }

    #head-logo {
        max-width: auto;
        max-height: 45px;
    }

    #head {
        font-size: 19px;
    }

    #ex {
        font-size: 10px;
        margin-top: 1em;
    }

    #geiko-name {
        font-size: 8px;
    }

    #picture {
        max-width: 100%;
        max-height: 65%;
        object-fit: contain;
    }

    .vec1,
    .vec2 {
        width: 140px;
        position: absolute;
    }

    .vec1 {
        right: 45%;
        bottom: 50%;
    }

    .vec2 {
        left: 50%;
        bottom: 10%;
    }

    .introduce p {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .btn-container span {
        font-size: 10px;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        text-orientation: upright;
    }

    .btn_trigger img {
        width: 55px;
        max-height: 60px;
    }

    .btn-container {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
    }

    .chart_button {
        height: 80px;
        margin-top: 30px;
    }

    /* フッター */
    footer {
        position: relative;
        width: 100%;
        height: 220px;
        margin-top: 0;

        padding: 10% 70px;
        background-color: #9A1E23;
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;

        z-index: 2;
    }

    footer .top {
        width: 100%;
    }

    footer .top p {
        font-family: "fot-klee-pro", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 21px;
        color: #EDE8E8;
    }

    footer .sns-icon-container {
        width: 100%;
        display: flex;
        text-align: center;
        justify-content: center;
        margin-top: 35px;
        gap: 70px;
    }

    footer .sns-icon-container img {
        height: 35px;
    }

    footer .bottom {
        position: absolute;
        width: 100%;
        height: 20px;
        bottom: 0;

        background: #EDE8E8;

        font-family: "fot-klee-pro", sans-serif;
        font-weight: 500;
        font-style: normal;
        color: #202C2B;
    }

    /* summaryのアニメーション */

    .fadeInDown {
        -webkit-animation-fill-mode: both;
        -ms-animation-fill-mode: both;
        animation-fill-mode: both;
        -webkit-animation-duration: 1.5s;
        -ms-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-name: fadeInDown;
        animation-name: fadeInDown;
        visibility: visible !important;
    }

    @-webkit-keyframes fadeInDown {
        0% {
            opacity: 0;
            -webkit-transform: translateY(80px);
        }

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

    @keyframes fadeInDown {
        0% {
            opacity: 0;
            -webkit-transform: translateY(80px);
            -ms-transform: translateY(80px);
            transform: translateY(80px);
        }

        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
            transform: translateY(0);
        }
    }

    .pc {
        display: none;
    }

}

/* PC,tablet */
@media screen and (min-width:768px) {
    body {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    header,
    main,
    footer {
        display: none;
    }

    .pc {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;

    }

    .pc img {
        width: 600px;
        opacity: 0.3;
    }

    .pc span {
        font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
        font-weight: 300;
        font-style: normal;
        font-size: 50px;
        color: #202C2B;

        position: absolute;
    }
}