@charset "utf-8";
html {
  scroll-behavior: smooth;

}
* {
  margin:0;
  padding:0;
}

:root {
  --color-pink-01:#df99a8;
  --color-pink-02:#F396A0;
  --color-gray-01:#FAF8F8;
  --color-gray-02:#F5F5F5;
  --color-red-01:#DE0816;
  --color-black-01:#000;
  --border-radius-01:0 48px 0 0;
  --border-radius-02:0 48px 0 48px;
  --padding-TB:72px 0;
  --padding-LR:0 4.5%;
  /* --color-blue-01:#00A7E8;
  --color-blue-02:#eefaff; */
  --f-jose:"Inter", sans-serif;
  --bg-grad-01:linear-gradient(90deg, rgba(22, 119, 241, 1) 0%, rgba(71, 4, 87, 1) 50%, rgba(234, 63, 100, 1) 100%);
  --section-padding-TB:64px 0;
  --loading-logo-widht:190px;
}

body {
  font-family:"Inter","Noto Sans JP", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, Verdana, Arial, "MS P Gothic", "MS Pゴシック", sans-serif;
  /* font-family:"ヒラギノ角ゴ ProN W6", "Hiragino Kaku Gothic ProN W6", HiraKakuProN-W6, "ヒラギノ角ゴ W3 JIS2004", "Hiragino Kaku Gothic W3 JIS2004"; */
  line-height:1.9;
  font-size:1.5rem;
  font-weight:400;
  position: relative;
  background:#091020;
  color:#fff;
}

.bg-block {
  width:100%;
  height:100vh;
  /* background:#0d1630; */
  background:no-repeat url(/wp-content/themes/NeExT/imgs/bg-body2.webp) 0 0 / cover;
  position:fixed;
  top:0;
  left:0;
  z-index:-1;
}

img {
  vertical-align:middle;
}


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


div,section {
  position:relative;
}

a {
  color:#fff;
  text-decoration:underline;
  /* cursor: none !important; */
}

a:link {
  color:#fff;
  text-decoration:underline;
}

a:visited {
  color:#fff;
  text-decoration:underline;
}

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

a:active {
  text-decoration:underline;
}

img {
  max-width: 100%;
  height: auto !important;
  vertical-align:bottom;
  font-style: italic;
  background-repeat: no-repeat;
  background-size: cover;
  shape-margin: 0.75rem;
}


/*
a.hover-img img {
  transition:.5s;
  opacity:1;
}

a.hover-img img:hover {
  opacity:0.6;
}
*/

.hd {
  display:none;
}

@media only screen and (max-width: 896px) {
  /* hd */
  .hd {
    width:100%;
    position:fixed;
    top:0;
    left:0;
    overflow:hidden;
    z-index:5;
    opacity: 0;
    visibility: hidden;
    display:block;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  .hd__inner {
    max-width:470px;
    display:flex;
    justify-content:space-between;
    margin:auto;
  }

  .hd__inner h1 {
    width:200px;
  }

  .hd__inner .hd__border {
    position:relative;
    height:3px;
    width: calc(100% - 200px);
    transform:translateX(0px);
    background: linear-gradient(90deg, rgba(22, 119, 241, 1) 0%, rgba(71, 4, 87, 1) 50%, rgba(234, 63, 100, 1) 100%);
  }

  .hd__inner .hd__border:before {
    display:block;
    position:absolute;
    content:'';
    height:3px;
    width:4px;
    background:#1677F1;
    left:-4px;
}
}







        /* --- ローディング画面全体の親 --- */
        #loading-screen {
            position: fixed;
            top: 0; left: 0;
            width: 100%; height: 100svh;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;

        }

        /* 背景：10枚のパネルコンテナ */
        .shutter-container {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100svh;
            display: flex;
        }

        .bg-shutter {
            flex: 1;
            height: 100%;
            background-color:#091020;
            /* 0.4秒かけてフェードアウト */
            transition: opacity 0.4s ease-in-out;
            opacity: 1;
        }

        /* ロード完了時：パネルを順に透明にする */
        #loading-screen.loaded .bg-shutter {
            opacity: 0;
        }

        /* 2.5秒で完結させるための時間差設定 (0.03秒刻み) */
        .shutter:nth-child(1)  { transition-delay: 0.00s; }
        .shutter:nth-child(2)  { transition-delay: 0.03s; }
        .shutter:nth-child(3)  { transition-delay: 0.06s; }
        .shutter:nth-child(4)  { transition-delay: 0.09s; }
        .shutter:nth-child(5)  { transition-delay: 0.12s; }
        .shutter:nth-child(6)  { transition-delay: 0.15s; }
        .shutter:nth-child(7)  { transition-delay: 0.18s; }
        .shutter:nth-child(8)  { transition-delay: 0.21s; }
        .shutter:nth-child(9)  { transition-delay: 0.24s; }
        .shutter:nth-child(10) { transition-delay: 0.27s; }

        /* ロゴ部分のコンテナ */
        .logo-wrapper {
            position: relative;
            z-index: 10;
            text-align: center;
            transition: opacity 0.4s ease;
        }
        
        #loading-screen.loaded .logo-wrapper {
            opacity: 0;
        }

        .loading-logo {
            width: var(--loading-logo-widht);
            max-width: 80vw;
            height: auto;
            display: block;
            /* 登場を少し早めて2.5秒の枠に合わせる */
            animation: elegantIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
        }

        .underline {
            width: 0;
            height: 1px;
            background-color: #fff;
            margin: 15px auto 0;
            /* 線が伸びる演出も早めに開始 */
            animation: expandLine 0.6s ease-out 0.8s forwards;
        }

        @keyframes elegantIn {
            0% { opacity: 0; transform: translateY(10px); filter: blur(5px); }
            100% { opacity: 1; transform: translateY(0); filter: blur(0); }
        }

        @keyframes expandLine {
            to { width: 100%; }
        }

        /* --- メインコンテンツ --- */
        #main-content {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
        }
