@charset "utf-8";
:root {
    /* JavaScriptからヘッダーの高さを設定するためのCSSカスタムプロパティ */
    --header-height: 0px;
}

.l-auto-local-header__title__link::before,
.l-auto-local-header__title__link::after{
  display: none !important;
}

/* --- スクロールスナップコンテナのスタイリング --- */
#scroll-snap-container {
    height: calc(100dvh - 148px); /* ビューポートの高さの70% */
    overflow-y: scroll;
    position: relative;

    /* ヘッダーと重ならないようにスナップ位置を調整 */
    /*scroll-padding-top: var(--header-height);*/
}
@media screen and (max-width: 768px) {
    #scroll-snap-container {
        height: calc(100dvh - 113px);
    }
}

#scroll-snap-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#scroll-snap-container::-webkit-scrollbar {
    display: none;
}

/* JSによってこのクラスが付与された時だけスナップを有効にする */
#scroll-snap-container.is-snap-active {
    scroll-snap-type: y mandatory;
}

.snap-section {
    height: 100%; /* コンテナと同じ高さにする */
    scroll-snap-align: start; /* 各セクションの上端でスナップ */
    scroll-snap-stop: always; /* 常に1セクションずつスナップ */
    position: relative;

    /* 見た目のためのスタイル */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #333;
}

.snap-section-txt{
    max-width: 980px;
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 1;
}

.snap-section04-bg .snap-section-txt p{
    font-size: 0.875rem;
    width: fit-content;
    opacity: 0;
    transition: 0s;
    transition-delay:0s;
}
@media screen and (max-width: 768px) {
    .snap-section04-bg .snap-section-txt p{
        font-size: 0.875rem;
    }
}

.snap-section04-bg .snap-section03-txt p{
    transform: scaleX(0);
    transform-origin: top left;
    padding:  0 ;
}

.snap-section04-bg .snap-section03-txt p span{
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
        transition-property: clip-path;
        transition-timing-function: ease;
        transition-duration: 0s;
        transition-delay: 0s;
}

.active03 .snap-section04-bg .snap-section03-txt p{
    color: #fff;
    opacity: 1;
    transition: .5s;
    transition-delay:0.75s;
    transform: scaleX(1);
    background: #000;
}

.active03 .snap-section04-bg .snap-section03-txt p span {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition-duration: 1s;
    transition-delay: 1.25s;
}

.snap-section04-bg .snap-section04-txt p{
    transform: scaleX(0);
    transform-origin: top left;
    padding: 0 ;
        width: max-content;
}
.active04 .snap-section04-bg .snap-section04-txt p{
    color: #414141;
    opacity: 1;
    transition: .5s;
    transition-delay:0.75s;
    transform: scaleX(1);
    background: #fff;
}

.snap-section04-bg .snap-section04-txt p span{
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition-property: clip-path;
    transition-timing-function: ease;
    transition-duration: 0s;
    transition-delay: 0s;
}

.active04 .snap-section04-bg .snap-section04-txt p span {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition-duration: 1s;
    transition-delay: 1.25s;
}

.snap-section04-bg .snap-section05-txt p{
    width: max-content;
    transform: scaleX(0);
    transform-origin: top left;
    padding: 0 ;
}
.active05 .snap-section04-bg .snap-section05-txt p{
    color: #fff;
    opacity: 1;
    transition: .5s;
    transition-delay:0.75s;
    transform: scaleX(1);
    background: #000;
}

.snap-section04-bg .snap-section05-txt p span{
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition-property: clip-path;
    transition-timing-function: ease;
    transition-duration: 0s;
    transition-delay: 0s;
}

.active05 .snap-section04-bg .snap-section05-txt p span {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition-duration: 1s;
    transition-delay: 1.25s;
}

.snap-section04-bg .snap-section06-txt p{
    width: max-content;
    transform: scaleX(0);
    transform-origin: top left;
    padding: 0 ;
}
.active06 .snap-section04-bg .snap-section06-txt p{
    color: #414141;
    opacity: 1;
    transition: .5s;
    transition-delay:0.75s;
    transform: scaleX(1);
    background: #fff;
}

