@charset "UTF-8";

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: Futura;
    /* background-color: #FEDB3C; */
}

video {
    filter: drop-shadow(0px 0px #fff);
    outline: none;
    border: none;
}


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

.loading-logo {
    width: 80px;
    position: absolute;
}

.loading {
    position: relative;
    height: 60px;
    width: 60px;
}

.loading-item {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #20689C;
    opacity: 0.5;
    position: absolute;
    top: 50%;
    left: 50%;
    /** HTML内で付与したindex番号を取得して角度を計算。 */
    --angle: calc(360deg / 20 * var(--index));
    /** コサイン関数とサイン関数で座標位置を計算。 */
    --x: calc(cos(var(--angle)) * 50px);
    --y: calc(sin(var(--angle)) * 50px);
    translate: calc(var(--x) - 50%) calc(var(--y) - 50%);
    --duration: 1.4s;
    --delay: calc(var(--duration) * var(--index) / 20);
    animation: animate var(--duration) var(--delay) infinite ease-in-out;
}

@keyframes animate {
    50% {
        opacity: 1;
        transform: scale(1.6);
    }
}

.no-scroll {
    overflow: hidden;
}

/* ハンバーガーメニュー */


/* ***********************************************************
ハンバーガーメニューの中身
* *********************************************************** */
.open #global-nav {
    z-index: 998;
    visibility: visible;
}

#global-nav {
    visibility: hidden;
    position: fixed;
    top: 0;
    overflow-y: auto;
    color: #20689C;
    width: 100%;
    height: 85%;
    text-align: center;
}

#global-nav img {
    border: none;
}

.nav-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-title-line {
    background-color: #20689C;

    width: 1.5em;
    height: 2px;
    margin-right: 0.5em;
}

#global-nav ul {
    margin: 0 10px;
    list-style: none;
    text-align: left;
}

.nav-btn{
    cursor: pointer;
}

.nav-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

#global-nav a {
    color: #20689C;
    text-decoration: none;
    display: block;
}

.balloon {
    position: relative;
    display: inline-block;
    background: #20689C;
    border-radius: 5px;
    color: #fff;
}

.balloon:before {
    content: "";
    border: 10px solid transparent;
    border-top: 10px solid #20689C;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

/* ***********************************************************
メニュー開くと出てくる円
  * *********************************************************** */


#nav-bg {
    z-index: 997;
    width: 100vw;
    height: 100vw;
    margin-left: 50vw;
    margin-top: 50vh;
    top: -50vw;
    left: -50vw;

    display: block;
    position: fixed;
    background: #fff;
    border-radius: 50%;
    transition: all 1s ease-out;
    backface-visibility: hidden;
    transform: scale(0);

}

.open #nav-bg {
    transform: scale(3);
    transition: all 1s ease-out;

}

/* ***********************************************************
2本線
  * *********************************************************** */
#nav-toggle {
    display: block;
    position: fixed;
    cursor: pointer;
    z-index: 999;
    color: #3E3A39;
}

#nav-toggle div {
    position: relative;
}

#nav-toggle span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #3E3A39;
    left: 0;
    transition: 0.5s ease-in-out;
}

#nav-toggle span:nth-of-type(1) {
    top: 15px;
}

/* クリック時に斜めになる */
.open #nav-toggle span:nth-of-type(1) {
    transform: translateY(-7.5px) rotate(-30deg);
}

.open #nav-toggle span:nth-of-type(2) {
    transform: translateY(7.5px) rotate(30deg);
}

/* 画面下のバー */
.progress {
    width: 100vw;
    position: fixed;
    margin-top: 100vh;
}

.bar {
    display: block;
    width: 100%;
    background-color: #FEDB3C;

    transform: scaleX(0);
    transform-origin: center left;
    transition: transform 0.6s ease-out;
}

/* フルページスクロール */

.fullPageScroll {
    width: 100%;
    height: 100vh;
    scroll-snap-type: y mandatory;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;

    /*スクロールバー非表示（IE・Edge）*/
    -ms-overflow-style: none;
    /*スクロールバー非表示（Firefox）*/
    scrollbar-width: none;
}

.fullPageScroll::-webkit-scrollbar {
    display: none;
}

.section {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: always;

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

    overflow-x: hidden;
}

.section1,
.section6 {
    background-color: #FEDB3C;
    color: #3E3A39;
}