.entryMessage-logo {
  max-width:300px;
  margin-bottom:16px;
}

.loading-39 {
    width:200px;
  margin-bottom:8px;
  animation:flashanime .8s infinite;
}

.loading-txt {
  text-align:center;
  font-size:1.3rem;
  padding-top:6px;
  letter-spacing:1px;
  font-family:var(--f-jose);
  font-weight:600;
  /* animation:flashanime .8s infinite; */

}


@keyframes flashanime {
  0% {
    opacity:.3;
  }
  50% {
    opacity:1;
  }
  100% {
    opacity:.3;
  }
}



/* thanks */

.loading-txt {
  color:#fff;
}

.loading-39 {
  max-width:var(--loading-logo-widht);
  height:auto;
}

















@keyframes rotation1{
  0%{ height:100vh;}
  100%{height:0vh;background: #000; }
}

.anim01 {
  animation:0.4s ease-in rotation1 forwards;
}



.hover-opa {
  position: relative;
  display: inline-block;
  overflow: hidden;

  transform: scale(1);
  transition: transform .4s ease, opacity .4s ease;
}

.hover-opa::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    #00e5ff,
    #ff00cc,
    #7b61ff,
    #00e5ff
  );
  background-size: 300% 300%;
  mix-blend-mode: color;
  opacity: 0;
  transition: opacity .4s ease;
  animation: blendMove 4s linear infinite;
  pointer-events: none;
}

.hover-opa:hover {
  transform: scale(0.95);
}

.hover-opa:hover::before {
  opacity: .8;
}

@keyframes blendMove {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}




@media only screen and (max-width: 896px) {
  .hover-opa:hover {
    transform:scale(1);
    opacity:1;
  }

.hover-opa::before {
  display:none;
}

}




main {
  /* width:480px; */
  width:470px;
  position:relative;
  background:#fff;
  margin:auto;
  overflow:hidden !important;
  box-shadow: 0px 3px 8px -5px #000;
  /* color:#000; */
}




@media only screen and (max-width: 896px) {
  main {
    width:100%;
  }
}


.fv {
  width: 100%;
  overflow: hidden; /* 動画がはみ出るのを防ぐ */
}

.fv__inner {
  width:100%;
  height:100%;
  position:absolute;
  z-index:2;
}

.fv__inner__Block {
  width:100%;
  height:100%;
}

.fv-partsBlock-01 {
  position:absolute;
  top:5%;
  z-index:1;
}

.fv-partsBlock-02 {
  position:absolute;
  bottom:6%;
  z-index:1;
}

img.tp1 {
  padding:0 5%;
  display:block;
}

img.tp2 {
  padding:0 5.4%;
  display:block;
}

img.tp3 {
  padding:0 6%;
  display:block;
}

img.tp4 {
  padding:0 6%;
  display:block;
}

.fv-video {
  width: 100%;
  height: auto;
  display: block;
}

