@charset "utf-8";


/* top_first_view */
.top-section {
    width: 100%;
    height: 100vh;
    background-color: #1B1E30;
    position: relative;
    overflow-x: hidden;
    filter: drop-shadow(40px 50px 30px rgba(0, 0, 0, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ロケット */
.rocket-path-container {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    position: absolute;
}

.path-svg {
    width: 100%;
    height: 100%;
}

.rocket-path-container image {
    transform: rotate(90deg)
}

@keyframes move {
    to {
    offset-distance: 100%;
    }
}

/* ファーストビュー */
.title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.fv-title {
    position: relative;
    z-index: 1000;
    display: block;
    width: 80%;
    height: auto;
    min-width: 600px;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    margin-top: 10%;
}

.fv-name {
    font-size: 6rem;
    color: #fff;
    text-align: center;
    z-index: 100;
    position: relative;
}

.fv-gamestart {
    display: flex;
    justify-content: center;
}

.fv-finger-select {
    width: 40px;
    height: 40px;
    background-image: url(../img/hand_dot.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: btn_animation 2s infinite;
}

@keyframes btn_animation {
    0% {
        transform: translate(4px, 0px);
    }
    5% {
        transform: translate(-4px, 0px);
    }
    10% {
        transform: translate(4px, 0px);
    }
    15% {
        transform: translate(-4px, 0px);
    }
    20% {
        transform: translate(4px, 0px);
    }
    25% {
        transform: translate(-4px, 0px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}

.fv-gamestart p {
    font-size: 2.4rem;
    color: #fff;
    padding-left: 30px;
    z-index: 100;
    position: relative;
}

.fv-planet {
    width: 50%;
    position: absolute;
    left: -130px;
    bottom: 0;
    overflow: hidden;
}

.fv-mountain {
    width: 50%;
    position: absolute;
    right: -130px;
    bottom: 0;
    overflow: hidden;
}

.sp-scrolldown__content {
    display: none;
}

/* fv tl レスポンシブ */
@media screen and (max-width: 768px) {
    .title-wrapper {
        margin-top: 50px;
    }

    .fv-title {
        width: 90%;
        min-width: 0;
        margin-top: 0;
    }

    .fv-name {
        font-size: 4.2rem;
    }

    .fv-gamestart p {
        font-size: 2em;
        padding-left: 20px;
    }

    .fv-finger-select {
        width: 26px;
        height: auto;
    }

    .sp-scrolldown__content {
        position: relative;
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        z-index: 1000;
    }

    .sp-scrolldown__text {
        text-decoration: none;
        color: #C8C828;
        font-size: 1.6rem;
        -webkit-text-stroke: 1px #C76C3B;
        text-align: center;
    }

    .sp-scrolldown__img {
        width: 100px;
        margin: 0 auto ;
        animation: down 1.5s infinite;
        -webkit-animation: down 1.5s infinite;
    }

    @keyframes down {
        0% {
        transform: translate(0);
        }
        20% {
        transform: translateY(8px);
        }
        40% {
        transform: translate(0);
        }
    }
}

/* fv sp　レスポンシブ */
@media screen and (max-width: 425px) {
    .fv-name {
        font-size: 2.4rem;
    }

    .fv-gamestart p {
        font-size: 1.4rem;
    }

    .fv-finger-select {
        width: 20px;
        height: auto;
    }
}




/* top-profile */
.profile-img__t {
    margin: 10% 0 -2px 0;
}

.profile-section {
    background-color: #29C095;
    padding: 0 6% 10% 6%;
    position: relative;
}

.profile-img__heon {
    width: 50%;
    max-width: 200px;
    position: absolute;
    top: -18%;
    left: 18%;
}

.profile-section__content-wrapper{
    position: relative;
    width: 100%;
    padding-bottom: 170px;
}

.profile-title__container {
    width: 80%;
    margin: auto;
    padding-top: 65px;
}

.profile-title__container h2 {
    font-size: 6.4rem;
    line-height: 1.2;
    width: 100%;
    color: #C8C828;
    text-align: end;
}

.profile-title__under {
    width: 100%;
    height: 10px;
}

.profile-title__underbar {
    width: 100%;
    height: 10px;
    background-image: url(../img/underline.png);
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.profile-detail__container {
    width: 80%;
    display: flex;
    margin: 70px auto 0;
    justify-content: center;
    gap: 35px;
}

.profile-detail__container{
    position: relative;
    width: 100%;
}

.profile-detail__img {
    width: 350px;
    height: 350px;
    margin: auto 0;
    border-radius: 50%;
    background-image: url(../img/me_dot1.png);
    background-size: cover;
    background-position: center;
    transition: background-image 0.5s ease;
}

.profile-detail__img:hover {
    background-image: url(../img/hyu_profile.jpg);
}

.profile-detail__content {
    width: 60%;
    margin-top: 35px;
    padding-left: 30px;
}

.profile-detail__content h3 {
    font-size: 3.6rem;
}

.profile-detail__text {
    font-size: 2rem;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    line-height: 200%;
    margin-top: 30px;
}

.profile-secton__img-container{
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.profile-img__b {
    width: 100%;
    margin-top: -3px;
    filter: drop-shadow(40px 50px 30px rgba(0, 0, 0, 0.3));
}

.profile-img__bass {
    width: 50%;
    max-width: 350px;
}

.profile-img__camera {
    width: 50%;
    max-width: 350px;
}

.swing {
    animation-name: decoSwing;
    animation-duration: 2400ms;
    animation-timing-function: steps(2, end);
    animation-iteration-count: infinite;
}

@keyframes decoSwing {
0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(25deg);
}
}

.swing-pattern2 {
    animation-name: decoSwing2;
    animation-duration: 2400ms;
    animation-timing-function: steps(2, end);
    animation-iteration-count: infinite;
}

@keyframes decoSwing2 {
0% {
    transform: rotate(0deg);
}

100% {
    transform: rotate(-25deg);
}
}

/* profile レスポンシブ　tl */
@media screen and (max-width: 768px) {
    .heon__img {
        width: 100px;
        margin-top: 150px;
    }
    
    .profile-title__container h2 {
        font-size: 3.2rem;
        text-align: center;
    }

    .profile-title__underbar {
        height: 5px;
    }

    .profile-detail__img {
        width: 300px;
        height: 300px;
    }

    .profile-detail__container {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .profile-detail__content {
        width: 100%;
        padding-left: 0;
    }

    .profile-detail__content h3 {
        text-align: center;
        font-size: 2.8rem;
    }

    .profile-detail__text {
        text-align: center;
        font-size: 1.8rem;
    }

    .profile-secton__img-container {
        width: 90%;
        margin: -30px auto 0 auto;
    }

    .profile-img__bass {
        width: 180px;
        height: auto;
    }

    .profile-img__camera {
        width: 180px;
        height: auto;
    }
}

/* profile レスポンシブ　sp */
@media screen and (max-width: 425px) {
    .heon__img {
        width: 60px;
        margin-top: 120px;
    }

    .profile-detail__container {
        margin: 30px auto 0;
    }

    .profile-title__container h2 {
        font-size: 2.4rem;
    }

    .profile-detail__img {
        width: 175px;
        height: 175px;
    }

    .profile-detail__content {
        margin: 0 auto;
    }

    .profile-detail__content h3 {
        text-align: center;
        font-size: 1.8rem;
    }

    .profile-detail__text {
        text-align: center;
        font-size: 1.6rem;
    }

    .profile-img__bass {
        width: 100px;
        height: auto;
    }

    .profile-img__camera {
        width: 100px;
        height: auto;
    }
}




/* スクロール */
.scroll__container {
    width: 100%;
    height: auto;
    position: relative;
}

.profile__scroll {
    position: absolute;
    top: -200px;
    transform: rotate(-3deg);
}

@keyframes infinity-scroll-left {
from {
    transform: translateX(0);
}

to {
    transform: translateX(-100%);
}
}

@keyframes infinity-scroll-right {
from {
        transform: translateX(-100%);
    }

to {
        transform: translateX(0);
    }
}

.scroll-infinity__wrap {
    display: flex;
    gap: 8px;
    width: 100%;
}

.scroll-infinity__wrap ul {
    gap: 8px;
}

.scroll-infinity__list {
    display: flex;
    list-style: none;
    padding: 0
}

.scroll-infinity__list--left {
    animation: infinity-scroll-left 60s infinite linear 1s both;
}

.scroll-infinity__item {
    width: calc(100vw / 4);
}

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

.scroll-infinity__list--right {
    animation: infinity-scroll-right 60s infinite linear 1s both;
}

@media screen and (max-width: 768px) {
    .profile__scroll {
        top: -130px;
    }
}

@media screen and (max-width: 425px) {
    .profile__scroll {
        top: -80px;
    }
}




/* top-work */
.work-img-content-wrapper{
    width: 100%;
    position: relative;
    padding-top: 30%;
}
.work-img__t {
    margin-bottom: -2px;
}

.work-img__meeple {
    width: 50%;
    max-width: 300px;
    position: absolute;
    right: 8%;
    bottom: -2%;
}

.work-section {
    background-color: #29C095;
    position: relative;
}

.work-title__container {
    height: auto;
    background-color: #29C095;
}

.work-title__content {
    width: 80%;
    margin: 0 auto;
}

.work-title__content h2 {
    font-size: 6.4rem;
    line-height: 1.2;
    width: 100%;
    color: #C8C828;
    text-align: start;
}

.work-title__under {
    width: 100%;
    height: 10px;
    padding-bottom: 80px;
}

.work-title__underbar {
    width: 100%;
    height: 10px;
    background-image: url(../img/underline.png);
    background-repeat: repeat-x;
    background-size: auto 100%;
}

.carousel {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 8px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
}

.carousel-slide img {
    width: 100%;
    display: block;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    padding: 0.5rem 1rem;
}

.carousel-button.prev {
    left: 10px;
}

.carousel-button.next {
    right: 10px;
}

/* swiper */
.swiper {
    background-color: #fff;
}

.swiper--wrapper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    text-align: center;
}

.swiper-button-next, .swiper-button-prev {
    color: #FF6DB7;
    margin-top: 0;
}

.swiper-pagination-bullet-active {
    background-color: #FF6DB7;
}

.swiper-list {
    text-align: center;
}

.swiper-title {
    display: block;
    font-size: 3.6rem;
    width: 100%;
    height: auto;
    padding: 40px 0 40px 0;
}

.swiper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    gap: 30px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.swiper-item__img-logo {
    width: 60%;
}

.swiper-item__img-flyer {
    width: 60%;
}

.swiper-item__img-web {
    width: 60%;
}

.swiper-item__img-photo {
    width: 60%;
}

.swiper-item__text {
    display: block;
    width: 90%;
    font-family: "Zen Kaku Gothic Antique";
    font-size: 2.4rem;
    line-height: 1.8;
    margin: 0 auto;
}

.swiper-pagination {
    padding-bottom: 20px;
}

.work-img__b {
    margin-top: -5px;
    width: 100%;
    height: auto;
    filter: drop-shadow(40px 50px 30px rgba(0, 0, 0, 0.3));
}

/* スクロール */
.work__scroll {
    position: absolute;
    top: 100px;
    transform: rotate(3deg);
}

.scroll-container__bottom {
    height: 500px;
}

@media screen and (max-width: 768px) {
    .work-img__meeple {
        max-width: 160px;
    }

    .work-title__content h2 {
        font-size: 3.2rem;
        text-align: center;
    }

    .work-title__underbar {
        height: 5px;
    }

    .scroll-container__bottom {
        height: 350px;
    }

    .swiper-title {
        font-size: 3rem;
        padding: 30px 0 30px 0;
    }

    .swiper-item__text {
        font-size: 2rem;
    }
}

@media screen and (max-width: 425px) {
    .work-img__meeple {
        max-width: 100px;
        max-height: 150px;
    }

    .work-title__under {
        padding-bottom: 50px;
    }

    .work-title__container {
        height: 680px;
    }

    .work-title__content h2 {
        font-size: 2.4rem;
        text-align: center;
    }

    .swiper-item {
        padding-bottom: 70px;
    }

    .swiper-title {
        font-size: 2.4rem;
        padding: 20px 0 20px 0;
    }

    .swiper-item__text {
        font-size: 1.6rem;
    }

    .scroll-container__bottom {
        height: 250px;
    }
}