  @font-face {
    font-family: 'LINESeed';
    src: url('../font/LINESeedJP_OTF_Bd.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: 'LINESeed';
    src: url('../font/LINESeedJP_OTF_Eb.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
  }


  @font-face {
    font-family: 'LINESeed';
    src: url('../font/LINESeedJP_OTF_Rg.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
  }

  @font-face {
    font-family: 'LINESeed';
    src: url('../font/LINESeedJP_OTF_Th.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
  }
/* ↓↓↓ このCSSを追記してください ↓↓↓ */

/* パララックスで要素がはみ出ても横スクロールバーが出ないようにする */
body {
    overflow-x: hidden;
    transition: background-color 0.8s ease; /* 背景色変更を滑らかに */
}

/* 各セクションの重なり順を制御 */
.l-main .c-section {
    position: relative;
    z-index: 2; /* テキストコンテンツが手前 */
}

/* 画像を背面に配置し、パララックスの基準にする */
.p-feature-list__image,
.p-support-list__image {
    position: relative;
    z-index: 1; /* 画像が奥 */
}
/* ↑↑↑ ここまでを追記 ↑↑↑ */
 
  .fade-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  
  .fade-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }



  .fade-pop.is-visible{
    animation: scrollpop 0.6s ease-out 0.6s forwards;
    animation-delay: 0.1s;
}

@keyframes scrollpop {
  0% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

  
  .fade-pop.is-visible{
    transform:scale(1.2);
  }


main{
    background-color:#090909;
    position: relative;
    background-image: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.06) 1px,
        transparent 1px,
        transparent 110px
      );
      font-family: "Noto Sans JP", sans-serif;
      overflow-x: hidden;
}

main a:hover{
    opacity: 0.8;
}



.head_contact{
    position: fixed;
    top:16px;
    right:17px;
    background-color:#fff;
    border-radius:25px;
    display: flex;
    justify-content: space-between;
    padding:6px 8px 6px 24px;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: 0.6s;
}

.head_contact.hide {
    opacity: 0;
  }

.head_contact p{
    width:calc(50% - 8px);
    font-size:16px;
    letter-spacing:0.04em;
    line-height: 1;
    font-weight:700;
    margin-right:16px;
    font-family: 'LINESeed', sans-serif;
}

.head_contact p small{
    display: block;
    font-size:9px;
    letter-spacing:0.05em;
    margin-top:7px;
    font-weight:400;
    font-family: "Noto Sans JP", sans-serif;
}

.head_contact a{
    display: block;
    width:156px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    color:#fff;
    background-color: #f50750;
    border-radius:25px;
    font-weight: 700;
}
.fv_area{
    overflow: hidden;
}

.fv_area div{
    max-width:1210px;
    position: relative;
    display: flex;
    justify-content:center;
    align-items: center;
    margin:0 auto;
}

.fv_area div::before{
    position: absolute;
    display: block;
    pointer-events: none;
    content: "";
    background-image: url(../images/fv_lightred.png);
    width: 768px;
    height: 909px;
    bottom: -64%;
    left: -20%;
    opacity: 0;
    transform: rotate(30deg) scale(0.8) translate(-50px, 50px);
    animation: lightArcReverse 1s ease-out 1.4s forwards;
    animation-delay: 0.6s;
}

@keyframes lightArcReverse {
  0% {
    opacity: 0;
    transform: rotate(30deg) scale(0.8) translate(-50px, 50px);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1) translate(0, 0);
  }
}

.fv_area div::after{
    position: absolute;
    display: block;
    pointer-events: none;
    content:"";
    background-image:url(../images/fv_lightblue.png);
    width: 804px;
    height: 731px;
    top: -29%;
    right: -12%;
  opacity: 0;
  transform: rotate(-30deg) scale(0.8) translate(50px, -50px);
  animation: lightArc 1s ease-out 1.4s forwards;
  animation-delay:0.8s;
}

@keyframes lightArc {
  0% {
    opacity: 0;
    transform: rotate(-30deg) scale(0.8) translate(50px, -50px);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1) translate(0, 0);
  }
}



.fv_area div dl{
    max-width:330px;
    margin-right: 64px;
    position: relative;
    z-index: 9999;
}

.fv_area div dl dd a{
    width:100%;
    display: block;
    font-size: 16px;
    text-align: center;
    color:#fff;
    background-color: #f50750;
    line-height: 1.625;
    padding:9px 0 10px;
    border-radius:25px;
    -webkit-box-shadow: 4px 6px 0 #00F2EB;
    box-shadow: 4px 6px 0 #00F2EB;
    margin-top:40px;
    font-weight: 700;
}
.fv_area div dl dd a:hover{

    color:#f50750;
    background-color: #ffffff;
    opacity: 1;
}

.fv_area div p{
    position: relative;
    z-index:999;
}

.fvparts1{
    display: block;
    position: absolute;
    top: 85px;
    left: 10px;
}

.fvparts2{
    display: block;
    position: absolute;
    top: 136px;
    right: 56px;
}

.fvparts3{
    display: block;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.fvparts4{
    display: block;
    position: absolute;
    bottom: 110px;
    right: 208px;
}

.fvparts5{
    display: block;
    position: absolute;
    bottom: 41px;
    right: 27px;
}

.fvparts1,
.fvparts2,
.fvparts3,
.fvparts4,
.fvparts5 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease-out forwards;
}

.fvparts1 { animation-delay: 0.2s; }
.fvparts2 { animation-delay: 0.3s; }
.fvparts3 { animation-delay: 0.4s; }
.fvparts4 { animation-delay: 0.5s; }
.fvparts5 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about{
}

.about .content{
    max-width:1210px;
    width:calc(100% - 70px);
    margin:0 auto;
    border-radius:20px;
    background-color: #fff;
    padding:80px 0;
    position: relative;
    z-index: 99;
}

.about .content h3{
    max-width:444px;
    margin:0 auto 45px;
}

.about .content p{
    font-size:14px;
    font-weight:bold;
    line-height: 2.285;
    text-align: center;
    letter-spacing:0.04em;
    color:#000;
}

.about dl{
    max-width:665px;
    display:flex;
    justify-content: space-between;
    margin:90px auto 0;
}