.fix-btn {
  position:fixed;
  width:100%;
  bottom:10px;
  left:0;
  z-index:5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.hd.is-show,
.fix-btn.is-show {
  opacity: 1;
  visibility: visible;
}

.fix-btn__inner {
  max-width: 470px;
  margin: auto;
  padding: 0 10px;
}

.fix-btn__inner {
  max-width:470px;
  margin:auto;
  padding:0 10px;
}

.shadow-pulse {
  animation: shadow-pulse 1s ease-in-out infinite alternate;
}

@keyframes shadow-pulse {
  0% {
    box-shadow: 0 0 0 rgba(0, 223, 13, 0.4);
  }
  100% {
    box-shadow: 0 0 10px #00df0d, 0 0 15px rgba(0, 223, 13, 0.7);
  }
}


.concept {
  background: #042655;
  background: linear-gradient(180deg, rgba(4, 38, 85, 1) 0%, rgba(0, 0, 0, 1) 11%);
  padding:var(--padding-TB);
  overflow:hidden;
}

img.concept-img-blue-cicle {
  position:absolute;
  bottom:20px;
  left:0;
  z-index:1;
  animation:scale15 6s infinite;
}

@keyframes scale15 {
  0% {
    transform:translateX(-35%) translateY(30%) scale(1.2);
  }
  50% {
    transform:translateX(-35%) translateY(30%) scale(2);
  }
  100% {
    transform:translateX(-35%) translateY(30%) scale(1.2);
  }
}


.concept__title {
  margin-bottom:32px;
}

.concept__inner {
  padding:var(--padding-LR);
  margin-top:40px;
  text-align:center;
  /* padding-bottom:80px; */
  position:relative;
  z-index:2;
}

.concept__inner h3 {
  margin-bottom:12px;
  padding:0 10px;
}

.concept__inner p {
  font-size:1.7rem;
  line-height:2;
  margin-bottom:18px;
  text-align:center;
  font-weight:700;
  font-feature-settings: "palt";
}


.notes01 {
  color:#fff;
  font-size:1rem;
  padding:3px 4% 0;
  text-align:right;
  font-weight:300;
  position:relative;
  top:-13px;
}

@media screen and (max-width: 896px) {
  .concept__inner p {
    font-size:1.7rem;
  }
}

.txt-slide-txt {
  display: flex;
  overflow:hidden;
  width: 100%;
  position: relative;
  z-index: 5;

}
.txt-slide-txt ul {
  padding: 4px 0 !important;
  animation: flowing 8s linear infinite;
  font-size: 3.3rem;
  line-height: 1;
  transform: translateX(100%);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  font-feature-settings: "palt";
}

.txt-slide-txt ul li {
  /* 1. 文字自体を透明にする */
  color: transparent; 
  display: inline;
  font-weight: bold;

  /* 2. 外側に1pxの白い線を引く */
  -webkit-text-stroke: 1px #fff; 
}

@keyframes flowing {
  0% { transform:translateX(0); }
  100% { transform:translateX(-100%); }
}

.concept-btn {
  margin-top:40px;
  padding:0 4%;
  position:relative;
  z-index:3;
}

.gradient-background {

}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.prod {
  padding:var(--padding-TB);
  background:#282828;
}


.prod__title {
  margin-bottom:32px;
}

img.img-fourte {
  padding:0 2%;
  display:block;
  margin-bottom:28px;
}

.prod__inner {
  position:relative;
  z-index:2;
  padding:0 4%;
  text-align:center;
}


.prod__inner p {
  font-size:1.7rem;
  line-height:2;
  margin-bottom:18px;
  text-align:center;
  font-weight:600;
  font-feature-settings: "palt";
}

.video-container {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: 1px solid #fff;
  border-radius:2px;
  overflow:hidden;
  box-shadow: 0px 0px 15px 0px #000000;
}

img.bg-bl-t {
  width:100%;
  position:absolute;
  top:0;
  left:0;
}

img.bg-bl-b {
  width:100%;
  position:absolute;
  bottom:0;
  left:0;
}

.benefits {
  padding:var(--padding-TB);
  background: #0D064D;
  background: linear-gradient(90deg, rgba(13, 6, 77, 1) 0%, rgba(0, 0, 0, 1) 100%);
  overflow:hidden;
}

.benefits__inner {
  z-index:2;
}

.bene__title {
  margin-bottom:24px;
}

img.benefits-img-blue-cicle-01 {
  position:absolute;
  top:-100px;
  right:-50%;
  z-index:1;
  animation:scale15-02 6s infinite;
}

img.benefits-img-blue-cicle-02 {
  position:absolute;
  top:25%;
  left:-50%;
  z-index:1;
  animation:scale15-02 6s infinite;
}

img.benefits-img-blue-cicle-03 {
  position:absolute;
  top:55%;
  right:-50%;
  z-index:1;
  animation:scale15-02 6s infinite;
}

img.benefits-img-blue-cicle-04 {
  position:absolute;
  bottom:-2%;
  left:-50%;
  z-index:1;
  animation:scale15-02 6s infinite;
}

@keyframes scale15-02 {
  0% {
    transform:scale(1.2);
  }
  50% {
    transform:scale(2);
  }
  100% {
    transform:scale(1.2);
  }
}

/* 矢印全体のコンテナ */
.scroll-indicator {
display: flex;
flex-direction: column;
align-items: center;
/* gapは0にしておきます */
gap: 0;
}

/* 矢印単体のスタイル */
.arrow {
width: 30px; /* ご指定の横幅 */
height: 16px; /* ご指定の縦幅 */
opacity: 0;
animation: arrowFade 2.5s infinite ease-in-out;
}

/* 2つ目以降の矢印を上に引き上げて間隔を狭める */
.arrow:nth-child(n+2) {
margin-top: -2px; /* ★ここの数値を調整して、お好みの詰まり具合にしてください */
}

/* 各矢印のアニメーションをずらす（ディレイ） */
.arrow:nth-child(1) { animation-delay: 0.0s; }
.arrow:nth-child(2) { animation-delay: 0.2s; }
.arrow:nth-child(3) { animation-delay: 0.4s; }
.arrow:nth-child(4) { animation-delay: 0.6s; }
.arrow:nth-child(5) { animation-delay: 0.8s; }

/* アニメーションの定義：上から下へ流れるフェードイン・アウト */
@keyframes arrowFade {
0% {
  opacity: 0;
  transform: translateY(-5px); /* 少し上から登場 */
  }
  30% {
  opacity: 1; /* パッと表示 */
  transform: translateY(0);
  }
  60% {
  opacity: 0; /* 下にいきながら消える */
  transform: translateY(3px);
  }
  100% {
  opacity: 0;
  }
}

/**/




/* 矢印単体のスタイル */
.arrow-02 {
width: 30px; /* ご指定の横幅 */
height: 16px; /* ご指定の縦幅 */
opacity: 0;
animation: arrowFade02 2.5s infinite ease-in-out;
}

/* 2つ目以降の矢印を上に引き上げて間隔を狭める */
.arrow-02:nth-child(n+2) {
margin-top: -6px; /* ★ここの数値を調整して、お好みの詰まり具合にしてください */
}

/* 各矢印のアニメーションをずらす（ディレイ） */
.arrow-02:nth-child(1) { animation-delay: 0.0s; }
.arrow-02:nth-child(2) { animation-delay: 0.2s; }
.arrow-02:nth-child(3) { animation-delay: 0.4s; }
.arrow-02:nth-child(4) { animation-delay: 0.6s; }

/* アニメーションの定義：上から下へ流れるフェードイン・アウト */
@keyframes arrowFade02 {
  0% {
  opacity: 0;
  transform: translateY(-5px); /* 少し上から登場 */
  }
  30% {
  opacity: 1; /* パッと表示 */
  transform: translateY(0);
  }
  60% {
  opacity: 0; /* 下にいきながら消える */
  transform: translateY(3px);
  }
  100% {
  opacity: 0;
  }
}


.flow {
  background:#282828;
  padding:var(--padding-TB);
  overflow:hidden;
}

.flow__inner {
  position:relative;
  z-index:2;
  margin-bottom:40px;
}

.flow__title {
  margin-bottom:16px;
}

.scroll-indicator.flow-scroll {
  transform:translateX(22%);
}

.support {
  padding:var(--padding-TB);
  background: #0D064D;
  background: linear-gradient(90deg, rgba(13, 6, 77, 1) 0%, rgba(0, 0, 0, 1) 100%);
  overflow:hidden;
}

.support__inner {
  z-index:2;
}

.support__title {
  margin-bottom:24px;
}

.support__inner figure {
  text-align:center;
  font-feature-settings: "palt";
  margin-bottom:32px;
}

.support__inner figure:last-child {
  margin-bottom:0;
}

.support__inner figure img {
  padding:0 1.5%;
}

.support__inner figure h3 {
  padding:12px 0 0;
  font-size:2.7rem;
  font-weight:600;
  line-height:1.3;
  text-align:center;
}

.support__inner figure p {
  font-size:1.8rem;
  font-weight:500;
  line-height:1.7;
  text-align:center;
  padding:8px 0 6px;
}

img.support-img-blue-cicle-01 {
  position:absolute;
  top:-100px;
  right:-50%;
  z-index:1;
  animation:scale15-02 6s infinite;
}

img.support-img-blue-cicle-02 {
  position:absolute;
  top:25%;
  left:-50%;
  z-index:1;
  animation:scale15-02 6s infinite;
}

img.support-img-blue-cicle-03 {
  position:absolute;
  top:55%;
  right:-50%;
  z-index:1;
  animation:scale15-02 6s infinite;
}

img.support-img-blue-cicle-04 {
  position:absolute;
  bottom:-2%;
  left:-50%;
  z-index:1;
  animation:scale15-02 6s infinite;
}

.joint {
  background:#000;
}

.joint__inner {
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 1) 57%, rgba(0, 45, 180, 1) 100%);
  padding-bottom:24px;
}