.snap-section04-bg .snap-section06-txt p span{
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition-property: clip-path;
    transition-timing-function: ease;
    transition-duration: 0s;
    transition-delay: 0s;
}

.active06 .snap-section04-bg .snap-section06-txt p span {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition-duration: 1s;
    transition-delay: 1.25s;
}

.is-visible .snap-section07-txt{
        opacity: 1;
    transition: .5s;
    transition-delay:0.75s;
}

.plusone p{
    font-size: 1rem;
    font-family: "A1ゴシック R JIS2004", "A1 Gothic R JIS2004";
    line-height: 2rem;
    color: #fff;
    margin-bottom: 2.25rem;
}

.snap-section01-cont{
    opacity: 0;
    transition: 2s;
    position: absolute;
    top: calc(50% + 74px);
    left: 50%;
    transform: translate(-50% , -50%);
}
@media screen and (max-width: 768px) {
    .snap-section01-cont{
        width: 210px;
    }
}

.snap-section01-cont.active{
    opacity: 1;
}

.snap-section01-cont p{
    color: #000;
}

.snap-section03-txt .snap-section-txtbox{
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 70%;
    transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
    .snap-section03-txt .snap-section-txtbox{
            left: 50%;
    }
}

.snap-section04-txt .snap-section-txtbox,
.snap-section05-txt .snap-section-txtbox,
.snap-section06-txt .snap-section-txtbox{
    display: inline-block;
    position: absolute;
    bottom: 10%;
    left: 10%;
}

@media screen and (max-width: 768px) {
    .snap-section04-txt .snap-section-txtbox,
    .snap-section05-txt .snap-section-txtbox,
    .snap-section06-txt .snap-section-txtbox{
        top: 50%;
        bottom: unset;
        left: 50%;
        transform: translate(-50%, -50%);
    }
}

.snap-section07-txt {
  width: 100%;
  height: 100%;
  text-align: center;
  overflow-y: scroll;
  padding: 10vh 30px;
  transform: unset;
  position: unset; /* 子要素の絶対位置指定の基準とする */
   -ms-overflow-style: none;
    scrollbar-width: none;
   /*  scrollbar-color: #ccc rgba(0,0,0,0.2);
    background: rgba(0,0,0,0.2);*/
}

.snap-section07-txt{
    opacity: 0;
        display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    /*position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);*/
}

/*
.snap-section07-txt::-webkit-scrollbar {
    display: none;
}
*/
.snap-section07-txt p {
    font-size: 0.875rem;
    width: fit-content;
    margin: 0 auto 2.125rem;
    padding: 0 ;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition-property: clip-path;
    transition-timing-function: ease;
    transition-duration: 0s;
    transition-delay: 0.5s;
    background: #000;
}
@media screen and (max-width: 768px) {
    .snap-section07-txt p {
        margin: 0 auto 1.5rem;
    }
}
.snap-section07-txt p:nth-child(1),
.snap-section07-txt p:nth-child(3),
.snap-section07-txt p:nth-child(5),
.snap-section07-txt p:nth-child(7),
.snap-section07-txt p:nth-child(9){
    margin: 0 auto 4.25rem;
}
@media screen and (max-width: 768px) {
    .snap-section07-txt p:nth-child(1),
    .snap-section07-txt p:nth-child(3),
    .snap-section07-txt p:nth-child(5),
    .snap-section07-txt p:nth-child(7),
    .snap-section07-txt p:nth-child(9){
        margin: 0 auto 3rem;
    }
}
.snap-section07-txt p:last-child {
    margin-bottom: 0;
    background: none;
}

.snap-section07-txt p span{
    display: inline-block;
    clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0% 100%);
    transition-property: clip-path;
    transition-timing-function: ease;
    transition-duration: 0s;
    transition-delay: 1s;
}

