@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');



/*=========================================
    AOP
===========================================*/
a {
    color: #F6732A;
}
/* SP */
@media screen and (max-width: 900px){
#feature #wrap {
    padding: 50px 0 0;
}
}
/*=========================================
    FRAME
===========================================*/
html {
    scroll-behavior: smooth;
}

body {

}
#wrap {
    padding: 87px 0 0;
}
#container {
    width: 100%;
}

.allContain{
    font-family:"Noto Sans JP","Outfit","Roboto","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN","メイリオ",Arial,sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.15px;
    color: #1D1B1A;
    line-height: 170%; 
    overflow: hidden;
    background: #FFF;
}
.loopTxtBox{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}
.orange{
    color: #F6732A;
}
.txt {
    margin: 0;
}
footer{
    display: none;
}

.contentGroupe{
    background-color: #FFF;
    position: relative;
    overflow: hidden;
    margin-bottom: -46px;
}
.contentGroupe:before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_audience.jpg);
    background-size: max(100%, 1300px);
    background-position: 100% 101%;
    background-repeat: no-repeat;
    filter: blur(5px);
}
.contentBg1{
    background-image: url(../images/bg_wave_orange_r.png);
    background-size: 3600px;
    background-position: calc(50% - 198px) bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 2000px;
    position: absolute;
    left: 0;
    bottom: -125px;
    z-index: 0;
}
.contentBg2{
    background-image: url(../images/bg_wave_white_r.png);
    background-size: 3600px;
    background-position: 45% bottom;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    aspect-ratio: 1000 / 713;
    position: absolute;
    left: 0;
    bottom: 43%;
    z-index: 0;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #FFF;
    z-index: 99999;
}

/* SP */
@media screen and (max-width: 900px){
.contentGroupe{
    margin-bottom: -48px;
}
.contentGroupe:before{
    background-size: 400%;
    background-position: 43% 122%;
}
.contentBg1 {
    background-size: 2200px;
    aspect-ratio: 1000 / 3000;
    background-position: calc(50% - 203px) bottom;
    pointer-events: none;
    bottom: -85px;
}
.contentBg2 {
    background-size: 2300px;
    background-position: 33% bottom;
    aspect-ratio: 1000 / 3078;
    height: auto;
    bottom: 40%;
    pointer-events: none;
}

}

.loading {
    position: fixed;
    top: 0;
    left: 0;
    background: #FFF;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.loadingIcon {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 4px;
    transform: translate(-50%, -50%);
}

.loading-bar {
    display: inline-block;
    width: 4px;
    height: 18px;
    border-radius: 4px;
    animation: loading 1s ease-in-out infinite;
}

.loading-bar:nth-child(1) {
    background-color: #E64427;
    animation-delay: 0;
}

.loading-bar:nth-child(2) {
    background-color: #19368B;
    animation-delay: 0.09s;
}

.loading-bar:nth-child(3) {
    background-color: #90559F;
    animation-delay: .18s;
}

.loading-bar:nth-child(4) {
    background-color: #FDB211;
    animation-delay: .27s;
}

.loading-bar:nth-child(5) {
    background-color: #048E94;
    animation-delay: .36s;
}

.loadingCap {
    font-family: "Outfit", serif;
    font-size: 12px;
    font-weight: 600;
    width: 100%;
    text-align: center;
}

@keyframes loading {
    0% {
        transform: scale(1);
    }

    20% {
        transform: scale(1, 2.2);
    }

    40% {
        transform: scale(1);
    }
}


/*=========================================
    loopTxt
===========================================*/
.loopTxt{
    display: flex;
    animation: loop-text 18s linear infinite;
    gap: 16px;
    font-weight: 600;
}
.loopTxt li{
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.loopTxt li span{
    display: inline-block;
    width: 20px;
    padding-left: 8px;
    line-height: 0;
}
@keyframes loop-text {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/*=========================================
    loopArtist
===========================================*/
.loopArtist{

}
.loopArtistBox{
    width: 100%;
    height: 185px;
    overflow: hidden;
}
.loopArtistBox .loopArtistImage{
    display: flex;
    animation: scroll 24s linear infinite;
    width: 100%;
}
.loopArtistBox:nth-child(even) .loopArtistImage{
    animation: scroll 22s linear infinite reverse;
}
.loopArtistBox .loopArtistImage li{
    line-height: 0;
}
@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
/* SP */
@media screen and (max-width: 900px){
.loopArtistBox .loopArtistImage{
    width: 400%;
}
}

/*=========================================
    rippleBtn
===========================================*/
.rippleBtn{
    overflow: hidden;
    position: relative;
}
.rippleTxt{
    position: relative;
    z-index: 1;
    padding-bottom:2px;
}

.ripple {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 550px; /* ボタンを覆い隠すのに十分な大きさから少し大きめ */
    height: auto;
    aspect-ratio: 1;
    background-color: #F6732A4D;
    border-radius: 50%;
    scale: 0;
    transform-origin: center center;
    translate: -50% -50%;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.12, 0, 0.39, 0);;
    animation-iteration-count: 1;
    transition: none;
}
.ripple.isPlaying {
    animation-name: rippleEffect;
}
@keyframes rippleEffect {
  0% {
    scale: 0;
    opacity: 1;
  }
  100% {
    scale: 100%;
    opacity: 0;
  }
}

/*=========================================
    btnMore
===========================================*/
.btnMore{

}
.btnMore a{
    width: 242px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    background: #000;
    padding: 0 24px;
    border-radius: 100px;
    font-size: 20px;
    font-weight: 700;
    box-sizing: border-box;
    line-height: 1em;
    color: #FFF;
}
.btnMore a .arrow{
    width: 11px;
}
.btnMore a .ripple{
    background-color: #aaaaaa4d;
}
/* PC */
@media screen and (min-width: 901px){
.btnMore a.rippleBtn:hover{
    background-color: #666;
}
}

/* SP */
@media screen and (max-width: 900px){
.btnMore a{
    width: 180px;
    height: 48px;
    font-size: 16px;
}
}

/*=========================================
    fadeUp
===========================================*/
.fadeUp{
    opacity:0;
    transform: translateY(40px);
    transition-timing-function: ease;
}
.showing .fadeUp{
    opacity:1;
    transform: translateY(0);
    transition-duration: 0.75s;
}
.showing .fadeUp.delay1{
    transition-delay: 0.3s;
}
.showing .fadeUp.delay2{
    transition-delay: 0.6s;
}
/*=========================================
    viewingBox
===========================================*/
.viewingBox{
    position: relative;
    width: fit-content;
}
.viewingBox:before{
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 0;
    height: 100%;
    clip-path: inset(0 0 0 0);
    z-index: 1;
    background: #F6732A;
}
.viewingBox span{
    position: relative;
    opacity: 0; 
}
.showing .viewingBox:before{
    width: 100%;
    clip-path: inset(0 0 0 100%);
    transition: width 0.5s ease, clip-path 0.5s ease 0.5s;      
}
.showing .viewingBox span{
    opacity: 1;
    transition: 0s 0.5s; 
}
.showing .viewingBox.delay1:before{
    transition: width 0.5s ease 0.3s, clip-path 0.5s ease 0.8s;
}
.showing .viewingBox.delay2:before{
    transition: width 0.5s ease 0.6s, clip-path 0.5s ease 1.1s;
}
.showing .viewingBox.delay1 span{
    transition: 0s 0.8s; 
}
.showing .viewingBox.delay2 span{
    transition: 0s 1.1s; 
}



/*=========================================
    typewriter
===========================================*/

/* タイプライターコンテナ */
.trBox {
    color: #1D1B1A;
    position: relative;
}
.trBox .ghost{
    font-size: 72px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    line-height: 1em;
    opacity: 0;
    pointer-events: none;
}
.trBox .ghost span{
    font-family: "Noto Sans JP", "Outfit", "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Arial, sans-serif;
    font-size: 40px;
}
/* タイプライターテキスト */
.trTxt {
    position: absolute;
    top:0;
    left:0;
    font-size: 72px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    line-height: 1em;
}
.small-text {
    font-family: "Noto Sans JP", "Outfit", "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Arial, sans-serif;
    font-size: 40px;
    margin-left: 16px;
}

.cursor {
    display: inline-block;
    width: 1.5rem;
    height: 2px;
    background: #1D1B1A;
    animation: blink 1s infinite;
    vertical-align: -5px;
}


@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}