.joint__inner-pa {
  padding:0 4.5% 4px;
}

img.img-joinus-02 {
  width:50%;
  display:block;
  margin:0 auto 0;
  z-index:2;
  top:-16px;
  position:relative;
}

img.img-joinus-03 {
  padding:0 1.5%;
}


.joint__inner p.txt01 {
  text-align:center;
  font-size:1.7rem;
  font-weight:600;
  line-height:2;
  font-feature-settings: "palt";
  padding:16px 0 12px;
}

.faq {
background: #1f1f1f;
background: linear-gradient(180deg, rgba(31, 31, 31, 1) 92%, rgba(0, 45, 180, 1) 100%);
  padding:var(--padding-TB);
  overflow:hidden;
}

.faq__inner {
  position:relative;
  z-index:2;
  padding:0 4.5%;
}

.faq__title {
  margin-bottom:16px;
}


.faq-item {
  margin-bottom:24px;
}

/* 質問エリア（ボタン）のスタイル */
.faq-question {
display: flex;
align-items: center;
width: 100%;
padding: 20px 18px;
background: linear-gradient(90deg, #00004d 0%, #003399 100%); /* 画像に寄せたグラデーション */
color: #ffffff;
border: none;
outline: none;
cursor: pointer;
text-align: left;
position: relative;
border-radius:4px;

}

/* 「Q」の文字 */
.faq-q-icon {
font-size: 3rem;
font-weight: bold;
margin-right:18px;
line-height: 1;
}

/* 質問のタイトルテキスト */
.faq-q-text {
font-size: 1.8rem;
font-weight: 600;
line-height: 1.4;
padding-right: 40px; /* 矢印と被らないための余白 */
}

/* 右側の矢印（CSSの擬似要素で表現） */
.faq-arrow-toggle {
position: absolute;
right: 32px;
top: 48%;
width: 20px;
height: 20px;
transform: translateY(-50%) rotate(45deg); /* 最初は下向きか上向きか、画像は上向き（開いた状態）ですが最初は閉じている（下向き）想定にします */
transition: transform 0.3s ease;
}

/* 矢印の線（太さ2px） */
.faq-arrow-toggle::after {
content: "";
position: absolute;
width: 100%;
height: 100%;
border-right: 2px solid #ffffff;
border-bottom: 2px solid #ffffff;
top: 0;
left: 0;
}

/* アコーディオンが開いたとき（activeクラス）の矢印の回転 */
.faq-question.active .faq-arrow-toggle {
transform: translateY(-20%) rotate(-135deg);
}

/* 回答エリアのコンテナ（最初は非表示、アニメーション用） */
.faq-answer {
max-height: 0;
overflow: hidden;

color: #ffffff;
transition: max-height 0.3s ease-out;
}

/* 回答エリアの内側（パディング用） */
.faq-answer-inner {
padding:16px 5%;
font-size: 1.5rem;
line-height: 1.8;
}



























/*


.faq {
  padding-bottom:32px;
}

.faq__inner {
  padding:0 5%;
}

.faq__tittle {
  margin-bottom:10px;
  position:relative;
}

.img-faq-00 {
  position:absolute;
  z-index:2;
  bottom:0;
  left:0;
}

dl.faq-Q {
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:var(--color-black-01);
  padding:14px 6px 10px;
  margin-bottom:5px;
}

dl.faq-Q dt {
  width:12%;
  text-align:center;
}

dl.faq-Q dt img {
  transform:translateY(-2px);
}

dl.faq-Q dd {
  width:86%;
  color:#fff;
  font-size:1.6rem;
  font-weight:700;
  line-height:1.3;
}

dl.faq-A {
  display:flex;
  justify-content:space-between;
  padding:10px 6px;
  margin-bottom:20px;
}

dl.faq-A dt {
  width:9%;
  text-align:center;
  padding-left:7px;
}

dl.faq-A dd {
  width:86%;
  line-height:1.7;
  font-size:1.4rem;
}
*/




.form-block {
  padding-top:64px;
}

.ft.toppadding {
  padding-bottom:100px;
}

.ft {
  padding:48px 6% 24px;
  font-size:1.4rem;
  background:#0D1426;
  color:#fff;
}

.ft a {
  text-decoration:none;
  transition:.4s;
  color:#fff;
}

.ft a:hover {
  color:#ff0;
}

.ft__company {
  text-align:center;
  font-size:1.4rem;
  letter-spacing:0px;
  color:#fff;
   background:var(--color-pink-01);
  font-weight:400;
  margin-bottom:8px;
  width:32%;
  margin:0 auto 16px;
  padding:2px 0;
}


.ftLogo {
  width:70%;
  text-align:center;
  padding:0 0 18px;
  margin:0 auto 0;
}

.ftLogo img {
  width:160px;
}


.ft__list {
  display:flex;
  justify-content:center;
  gap:16px;
  padding:16px 0;
  border-top:1px solid #fff;
}

.ft__copy {
  text-align:center;
  font-size:1.1rem;
  padding-top:24px;
  letter-spacing:1px;
}


.gheader,
.gheaderLower {
  height:0;
  overflow:hidden;
}

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

  
.gheader {
    width: 100%;
    height:auto;
    background:#fff;
    display:block;

    position:relative;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index:5;
    box-shadow: 0px 0px 6px 0px #eee;
}

.gheaderLower {
    width: 100%;
    height:auto;
    background:#fff;
    position: fixed;
    top:-1px;
    left: 0;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    z-index:5;
    box-shadow: 0px 3px 8px -5px #b0b0b0;
}

.gheader__inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:6px 8px 8px 12px;
}