/* 表示されているPタグのスタイル */
.is-visible .snap-section07-txt p.visible {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition-duration: 1s;
}

.is-visible .snap-section07-txt p.visible span{
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transition-duration: 1s;
}


@media screen and (min-width: 769px) {
    .snap-section07-txt a{
        transition: 0.3s;
    }
    .snap-section07-txt a:hover{
        opacity: 0.7;
    }
}
@media screen and (max-width: 768px) {
    .snap-section07-txt a{
        max-width: 1.5rem;
        display: block;
    }
    .snap-section07-txt a img{
        width: 100%;
        height: auto;
    }
}

/*--------------------------------------------------------
背景
--------------------------------------------------------*/
.bg_area{
    width: 100%;
    height: 101dvh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

/*↓　.snap-section02-bg　↓*/
.snap-section02-bg{
    transform: scale(0.8);
    opacity: 0;
    transition: 1s;
    filter:blur(100px);
    position: relative;
}
.snap-section02-bg.active{
    opacity: 1;
    transform: scale(1);
    filter:blur(0px);
}

.plusone_logowrap{
    max-width: 123px;
    position: absolute;
    top:calc(50% + 72px);
    left: 50%;
    transform: translate(-50%,-50%);
    transition: 1s;
    transition-delay: 0;
    z-index: 1;
    opacity: 0;
}
@media screen and (max-width: 768px) {
    .plusone_logowrap{
        top:calc(50% + 50px);
    }
}

.active .plusone_logowrap{
    transition-delay: 1.5s;
    opacity: 1;
}
.plusone_logowrap *{
    vertical-align: bottom;
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px) {
    .plusone_logowrap{
        max-width: 104px;
    }
}

.img_ani{
    height: 100dvh;
    padding-top: 148px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.img_ani::before,.img_ani::after{
    content: "";
    width: 100%;
    height: calc(100dvh - 148px);
    position: absolute;
    top: 148px;
    left: 0;
}
@media screen and (max-width: 768px) {
    .img_ani::before,.img_ani::after{
        height: calc(100dvh - 113px);
        top: 113px;
    }
}

.img_ani::before{
    background: url(../images/bg_02.webp) center center no-repeat;
    background-size: cover;
}
.img_ani::after{
    background: url(../images/bg_02_b.webp) center center no-repeat;
    background-size: cover;
    opacity: 0;
    animation: fade 10s linear 2s infinite;
}
@media screen and (max-width: 768px) {
    .img_ani::before{
        background: url(../images/bg_02_sp.webp) center center no-repeat;
        background-size: cover;
    }
    .img_ani::after{
        background: url(../images/bg_02_b_sp.webp) center center no-repeat;
        background-size: cover;
    }
}

/*↑　.snap-section02-bg　↑*/

.snap-section03-bg{
    width: 100%;
    height: 100%;
    background: url(../images/bg_03.webp) center center no-repeat;
    background-size: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    filter:blur(100px);
    transition: 0.5s;
    transform: scale(1.5);
    z-index: -5;
}
@media screen and (max-width: 768px) {
    .snap-section03-bg{
        background: url(../images/bg_03_sp.webp) center center no-repeat;
        background-size: cover;
    }
}
.active03 .snap-section03-bg{
    opacity: 1;
    filter:blur(0);
    transform: scale(1);
}
.active04 .snap-section03-bg{
    opacity: 1;
    filter:blur(0);
    transform: scale(1);
}

#shutter-wrap{
    width: 100%;
    height: calc(100% - 148px);
    position: absolute;
    top: 148px;
    left: 0;
    z-index: 0;
}
@media screen and (max-width: 768px) {
    #shutter-wrap{
        width: 100%;
        height: calc(100% - 113px);
        position: absolute;
        top: 113px;
        left: 0;
        z-index: 0;
    }
}

#shutter-wrap .shutter{
    width: 100%;
    position: absolute;
    z-index: 9;
}