.about dl dt small{
    display:inline-block;
    font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin:0 auto 12px;
  background: linear-gradient(90deg, #ACFFFD 0%,#F6ABA8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about dl dt h3{
    display:flex;
    justify-content: flex-start;
    align-items: flex-end;
    font-size:24px;
    color:#fff;
}

.about dl dd p{
    font-size:14px;
    line-height: 2.285;
    color:#fff;
}

.about dl dd p strong{
    font-weight:bold;
}

.about .slide_box{
    max-width:980px;
    margin:0 auto;
    background: linear-gradient(180deg,transparent 24%, #242424 24%,#242424 100%);
    padding-bottom:40px;
}

.about ul{
    max-width:860px;
    margin:60px auto 0;
    display: flex;
    justify-content: space-between;
    background-image: url(../images/tts_slidebg.png);
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
}

.about ul li{
    width:calc((100% - 180px)/4);
    text-align: center;
}

.about ul li span{
    display: inline-block;
    padding:5px 8px;
    background-color:#E31C59;
    text-align: center;
    color:#fff;
    font-size:16px;
    font-weight:bold;
    line-height: 1;
    border-radius:6px;
    margin-bottom:20px;
}

.about .about_txt{
    font-size:18px;
    text-align: center;
    font-weight:700;
    color:#fff;
    margin-top: 40px;
}

.about .about_txt strong{
    color:#E31C59;
}

.user{
    padding-bottom:80px;
    background: linear-gradient(180deg,transparent 34%, #242424 34%,#242424 100%);
}

.user ul{
    max-width:981px;
    margin:80px auto 0;
    display: flex;
    justify-content: space-between;
}

.user ul li{
    width:calc((100% - 12px)/3);
    background-color:#F22262;
    text-align: center;
    padding:25px 0;
    color:#fff;
    border-radius:10px;
}

.user ul li:nth-of-type(2n){
    background-color:#00F2EB;
    color:#000000;
}

.user ul li:nth-of-type(3n){
    background-color:#fff;
    color:#000000;
}

.user ul li strong{
    font-size:20px;
    text-align: center;
    display: block;
    margin-bottom:16px;
}

.user ul li small{
    font-size:14px;
    font-weight:bold;
}

.user ul li p{
    font-size:50px;
    font-weight:bold;
}

.user dl{
    max-width:980px;
    margin:80px auto 0;
    color:#fff;
    display: flex;
    justify-content: flex-start;
}

.user dl dt{
    margin-right:60px;
}

.user dl dt strong{
    display: block;
    font-size:24px;
    font-weight:bold;
    padding-left:28px;
    position: relative;
}

.user dl dt strong::before{
    content:"";
    display: block;
    position: absolute;
    width:22px;
    height:22px;
    top:10px;
    left:0;
    background-image: url(../images/icon.png);
}

/* .user dl dd{
    overflow-x:scroll;
} */
.user dl dd table{
    width:700px;
}

.user dl dd table tr{
    display: flex;
    justify-content: space-between;
    margin-top: 2px;
}

.user dl dd table tr small{
    font-size: 12px;
}

.user dl dd table th{
    width:calc((100% - 12px)/5);
    text-align: center;
    color:#fff;
    background-color:#5D5D5D;
    padding:4px 0;
    font-size: 24px;
    font-weight: bold;
    
}

.user dl dd table td{
    width:calc((100% - 12px)/5);
    text-align: center;
    color:#fff;
    background-color:#F12262;
    padding:4px 0;
    font-weight: bold;
    font-size: 12px;
}

.user dl dd table td span{
    font-size: 34px;
}

.platform h3{
    font-size:24px;
    text-align: left;
    color:#fff;
    font-weight: 600;
}

.platform h3 strong{
    color:#F50750;
}

.platform dl{
    max-width:920px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin:80px auto 0;
}

.platform dl dt h3 span{
    display: block;
    font-size:18px;
    font-weight:400;
    letter-spacing: 0.02em;
    font-family: 'LINESeed', sans-serif;
    color:#F22262;
    margin-bottom: 27px;
}

.platform .live_box{
    max-width:920px;
    display: flex;
    justify-content:center;
    align-items: flex-end;
    padding:45px;
    margin:40px  auto;
    align-items: center;
    background-color: #262626;
    border-radius:20px;
    -webkit-box-shadow: 4px 4px 0 #00F2EB;
    box-shadow: 4px 4px 0 #00F2EB;
}

.platform .live_box ul{
    position:relative;
    display: flex;
    justify-content: center;
    color:#fff;
    margin-right:75px;
}



.platform .live_box ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:#00F2EB;
    opacity:0.9;
    width:140px;
    height:140px;
    border-radius:50%;
    margin-left:-20px;
    font-size:17px;
    text-align: center;
    font-weight: 700;

}

.platform .live_box ul li:nth-of-type(2n){
    background-color:#fff;
    color:#000000;
    font-weight: 700;

}


.platform .live_box ul li:nth-of-type(3n){
    background-color:#F50750;
    color:#fff;
    font-weight: 700;
}

.platform .live_box p{
    color:#fff;
    font-size:24px;
    font-weight:bold;
}

.platform .live_box p strong{
    color:#F50750;
}


.platform div.brangistafoot{
    width:100%;  
    background: linear-gradient(90deg, #FF81A7, #68F7F3);
    margin-top:90px;
    text-align: center;
    color:#fff;
    font-size:24px;
    font-weight:bold;
    padding:40px 0 50px 0;
    position: relative;
    overflow-x: hidden;
}


.platform div.brangistafoot span {
    position: absolute;
    z-index: 1;
    display: inline-block;
    white-space: nowrap;
    animation: scroll 24s linear infinite;
    top: 58%;
    left: 0;
  }

.platform div.brangistafoot span img{
    width: 100vw;
    display: inline-block;
}

@keyframes scroll {
    0% {
      transform: translate(0%,-50%);
    }
    100% {
        transform: translate(-50%,-50%);
    }
  }




.platform div.brangistafoot a{
    max-width:510px;
    width:100%;
    display: block;
    font-size: 16px;
    text-align: center;
    color:#fff;
    background-color: #f50750;
    line-height: 1.625;
    padding:9px 0 10px;
    border-radius:25px;
    -webkit-box-shadow: 4px 6px 0 #00F2EB;
    box-shadow: 4px 6px 0 #00F2EB;
    margin:12px auto 0;
    position: relative;
    z-index: 2;
}
.platform div.brangistafoot a:hover{
    color:#f50750;
    background-color: #ffffff;
    opacity: 1;
}

.platform div.brangistafoot p{
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-weight:700;
}

.start_tts{
    position: relative;
    background-color:#fff;
    padding-bottom:140px;
    padding-top:80px;
}

.start_tts::after{
    position: absolute;
    content:"";
    display: block;
    width:34px;
    height:35px;
    background-image: url(../images/start_arrow.png);
    bottom:60px;
    left: 0;
    right:0;
    margin: auto;
}

.start_tts h4{
    font-size:24px;
    text-align: center;
    font-weight: bold;
    letter-spacing: 1;
}

.start_tts ul{
    max-width:980px;
    margin:30px auto 0;
    display: flex;
    justify-content: space-between;
}

.start_tts ul li{
    width: calc((100% - 60px) / 4);
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    background-color: #1C1C1C;
    color: #fff;
    padding: 0;
    text-align: center;
    border-radius: 20px;
}


.start_tts ul li img{
    width:auto;
}

.start_tts ul li p{
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 600;
    padding:20px;
    font-size:16px;
    margin:0 auto;
    border-radius: 0 0 20px 20px;
    background-color: #000;
    background-image: url(../images/start_icon.png);
    background-repeat: no-repeat;
    background-position: 10px 10px;
}
.start_tts ul li span{
    display: block;
    padding: 30px 0;
    background-image: url(../images/start_bg.png);
    background-position: center 20px;
    background-repeat: no-repeat;
}

.brangista{
    position:relative;
    padding-top:0;
    background-color:#fff;
}



.brangista h3{
    text-align: center;
    margin: auto;
}

.brangista h3 img{
    width:auto;
    max-width: 1200px;
}

.brangista .main_txt{
    max-width:930px;
    width: 80%;
    display:flex;
    justify-content: space-between;
    margin:80px auto 0;
    color:#181818;
}

.brangista .main_txt dt{
    font-size:32px;
    font-weight:600;
    letter-spacing: 0.02em;
    background-image: url(../images/ttlbg.png);
    background-repeat:no-repeat;
    padding-left:75px;
    padding-top: 12px;
}

.brangista .main_txt dd{
    font-size:18px;
    font-weight:bold;
    line-height: 1.78;
    padding-top: 12px;
}

.brangista .main_txt dd span{
    display: block;
    font-weight:bold;
    font-size:24px;
    margin-bottom:16px;
}

.brangista .main_box{
    display: flex;
    justify-content:space-between;
    max-width:980px;
    padding:0 16px;
    color:#000;
    margin:100px auto 0;
    padding-bottom:50px;
}

.arrowbox{
    max-width:980px;
    margin:0 auto;
    overflow-x: hidden;
}

.arrow_point{
    display: block;
    max-width: 980px;
    margin:0;
}

.arrow_point.is-visible{
    animation: arrow_view 1s ease-out 1s forwards;
    animation-delay: 0.1s;
    position: relative;
}

@keyframes arrow_view {
  0% {
    max-width: 980px;
    left:-100%;
  }
  100% {
    max-width: 980px;
    left:0;
  }
}

.brangista .main_box dt{
    font-size:16px;
    text-align: center;
}

.brangista .main_box dt h4{
    display: inline-block;
    position: relative;
    font-weight: bold;
}

.brangista .main_box dt h4::before{
    position: absolute;
    content:"";
    display: block;
    top: 52%;
    margin: auto 0;
    left:-22px;
    background-image: url(../images/check.png);
    width:18px;
    height:18px;
    transform: translate(-50%, -50%);
}

.scroll-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top:70px;
  }
  
  .scroll-track {
    display: flex;
    animation: scrollslide 30s linear infinite;
  }
  
  .scroll-track img {
    width: calc(100% - 15px);
    flex-shrink: 0;
    margin-right: 15px;
  }

  @keyframes scrollslide {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

.brangista .main_box dt{
    font-size:16px;
    text-align: center;
}

.brangista .main_box dt h4{
    display: inline-block;
    position: relative;
    font-weight: bold;
}

.brangista .main_box dt h4::before{
    position: absolute;
    content:"";
    display: block;
    top: 52%;
    margin: auto 0;
    left:-22px;
    background-image: url(../images/check.png);
    width:18px;
    height:18px;
    transform: translate(-50%, -50%);
}
.brangista .main_box dd ul{
    margin-top:32px;
    background-color:#EFEFEF;
    padding:16px;
    border-radius:10px;
}

.brangista .main_box dd ul li{
    width:210px;
    height:54px;
    text-align: center;
    line-height: 54px;
    font-size:16px;
    margin-bottom:16px;
    border-radius:10px;
    letter-spacing: 0;
    background-color:#FFFFFF;
}

.brangista .main_box dd ul li:last-child{
    margin-bottom:0;

}

.brangista .main_box dd ul.clm2{
    max-width:438px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brangista .main_box dd ul.clm2 li:nth-last-of-type(2){
    margin-bottom:0;
}


.brangista .allinone{
    max-width:640px;
    width:calc(100% - 40px);
    margin:60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.allin_box{
    max-width:980px;
    padding:120px 110px 100px;
    border-radius:20px;
    background-color:#EDF0F2;
    margin:100px auto 150px;
    position: relative;
}

.allin_box::before{
    content: "";
    display: block;
    position: absolute;
    width:54px;
    height:53px;
    background-image: url(../images/allinone_plus.png);
    top:-27px;
    left: 50%;
    transform: translateX(-50%);
}

.allin_box dl{
    display: flex;
    justify-content:flex-start;
}

.allin_box dt{
width:50%;
font-weight:700;
font-size:32px;
line-height:54px;
letter-spacing: 0.04em;
}

.allinone h4 {
    max-width: 310px;
}

.allin_box dt strong{
    display: block;
    font-family: 'LINESeed', sans-serif;
    font-weight:400;
    font-size:18px;
    line-height:67px;
    letter-spacing:0.02em;
    color:#F50750;
}

.allin_box dt small{
    display: block;
    font-weight:500;
    font-size:14px;
    line-height:54px;
    letter-spacing: 0.04em;
}

.allin_box dd{
    width:calc(50% - 40px);
    padding-left:40px;
    border-left: 1px solid #F50750;
}

.allin_box dd ul li{
    position:relative;
    margin-bottom: 30px;
    font-weight:700;
    font-size:16px;
    line-height:1;
    letter-spacing:0.04em;
}

.allin_box dd ul li::after{
    content:"";
    display: block;
    width:23px;
    height:23px;
    border:1px solid #F50750;
    background-color:#fff;
    border-radius:50%;
    position: absolute;
    top:0;
    left: -53px;
}

.allin_box dd ul li:last-child{
    margin-bottom:0;
}

.allin_box dd ul li:first-child::after,.allin_box dd ul li:last-child::after{
    content:"";
    display: block;
    width:23px;
    height:23px;
    border:1px solid #F50750;
    background-color:#F50750;
    border-radius:50%;
    position: absolute;
    top:0;
    left: -53px;
}

.allin_box p{
    position: relative;
    margin-top:60px;
    text-align: center;
    background-color:#F50750;
    color: #fff;
    padding:30px 0;
    font-weight:700;
    font-size:24px;
    line-height:38px;
    letter-spacing:0.02em;
    border-radius: 10px;
    background-image: url(../images/allinonebtn.png);
    background-repeat: no-repeat;
    background-position: 52% 62%;
}


.brangista h5{
    font-size: 24px;
    font-weight:700;
    text-align: left;
    color:#000;
    letter-spacing:0;
    line-height: 32px;
}

.brangista h5 small{
    display: block;
    font-size: 14px;
    font-weight:700;
}

.brangistafoot{
    width:100%;  
    background: linear-gradient(90deg, #FF81A7, #68F7F3);
    margin-top:90px;
    text-align: center;
    color:#fff;
    font-size:24px;
    font-weight:bold;
    padding:50px 0;
    position: relative;
    overflow-x: hidden;
}

.brangistafoot span {
    position: absolute;
    z-index: 1;
    display: inline-block;
    white-space: nowrap;
    animation: scroll 24s linear infinite;
    top: 58%;
    left: 0;
  }

.brangistafoot span img{
    width: 100vw;
    height: auto;
    display: inline-block;
}

@keyframes scroll {
    0% {
      transform: translate(0%,-50%);
    }
    100% {
        transform: translate(-50%,-50%);
    }
  }

  .brangistafoot p{
    font-size: 24px;
    font-weight:700;
    position: relative;
    z-index: 2;
  }
  

.brangistafoot a{
    max-width:510px;
    width:100%;
    display: block;
    font-size: 16px;
    text-align: center;
    color:#fff;
    background-color: #f50750;
    line-height: 1.625;
    padding:9px 0 10px;
    border-radius:25px;
    -webkit-box-shadow: 4px 6px 0 #00F2EB;
    box-shadow: 4px 6px 0 #00F2EB;
    margin:30px auto 0;
    position: relative;
    z-index: 2;
}

.othercase{
    margin: 0 auto;
    background-color:#fff;
    overflow: hidden;
    box-sizing: border-box;
    padding:100px 0 210px;
}

.othercase h3{
    font-size:24px;
    text-align: center;
    font-weight:bold;
    margin-bottom:50px;
}

.othercase h3 small{
    display:block;
    text-align: center;
    font-size:12px;
    font-weight:bold;
    color:#828282;
    margin-top:10px;
    letter-spacing:0;
}

  
  .othercase ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  
  
  .slide_inner {
    background: #f0f0f0;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    user-select: none;
  }

  .othercase ul li {
    margin: 0 20px;
    height: auto;
  }
  
  .othercase ul li .slide_inner {
    width: 730px;
    box-sizing: border-box;
    max-width: none;
    display: flex;
    justify-content: space-between;
    background-color: #EFEFEF;
    border-radius: 20px;
    padding: 0 20px;
    box-sizing: border-box;
}

.othercase ul li div.slide_inner img{
    width:175px;
}

.othercase ul li div.slide_inner dl{
    padding:35px 15px;
    text-align: left;
}

.othercase ul li div.slide_inner dt h5 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
.othercase ul li div.slide_inner dt h5 p {
    margin: 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
.othercase ul li div.slide_inner dt h5 p span {
    background: #F50750;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 9999px;
    display: inline-block;
  }
  
  .othercase ul li div.slide_inner dt h5 p small {
    font-size: 14px;
    color: #333;
    font-weight: bold;
  }
  
  .othercase ul li div.slide_inner dd p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0;
  }
  
  .bx-wrapper {
    margin: 0 auto !important;
    overflow: visible !important;
  }

  .bx-viewport {
    overflow: visible !important;
  }
  
  .bx-slider li:nth-child(2) .slide_inner {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  .othercase .slick-dots {
    text-align: center;
    display: flex !important;
    justify-content: center;
    padding: 0;
    list-style: none;
    max-width: 730px;
    margin:20px auto 0;
  }
  
  .othercase .slick-dots li {
    margin: 0 6px;
    width: 10px !important;
  }
  
  .othercase .slick-dots button {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
    border: none;
    text-indent: -9999px;
    transition: background 0.3s;
    padding: 0;
    cursor: pointer;
  }
  
  .othercase .slick-dots .slick-active button {
    background: #F50750;
  }


  .spbr{
    display: none;
  }

  @media screen and (max-width:1240px){
  .brangista h3{
    width: calc(100% - 40px);
}
.brangista h3 img {
    width: 100%;
}
}
  
  @media screen and (max-width:1024px){
    
    .fv_area div{
        max-width:1210px;
        width: calc(100% - 80px);
        position: relative;
        display: flex;
        justify-content:center;
        align-items: center;
        margin:0 auto;
    }
    .fv_area div dl {
        max-width: 300px;
        margin-right: 64px;
        position: relative;
        z-index: 9999;
    }

    .fv_area div::before {
        position: absolute;
        display: block;
        pointer-events: none;
        content: "";
        background-image: url(../images/fv_lightred.png);
        background-size: 68%;
        background-repeat: no-repeat;
        width: 768px;
        height: 909px;
        bottom: -62vw;
        left: -27vw;
        opacity: 0;
        transform: rotate(30deg) scale(0.8) translate(-50px, 50px);
        animation: lightArcReverse 1s ease-out 1.4s forwards;
        animation-delay: 0.6s;
    }
    .fv_area div::after {
        position: absolute;
        display: block;
        pointer-events: none;
        content: "";
        background-image: url(../images/fv_lightblue.png);
        width: 804px;
        height: 731px;
        background-size: 68%;
        background-repeat: no-repeat;
        top: -15vw;
        right: -50vw;
        opacity: 0;
        transform: rotate(-30deg) scale(0.8) translate(50px, -50px);
        animation: lightArc 1s ease-out 1.4s forwards;
        animation-delay: 0.8s;
    }

    .fvparts1 {
        display: block;
        width: 30%;
        position: absolute;
        top: 6.5vw;
        left: 4vw;
    }

    .fvparts2 {
        display: block;
        position: absolute;
        top: 13vw;
        width: 26%;
        right: 5.6vw;
    }

    .fvparts3 {
        display: block;
        position: absolute;
        width: 30%;
        bottom: 4vw;
        left: 4vw;
    }



    .fvparts4 {
        display: block;
        position: absolute;
        bottom: 11vw;
        right: 18vw;
        width: 20%;
    }

    .fvparts5 {
        display: block;
        position: absolute;
        width: 30%;
        bottom: 4.1vw;
        right: 2.1vw;
    }

    .allin_box {
        max-width: 980px;
        width: calc(100% - 160px);
        padding: 80px 50px 60px;
        border-radius: 20px;
        background-color: #EDF0F2;
        margin: 100px auto 150px;
        position: relative;
    }
    .start_tts ul {
        max-width: 980px;
        width: calc(100% - 60px);
        margin: 30px auto 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .start_tts ul li {
        width: calc((100% - 20px) / 2);
        display: flex;
        flex-flow: column;
        justify-content: flex-end;
        background-color: #1C1C1C;
        color: #fff;
        padding: 0;
        margin-bottom: 20px;
        text-align: center;
        border-radius: 20px;
    }
    .start_tts ul li p {
        display: flex;
        align-items: center;
        text-align: center;
        font-weight: 600;
        padding: 20px;
        /* margin: auto; */
        width: calc(100% - 40px);
        font-size: 20px;
        justify-content: center;
        margin: 0;
        border-radius: 0 0 20px 20px;
        background-color: #000;
        background-image: url(../images/start_icon.png);
        background-repeat: no-repeat;
        background-position: 10px 10px;
    }
    .brangista .main_txt{
        max-width:860px;
        width: 100%;
        display:flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        margin:0 auto;
        color:#181818;
    }
    .allinone h4 {
        max-width: 310px;
    }
    .user ul{
        max-width:981px;
        width:calc(100% - 40px);
        margin:80px auto 0;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    
.user dl{
    max-width:980px;
    width:100%;
    margin:60px auto 0;
    color:#fff;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.user dl dt {
    margin: 0 auto 20px;
    text-align: center;
  }


.user dl dt strong{
    display: block;
    font-size:24px;
    font-weight:bold;
    padding-left:0;
    position: relative;
}

.user dl dt strong::before{
    content:"";
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    top: 10px;
    left: 10px;
    background-image: url(../images/icon.png);
    background-size: 100%;
}

.user dl dd{
    margin: 0 auto;
}


.about ul{
    width: calc(100% - 40px);
}
.brangista .main_txt dt {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background-image: url(../images/ttlbg.png);
    background-repeat: no-repeat;
    padding-left: 75px;
    padding-top: 12px;
    width: 100%;
    max-width: 500px;
    margin: 50px auto 0;
}
.brangista .main_txt dd {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.78;
    padding-top: 12px;
    max-width: 438px;
    width: 100%;
    margin: 40px auto 0;
}
.platform dl {
    max-width: 920px;
    width: calc(100% - 40px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 80px auto 0;
}
.platform h3 {
    font-size: 22px;
    text-align: left;
    color: #fff;
    font-weight: 600;
}
.platform .live_box {
    max-width: 920px;
    display: flex;
    width: calc(100% - 130px);
    justify-content: center;
    align-items: flex-end;
    padding: 45px;
    margin: 80px auto;
    align-items: center;
    background-color: #262626;
    border-radius: 20px;
    -webkit-box-shadow: 4px 4px 0 #00F2EB;
    box-shadow: 4px 4px 0 #00F2EB;
}


.brangista .main_box dl {
    width: calc((100% - 40px) / 3);
}


.brangista .main_box dd ul li:last-child{
    margin-bottom:0;

}

.brangista .main_box dd ul.clm2 li:nth-last-of-type(2){
    margin-bottom:16px;
}


.allin_box dl{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
}
    .allin_box dt {
        width: 100%;
        font-weight: 700;
        font-size: 24px;
        line-height: 42px;
        letter-spacing: 0.04em;
        max-width: 500px;
        margin: 0 auto;
        text-align: center;
    }

.allin_box dt strong{
    display: block;
    font-family: 'LINESeed', sans-serif;
    font-weight:400;
    font-size:18px;
    line-height:67px;
    letter-spacing:0.02em;
    color:#F50750;
}

.allin_box dt small{
    display: block;
    font-weight:500;
    font-size:14px;
    line-height:28px;
    letter-spacing: 0.04em;
    margin-top: 10px;
}

.allin_box dd{
    width: 64%;
    padding-left: 40px;
    border-left: 1px solid #F50750;
    margin: 40px auto 0;
    position: relative;
}

.allin_box dd::before{
    display: block;
    content: "";
    position: absolute;
    background-color: #EDF0F2;
    width: 3px;
    height: 25px;
    top: 0;
    left: -1px;
}

.allin_box dd::after{
    display: block;
    content: "";
    position: absolute;
    background-color: #EDF0F2;
    width: 3px;
    height: 3px;
    bottom: 0;
    left: -1px;
}

.allin_box dd ul li{
    position:relative;
    margin-bottom: 30px;
    font-weight:700;
    font-size:16px;
    line-height: 2;
    letter-spacing:0.04em;
}

.allin_box dd ul li::after{
    content:"";
    display: block;
    width:23px;
    height:23px;
    border:1px solid #F50750;
    background-color:#fff;
    border-radius:50%;
    position: absolute;
    top:50%;
    left: -53px;
    transform: translateY(-50%);
}

.allin_box dd ul li:last-child{
    margin-bottom:0;
}

.allin_box dd ul li:first-child::after,.allin_box dd ul li:last-child::after{
    content:"";
    display: block;
    width:23px;
    height:23px;
    border:1px solid #F50750;
    background-color:#F50750;
    border-radius:50%;
    position: absolute;
    top:50%;
    left: -53px;
    transform: translateY(-50%);
}

.allin_box p{
    position: relative;
    margin-top:60px;
    text-align: center;
    background-color:#F50750;
    color: #fff;
    padding:30px 0;
    font-weight:700;
    font-size:24px;
    line-height:38px;
    letter-spacing:0.02em;
    border-radius: 10px;
    background-image: url(../images/allinonebtn.png);
    background-repeat: no-repeat;
    background-position: 54% 72%;
}


  }

  

  @media screen and (max-width:768px){
    
main{
    background-color:#090909;
    position: relative;
    background-image: repeating-linear-gradient(
        to right,
        rgba(255, 255, 255, 0.06),
        rgba(255, 255, 255, 0.06) 1px,
        transparent 1px,
        transparent 110px
      );
      font-family: "Noto Sans JP", sans-serif;
      overflow-x: hidden;
}

main a:hover{
    opacity: 0.8;
}



.head_contact{
    position: fixed;
    top: 16px;
    right: 0;
    background-color: #fff;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    padding: 6px 8px 6px 24px;
    align-items: center;
    z-index: 999999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: 0.6s;
    left: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 300px;
}

.head_contact.hide {
    opacity: 0;
  }

.head_contact p{
    width:calc(50% - 8px);
    font-size:16px;
    letter-spacing:0.04em;
    line-height: 1;
    font-weight:700;
    margin-right:16px;
}

.head_contact p small{
    display: block;
    font-size:9px;
    letter-spacing:0.05em;
    margin-top:3px;
    font-weight:400;
}

.head_contact a{
    display: block;
    width:156px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    font-size: 14px;
    color:#fff;
    background-color: #f50750;
    border-radius:25px;
}
.fv_area{
    overflow: hidden;
}

.fv_area h2{
    max-width:280px;
}

.fv_area div{
    width:100%;
    max-width:1210px;
    position: relative;
    display: flex;
    justify-content:center;
    flex-wrap: wrap;
    align-items: center;
    margin:0 auto;
    padding: 100px 0;
}

.fv_area div::before{
    position: absolute;
    display: block;
    pointer-events: none;
    content: "";
    background-image: url(../images/fv_lightred.png);
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    bottom: -68%;
    left: -29%;
    opacity: 0;
    transform: rotate(30deg) scale(0.8) translate(-50px, 50px);
    animation: lightArcReverse 1s ease-out 1.4s forwards;
    animation-delay: 0.6s;
}


@keyframes lightArcReverse {
  0% {
    opacity: 0;
    transform: rotate(20deg) scale(0.8) translate(-350px, -40px);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1) translate(0, 0);
  }
}

.fv_area div::after {
    position: absolute;
    display: block;
    pointer-events: none;
    content: "";
    background-image: url(../images/fv_lightblue.png);
    width: 100%;
    height: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
    top: -6%;
    right: -31%;
    opacity: 0;
    transform: rotate(-30deg) scale(0.8) translate(20px, -20px);
    animation: lightArc 1s ease-out 1.4s forwards;
    animation-delay: 0.8s;
}

@keyframes lightArc {
  0% {
    opacity: 0;
    transform: rotate(-20deg) scale(0.8) translate(20px, -20px);
  }
  100% {
    opacity: 1;
    transform: rotate(0deg) scale(1) translate(0, 0);
  }
}



.fv_area div dl{
    max-width:330px;
    margin-right: inherit;
    position: relative;
    z-index: 9999;
    margin: 0 auto;
}

.fv_area div dl dd a{
    width:100%;
    display: block;
    font-size: 16px;
    text-align: center;
    color:#fff;
    background-color: #f50750;
    line-height: 1.625;
    padding:9px 0 10px;
    border-radius:25px;
    -webkit-box-shadow: 4px 6px 0 #00F2EB;
    box-shadow: 4px 6px 0 #00F2EB;
    margin-top:40px;
}
.fv_area div dl dd a:hover{
    width:100%;
    display: block;
    font-size: 16px;
    text-align: center;
    color:#f50750;
    background-color: #ffffff;
    line-height: 1.625;
    padding:9px 0 10px;
    border-radius:25px;
    -webkit-box-shadow: 4px 6px 0 #00F2EB;
    box-shadow: 4px 6px 0 #00F2EB;
    margin-top:40px;
}

.fv_area div p{
    position: relative;
    z-index:999;
}

.fvparts1{
    display: block;
    position: absolute;
    top: 16%;
    left: 3%;
    width: 30%;
}

.fvparts2{
    display: block;
    position: absolute;
    top: 28%;
    right: 10%;
    width: 25%;
}

.fvparts3{
    display: block;
    position: absolute;
    bottom: 40px;
    left: 40px;
    width: 27%;
}

.fvparts4{
    display: block;
    position: absolute;
    bottom: 21%;
    right: 40%;
    width: 18%;
}

.fvparts5{
    display: block;
    position: absolute;
    bottom: 41px;
    right: 27px;
    width: 22%;
}

.fvparts1,
.fvparts2,
.fvparts3,
.fvparts4,
.fvparts5 {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease-out forwards;
}

.fvparts1 { animation-delay: 0.2s; }
.fvparts2 { animation-delay: 0.3s; }
.fvparts3 { animation-delay: 0.4s; }
.fvparts4 { animation-delay: 0.5s; }
.fvparts5 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about{
}

.about .content{
    max-width:1210px;
    width:calc(100% - 120px);
    margin:0 auto;
    border-radius:20px;
    background-color:#fff;
    padding:40px;
    position: relative;
    z-index: 99;
}

.about .content h3{
    max-width:179px;
    margin:0 auto 45px;
    width:100%;
}

.about .content p{
    font-size:14px;
    font-weight:bold;
    line-height: 2.285;
    text-align: center;
    color: #000;
}

.about dl{
    max-width:665px;
    width:calc(100% - 40px);
    display:flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin:90px auto 0;
    text-align: center;
}

.about dl dt{
    text-align: center;
    margin: 0 auto 24px;
}

.about dl dt small{
    display:inline-block;
    font-size: 12px;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin:0 auto 12px;
  background: linear-gradient(90deg, #ACFFFD 0%,#F6ABA8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about dl dt h3{
    display:flex;
    justify-content: flex-start;
    align-items: flex-end;
    font-size:24px;
    color:#fff;
}

.about dl dd{
    max-width:350px;
    margin:0 auto;
}

.about dl dd p{
    font-size:14px;
    line-height: 2.285;
    color:#fff;
    text-align: left;
}

.about dl dd p strong{
    font-weight:bold;
}

.about .slide_box{
    max-width:980px;
    margin:0 auto;
    background: linear-gradient(180deg,transparent 24%, #242424 24%,#242424 100%);
    padding-bottom:40px;
    width: calc(100% - 40px);
    padding: 0 20px 40px;
}

.about ul{
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    background-image: url(../images/tts_slidebg.png);
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
    padding: 0 20px;
    overflow-x: scroll;
}

.about ul li{
    min-width: 45%;
    flex-shrink: 0;
    text-align: center;
    scroll-snap-align: start;
    margin-right:20px;
}

.about ul li span{
    display: inline-block;
    padding:5px 8px;
    background-color:#E31C59;
    text-align: center;
    color:#fff;
    font-size:16px;
    font-weight:bold;
    line-height: 1;
    border-radius:6px;
    margin-bottom:20px;
}

.about .about_txt {
    font-size: 16px;
    text-align: center;
    font-weight: 700;
    color: #fff;
    width: 100%;
    margin: 40px auto 0;
    letter-spacing: 0;
  }

.about .about_txt strong{
    color:#E31C59;
    display: block;
}

.user{
    padding-bottom:80px;
    background: linear-gradient(180deg,transparent 34%, #242424 34%,#242424 100%);
}

.user ul{
    max-width:981px;
    width:100%;
    margin:80px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.user ul li{
    width:calc((100% - 40px));
    background-color:#F22262;
    text-align: center;
    padding:25px 0;
    color:#fff;
    border-radius:20px;
    margin: 0 auto 10px;
}

.user ul li:nth-of-type(2n){
    background-color:#00F2EB;
    color:#000000;
}

.user ul li:nth-of-type(3n){
    background-color:#fff;
    color:#000000;
}

.user ul li strong{
    font-size:20px;
    text-align: center;
    display: block;
    margin-bottom:16px;
}

.user ul li small{
    display: block;
    font-size:14px;
    font-weight:bold;
    margin-bottom:10px;
}

.user ul li p{
    font-size:50px;
    font-weight:bold;
    font-family: 'LINESeed', sans-serif;
    line-height: 1;
}

.user ul li p small{
    font-size:18px;
    font-weight:bold;
    font-family: "Noto Sans JP", sans-serif;
    display: inline-block;
}

.user dl{
    max-width:980px;
    width:100%;
    margin:60px auto 0;
    color:#fff;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.user dl dt {
    margin: 0 auto 20px;
    text-align: center;
  }


.user dl dt strong{
    display: block;
    font-size:24px;
    font-weight:bold;
    padding-left:0;
    position: relative;
}

.user dl dt strong::before{
    content:"";
    display: block;
    position: absolute;
    width: 22px;
    height: 22px;
    top: 10px;
    left: 10px;
    background-image: url(../images/icon.png);
    background-size: 100%;
}

/* .user dl dd{
    overflow-x:scroll;
} */
.user dl dd{
    width: 100%;
    overflow-x: auto;
    padding:0 20px;
}
.user dl dd table{
    width: 100%; /* 親要素より大きく設定 */
    min-width: 700px; /* 最小幅を設定 */
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px;
}

.user dl dd table tr{
    display: flex;
    justify-content: space-between;
}

.user dl dd table tr small{
    font-size: 12px;
}

.user dl dd table th{
    width:calc((100% - 12px)/5);
    text-align: center;
    color:#fff;
    background-color:#5D5D5D;
    padding:4px 0;
    font-size: 24px;
    font-weight: bold;
}

.user dl dd table td{
    width:calc((100% - 12px)/5);
    text-align: center;
    color:#fff;
    background-color:#F12262;
    padding:4px 0;
    font-weight: bold;
    font-size: 12px;
}

.user dl dd table td span{
    font-size: 34px;
}

.platform h3{
    font-size:22px;
    text-align: left;
    color:#fff;
    font-weight: 600;
    margin-bottom:30px;
}

.platform h3 span{
    font-size:16px;
}

.platform h3 strong{
    color:#F50750;
}

.platform dl{
    max-width:920px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin:80px auto 0;
    width: calc(100% - 40px);
    flex-wrap: wrap;
}

.platform dl dt{
    max-width:340px;
    margin:0 auto;
}

.platform .live_box{
    width: calc(100% - 80px);
    flex-wrap: wrap;
    box-shadow:4px 4px 0 #00F2EB;
    padding: 45px 20px;
    margin: 50px auto;
}

.platform .live_box ul {
    position: relative;
    display: flex;
    justify-content: center;
    color: #fff;
    padding-bottom: 30px;
    padding-left: 10px;
    margin: 0 auto;
    width: 100%;
  }


.platform .live_box ul li{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00F2EB;
    opacity: 0.9;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    margin-left: -10px;
    font-size: 14px;
    text-align: center;
    font-weight: 700;

}

.platform .live_box ul li:nth-of-type(2n){
    background-color:#fff;
    color:#000000;
    font-weight: 700;

}


.platform .live_box ul li:nth-of-type(3n){
    background-color:#F50750;
    color:#fff;
    font-weight: 700;
}

.platform .live_box p{
    color:#fff;
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    letter-spacing: 0;
}

.platform .live_box p strong{
    color:#F50750;
}


.platform div.brangistafoot{
    width: calc(100% - 40px);
    background: linear-gradient(90deg, #FF81A7, #68F7F3);
    margin-top:90px;
    text-align: center;
    color:#fff;
    font-size:20px;
    font-weight:bold;
    padding:40px 20px;
    position: relative;
    overflow-x: hidden;
}


.platform div.brangistafoot span {
    position: absolute;
    z-index: 1;
    display: inline-block;
    white-space: nowrap;
    animation: scroll 24s linear infinite;
    top: 58%;
    left: 0;
  }

.platform div.brangistafoot span img{
    width: auto;
    display: inline-block;
}

@keyframes scroll {
    0% {
      transform: translate(0%,-50%);
    }
    100% {
        transform: translate(-50%,-50%);
    }
  }




.platform div.brangistafoot a{
    max-width:510px;
    width:100%;
    display: block;
    font-size: 16px;
    text-align: center;
    color:#fff;
    background-color: #f50750;
    line-height: 1.625;
    padding:9px 0 10px;
    border-radius:25px;
    -webkit-box-shadow: 4px 6px 0 #00F2EB;
    box-shadow: 4px 6px 0 #00F2EB;
    margin:12px auto 0;
    position: relative;
    z-index: 2;
}

.platform div.brangistafoot p{
    position: relative;
    z-index: 2;
    font-size: 20px;
    line-height:1.6;
    font-weight:700;
}

.start_tts{
    position: relative;
    background-color:#fff;
    padding-bottom:110px;
    padding-top:60px;
}

.start_tts::after{
    position: absolute;
    content:"";
    display: block;
    width:34px;
    height:35px;
    background-image: url(../images/start_arrow.png);
    bottom:45px;
    left: 0;
    right:0;
    margin: auto;
}

.start_tts h4{
    font-size:24px;
    text-align: center;
    font-weight: bold;
}

.start_tts ul{
    max-width:980px;
    width: 100%;
    margin:30px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.start_tts ul li{
    width: calc(100% - 40px);
    display: flex;
    flex-flow: column;
    justify-content: center;
    background-color: #1C1C1C;
    color: #fff;
    padding: 0;
    margin: 0 auto 20px;
    text-align: center;
    border-radius: 20px;
}
.start_tts ul li img{
    width: fit-content;
    margin: 0 auto;
}

.start_tts ul li p{
    width:100%;
    text-align: center;
    font-weight: 600;
    padding:20px 0;
    font-size:16px;
    margin:0;
    border-radius: 0 0 20px 20px;
    background-color: #000;
    justify-content: center;
    text-align: left;
    background-position: 60px 20px;
}

.start_tts ul li span{
    display: block;
    padding: 30px 0;
}

.brangista{
    position:relative;
}


.brangista h3{
    width: 100%;
    text-align: center;
    margin: auto;
}

.brangista h3 img{
    width:100%;
}
.brangista .main_txt{
    max-width:860px;
    width: 100%;
    display:flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin:0 auto;
    color:#181818;
}

.brangista .main_txt dt{
    font-size: 28px;
    font-weight: bold;
    text-align: left;
    margin:30px auto ;
    width: 100%;
    background-position: -43px 20px;
    padding: 30px 30px 0;
    letter-spacing: 0.02em;
    background-size: 250px;
    line-height: 2;
}

.brangista .main_txt dd{
    width: 100%;
    padding:0 30px ;
    margin:0 auto;
    font-size:18px;
    font-weight:400;
    line-height: 1.78;
}

.brangista .main_txt dd span{
    font-weight:700;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 0;
}

.brangista .main_box{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 980px;
    padding: 0 20px;
    margin: 60px auto 0;
    padding-bottom: 0;
}
.flow_box{
    position: relative;
}

.arrowbox{
    max-width: 48px;
    width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    position: absolute;
    right: 5px;
    top: 27px;
    display: block;
}

.arrow_point{
    display: block;
    max-width: 980px;
    margin:0;
}

.arrow_point.is-visible{
    animation: arrow_view 2s ease-out 2s forwards;
    animation-delay: 0.2s;
    position: relative;
}

@keyframes arrow_view {
  0% {
    max-width: 980px;
    left:0;
    transform: translateY(-100%);
  }
  100% {
    max-width: 980px;
    left:0;
    transform: translateY(0);
  }
}


.brangista .main_box dl{
    width:90%;
    margin-top:20px;
}

.brangista .main_box dt{
    font-size: 16px;
    text-align: center;
}

.brangista .main_box dt h4{
    display: inline-block;
    position: relative;
}

.brangista .main_box dt h4::before{
    position: absolute;
    content:"";
    display: block;
    top: 50%;
    margin: auto 0;
    left:-22px;
    background-image: url(../images/check.png);
    width:18px;
    height:18px;
    transform: translate(-50%, -50%);
}

.scroll-track {
    display: flex;
    animation: scrollslide 60s linear infinite;
    height: 256px;
    width: 1600px;
  }

.brangista .main_box dd ul{
    margin-top:16px;
}

.brangista .main_box dd ul li{
    width:100%;
    height:54px;
    text-align: center;
    line-height: 54px;
    font-size:16px;
    margin-bottom:16px;
    border:1px solid #fff;
    border-radius:10px;
    letter-spacing: 0;
    color:#000;
}

.brangista .main_box dd ul.clm2{
    max-width:438px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.brangista .main_box dd ul li:last-child{
    margin-bottom:0;

}

.brangista .main_box dd ul.clm2 li:nth-last-of-type(2){
    margin-bottom:16px;
}





.brangista .allinone{
    max-width:640px;
    width:calc(100% - 40px);
    margin:50px auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.allin_box{
    max-width: 980px;
    width: calc(100% - 80px);
    padding: 60px 20px 80px;
    border-radius: 20px;
    background-color: #EDF0F2;
    margin: 100px auto 60px;
    position: relative;
}

.allin_box::before{
    content: "";
    display: block;
    position: absolute;
    width:54px;
    height:53px;
    background-image: url(../images/allinone_plus.png);
    top:-27px;
    left: 50%;
    transform: translateX(-50%);
}

.allin_box dl{
    display: flex;
    justify-content:flex-start;
    flex-wrap: wrap;
}

.allin_box dt{
    width: 100%;
    font-weight: 700;
    font-size: 24px;
    line-height: 42px;
    letter-spacing: 0.04em;
    max-width: 300px;
    text-align: left;
}

.allin_box dt strong{
    display: block;
    font-family: 'LINESeed', sans-serif;
    font-weight:400;
    font-size:18px;
    line-height:67px;
    letter-spacing:0.02em;
    color:#F50750;
}

.allin_box dt small{
    display: block;
    font-weight:500;
    font-size:14px;
    line-height:28px;
    letter-spacing: 0.04em;
    margin-top: 10px;
}

.allin_box dd{
    width: 64%;
    padding-left: 40px;
    border-left: 1px solid #F50750;
    margin: 40px auto 0;
    position: relative;
}

.allin_box dd::before{
    display: block;
        content: "";
        position: absolute;
        background-color: #EDF0F2;
        width: 3px;
        height: 28px;
        top: -1px;
        left: -2px;
}

.allin_box dd::after{
    display: block;
        content: "";
        position: absolute;
        background-color: #EDF0F2;
        width: 3px;
        height: 5px;
        bottom: -2px;
        left: -2px;
}

.allin_box dd ul li{
    position:relative;
    margin-bottom: 30px;
    font-weight:700;
    font-size:16px;
    line-height: 2;
    letter-spacing:0.04em;
}

.allin_box dd ul li::after{
    content:"";
    display: block;
    width:23px;
    height:23px;
    border:1px solid #F50750;
    background-color:#fff;
    border-radius:50%;
    position: absolute;
    top:50%;
    left: -53px;
    transform: translateY(-50%);
}

.allin_box dd ul li:last-child{
    margin-bottom:0;
}

.allin_box dd ul li:first-child::after,.allin_box dd ul li:last-child::after{
    content:"";
    display: block;
    width:23px;
    height:23px;
    border:1px solid #F50750;
    background-color:#F50750;
    border-radius:50%;
    position: absolute;
    top:50%;
    left: -53px;
    transform: translateY(-50%);
}

.allin_box p{
    position: relative;
    margin-top:60px;
    text-align: center;
    background-color:#F50750;
    color: #fff;
    padding:30px 0;
    font-weight:700;
    font-size:24px;
    line-height:38px;
    letter-spacing:0.02em;
    border-radius: 10px;
    background-image: url(../images/allinonebtn.png);
    background-repeat: no-repeat;
    background-position: -34% 82%;
}


.about .content{
    padding:60px 40px;

}


.brangista h5{
    font-size: 24px;
    font-weight:700;
    text-align: center;
    color:#000;
    letter-spacing:0;
    line-height: 32px;
    margin-top: 15px;
}

.brangista h5 small{
    display: block;
    font-size: 14px;
    font-weight:700;
}

.brangistafoot{
    width:100%;  
    width: calc(100% - 40px);
    background: linear-gradient(90deg, #FF81A7, #68F7F3);
    margin-top:90px;
    text-align: center;
    color:#fff;
    font-size:24px;
    font-weight:bold;
    padding:50px 20px;
    position: relative;
    overflow-x: hidden;
}




  .brangistafoot span {
    position: absolute;
    z-index: 1;
    display: inline-block;
    white-space: nowrap;
    animation: scroll 24s linear infinite;
    top: 50%;
    left: 0;
    min-width: 200vw;
  }

  .brangistafoot span img{
    width: auto;
    height: auto;
    display: inline-block;
}

@keyframes scroll {
    0% {
      transform: translate(0%,-50%);
    }
    100% {
        transform: translate(-50%,-50%);
    }
  }


  .brangistafoot p{
    font-size: 24px;
    font-weight:700;
    position: relative;
    z-index: 2;
  }
  

.brangistafoot a{
    max-width:510px;
    width:100%;
    display: block;
    font-size: 16px;
    text-align: center;
    color:#fff;
    background-color: #f50750;
    line-height: 1.625;
    padding:9px 0 10px;
    border-radius:25px;
    -webkit-box-shadow: 4px 6px 0 #00F2EB;
    box-shadow: 4px 6px 0 #00F2EB;
    margin:30px auto 0;
    position: relative;
    z-index: 2;
}

.othercase{
    max-width: 100%;
    margin: 0 auto;
    background-color:#fff;
    padding:100px 20px 50px;
    overflow: hidden;
    box-sizing: content-box; 
}

.othercase h3{
    font-size:24px;
    text-align: center;
    font-weight:bold;
    margin-bottom:50px;
}

.othercase h3 small{
    display:block;
    text-align: center;
    font-size:12px;
    font-weight:bold;
    color:#828282;
    margin-top:10px;
    letter-spacing:0;
}

  
  .othercase ul {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .othercase ul li{
    margin: 0 10px;
    height: auto !important;
  }
  
  .slide_inner {
    background: #f0f0f0;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .othercase ul li div.slide_inner{
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background-color: #EFEFEF;
    border-radius:20px;
}

.othercase ul li div.slide_inner img{
    width: 100%;
    height: auto;
    display: block;
}

.othercase ul li div.slide_inner dl{
    padding:35px 15px;
    text-align: left;
}

.othercase ul li div.slide_inner dt h5 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  
.othercase ul li div.slide_inner dt h5 p {
    margin: 0;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap:wrap;
    margin-bottom: 10px;
  }
  
.othercase ul li div.slide_inner dt h5 p span {
    background: #F50750;
    color: #fff;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 9999px;
    display: inline-block;
  }
  
  .othercase ul li div.slide_inner dt h5 p small {
    font-size: 14px;
    color: #333;
    font-weight: bold;
    width: 100%;
    display: block;
  }
  
  .othercase ul li div.slide_inner dd p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    letter-spacing: 0;
  }
  
  .bx-wrapper {
    margin: 0 auto !important;
    overflow: visible !important;
  }

  .bx-viewport {
    overflow: visible !important;
  }
  
  .bx-slider li:nth-child(2) .slide_inner {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  .othercase .slick-dots {
    text-align: center;
    margin-top: 20px;
    display: flex !important;
    justify-content: center;
    padding: 0;
    list-style: none;
  }
  
  .othercase .slick-dots li {
    margin: 0 6px;
  }
  
  .othercase .slick-dots button {
    width: 10px;
    height: 10px;
    background: #D9D9D9;
    border-radius: 50%;
    border: none;
    text-indent: -9999px;
    transition: background 0.3s;
    padding: 0;
    cursor: pointer;
  }
  
  .othercase .slick-dots .slick-active button {
    background: #F50750;
  }

  
  .spbr{
    display: block;
  }

  .pcbr{
    display: none;
  }


  

  
  }
  .fv_item img{
    width: 100%;
    height: auto;
    max-width: 517px;
}