.gheader__inner h1 {
  padding:4px 0;
  width:30%;
}

.gheader__inner a.gheader__btn {
  display:block;
  width:40%;
  padding-top:2px;
}

}



@media only screen and (max-width: 480px) {
.gheader__inner {
  padding:5px 8px 8px 8px;
}
  
.gheader__inner h1 {
  width:40%;
  padding:2px 0 0 0;

}

.gheader__inner a.gheader__btn {
  width:50%;
}
}


/*
sideNav ********/
.sideNav {
  width:22vw;
  position:fixed;
  top:80px;
  left:32px;
}

.sideNav h1 {
  max-width:240px;
  width:100%;
  margin:0 0 24px;
}
.sideNav__logo {

  margin-bottom:32px;
}

.sideNav__qr {
  width:114px;
}

.sideNav__list {
  margin-bottom:32px;
}

.sideNav__list li {
  margin-bottom:1.1vh;
  text-align:center;
}



.sideNav li.sideNav__txtLink a {
  transition:.3s;
  display:block;
  padding:14px 14px;
  font-weight:500;
  letter-spacing:2px;
  font-size:1.1vw;
  line-height:1;
  letter-spacing:0;
  text-decoration:none;
  text-align:left;
  transition:1s;
font-weight:500;
font-style: normal;
background: #ffffff;
background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(199, 199, 199, 1) 100%);
color:#000;
}




.sideNav li.sideNav__txtLink a:hover {
  opacity:.5;
}




@media only screen and (max-width: 896px) {
  .sideNav {
    display:none !important;
  }



}



@media only screen and (max-width: 480px) {
.sideNav {
  display:none;
}
}


.lower__titleLogo {
  width:160px;
  display:block;
  margin:0 auto 16px;
}

/*
特定商取引法に基づく表記 *************/

.lower__title {
  text-align:center;
  font-size:2.2rem;
  padding:80px 0 80px;
  font-weight:700;
  margin-bottom:32px;
  letter-spacing:2px;
  background:url(/wp-content/themes/NeExT/imgs/bg-body.webp) 0 0 / cover;
  color:#fff;
}

@media only screen and (max-width: 480px) {
  .lower__title {
    padding:110px 0 64px;
  }
}



.lower__title:after {
  content: attr(data-en);
  font-size:1.1rem;
  display:block;
  letter-spacing:2px;
}

.summary__item {
  margin-bottom:24px;
}

.summary__item dt {
  font-size:1.5rem;
  font-weight:bold;
  border-bottom:1px solid #ccc;
  margin-bottom:6px;
  padding-bottom:6px;
}

.summary__item dd {
  font-size:1.3rem;
}

.lower__body {
  padding:0 6%;
  font-size:1.3rem;
}

.red-midashi {
  color:var(--color-blue-01);
  font-weight:600;
  font-size:1.4rem;
}


.normal__list {
  margin:0;
}

.normal__list li {
  position: relative;
  padding-left: 1.4rem;
  line-height:1.4;
  margin-bottom:8px;
}

.normal__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
}


.normal__list-02 {
  margin:0;
}

.normal__list-02 li {
  position: relative;

}

.normal__list-02 li::before {
  content: "";
  position: absolute;
  left: 0;
  font-size: 1.4rem;
}