#shutter-wrap .shutter.shutter-top{
    background-image: linear-gradient(#000000 75%, transparent);
    top: 0;
    left: 0;
}
#shutter-wrap .shutter.shutter-bottom{
    background-image: linear-gradient(0deg, #000000 75%, transparent);
    bottom: 0;
    left: 0;
}


.snap-section04-bg{
    background:#000 url(../images/bg_03.webp) center center no-repeat;
    background-size: cover;
        width: 100%;
    height: 100%;
        opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
        z-index: -4;
}
.active03 .snap-section04-bg{
    background:#000 url(../images/bg_03.webp) center center no-repeat;
    background-size: cover;
    opacity: 1;
    transition: 0s;
    transition-delay: 0.25s;
}
@media screen and (max-width: 768px) {
    .active03 .snap-section04-bg{
        background:#000 url(../images/bg_03_sp.webp) center center no-repeat;
        background-size: cover;
    }
}
.active03 .snap-section04-bg::after{
    content: "";
    width: 100%;
    height: 100%;
    background:#000 url(../images/bg_03_b.webp) center center no-repeat;
    background-size: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    animation: fade 15s linear 0.5s infinite;
}
@media screen and (max-width: 768px) {
    .active03 .snap-section04-bg::after{
    background:#000 url(../images/bg_03_b_sp.webp) center center no-repeat;
    background-size: cover;
    }
}

.active04 .snap-section04-bg{
    background:#000 url(../images/bg_04.webp) center center no-repeat;
    background-size: cover;
    opacity: 1;
    transition: 0s;
    transition-delay: 0.25s;
}
@media screen and (max-width: 768px) {
    .active04 .snap-section04-bg{
        background:#000 url(../images/bg_04_sp.webp) center center no-repeat;
        background-size: cover;
    }
}
.active04 .snap-section04-bg::before{
    content: "";
    width: 100%;
    height: 100%;
    background:#000 url(../images/bg_04_b.webp) center center no-repeat;
    background-size: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    animation: fade 15s linear 0.5s infinite;
}
@media screen and (max-width: 768px) {
    .active04 .snap-section04-bg::before{
    background:#000 url(../images/bg_04_b_sp.webp) center center no-repeat;
    background-size: cover;
    }
}



.active05 .snap-section04-bg{
    background:#000 url(../images/bg_05.webp) center center no-repeat;
    background-size: cover;
        opacity: 1;
        transition-delay: 0.25s;
}
@media screen and (max-width: 768px) {
    .active05 .snap-section04-bg{
        background:#000 url(../images/bg_05_sp.webp) center center no-repeat;
        background-size: cover;
    }
}
.active05 .snap-section04-bg::after{
    content: "";
    width: 100%;
    height: 100%;
    background:#000 url(../images/bg_05_b.webp) center center no-repeat;
    background-size: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    animation: fade 15s linear 0.5s infinite;
}
@media screen and (max-width: 768px) {
    .active05 .snap-section04-bg::after{
            background:#000 url(../images/bg_05_b_sp.webp) center center no-repeat;
    background-size: cover;
    }
}