/* SP */
@media screen and (max-width: 900px){
.trTxt {
    font-size: 46px;
}
.small-text {
    font-size: 24px;
    margin-left: 0;
}
.cursor {
    width: 1rem;
}
.trBox .ghost {
    font-size: 46px;
}
.trBox .ghost span {
    font-size: 24px;
}
}




/*=================================
	slick
===================================*/

.slick-dotted.slick-slider {
    width: 80%;
    margin: 0 auto 40px;
}
.slick-slide {
    display: none;
    float: left;
    height: auto;
    min-height: 0;
    padding: 0 10px;
    box-sizing: border-box;
	outline: none;
}

/*=================================
	SP
===================================*/
@media screen and (max-width: 900px){
.slick-slide {
    padding: 0;
}

}




/*===================================================
  OP:SLIDER
====================================================*/
.op_slider{
    overflow: hidden;
    position: relative;
}
.op_slider .slideNone .swiper-pagination,
.op_slider .slideNone .swiper-button-prev,
.op_slider .slideNone .swiper-button-next{
    display:none;
}
.op_slider .swiper-pagination.swiper-pagination-bullets{
    bottom: 0;
    display: inline-block;
    width: auto;
    height: auto;
    min-height: 0;
    line-height: 0;
}
.op_slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet{
    width: 30px;
    height: 3px;
    border-radius: 0;
    padding: 0;
    margin: 0 10px 0 0;
}
.op_slider .swiper-pagination-bullet-active{

}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: 10px;
    right: auto;
}
.swiper-button-prev{
    right: 50px;
    bottom: 0;
    left: auto;
    top: auto;
    height: auto;
    width: auto;
}
.swiper-button-next{
    right: 5px;
    top: auto;
    bottom: 0;
    left: auto;
    height: auto;
    width: auto;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
    font-weight: 800;
}


/* OP:SLIDER:SP-max-769 */
@media screen and (max-width: 769px){
.op_slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    width: 20px;
}
}
/*=========================================
    visual
===========================================*/
.visual{
    position: relative;
    background-color: #F6732A;
    border-radius: 0 0 64px 64px;
    z-index: 1;
    overflow: hidden;
}
.heroView{
    min-height: 700px;
    position: relative;
}

/*===================================================
    hero-title
====================================================*/

/* ----- wrap ----- */
.hero-title-wrap {
    position: relative;
    width: 100%;
    z-index: 10;
    opacity: 1;
    transition: opacity 1s ease 2.5s;
}

/* ----- 本体 ----- */
.hero-title {
    text-align: left;

    background-image: url(../images/bg_tit.png);
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom: 16px;

    padding: clamp(12px, 1.5vw, 16px) clamp(16px, 3vw, 20px) clamp(16px, 3vw, 24px);
}

/* ----- 英語部分 ----- */
.hero-title__heading {
    padding: 0;
    text-shadow: none;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
    color: #F6732A;
    font-family: "Outfit", "Noto Sans JP", "ヒラギノ角ゴ Pro W3",
        "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, Osaka,
        "ＭＳ Ｐゴシック", sans-serif;

    font-size: clamp(24px, 3.5vw, 32px);
}

/* ----- サブタイトル ----- */
.hero-title__subtitle {
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    color: #757575;
    font-size: clamp(14px, 2.5vw, 16px);
}