.ppheading {
  background:url(/wp-content/themes/NeExT/imgs/bg-body.webp) 0 0;
  color:#fff;
  padding:12px 10px;
  letter-spacing:1px;
  font-size:1.5rem;
  line-height:1;
  margin-bottom:16px;
}


/*
エントリー受付中 *************/
.entryMessage {
  width:100%;
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  display: none;

  font-weight:700;
}

.entryMessage-logo {
  width:240px;
  text-align:center;
  margin:0 auto 10px;
  animation:flash 1.5s infinite;
}
/*
@media only screen and (max-width: 896px) {
.entryMessage-logo {
  width:40%;
}
}

@media only screen and (max-width: 480px) {
.entryMessage-logo {
  width:66%;
}
}
*/
.entryMessage h2 {
  /* font-size:1.6rem;
  letter-spacing:2px;
  font-weight:600; */
}

@keyframes flash {
  0%{
    opacity:1;
  }
  50%{
    opacity:0.5;
  }
  0%{
    opacity:1;
  }
}









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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: opacity 1.5s ease, transform 1.5s ease, filter 1.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.fade-in-down {
    opacity: 0;
    transform: translateY(-30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease
}

.fade-in-down.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}


.fade-in-zoom {
    opacity: 0;
    transform: scale(0);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-zoom.visible {
    opacity: 1;
    transform: scale(1);
}


.fade-in-R {
    opacity: 0;
    transform: translateX(30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease
}

.fade-in-R.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}


.fade-in-L {
    opacity: 0;
    transform: translateX(-30px);
    filter: blur(10px);
    transition: opacity 1s ease, transform 1s ease, filter 1.5s ease;
}

.fade-in-L.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.fade-in-blur {
    opacity: 0;
    filter: blur(10px);
    transition: opacity 1.5s ease, filter 1.5s ease;
}

.fade-in-blur.visible {
    opacity: 1;
    filter: blur(0);
}


/*ノイズ*/
.d-anime{
    position:relative;
    overflow:hidden;
    display:block;

    visibility:hidden;
    opacity:0;

    background-image:
        repeating-linear-gradient(
            to bottom,
            rgba(255,255,255,.02) 0,
            rgba(255,255,255,.02) 1px,
            transparent 1px,
            transparent 3px
        );
}

.d-anime.is-visible{
    visibility:visible;
    opacity:1;
    transition:opacity .5s ease-out;
}

.d-anime img{
    width:100%;
    display:block;
    opacity:0;
}

.d-anime.is-visible img{
    opacity:1;
    transition:opacity .5s ease-out;
}

/* RGBレイヤー */

.d-anime::before,
.d-anime::after{
    content:"";
    position:absolute;
    inset:0;

    background-image:var(--img);
    background-size:cover;
    background-position:center;

    opacity:0;
    visibility:hidden;

    pointer-events:none;
    mix-blend-mode:lighten;
}

.d-anime::before{
    filter:
        hue-rotate(180deg)
        saturate(3);
}

.d-anime::after{
    filter:
        hue-rotate(320deg)
        saturate(3);
}

.d-anime.glitch::before,
.d-anime.glitch::after{
    visibility:visible;
}

/* グリッチ */

.d-anime.glitch{
    animation:
        glitchBase .12s steps(2),
        flashIn .45s ease-out;
}

.d-anime.glitch::before{
    animation:
        rgbGhostRed .45s ease-out;
}

.d-anime.glitch::after{
    animation:
        rgbGhostBlue .45s ease-out;
}

/* スキャンライン */

.scan{
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:0;
}

.d-anime.glitch .scan{
    opacity:1;
}

.scan::before{
    content:"";
    position:absolute;
    left:0;
    top:-100%;

    width:100%;
    height:35%;

    background:
        linear-gradient(
            to bottom,
            transparent,
            rgba(255,255,255,.15),
            transparent
        );
}

.d-anime.glitch .scan::before{
    animation:scan .35s linear;
}

/* RGBノイズ */

.noise{
    position:absolute;
    inset:0;

    pointer-events:none;
    opacity:0;

    mix-blend-mode:screen;

    background:
        repeating-linear-gradient(
            90deg,
            rgba(255,0,255,.35) 0 2px,
            transparent 2px 5px,
            rgba(0,255,255,.35) 5px 8px,
            transparent 8px 12px
        );
}

.d-anime.glitch .noise{
    opacity:.4;
    animation:noiseMove .15s steps(4);
}

/* 白フラッシュ */

@keyframes flashIn{
/*
    0%{
        filter:brightness(3);
    }

    100%{
        filter:brightness(1);
    }
*/
}

/* 本体揺れ */

@keyframes glitchBase{

    0%{transform:translate(0);}
    20%{transform:translate(-4px,2px);}
    40%{transform:translate(4px,-2px);}
    60%{transform:translate(-3px,1px);}
    80%{transform:translate(2px,-1px);}
    100%{transform:translate(0);}
}

/* 赤残像 */

@keyframes rgbGhostRed{

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

    15%{
        opacity:1;
        transform:translateX(-30px);
    }

    40%{
        opacity:.8;
        transform:translateX(-20px);
    }

    70%{
        opacity:.4;
        transform:translateX(-10px);
    }

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

}

/* 青残像 */

@keyframes rgbGhostBlue{

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

    15%{
        opacity:1;
        transform:translateX(40px);
    }

    40%{
        opacity:.8;
        transform:translateX(25px);
    }

    70%{
        opacity:.4;
        transform:translateX(10px);
    }

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

}

@keyframes noiseMove{

    0%{transform:translateX(0);}
    25%{transform:translateX(-25px);}
    50%{transform:translateX(15px);}
    75%{transform:translateX(-10px);}
    100%{transform:translateX(0);}
}

@keyframes scan{

    from{
        top:-30%;
    }

    to{
        top:130%;
    }

}





/* ==========================
   Text Mask Animation
========================== */

.mask-txt{
    overflow:hidden;
}

.mask-txt > *{
    display:inline-block;

    clip-path: inset(0 100% 0 0);
    -webkit-clip-path: inset(0 100% 0 0);

    transition:
        clip-path 0.7s cubic-bezier(.77,0,.18,1),
        -webkit-clip-path 0.7s cubic-bezier(.77,0,.18,1);

    will-change: clip-path;
}

.mask-txt.visible > *{
    clip-path: inset(0 0 0 0);
    -webkit-clip-path: inset(0 0 0 0);
}





/*右から左*/

@keyframes infinity-scroll-left {
from {
  transform: translateX(0);
}
  to {
  transform: translateX(-100%);
}
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  position:relative;
}
.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left {
  animation: infinity-scroll-left 50s infinite linear both;
}

.dream .scroll-infinity__list--left {
  animation: infinity-scroll-left 50s infinite linear both;
}


.scroll-infinity__item {
  width: 380px;

}

.dream .scroll-infinity__item {
  width: 220px;

}


.scroll-infinity__item>img {
  width: 100%;
}

/*左から右*/
@keyframes infinity-scroll-right {
from {
  transform: translateX(-100%);
}
  to {
  transform: translateX(0%);
}
}
.scroll-infinity__list--right{
  animation :infinity-scroll-right 40s infinite linear both;
}


.dream  .scroll-infinity__list--right {
  animation :infinity-scroll-right 40s infinite linear both;
}


.loop-txt-parts-line {
  display:block;
  width:100%;
  height:3px;
  background:var(--bg-grad-01);
}

.loop-txt-parts {
  background:#11192e;
  padding:0px 0 6px;
  position:relative;
}

.loop-txt-parts .scroll-infinity__item {
  width:72px;
  margin-right:20px;
}


.live-book-loop .scroll-infinity__item {
  width:220px;
  margin-right:13px;
}

.txttt-loop .scroll-infinity__item {
  width:1100px;
  margin-right:13px;
}

/*
.produce-loop .scroll-infinity__item {
  width:160px;
  margin-right:12px;
}

.media-book-loop .scroll-infinity__item {
  width:200px;
}

.talent-loop .scroll-infinity__item {
  width:150px;
}
*/
/*
form parts **********/
#footerfv {
  margin-bottom:48px;
  /* padding-top:48px; */
}