.active06 .snap-section04-bg{
    background:#000 url(../images/bg_06.webp) center center no-repeat;
    background-size: cover;
        opacity: 1;
        transition-delay: 0.25s;
}
@media screen and (max-width: 768px) {
    .active06 .snap-section04-bg{
        background:#000 url(../images/bg_06_sp.webp) center center no-repeat;
        background-size: cover;
    }
}
.active06 .snap-section04-bg::before{
    content: "";
    width: 100%;
    height: 100%;
    background:#000 url(../images/bg_06_b.webp) center center no-repeat;
    background-size: cover;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    animation: fade 15s linear 0.5s infinite;
}
@media screen and (max-width: 768px) {
    .active06 .snap-section04-bg::before{
        background:#000 url(../images/bg_06_b_sp.webp) center center no-repeat;
        background-size: cover;
    }
}
.active07 .snap-section04-bg{
background:#000 url(../images/bg_07.webp) center center no-repeat;
    background-size: cover;
        opacity: 1;
        transition-delay: 0.25s;
}
@media screen and (max-width: 768px) {
    .active07 .snap-section04-bg{
        background:#000 url(../images/bg_07_sp.webp) center center no-repeat;
        background-size: cover;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    25% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fade02 {
  0% { opacity: 0; }
  65% { opacity: 0; }
  70% { opacity: 1; }
  95% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes shutter {
    0% {
        height: 0;
    }
    50% {
        height: 50vh;
    }
    100% {
        height: 0;
    }
}

.backBtn-area{
    padding: 3rem 0;
    text-align: center;
    background: #000;
}

/*loading*/
:root {
  --loader-size: 150px;
  --text-color: #414141; /* Fill data-text */
  --color-one: #6481FC;
  --color-two: #587F98;
  --color-three: #5FE0FF;
  --color-four: #6B7EE5;
  --light-size: 3px;
}

#Loading-wrap{
    width: 100%;
    height: calc(100dvh - 148px);
    background: #fff;
    position: fixed;
    top: 148px;
    left: 0;
    transition: all 1s;
    z-index: 99;
}
@media screen and (max-width: 768px) {
    #Loading-wrap{
        height: calc(100dvh - 113px);
            top: 113px;
    }
}

#Loading-wrap.loaded {
  opacity: 0;
  visibility: hidden;
}

.Loader {
  width: var(--loader-size, 150px);
  min-width: 110px;
  overflow: visible;
  /*margin: 20px;*/
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(255, 255, 255, 0.4), 0 0 25px rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
.Loader::after {
    text-align: center;
    content: attr(data-text);
    color: var(--text-color, #414141);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    font-size: 0.75rem;
    letter-spacing: 3px;
    white-space:nowrap;
  }
  
  /* Keep ratio on resize*/
  .Loader::before {
    content: '';
    float: left;
    padding-top: 100%;
  }

.Loader__Circle {
  display: block;
  position: absolute;
  border-radius: 50%;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  opacity: 0.8;
  mix-blend-mode: overlay;
  /*filter: brightness(100%);*/
  animation-name: SpinAround;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-fill-mode: both;
  animation-timing-function: linear;
}
  
  .Loader__Circle:nth-of-type(1) {
    box-shadow:
      inset 1px 0 0 1px var(--color-one, #2979FF),
      var(--light-size, 4px) 0 0 var(--light-size, 4px) var(--color-one, #2979FF);
    animation-direction: reverse;
    transform-origin: 49.6% 49.8%;
  }
  
  
  .Loader__Circle:nth-of-type(2) {
    box-shadow:
      inset 1px 0 0 1px var(--color-two, #FF1744),
      var(--light-size, 4px) 0px 0 var(--light-size, 4px) var(--color-two, #FF1744);
    transform-origin: 49.5% 49.8%;
  }  
  
  .Loader__Circle:nth-of-type(3) {
    box-shadow:
      inset 1px 0 0 1px var(--color-three, #FFFF8D),
      0 var(--light-size, 4px) 0 var(--light-size, 4px) var(--color-three, #FFFF8D);
    transform-origin: 49.8% 49.8%;
  }  
  
  .Loader__Circle:nth-of-type(4) {
    box-shadow:
      inset 1px 0 0 1px var(--color-four, #B2FF59),
      0 var(--light-size, 4px) 0 var(--light-size, 4px) var(--color-four, #B2FF59);
    transform-origin: 49.7% 49.7%;
  }



@keyframes SpinAround {
  0% {
    transform: rotate(0);
  }
  
  100% {
    transform: rotate(-360deg);
  }
}

.border-ani{
    position: absolute;
    left: 50%;
    bottom: 5vh;
    transform: translateX(-50%);
}
.border-ani::before{
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    background-color: #414141;
    margin: auto;
}

.loaded .border-ani::before{
    animation: scroll 2s 3 forwards;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}