.visual .visualContent{
    color: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.visual .visualContent h2{
    text-align: center;
    font-family: "Outfit", sans-serif;
    font-size: 88px;
    font-weight: 800;
    line-height: 86%;
    letter-spacing: 16.784px;
    margin-bottom: 24px;
    text-shadow: 2px 2px 0px #f6732a;
}

.visual .visualContent .cap{
    text-align: center;
    font-size: 44px;
    font-weight: 900;
    line-height: 86%;
    letter-spacing: 7.22px;
    margin-bottom: 64px;
    text-shadow: 2px 2px 0px #f6732a;
}
.visual .visualContent .lead{
    text-align: center;
    font-size: 22px;
    font-weight: 500;
    line-height: 225%;
    letter-spacing: 0.15px;
    text-shadow: 2px 2px 0px #f6732a;
}
.visualBg{
    position: absolute;
    right: 0;
    bottom: 0;
    width: 52%;
    line-height: 0;
}

.visualBgPic{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.visualBgPic .bgInner{
    width: 100%;
    animation: scrollingBG 12s linear infinite reverse;
}
.visualBgPic .bgInner img{
    width: 100%;
    height: auto;
}
@keyframes scrollingBG {
  0% {
    transform: translate(0, -50%);
  }
  100% {
    transform: translate(0, 0);
  }
}


.scrolling {
    position: absolute;
    left: 50%;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
    align-items: center;
    transform: translate(-50%, 0);
}
.scrolling .scTxt{
    writing-mode: vertical-rl;
    font-family: "Outfit", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.176px;
    color: #FFF;
}
.scrolling .scLine{
    height: 50px;
    width: 1px;
    position: relative;
}
/* 線のアニメーション部分 */
.scrolling .scLine::before {
    animation: scrolling 2s infinite;
    background-color: #FFF;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}
/* 線の背景色 */
.scrolling .scLine::after {
    background-color: #FFAE80;
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
}
/* 線のアニメーション */
@keyframes scrolling {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.visual .loopTxtBox{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}
.visual .loopTxtBox .loopTxt{
    gap: 64px;
    animation: loop-text 60s linear infinite;
}
.visual .loopTxtBox .loopTxt li{
    width: 56px;
}
.visual .comment{
    position: absolute;
    right: -16px;
    top: -24px;
    transform: translate(50%, -100%) rotate(3deg);
}
.visual .comment .commentInner{
    width: 200px;
    background: #FFF;
    color: #1D1B1A;
    border-radius: 8px;
    padding: 18px 12px 14px;
    text-align: center;
    font-size: 16px;
    filter: drop-shadow(0 6px 0px rgba(0, 0, 0, 0.2));
    pointer-events: none;
}
.visual .comment .commentInner::after {
    position: absolute;
    top: 95%;
    left: calc(50% - 30px);
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 24px 24px 0px 0px;
    border-color: #ffffff transparent transparent transparent;
}
.visual .comment.change1 .commentInner{
    animation:katakata1 6s infinite ease-in-out alternate;
}
.visual .comment.change2 .commentInner{
    animation:katakata2 6s infinite ease-in-out alternate;
}
.visual .comment .tag{
    position: absolute;
    top: 0;
    left: 0;
    border: 3px solid;
    line-height: 1em;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    background: #f6732a;
    color: #FFF;
    transform: translate(-10px, -16px) rotate(-5deg);
}
@keyframes katakata1 {
  0% {transform:translate(0, 0) rotate(0deg);}
  11% {transform:translate(0, 0) rotate(0deg);}

  12% {transform:translate(0, 0) rotate(-3deg);}
  13% {transform:translate(0, -1px) rotate(0deg);}
  14% {transform:translate(0, -1px) rotate(3deg);}

  15% {transform:translate(1px, 0) rotate(-2deg);}
  16% {transform:translate(0, 1px) rotate(0deg);}
  17% {transform:translate(0, 0) rotate(3deg);}

  18% {transform:translate(0, 0) rotate(0deg);}
  100% {transform:translate(0, 0) rotate(0deg);}
}
@keyframes katakata2 {
  0% {transform:translate(0, 0) rotate(0deg);}
  11% {transform:translate(0, 0) rotate(0deg);}

  12% {transform:translate(0, 0) rotate(-3deg);}
  13% {transform:translate(0, -1px) rotate(0deg);}
  14% {transform:translate(0, -1px) rotate(3deg);}

  15% {transform:translate(1px, 0) rotate(-2deg);}
  16% {transform:translate(0, 1px) rotate(0deg);}
  17% {transform:translate(0, 0) rotate(3deg);}

  18% {transform:translate(0, 0) rotate(0deg);}
  100% {transform:translate(0, 0) rotate(0deg);}
}
/* PC */
@media screen and (min-width: 901px){
.heroView{
    min-height: calc(100vh - 86px);
    position: relative;
}
}
/* SP */
@media screen and (max-width: 900px){
.visual {
    border-radius: 0 0 32px 32px;
}
.main-title{
    height: 72px;
}
.main-title h1 {
    line-height: 100%;
}
.scrolling {
    bottom: 24px;
}
.heroView{
    min-height: 500px;
}
.visual .visualContent {
    z-index: 10;
}
.visual .visualContent h2 {
    font-size: clamp(28px, 52px, 10vh);
    margin-bottom: 16px;
}
.visual .visualContent .cap {
    font-size: clamp(13px, 24px, 4.6vh);
    margin-bottom: min(56px, 8vh);
}
.visual .visualContent .lead {
    font-size: clamp(8px, 16px, 2.9vh);
    font-weight: normal;
}
.visualBgPic .bgInner{

}
.visualBgPic .bgInner img{

}
.visualBg {
    width: 85%;
}
.visual .comment {
    transform: translate(24px, -100%) rotate(3deg);
}
.visual .comment .tag {
    border: 1px solid;
    line-height: 1em;
    padding: 6px 8px;
    font-size: 8px;
    top: 3px;
    left: -6px;
}

.visual .comment .commentInner{
    padding: 13px 4px;
    width: 122px;
    font-size: 10px;
    line-height: 156%;
}
.visual .comment .commentInner::after {
    border-width: 18px 20px 0px 0px;
}
.visual .loopTxtBox .loopTxt {
    gap: 40px;
}
.visual .loopTxtBox .loopTxt li {
    width: 40px;
}

}


/*=========================================
    about
===========================================*/
.aboutBox{
    background: #FFF;
    padding: 168px 24px 104px;
    position: relative;
}
.aboutBgBox{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    will-change: transform;
    transition: 0.5s cubic-bezier(0.36, 0.66, 0.68, 0.9);
}
.aboutBg{
    position: absolute;
    width: 680px;
}
.aboutBg.px1{
    top: 5%;
    left: calc(50% + 300px);
}
.aboutBg.px2{
    top: 25%;
    right: calc(50% + 300px);
}
.aboutBox .aboutLoop{
    position: absolute;
    top: 0;
    left: 0;
    padding: 32px 0;
    overflow: hidden;
    width: 100%;
}
.aboutBox .aboutLoop .loopTxt{
    animation: loop-text 34s linear infinite;
}
.aboutBox .aboutLoop .loopTxt li{
    width: 1173px;
}

.aboutBox .tabSwitch{
    display: flex;
    max-width: 900px;
    margin: 0 auto;
    align-items: flex-end;
}
.aboutBox .tabSwitch li{
    width: 50%;
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    border-top: 1px solid #F6732A;
    border-left: 1px solid #F6732A;
    border-right: 1px solid #F6732A;
    border-radius: 32px 32px 0 0;
    background-color: #F6732A;
    height: 80px;
    align-items: center;
    gap: 4px;       
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
}
.aboutBox .tabSwitch li.active{
    background-color: #FFF;
    height: 100px;
}
.aboutBox .tabSwitch li figure{
    line-height: 0;
    width: 204px;
    filter: brightness(10);
}
.aboutBox .tabSwitch li.active figure{
    filter: unset;
}

.aboutBox .tabSwitch li span{
    font-size: 20px;
    font-weight: 700;
    color: #FFF;
}
.aboutBox .tabSwitch li.active span{
    color: #1D1B1A;
}
.aboutBox .tab{
    display: none;
    border-bottom: 1px solid #F6732A;
    border-left: 1px solid #F6732A;
    border-right: 1px solid #F6732A;
    background: #FFF;
}
.aboutBox .tab .innerContent{
    opacity: 0;
    animation: tabfade 0.3s ease 0.5s forwards;
}
@keyframes tabfade {
  from { opacity: 0;}
  to   { opacity: 1;}
}

.aboutBox .tabA{

}
.aboutBox .tabB{

}
.aboutBox .tab.active{
    display: block;
}

.aboutBox .tabBg1{
    position: absolute;
    left: 0;
    top: 0;
    background-image: url(../images/bg_wave_white.png);
    background-size: 3600px;
    background-position: 44% 100%;
    background-repeat: no-repeat;
    width: 100%;
    height: max-content;
    aspect-ratio: 1000 / 840;
    z-index: -1;
}
.aboutBox .tabA .tabBg1{
    transform: scalex(-1);
}
.aboutBox .tabBg2{
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../images/bg_wave_white_d.png);
    background-size: 3600px;
    background-position: 44% 0;
    background-repeat: no-repeat;
    width: 100%;
    height: max-content;
    aspect-ratio: 1000 / 755;
    z-index: -1;
}
.aboutBox .tabA .tabBg2{
    transform: scalex(-1);
}
.aboutBox .innerContent{
    max-width: 900px;
    margin: 0 auto;
    padding: 54px 64px 72px;
    background: #FFF4EE;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.aboutBox .tabB .innerContent{
    background: #F6F6F6;
}
.aboutBox .intro{
    border: 1px solid #F6732A;
    border-radius: 32px;
    margin-bottom: 70px;
    background: #FFF;
}


.aboutBox .intro .loopTxtBox{
    height: 48px;
}
.aboutBox .intro .loopTxtBox .loopTxt{
    animation: loop-text 18s linear infinite reverse;
}
.aboutBox .intro figure{
    line-height: 0;
    border-bottom: 1px solid #f6732a;
    border-top: 1px solid #f6732a;

}
.aboutBox .intro .txt{
    display: flex;
    padding: 24px 78px;
    flex-direction: column;
    align-items: center;
    line-height: 170%;

}

.aboutBox .point{
    display: flex;
    margin-bottom: 72px;
}
.aboutBox .point.point1{
    justify-content: center;
}
.aboutBox .point.point2{
    justify-content: flex-end;
}
.aboutBox .pointInner{
    position: relative;
}
.aboutBox .pointInner .num{
    position: absolute;
    left: -210px;
    top: 0;
    font-family: "Outfit", sans-serif;
    font-size: 80px;
    font-weight: 700;
    color: #F6732A;
    line-height: 0.7em;
    padding-left: 56px;
}

.aboutBox .tabB .pointInner .number{
    text-shadow: -1px -1px 0 #f6732a, 1px -1px 0 #f6732a, -1px 1px 0 #f6732a, 1px 1px 0 #f6732a;
    paint-order: fill stroke;
    color: #FFF;
}
.aboutBox .tabB .pointInner .number img{
    width: 90px;
}
.aboutBox .pointInner .num .point{
    position: absolute;
    font-size: 20px;
    left: 0;
    top: 0;
    line-height: 1em;
    color: #1D1B1A;
    padding-left: 20px;
}

/*=========================================

.aboutBox .pointInner .num .point:before{
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
    display: block;
    border-radius: 100px;
    content: "";
    background-color: #F6732A;
    width: 14px;
    height: 14px;
}
===========================================*/

.aboutBox .pointInner figure{
    width: 350px;
    border-radius: 32px;
    overflow: hidden;
    line-height: 0;
    box-sizing: border-box;
}
.aboutBox .pointInner .pointLoop{
    width: 350px;
    border-radius: 32px;
    overflow: hidden;
    line-height: 0;
    aspect-ratio: 700 / 467;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}
.aboutBox .pointInner .loopArtistBox .loopArtistImage {
    width: 400%;
}

.aboutBox .pointInner .pointTxt{
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: absolute;
    left: -210px;
    bottom: 48px;
    z-index: 1;
}
.aboutBox .pointInner .pointTxt li span{
    display: block;
    padding: 4px 16px;
    background: #FFF;
    max-width: fit-content;
    font-weight: 600;
    font-size: 18px;
}

.aboutBox .howto{

}
.aboutBox .howto .howtoInner{

}
.aboutBox .howto .howtoInner figure{
    line-height: 0;
    max-width: 640px;
    margin: 0 auto 34px;
}
.aboutBox .howto .howtoInner figure img{
    box-sizing: border-box;
}
.aboutBox .howto .howtoInner .titBox{
    display: flex;
    justify-content: flex-end;
    max-width: 640px;
    margin: 0 auto -2px;
}
.aboutBox .howto .howtoInner .tit{
    display: inline-block;
    font-size: 72px;
    font-weight: 900;
    line-height: 1em;
    position: relative;
}
.aboutBox .howto .howtoInner .tit.imageTxt{
    line-height: 0;
}
.aboutBox .tabB .howto .howtoInner .tit .innerTxt{
    text-shadow: -1px -1px 0 #f6732a, 1px -1px 0 #f6732a, -1px 1px 0 #f6732a, 1px 1px 0 #f6732a;
    paint-order: stroke;
    color: #FFF;
}
.aboutBox .tabB .howto .howtoInner .tit .innerTxt img{
    width: 360px;
}
.aboutBox .howto .howtoInner .tit .cap{
    position: absolute;
    right: 100%;
    top: 50%;
    font-size: 20px;
    padding-left: 20px;
    line-height: 1em;
    color: #1D1B1A;
    width: max-content;
    transform: translate(0, -50%);  
}

/*
.aboutBox .howto .howtoInner .tit .cap:before{
    position: absolute;
    left: 0;
    top: calc(50% - 7px);
    display: block;
    border-radius: 100px;
    content: "";
    background-color: #F6732A;
    width: 14px;
    height: 14px;
}
 */

.aboutBox .howto .howtoBtnList{
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 640px;
    margin: 0 auto;
}
.aboutBox .howto .howtoBtnList li{
    width: calc(50% - 8px);
}
.aboutBox .howto .howtoBtnList li a{
    display: flex;
    height: 64px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid;
    border-radius: 100px;
    padding: 0 24px;
    position: relative;
    font-size: 16px;
    font-weight: 800;
    background-color: #FFF;
}
.aboutBox .howto .howtoBtnList li a .arrow{
    width: 11px;
}
.aboutBox .howto .howtoBtnList li a .arrow img{
    display: block;
}

/* PC */
@media screen and (min-width: 901px){
.aboutBox .howto .howtoBtnList li a:hover{
    background-color: #FEEEE5;
}
}

/* SP */
@media screen and (max-width: 900px){
.aboutBox {
    padding: 88px 0 0;
}
.aboutBg {
    display: none;
}
.aboutBox .aboutLoop {
    padding: 24px 0;
}
.aboutBox .aboutLoop .loopTxt li {
    width: 480px;
}
.aboutBox .tabSwitch {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
}
.aboutBox .tabSwitch li {
    gap: 0;
    height: 67px;
    border-radius: 16px 16px 0 0;
}
.aboutBox .tabSwitch li figure {
    max-width: 70%;
}
.aboutBox .tabSwitch li span {
    font-size: 14px;
}
.aboutBox .tabSwitch li.active {
    height: 77px;
}
.aboutBox .tabBg1 {
    background-size: 2000px;
    aspect-ratio: 1000 / 1344;
    height: auto;
}
.aboutBox .tabBg2 {
    background-size: 2000px;
    aspect-ratio: 1000 / 1495;
    height: auto;
}
.aboutBox .innerContent {
    max-width: 480px;
    margin: 0 auto;
    padding: 32px 16px 32px;
}
.aboutBox .intro {
    border-radius: 16px;
}
.aboutBox .intro .loopTxtBox {
    font-size: 14px;
    height: 44px;
}
.aboutBox .intro .txt {
    display: flex;
    padding: 16px;
    font-weight: 400;
}
.aboutBox .point {
    width: 100%;
}
.aboutBox .point.point1 {
    justify-content: center;
    margin: 0 0 48px auto;
}

.aboutBox .pointInner {
    position: relative;
    display: flex;
}
.aboutBox .point.point1 .pointInner {
    justify-content: flex-end;
}
.aboutBox .point.point2 .pointInner {
    justify-content: flex-start;
}
.aboutBox .pointInner .pointLoop,
.aboutBox .pointInner figure {
    width: 69%;
    border-radius: 16px;
}
.aboutBox .pointInner .num {
    left: 0;
    font-size: 52px;
    padding-left: 40px;
}
.aboutBox .point.point2 .pointInner .num {
    left: auto;
    right: 0;
}
.aboutBox .tabB .pointInner .number img{
    width: 64px;
}
.aboutBox .tabB .howto .howtoInner .tit .innerTxt img{
    width: 250px;
}
.aboutBox .pointInner .num .point:before {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
}
.aboutBox .pointInner .num .point {
    font-size: 14px;
    padding-left: 12px;
}
.aboutBox .pointInner .pointTxt {
    left: 0;
    bottom: 20px;
}
.aboutBox .point.point2 .pointInner .pointTxt {
    left: auto;
    right: 0;
}
.aboutBox .pointInner .pointTxt li span {
    padding: 0 8px;
    font-size: 16px;
}
.aboutBox .howto .howtoInner .titBox {
    justify-content: flex-end;
}
.aboutBox .howto .howtoInner .tit {
        font-size: 50px;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
}
.aboutBox .howto .howtoInner .tit .cap {
    position: relative;
    right: auto;
    top: auto;
    font-size: 14px;
    padding-left: 20px;
    line-height: 200%;
    width: max-content;
    transform: none;
}
.aboutBox .howto .howtoInner figure {
    margin: 0 auto 26px;
}
.aboutBox .howto .howtoBtnList li {
    width: 100%;
}
.aboutBox .howto .howtoBtnList li a{
    height: 44px;
    font-size: 14px;
}
.aboutBox .howto .howtoBtnList li a .arrow {
    width: 8px;
}
}


/*=========================================
    pidBox
=========================

==================*/
.pidBox{
    background: linear-gradient(112deg, #F8F8FA 0.42%, #FFF 59.27%, #F2F3F4 100%);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.pidBox .ring{
    position: absolute;
    aspect-ratio: 1;
    line-height: 0;
    width: 44%;
    top: 3%;
    left: -4%;
    transform: translate(0, -50%) rotate(67deg);
}
.pidBox .ring .front{

}
.pidBox .ring .blur{
    position: absolute;
    top: 0;
    left: 0;
    filter: contrast(2) blur(12px); 
}
.pidBox .innerContent{
    max-width: 900px;
    margin: 0 auto;
}
.pidBox .inBox{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.pidBox .tit{
    font-size: 72px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    line-height: 1em;
}
.pidBox .tit span{
    display: flex;
    font-family: "Noto Sans JP", "Outfit", "Roboto", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Arial, sans-serif;
    font-size: 40px;
}
.pidBox .detail{
    position: relative;
}
.pidBox .innerContent .detailInner{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.pidBox .innerContent .txt{
    font-size: 24px;
    line-height: 170%;
    font-weight: 700;
}

.pidBox .innerContent figure{
    width: 55%;
    margin: 48px 0 0 auto;
    box-sizing: border-box;
    position: relative;
}
.pidBox .innerContent figure .pidImage{

}
.pidBox .innerContent figure .pidImage.cicleIcon{
    opacity: 0;
    transform: scale(0.6);
    transition: 0.2s ease;
    width: 30%;
}
.pidBox .innerContent figure .pidImage.pid01{

}
.pidBox .innerContent figure .pidImage.pid02{
    position: absolute;
    left: 27%;
    top: -2%;
    transition-delay: 0.7s;
}
.pidBox .innerContent figure .pidImage.pid03{
    position: absolute;
    right: 15%;
    bottom: -1%;
    transition-delay: 0.9s;
}
.pidBox .innerContent figure .pidImage.pid04{
position: absolute;
    right: -1%;
    top: 17%;
    transition-delay: 1.1s;
}
.pidBox .innerContent figure .pidImage.pid05{
    position: absolute;
    left: -1%;
    bottom: 16%;
    transition-delay: 1.3s;
}

.pidBox.showing .innerContent figure .pidImage.cicleIcon{
    opacity: 1;
    transform: scale(1);
}
.pidBox .innerContent .viewmore{
    display: flex;
    justify-content: flex-end;
}
.pidBox .innerContent .viewmore a{
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid;
    border-radius: 100px;
    background: #FFF;
    width: 174px;
    height: 48px;
    color: #1D1B1A;
}

.pidBox .innerContent .viewmore a .ripple {
    background-color: #1D1B1A4D;
}
/* PC */
@media screen and (min-width: 901px){
.pidBox .innerContent  .viewmore a:hover{
    background-color: #F6F6F6;
}
}

/* SP */
@media screen and (max-width: 900px){
.pidBox {
    padding: 40px 16px;
}
.pidBox .inBox {
    width: 100%;
    gap: 28px;
}
.pidBox .innerContent{
    max-width: 480px;
    margin: 0 auto;
}
.pidBox .innerContent .txt {
    position: relative;
    top: auto;
    left: auto;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}
.pidBox .detail {
        border-radius: 40px;
        background: #FFF;
        display: flex;
        padding: 26px 16px;
        flex-direction: column;
        gap: 12px;
        box-shadow: 1px 1px 2px 0 #FFF inset, -1px -1px 2px 0 rgba(29, 27, 26, 0.12) inset, -5px 5px 10px 0 rgba(246, 115, 42, 0.08), 5px -5px 10px 0 rgba(52, 92, 200, 0.08), 5px 5px 13px 0 rgba(52, 92, 200, 0.08);
}
.pidBox .innerContent figure {
    width: calc(100% - 64px);
    margin: 0 auto;
    padding: 0;
}
.pidBox .innerContent .viewmore a {
    width: 136px;
    height: 42px;
    font-size: 12px;
    font-weight: 700;
}
.pidBox .ring {
    top: 0;
    width: 102%;
    left: auto;
    right: 25%;
    transform: translate(0, -25%) rotate(45deg);
}
.pidBox .innerContent .detailInner{
    position: relative;
}
.pidBox .btnMore{
    display: flex;
    justify-content: flex-end;
}
.pidBox .btnMore a{
    padding: 0 20px;
}
}

/*=========================================
    history
===========================================*/
.historyBox{
    padding: 80px 24px 100px;
    position: relative;
}

.historyBox .innerContent{
    position: relative;
}
.historyBox .titBox{
    display: flex;

    justify-content: flex-end;
    max-width: 900px;
    margin: 0 auto 32px;
    color: #FFF;
}

.historyBox .tit{
    display: flex;
    align-items: flex-start;
    font-size: 158px;
    font-weight: 900;
    position: relative;
    line-height: 1em;
}
.historyBox .tit .main{
    display: block;
    width: 543px;
    white-space: nowrap;
}
.historyBox .tit .sub{
    position: absolute;
    font-size: 56px;
    top: 8px;
    right: calc(100% + 4px);
    width: max-content;
    line-height: 1.5em;
    letter-spacing: 3px;
}
.historyBox .historyWindow{
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto 48px;
    position: relative;
}
.historyBox .historyWindow .txt{
    position: absolute;
    left: 49%;
    top:40px;
    font-size: 22px;
    line-height: 1.8em;
    color: #FFF;
  text-shadow:
    -1px -1px 0 #f6732a,
     1px -1px 0 #f6732a,
    -1px  1px 0 #f6732a,
     1px  1px 0 #f6732a;
}
.historyBox .historyWindow .pointTxt{
    position: absolute;
    left: 47%;
    top: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 1;
}
.historyBox .historyWindow .pointTxt li.viewingBox:before{
    background: #FFF;
}
.historyBox .historyWindow .pointTxt li span {
    display: block;
    padding: 4px 18px 6px;
    background: #FFF;
    max-width: fit-content;
    font-size: clamp(1vw, 23px, 2.4vw);
    font-style: normal;
    font-weight: 600;
    line-height: 170%;
    color: #F6732A;
}
.historyBox .historyWindow figure{
    width: 500px;
    line-height: 0;
    background-image: url(../images/ph_history_cap_pc.jpg);
    background-size: cover;
    background-position: 0 0;
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}
.historyBox .showing .historyWindow figure{
    transition: 5s ease;
    background-position: 0 100%;
}
.historyBox .historyWindow figure .hitoryBtn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
}
.historyBox .showing .historyWindow figure .hitoryBtn {
    transition: 0.5s ease 5.5s;
    opacity: 1;
    pointer-events: auto;
}
.historyBox .historyWindow figure .shade{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #1D1B1A;
    opacity: 0;
}
.historyBox .showing .historyWindow figure .shade{
    transition: 0.5s ease 5.5s;
    opacity: 0.5;
}
.historyBox .historyWindow figure .ripple{
    background-color: #1D1B1A4D;
}

.historyBox .bar{
    display: flex;
    font-family: "Outfit", sans-serif;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.historyBox .bar li{
    font-size: 48px;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 2px;
}
.historyBox .bar li:nth-child(1) {
    text-shadow: -1px -1px 0 #f6732a, 1px -1px 0 #f6732a, -1px 1px 0 #f6732a, 1px 1px 0 #f6732a;
    paint-order: fill stroke;

}
.historyBox .bar li.line{
    width: 100%;
    max-width: 730px;
    height: 16px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.historyBox .bar li.line:before{
    content: "";
    width: 72%;
    height: 1px;
    position: absolute;
    top: 7px;
    left: calc(50% - 144px);
    background: #FFF;
    overflow: hidden;
    z-index: 1;
}
.historyBox .bar li.line:after{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 7px;
    left: 0;
    background: #f6732a; 
}

.historyBox .bar li.line span{
    position: absolute;
    left: 0;
    top: calc(50% - 8px);
    width: 16px;
    height: 16px;
    border: 2px solid #f6732a;
    border-radius: 100px;
    background: #FFF;
    box-sizing: border-box;
    z-index: 1;
}
.historyBox .bar li img{
    width: 120px;
    max-width: 120px;
}
.historyBox .showing .bar li.line span{
    transition: 5s ease;
    left: calc(100% - 16px);
}


/* SP */
@media screen and (max-width: 900px){
.historyBox {
    padding: 24px 0 100px;
    z-index: 1; 
}
.historyBox .innerContent {
    position: relative;
}
.historyBox .titBox {
    max-width: 480px;
    margin: 0 auto 16px;
    justify-content: flex-start;
    padding: 0 16px;
}
.historyBox .tit {
    font-size: clamp(40px, 12vw, 60px);
    display: flex;
    flex-direction: row-reverse;
}
.historyBox .tit .main {
    display: block;
    width: auto;
    white-space: unset;
}
.historyBox .tit .sub {
    position: relative;
    font-size: 24px;
    line-height: 170%;
    right: auto;
}
.historyBox .historyWindow {
        max-width: 480px;
        margin: 0 auto 48px;
    flex-direction: column-reverse;
    align-items: unset;
    gap: 40px;
}
.historyBox .historyWindow .txt {
    position: relative;
    top: 8px;
    left: auto;
    font-size: 16px;
    padding: 0 16px;
        
}
.historyBox .historyWindow .pointTxt{
    position: relative;
    font-size: 16px;
    left: auto;
    top: auto;
    padding: 0 16px;
    display: inline-block;
}
.historyBox .historyWindow .pointTxt li{
    display: inline;
}
.historyBox .historyWindow .pointTxt li.viewingBox:before {
    content: none;
}
.historyBox .historyWindow .pointTxt li span {
    display: inline;
    padding: 0;
    background: transparent;
    max-width: initial;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 170%;
    color: #FFF;
    opacity: 1;
}
.historyBox .historyWindow figure {
    width: calc(100% - 76px);
    margin: 0 16px 0 60px;
    aspect-ratio: 299 / 400;
    background-image: url(../images/ph_history_cap_sp.jpg);
}
.historyBox .bar {
    flex-direction: column;
    position: absolute;
    left: max(calc(50% - 243px), 16px);
    bottom: 0;
}
.historyBox .bar li {
    font-size: 24px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}
.historyBox .bar li:nth-child(1) {
    text-shadow: -1px -1px 0 #ffffff, 1px -1px 0 #ffffff, -1px 1px 0 #ffffff, 1px 1px 0 #ffffff;
    color: #F6732A;
}
.historyBox .bar li.line {
    width: 10px;
    height: calc(((100vw - 90px) * 1.3) - 120px);
    max-height: 380px;  
}
.historyBox .bar li.line:before{
    width: 2px;
    height: 100%;
    top: 0;
    left: 4px;
    background: #FFF;
    z-index: 1;
}
.historyBox .bar li.line:after{
    content: none;  
}
.historyBox .bar li.line span {
    left: 0;
    top: 0;
    width: 10px;
    height: 10px;
    border: none;
}
.historyBox .bar li img{
    width: 20px;
    max-width: 20px;
}

.historyBox .showing .bar li.line span {
    left: 0px;
    top: calc(100% - 10px);
}
}


/*=========================================
    works
===========================================*/
.worksBox{
    padding: 100px 0;
    position: relative;
}
.worksBox .innerContent{
    position: relative;
    z-index: 1;
}
.worksBox .tit{
    max-width: 900px;
    margin: 0 auto 24px;
    padding: 0 24px;
}
.worksBox .tit span{    
    display: inline-block;
    font-size: 72px;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    line-height: 1em;
}
.worksBox .leadBox{
    max-width: 900px;
    margin: 0 auto 0;
    padding: 4px 24px 28px;
    display: flex;
    justify-content: space-between;
}

.worksBox .txt{
    font-size: 22px;
    font-weight: 600;
    line-height: 160%;
    position: relative;
    z-index: 1;
}
.worksBox .icon{
    position: absolute;
    width: min(360px, 30%);
    bottom: 0;
    right: 7%;
    transform: translate(0, 80%);
}

.worksBox .viewmore{
    position: absolute;
    bottom: 0;
    right: calc(((100% - 900px) / 2) - 60px);
    transform: translate(0, 50%);
    z-index: 1;
}
.worksBox .viewmore a{
    display: block;
    width: 240px;
    height: 240px;
    background: #FFF;
    box-sizing: border-box;
    border-radius: 1000px;
    filter: drop-shadow(0 5.179px 5.179px rgba(0, 0, 0, 0.25));
}
.worksBox .viewmore a span{
    display: block;
    padding: 20px;
}

/* SP */
@media screen and (max-width: 900px){
.worksBox .viewmore a span{
    padding: 16px 14px 14px 14px;
}
}

.worksBox .viewmore a .arrow{
    width: 40px;
    position: absolute;
    top: 48%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.worksBox .viewmore a .circleAnim{
    animation: circle 10s linear infinite;
    pointer-events: none;
}
@keyframes circle {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

/* PC */
@media screen and (min-width: 901px){
.worksBox .viewmore a:hover{
    background-color: #FEEEE5;
}
}


/* SP */
@media screen and (max-width: 900px){
.worksBox .tit {
    max-width: 480px;
    margin: 0 auto 8px;
    padding: 0 16px;
}
.worksBox .tit span {
    font-size: 48px;
}
.worksBox .leadBox{
    width: 100%;
    max-width: 480px;
    flex-direction: column;
    padding: 0 16px;
    margin: 0 auto 36px;
    box-sizing: border-box;
}
.worksBox .txt {
    width: 100%;
    margin: 0 auto 16px;
    padding: 0;
    font-size: 20px;
    line-height: 150%;
}
.worksBox .icon {
    width: 48%;
    height: fit-content;
    line-height: 0;
    bottom: 2%;
    right: -5%;
    transform: translate(0, 80%) rotate(12deg);
}
.worksBox .btnMore{
    display: flex;
    justify-content: flex-end;
}
.worksBox .viewmore {
    right: -48px;
}
.worksBox .viewmore a {
    display: block;
    width: 180px;
    height: 180px;
}
}

/*=========================================
    resale
===========================================*/
.resaleBox{
    padding: 82px 24px 202px;
    position: relative;
}
.resaleBox .innerContent{
    max-width: 900px;
    margin: 0 auto;
}
.resaleBox .trBox{
    margin-bottom: 20px;
}
.resaleBox .trBox .trTxt{
    font-size: 72px;
    font-weight: 900;
    line-height: 1em;
}
.resaleBox .trBox .small-text{
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
    padding-top: 32px;
    padding-left: 0;
    margin-left:0;
}

.resaleBox .trBox .cursor{
    background: #F6732A;
}
.resaleBox .trBox .ghost{
    font-size: 80px;
    font-weight: 900;
    line-height: 1em;
}
.resaleBox .trBox .ghost span{
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    line-height: 150%;
    padding-top: 32px; 
}

.resaleBox .innerContent .txt{
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: 40px;
    padding: 0;
}
.resaleBox .loopResaleBox{
    position: absolute;
    bottom: 46px;
    left: 0;
    width: 100%;
    overflow: hidden;
}
.resaleBox .loopResaleBox .loopResale{
    display: flex;
    animation: scroll 18s linear infinite;
    width: 200%;
}
.resaleBox .loopResaleBox .loopResale li{
    line-height: 0;
}
.resaleBox .loopResaleBox .loopResale li img{
}
@keyframes scroll {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}


.resaleBox .innerContent .viewmore{
    display: flex;
    justify-content: flex-end;
}
.resaleBox .innerContent .viewmore a{
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid;
    border-radius: 100px;
    background: #FFF;
    width: 174px;
    height: 48px;
    color: #F6732A;
}
.resaleBox .innerContent .btnMore{
    display: flex;
    justify-content: flex-end;
}
.resaleBox .innerContent .btnMore a{
    background-color: #FFF;
    color:#F6732A ;
}
.resaleBox .innerContent .btnMore a .ripple {
    background-color: #F6732A4D;
}

/* PC */
@media screen and (min-width: 901px){
.resaleBox .innerContent .viewmore a:hover{
    background-color: #FEEEE5;
}
.resaleBox .innerContent .btnMore a:hover{
    background-color: #FEEEE5;
}
}

/* SP */
@media screen and (max-width: 900px){
.resaleBox {
    padding: 32px 0 150px;
}
.resaleBox .innerContent {
    max-width: 480px;
    margin: 0 auto;
    padding: 0 16px;
}
.resaleBox .trBox {
    margin-bottom: 24px;
}
.resaleBox .trBox .trTxt {
    font-size: 32px;
}
.resaleBox .trBox .small-text {
    font-size: 20px;
}
.resaleBox .trBox .ghost {
    font-size: 32px;
}
.resaleBox .trBox .ghost span {
    font-size: 20px;
}
.resaleBox .innerContent .txt {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 80px;
    padding: 0;
}
.resaleBox .innerContent .viewmore {
    justify-content: flex-end;
}
.resaleBox .innerContent .viewmore a {
    width: 136px;
    height: 42px;
}
.resaleBox .innerContent .viewmore a .loopTxtBox {
    font-size: 12px;
}
.resaleBox .loopResaleBox {
    bottom:48px;
}
.resaleBox .loopResaleBox .loopResale {
    width: 400%;
}
}

/*=========================================
    footer
===========================================*/
.footer{
    background-color: #F6732A;
    color: #FFF;
    position: relative;
    border-radius: 64px 64px 0 0;
    padding: 0 24px;
}
.footer .innerContent{
    max-width: 900px;
    padding: 48px 0 0;
    margin: 0 auto 88px;
    position: relative;
    display: flex;
    gap: 40px;
}
.footer .pageTopArea{
    position: absolute;
    right: 0;
    top: 0;
    width: 240px;
    height: 143px;
    transform: translate(0, -60%);
    overflow: hidden;
    z-index: 1;
}
.footer .pageTop{
    position: absolute;
    left: 0;
    top: 0;
    width: 120px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.footerFix .footer .pageTop{
    opacity: 1;
    pointer-events: auto;
    line-height: 0;
}
.footerFix .footer .pageTop img{
    cursor: pointer;
}
.footer .pageTop a{
    display: block;
    line-height: 0;
}

.footer .pageTopIcon{
    display: none;
    position: fixed;
    bottom: 60px;
    right: 60px;
    width: 50px;
    height: 50px;
    line-height: 0;
    z-index: 10;
}
.footer .pageTopIcon a{
    display: block;
    background: #FFF;
    border-radius: 100px;
    border: 1px solid #f6732a;
}

.footer h3{
    margin-bottom: 0;
}
.footer h3 a{
    line-height: 0;
    display: block;
    width: 160px;
}
.footer .footerNav{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px 40px;
    padding-left: 6px;
}

.footer .footerNav li{

}
.footer .footerNav li a{
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    position: relative;
    padding-left: 14px;
}
.footer .footerNav li a:before{
    content: "";
    position: absolute;
    top: calc(50% - 0px);
    left: 0;
    width: 8px;
    height: 2px;
    background: #FFF;
    display: block;
}
.footer .credit{
    color: #F6732A;
    background: #FFF;
    padding: 0px;
    text-align: center;
    border-radius: 16px 16px 0 0;
    font-size: 10px;
    font-weight: 400;
    margin: 0 auto;
    max-width: 900px;
}

/* PC */
@media screen and (min-width: 901px){
.footer .pageTopIcon a:hover{
    background-color: #FEEEE5;
}

}
/* SP */
@media screen and (max-width: 900px){
.footer {
    border-radius: 46px 0 0;
    padding: 0 16px;
}
.footer h3 a {
    width: 180px;
}
.footer .pageTopArea{

}
.footer .pageTopArea {
    width: 124px;
    height: 114px;
    transform: translate(0, -30%);
}
.footer .pageTop {
    width: 96px;
    transform: translate(150%, 0);
}
.footerFix .footer .pageTop {
    transform: translate(0, 0);
    z-index: 999;
}
.footer .pageTopIcon {
    bottom: 24px;
    right: 24px;
}
.footer .innerContent {
    padding: 32px 16px 0;
    flex-direction: column;
    margin: 0 auto;
}
.footer .footerNav {
    margin-bottom: 64px;
    flex-direction: column;
}
.footer .footerNav li {
    line-height: 150%;
}
.footer .footerNav li a {
    font-size: 12px;
    font-weight: 500;
}
.footer .credit {
    font-size: 9px;
    padding: 0px 24px;
}
}
/* ===================================================
   FIX PATCH : loopArtist / resale keyframes conflict
   これをCSSの一番下に貼るだけでOK
=================================================== */

/*=========================================
    loopArtist（FIX版）
===========================================*/
.loopArtist{
  overflow: hidden;
}

.loopArtistBox{
  width: 100%;
  height: 165px;
  overflow: hidden;
}

.loopArtistBox .loopArtistImage{
  display: flex;
  width: max-content;          /* 中身の実幅にする */
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 0;                      /* 隙間ゼロ */
  transform: translate3d(0, 0, 0);
  animation: artistScroll 24s linear infinite;
  will-change: transform;
  animation-play-state: paused;

}

.loopArtistBox:nth-child(even) .loopArtistImage{
  animation: artistScrollReverse 22s linear infinite;
  animation-play-state: paused;
}

.loopArtistBox .loopArtistImage li{
  flex-shrink: 0;
  line-height: 0;
}

.loopArtistBox .loopArtistImage img{
  display: block;
  height: 165px;
  width: auto;
}

/* keyframes名が被ると上書き事故るので別名にする */
@keyframes artistScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes artistScrollReverse {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* SP：400%指定はズレの原因なので撤去し、画像高さだけ調整 */
@media screen and (max-width: 900px){
  .loopArtistBox{
    height: 120px;             /* 好みで調整OK */
  }
  .loopArtistBox .loopArtistImage img{
    height: 120px;
  }
}

/*=========================================
    resale（keyframes名の衝突回避）
===========================================*/
.resaleBox .loopResaleBox .loopResale{
  animation: resaleScroll 24s linear infinite;
}

/* 既存の @keyframes scroll と衝突しない名前にする */
@keyframes resaleScroll {
  from { transform: translateX(0%); }
  to   { transform: translateX(-50%); }
}