.formBlock {
  padding:0 5%;
}

table.base-01 {
  width: 100%;
}

table.base-01 th {
  width: 100%;
  padding:10px 0 8px;
  display: block;
  text-align: left;
  border-top:none;
  border-bottom: none;
  font-weight: 500;
}

table.base-01 td {
  width: 100%;
  padding:14px 0 0 0;
  border-top:1px solid #ccc;
  border-bottom:none;
  display: block;
  margin-bottom:7px;
}

/*form parts*/
.send-btn {
  width: 50%;
  display: block;
  margin:0 auto;
}

input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  /* -webkit-appearance: button; */
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-appearance: none;
}

input[type=radio] {
  display:inline-block;
}

.wpcf7-list-item {
  width:auto !important;
  padding-bottom:10px !important;
}

.wpcf7-list-item { display: block; float: left; width: 80%; }
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  font-size:1.6rem;
  padding: 18px 5px;
  width:100%;
 background:#fff;
 border:1px solid #FFDEEB;
 border-radius:6px !important;
 box-shadow: 0px 0px 11px -5px #bababa;
}

input[type="text"].nenrei-txt {
  width:200px;
  margin-right:5px;
}

input[type="text"].tel-numtxt,
input[type="email"].tel-numtxt {
  width:100%;
 border:1px solid #FFDEEB;
 border-radius:6px !important;
 box-shadow: 0px 0px 11px -5px #bababa;
}


input[type="submit"].wpcf7-confirm,
input[type="submit"].wpcf7-submit,
.wpcf7-back { 
  background:#05C756;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  margin: 16px auto 0 auto;
  /* padding: 18px 0; */
  background:url(/wp-content/themes/larme-mignon/imgs/bg-sendbtn.webp) no-repeat 0 0 / contain;
  text-align: center;
  width:330px;
  height:90px;
  /* font-size:1.5rem; */
  transition:.6s;
  font-size:0;
  /* border-radius:4px;
  border-right:3px solid #02A245;
  border-bottom:3px solid #02A245; */
}

input[type="submit"].wpcf7-confirm:hover,
input[type="submit"].wpcf7-submit:hover {
  /* opacity:.5; */
}


input[type="button"].wpcf7-confirm,
input[type="button"].wpcf7-submit,
input[type="button"].wpcf7-form-control { 
  background:#555;
  border: none;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size:1.6rem;
  margin: 200px auto 0;
  padding: 20px 0;
  text-align: center;
  width: 80%;
}

input[type=checkbox], input[type=radio] {
    transform: scale(1.4);
    margin: 0 5px 0 0;
}