.section2,
.section3,
.section4,
.section5 {
    background-color: #0585D4;
    color: #fff;
}

.fade-in {
    opacity: 0;
    transform: translate(0, 0);
    transition-delay: 0.6s;
    transition-duration: 0.8s;
    /* transform: translate(0, 10px); */
}

.fade-in.active {
    opacity: 1;
    /* transform: translate(0, 0); */
}


/* 各卓紹介ページ */

#taku-intro.appear {
    z-index: 999;
    visibility: visible;;
}

#taku-intro {
    visibility: hidden;
    position: fixed;
    top: 0;
    background-color: #FEDB3C;
    width: 100%;
    height: 100vh;
    overflow-y: auto;

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

    text-align: left;
}

.intro-contents {
    width: 80vw;
}

.escape {
    display: block;
    position: fixed;
    z-index: 1000;
    cursor: pointer;
    color: #3E3A39;
}

.escape div {
    position: relative;
}

.escape span {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #3E3A39;
    left: 0;
}

.escape span:nth-of-type(1) {
    top: 15px;
    transform: translateY(-7.5px) rotate(-30deg);
}

.escape span:nth-of-type(2) {
    transform: translateY(7.5px) rotate(30deg);
}

.h-pos{
    display: flex;
    justify-content: center;
    align-items: center;
}