select {
  width:100%;
  /* width: 200px; */
  padding:18px 3px 18px 5px;
  /* border-radius: 0px; */
  -webkit-appearance: none;
  appearance: none;
  position:relative;
    border: 1px solid #FFDEEB;
    position:relative;
  background-color:#fff;
  background-image: url(/wp-content/themes/larme-mignon/imgs/bg-contact-arrow-bottom.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  font-size:1.5rem;
  color:#000;
  border-radius:6px;
  box-shadow: 0px 0px 11px -5px #bababa;
  }

::placeholder {
  font-size: 1.2rem;
  line-height:1.5;
  color:#bbb;
}

.cf7-hissu {
  color:#fff;
  background:var(--color-pink-01);
  /* background:#f1911a; */
  display:inline-block;
  padding:5px 6px;
  font-size:1rem;
  line-height:1;
  border-radius:2px;
  transform:translateY(-2px);
  margin-left:4px;
}

.cf7-nini {
  color:#fff;
  background:#aaa;
  display:inline-block;
  padding:5px 6px;
  font-size:1rem;
  line-height:1;
  border-radius:2px;
  transform:translateY(-2px);
  margin-left:4px;
}


.cf7-size {
  margin-bottom:8px;
}

.cf7-size label {
  font-weight:600;
  font-size:1.6rem;
}

.cf7-form {
  margin-bottom:32px;
  padding-bottom:16px;
  border-bottom:1px dotted #ccc;
}


  .wpcf7-checkbox {
    position:relative;
    display: block;
}

.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.2rem !important;
}


.wpcf7 form.sent .wpcf7-response-output {
    border-color: #46b450;
    line-height: 1.4;
}

.f-furigana {
  font-size:1.1rem;
  letter-spacing:-1px;
  margin-left:-3px;
}

.nenrei-01 {
  width:100px;
  margin-right:8px;
}

.nenrei-02 {
  width:80px;
  margin-right:8px;
}

.kibou-school {
  width:140px;
  margin-right:8px;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 1em 0 0 !important;
}

.wpcf7 form .wpcf7-response-output {
  margin-top:0 !important;
}

/*
送信完了ページ **********/
.thanks__hdLogo {
  display:block;
  width:66%;
  margin:0 auto 4px;
  transform:translateY(-20px);
}


.thanks__title {
  background:var(--color-blue-01) !important;
  color:#fff;
  margin-bottom:32px;
  padding:56px 0 56px !important;
} 

.thanks__title:before {
  color:#fff !important;
}

.thanks-line__txt--big {
  background:#000;
  color:#fff;

  font-size:1.7rem;
  font-weight:600;
  line-height:1;
  padding:12px 0 14px;
  margin:8px auto 24px;
  display:block;
  text-align:center;
  letter-spacing:0.5px;
}

.thanks__body {
  padding:0 4%;
}

.send-after__txt {
  font-size:1rem;
  font-weight:400;
  text-align:center;
}


@keyframes imganime {
  0%{
    transform:scale(1);
  }
  50%{
    transform:scale(1.05);
  }
  100%{
    transform:scale(1);
  }
}

.line-imganime {
  animation:imganime 3s infinite linear;

}

.f-red {
  color:#C8102E;
}

.f-pink-02 {
  color:var(--color-pink-02);
}


.thanks-line__txt--warning {
  text-align:center;
  margin-top:16px;
}

.thanks__contact-address {
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.thanks__contact-address img {
  width:24%;
  display:block;
  margin:0 auto 8px;
}

.thanks__contact-address .txt {
  font-size:1.7rem;
  font-weight:600;
}

.thanks__LINEoffer {
    position:relative;
}

.img-thanks-finger {
    position:absolute;
    width:18%;
    top:33%;
    right:20%;
    animation:fingerani 1.5s infinite;
}

@keyframes fingerani {
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.13);
    }
    100%{
        transform:scale(1);
    }
}






/*
padding parts **********/
.pb32 {
  padding-bottom:32px;
}



/*
margin parts **********/

.mtb8 {
  margin:8px 0;
}

.mtb4 {
  margin:4px 0;
}

.mb0 {
  margin-bottom:0 !important;
}

.mb4 {
  margin-bottom:4px;
}

.mb8 {
  margin-bottom:8px;
}

.mb16 {
  margin-bottom:16px;
}

.mb24 {
  margin-bottom:24px;
}

.mb32 {
  margin-bottom:32px;
}

.mb36 {
  margin-bottom:36px;
}

.mb40 {
  margin-bottom:40px;
}


.mt8 {
  margin-top:8px;
}

.mt16 {
  margin-top:16px;
}

.mt24 {
  margin-top:24px;
}

.mt32 {
  margin-top:32px;
}

.mt40 {
  margin-top:40px;
}


/*
other parts **********/
.img-block {
  display:block;
  vertical-align:bottom;
}

.bg-gary {
  background:var(--color-gray-01);
}

.txt-c {
  text-align:center;
}


.grecaptcha-badge { visibility: hidden; }


/*
PC block --------------------------------------------*/
.i_p_b {display: block !important;}
.i_t_b {display: none !important;}
.i_s_b {display: none !important;}
.i_pt_b {display: block !important;}
.i_ts_b {display: none !important;}
.dis-none {display:none !important;}



@media only screen and (max-width: 896px) {
/*
TB block --------------------------------------------*/
  .i_p_b {display: none !important;}
  .i_t_b {display: block !important;}
  .i_s_b {display: none !important;}
  .i_pt_b {display: block !important;}
  .i_ts_b {display: block !important;}


}

@media only screen and (max-width: 480px) {
/*
SP block --------------------------------------------*/
  .i_p_b {display: none !important;}
  .i_t_b {display: none !important;}
  .i_s_b {display: block !important;}
  .i_pt_b {display: none !important;}
  .i_ts_b {display: block !important;}


}