.v-pos{
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.introduction{
    display: flex;
}

.site {
    width: 100%;
    background-color: #3E3A39;
    padding: 10px 0;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
}

.site a {
    color: #fff;
    text-decoration: none;
}

.l-triangle,
.r-triangle {
    cursor: pointer;
}

.r-triangle {
    transform: rotate(180deg);
}

.taku-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.taku-btn img {
    cursor: pointer;
    transform-origin: center bottom;
}

.taku-btn img.scale {
    transform: scale(1.3) translateY(-3px);
    transition-duration: 0.7s;
}


.buttons {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.intro-btn {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    cursor: pointer;
}

.allow{
    position: absolute;
}

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

    position: absolute;
}

.scroll p {
    writing-mode: vertical-rl;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 6px;
}

.scroll-line1 {
    width: 2px;
    background-color: #D9D9D9;
    overflow: hidden;
}

.scroll-line2 {
    width: 100%;
    height: 100%;
    background-color: #3E3A39;

    animation: moveLine 3s infinite cubic-bezier(0.75, 0, 0.25, 1);
}

@keyframes moveLine {
    0%,
    10% {
        transform: translateY(-100%);
    }

    50% {
        transform: translateY(0);
    }

    90%,
    100% {
        transform: translateY(100%);
    }
}

.nav-title,
.title,
.sns,
.kyousan {
    font-weight: 700;
    letter-spacing: 0.2em;
}

.nav-text,
.text {
    font-weight: 550;
    letter-spacing: 0.1em;
    line-height: 1.8em;
}

.mini-text {
    text-align: right;
}

/* カルーセル */
.swiperContainer {
    position: relative;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;

    transform: scale(0.7) !important;
    transition: 1.5s;
}

.swiper-slide img {
    width: 100%;
    border-radius: 5px;
    object-fit: contain;
}

.swiper-slide-active {
    transform: scale(1) !important;
}

.swiper-scrollbar {
    display: flex;
    align-items: center;

    width: 80vw !important;
    background-color: #D9D9D9;
    left: 50% !important;
    transform: translateX(-50%);
}

.swiper-scrollbar-drag {
    background-color: #fff;
}


.link {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.sns-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* sp版 */
@media screen and (max-width:767px) {
    .pc {
        display: none;
    }

    #global-nav {
        padding: 60px 0;
    }

    #nav-toggle,
    .escape {
        width: 40px;
        height: 15px;

        top: 50px;
        right: 40px;
    }

    .nav-title {
        font-size: 20px;
        margin: 10px 0;
        margin-right: 70px;
    }

    .nav-text {
        font-size: 16px;
    }

    .sp-line {
        background-color: #20689C;
        width: 80vw;
        height: 1px;
        margin: 20px 0 20px 10vw;
    }

    .balloon {
        padding: 8px 15px;
    }

    #taku-logo {
        width: 200px;
        height: auto;
        margin: 0 20px 50px 20px;
    }

    .l-triangle,
    .r-triangle {
        width: 20px;
    }

    .taku-btn img {
        width: 50px;
        margin: 10px;
    }

    .progress,
    .bar {
        height: 15px;
        top: -15px;
    }

    .info-top,
    .info-last {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .logo {
        width: 160px;
        margin-bottom: 20px;
    }

    .intro-btn{
        margin: 8px;
    }

    .btn-logo{
        width: 100px;
    }

    .allow {
        width: 20px;
    }

    .date {
        margin-top: 40px;
        width: 260px;
    }

    .scroll {
        right: -50px;
        bottom: 0;
    }

    .scroll-line1 {
        height: 50px;
    }

    .title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .text {
        font-size: 14px;
    }

    .mini-text {
        font-size: 9px;
    }

    .illust img {
        width: 80vw;
        max-width: 400px;
        margin-top: 30px;
    }

    .swiper {
        height: 200px;
        /* padding-top: 30px; */
    }

    .swiper-slide {
        width: 200px;
    }

    .swiper-scrollbar {
        height: 3px !important;
    }

    .swiper-scrollbar-drag {
        height: 5px;
    }

    .info-last img {
        width: 80vw;
        max-width: 300px;
    }

    .sns,
    .kyousan {
        font-size: 9px;
        margin: 20px 15px;
    }

    .sns p,
    .kyousan p {
        margin-bottom: 3px;
    }

    .sns-icon img {
        width: 30px;
        margin: 2px 5px;
    }

    .kyousan img {
        width: 90px;
    }
}

/* pc版 */
@media screen and (min-width:768px) {
    .sp {
        display: none;
    }

    #global-nav {
        padding: 50px 0;
    }

    #nav-toggle,
    .escape {
        width: 60px;
        height: 15px;

        top: 60px;
        right: 60px;
    }

    .pc-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .pc-nav-contents {
        width: 48vw;
        padding: 20px 0;
    }

    .nav-title {
        font-size: 40px;
        margin: 10px 0;
        margin-right: 40px;
    }

    .nav-text {
        font-size: 24px;
    }

    .pc-line {
        background-color: #20689C;
        width: 3px;
        height: 450px;
        margin-top: 20px;
    }

    .balloon {
        padding: 10px 20px;
    }

    #taku-logo{
        width: 300px;
        margin: 0 0 50px 20px;
    }
    
    .introduction video{
        transition: opacity 0.5s;
    }
    
    .introduction:hover video{
        opacity: 0;
    }

    .back{
        background-image: url(./img/taku_icon/back/ORE.svg);
        background-repeat: no-repeat;
        background-size: 75%;
        background-position: 35px 125px;

    }

    .l-triangle,
    .r-triangle {
        width: 30px;
    }

    .r-triangle {
        margin-left: 30px;
    }

    .taku-btn img {
        width: 8vw;
        max-width: 100px;
        margin: 10px;
    }

    .progress,
    .bar {
        height: 20px;
        top: -20px;
    }

    .info-top,
    .info-last {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .info-top {
        margin-bottom: 50px;
    }

    .logo {
        height: 130px;
        border-right: solid #3E3A39 2px;
        padding-right: 20px;
        margin-right: 20px;

    }

    .date {
        height: 105px;
    }

    .intro-btn video {
        width: 15vw;
        max-width: 300px;
    }

    .allow {
        width: 15%;
        max-width: 50px;
        margin-right: 10%;
        margin-bottom: 10%;
    }

    .scroll {
        right: 0;
        bottom: 0;
    }

    .scroll-line1 {
        height: 100px;
    }

    .title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .text {
        font-size: 18px;
    }

    .mini-text {
        font-size: 14px;
    }


    .illust img {
        width: 70vw;
        max-width: 700px;
        margin-top: 20px;
    }

    .swiper {
        height: 350px;
        padding-top: 50px;
    }

    .swiper-slide {
        width: 400px;
        height: 280px;
    }

    .swiper-scrollbar {
        height: 10px !important;
    }

    .swiper-scrollbar-drag {
        height: 15px;
    }

    .info-last img {
        width: 40vw;
        max-width: 550px;
    }

    .sns,
    .kyousan {
        font-size: 20px;
        margin: 50px 45px;
    }

    .sns p,
    .kyousan p {
        margin-bottom: 5px;
    }

    .sns-icon img {
        width: 50px;
        margin: 10px 15px;
    }

    .kyousan img {
        width: 200px;
    }
}