@charset "utf-8";


/* === プロフィール === */
.profile {
    width: 88.9%;
    margin: 165px auto 0;
    position: relative;
}

 /* プロフィールタイトル */
.profile__title {
    display: flex;
    position: relative;
}
.profile__titlemain p {
    font-family: Kanit;
    font-size: max(4rem, 5.5vw);
    font-weight: 600;
    line-height: 71.25%;
}
.profile__title02 {
    font-family: "Noto Sans JP";
    font-size: max(1.2rem, 0.97vw);
    font-weight: 700;
    position: absolute;
    bottom: -2px;
    left: 8.4%;
}


 /* プロフィールイメージ */
.profil__main__img {
    display: flex;
    align-items: center;
    position: relative;
    position: absolute;
    bottom: 0px;
    left: 23%;
    width: 500px;
}
.profil__main__img01 {
    width: 40%;
    position: absolute;
    top: 84%;
    left: -22%;
    z-index: 3;
}
.profil__main__img02 {
    width: 54%;
    border: solid 3px #1A1A1A;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
}
.profil__main__img03 {
    width: 54%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #1A1A1A;
    border: solid 2px #1A1A1A;
    position: absolute;
    left: 5%;
    z-index: 1;
    animation:expansion 3.5s ease-in-out 1s infinite;
}

@keyframes expansion {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(6deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

 /* プロフィールネーム */
.profil__name {
    display: flex;
    align-items: center;
    gap: 0 5px;
}
.profil__name01 {
    font-family: Kanit;
    font-size: max(2.5rem, 2.7vw);
    font-weight: 600;
    line-height: 175%;
}

.profil__main__txt {
    width: 43.7%;
    margin-left: auto;
    margin-right: 3.12%;
}
.profil__name02 {
    font-size: max(1.4rem, 1.3vw);
    font-weight: 500;
    position: relative;
    top: 4px;
}

.profil__nameline {
    width: 5px;
    height: 1px;
    background-color: #1A1A1A;
    position: relative;
    top: 5px;
}
.profil__txtmain p {
    font-size: max(1.3rem, 1.14vw);
    font-weight: 500;
    line-height: 175%;
    margin-top: 25px;
}
.profil__txtmain p:first-of-type {
    margin-top: 30px;
}

/* =====
レスポンシブ
===== */
@media screen and (min-width: 1500px) {
    .profil__main__img {
        width: 39%;
    }
    .profil__main__img01 {
        width: 50%;
        top: 80%;
        left: -30%;
        z-index: 3;
    }
    .profil__main__img02 {
        width: 300px;
    }
    .profil__main__img03 {
        width: 290px;
        height: 347px;
    }
}
@media screen and (min-width: 1600px) {
    .profile {
        margin: 175px auto 0;
    }
    .profil__main__img {
        left: 25%;
        width: 39%;
    }
    .profil__name02 {
        top: 5px;
    }
    .profil__nameline {
        top: 6px;
    }
}
@media screen and (min-width: 1700px) {
    .profil__main__img {
        width: 39%;
    }
    .profil__main__img01 {
        width: 50%;
        top: 80%;
        left: -30%;
        z-index: 3;
    }
    .profil__main__img02 {
        width: 320px;
    }
    .profil__main__img03 {
        width: 300px;
        height: 370px;
        left: 8%;
    }
}
@media screen and (min-width: 1800px) {
    .profile {
        margin: 200px auto 0;
    }
    .profil__main__img {
        left: 27%;
        width: 39%;
    }
}
@media screen and (min-width: 2000px) {
    .profil__main__img {
        width: 39%;
    }
    .profil__main__img01 {
        width: 45%;
        top: 80%;
        left: -30%;
        z-index: 3;
    }
    .profil__main__img02 {
        width: 350px;
    }
    .profil__main__img03 {
        width: 320px;
        height: 407px;
        left: 9%;
    }
}
@media screen and (min-width: 2100px) {
    .profil__name02 {
        top: 6px;
    }
    .profil__nameline {
        top: 7px;
        width: 8px;
        height: 1.5px;
    }
}
@media screen and (min-width: 2200px) {
    .profile {
        margin: 250px auto 0;
    }
}
@media screen and (min-width: 2300px) {
    .profil__main__img {
        width: 39%;
        left: 28%;
    }
    .profil__main__img01 {
        width: 45%;
        top: 80%;
        left: -30%;
        z-index: 3;
    }
    .profil__main__img02 {
        width: 370px;
    }
    .profil__main__img03 {
        width: 350px;
        height: 430px;
        left: 9%;
    }
    .profil__name02 {
        top: 7px;
    }
    .profil__nameline {
        top: 9.5px;
        width: 10px;
        height: 2px;
    }
}
@media screen and (min-width: 2500px) {
    .profil__main__img {
        width: 39%;
        left: 28%;
    }
    .profil__main__img01 {
        width: 40%;
        top: 80%;
        left: -27%;
        z-index: 3;
    }
    .profil__main__img02 {
        width: 400px;
    }
    .profil__main__img03 {
        width: 365px;
        height: 465px;
        left: 9%;
    }
}
@media screen and (max-width: 1400px) {
    .profile {
        margin: 155px auto 0px;
    }
}
@media screen and (max-width: 1300px) {
    .profile {
        margin: 145px auto 0px;
    }
    .profil__name02 {
        top: 3.5px;
    }
    
    .profil__nameline {
        top: 4.5px;
    }
}
@media screen and (max-width: 1260px) {
    /* プロフィールイメージ */
   .profil__main__img {
       bottom: 0px;
       left: 22%;
   }
   .profil__main__img01 {
       width: 37%;
       top: 83%;
       left: -22%;
   }
   .profil__main__img02 {
       width: 51%;
   }
   .profil__main__img03 {
       width: 51%;
       left: 4%;
   }
}
@media screen and (max-width: 1200px) {
    .profile {
        margin: 135px auto 0px;
    }
}
@media screen and (max-width: 1160px) {
    .profile {
        margin: 130px auto 0;
    }
     /* プロフィールイメージ */
    .profil__main__img {
        left: 20%;
    }
    .profil__main__img01 {
        width: 37%;
        top: 83%;
        left: -20%;
    }
    .profil__main__img02 {
        width: 49%;
    }
    .profil__main__img03 {
        width: 49%;
        left: 4%;
    }
}
@media screen and (max-width: 1060px) {
     /* プロフィールイメージ */
    .profil__main__img {
        left: 18.5%;
    }
    .profil__main__img01 {
        width: 37%;
        top: 83%;
        left: -20%;
    }
    .profil__main__img02 {
        width: 47%;
    }
    .profil__main__img03 {
        width: 47%;
        left: 4%;
    }
     /* プロフィールネーム */
    .profil__name {
        gap: 0 5px;
    }
    
    .profil__main__txt {
        width: 48%;
        margin-left: auto;
        margin-right: 0%;
        margin-top: 10px;
    }
    .profil__name02 {
        position: relative;
        top: 3px;
    }
    .profil__nameline {
        width: 5px;
        height: 1px;
        position: relative;
        top: 4px;
    }
    .profil__txtmain p {
        margin-top: 20px;
    }
    .profil__txtmain p:first-of-type {
        margin-top: 20px;
    }
}
@media screen and (max-width: 960px) {
    .profile {
        width: 88.9%;
        margin: 120px auto 0;
        position: relative;
    }
     /* プロフィールタイトル */
    .profile__titlemain p {
        font-size: 5rem;
    }
    .profile__title02 {
        position: relative;
        bottom: -55px;
        left: -99px;
    }
    
     /* プロフィールイメージ */
    .profil__main__img {
        left: 9%;
    }
    .profil__main__img01 {
        width: 38%;
        top: 81%;
        left: -20%;
    }
    .profil__main__img02 {
        width: 45%;
    }
    .profil__main__img03 {
        width: 45%;
        left: 3%;
    }
     /* プロフィールネーム */
     .profil__name02 {
        position: relative;
        top: 2px;
    }
    .profil__nameline {
        top: 3px;
    }
    .profil__main__txt {
        width: 55%;
        margin-right: 0%;
    }
}
@media screen and (max-width: 860px) {
    /* プロフィールイメージ*/
    .profil__main__img {
        position: relative;
        margin: 40px 0 0 8%;
        width: 300px;
        left: 20.5%;
    }
    .profil__main__img01 {
        width: 65%; 
        top: 85%;
        left: -36.5%;
    }
    .profil__main__img02 {
        width: 350px;
        overflow: hidden;
    }
    .profil__main__img03 {
        width: 296px;
        height: 347px;
        left: 9%;
    }

     /* プロフィールネーム*/
    .profil__name {
        gap: 0 3px;
    }
    .profil__name01 {
        font-family: Kanit;
        font-size: clamp(3.5rem, 2.77vw, 4.5rem);
    }
    .profil__name02 {
        font-size: clamp(1.8rem, 1.39vw, 2.5rem);
        position: relative;
        top: 2px;
    }
    .profil__nameline {
        position: relative;
        top: 4px;
    }
    .profil__main__txt {
        width: 87.26%;
        margin: 30px 0 0 auto;
    }
} 
@media screen and (max-width: 769px) {
    .profile {
        width: 88.9%;
        margin: 120px auto 0;
        position: relative;
    }


    /* プロフィールイメージ*/
    .profil__main__img {
        position: relative;
        margin: 40px 0 0 8%;
        width: 300px;
        left: 19%;
    }
    .profil__main__img01 {
        width: 65%; 
        top: 85%;
        left: -36.5%;
    }
    .profil__main__img02 {
        width: 350px;
        border: solid 3px #1A1A1A;
        border-radius: 16px;
        overflow: hidden;
    }
    .profil__main__img03 {
        width: 296px;
        height: 347px;
        border-radius: 16px;
        position: absolute;
        left: 9%;
    }

     プロフィールネーム
    .profil__name {
        gap: 0 3px;
    }
    .profil__main__txt {
        width: 87.26%;
        margin: 30px 0 0 auto;
    }
} 

@media screen and (max-width: 680px) {
    .profile {
        width: 94.6%;
    }

    /* プロフィールイメージ*/
    .profil__main__img {
        position: relative;
        left: 25.5%;
        margin: 40px 0 0 0%;
        width: 300px;
    }
    .profil__main__img01 {
        width: 65%; 
        top: 85%;
        left: -36.5%;
    }
    .profil__main__img02 {
        width: 296px;
        border: solid 2px #1A1A1A;
    }
    .profil__main__img03 {
        width: 296px;
        height: 343px;
        left: 8%;
    }

     /* プロフィールネーム*/
    .profil__name {
        gap: 0 3px;
    }
    .profil__main__txt {
        width: 91.26%;
        margin: 30px 0 0 auto;
    } 
} 
@media screen and (max-width: 620px) {
    /* プロフィールイメージ*/
    .profil__main__img {
        position: relative;
        left: 24.5%;
        margin: 40px 0 0 0%;
        width: 300px;
    }
    .profil__main__img01 {
        width: 65%; 
        top: 85%;
        left: -36.5%;
    }
    .profil__main__img02 {
        width: 296px;
    }
    .profil__main__img03 {
        width: 296px;
        height: 343px;
        left: 8%;
    }
} 
@media screen and (max-width: 580px) {
    /* プロフィールイメージ*/
    .profil__main__img {
        position: relative;
        left: 24.5%;
        margin: 40px 0 0 0%;
        width: 300px;
    }
    .profil__main__img01 {
        width: 65%; 
        top: 85%;
        left: -30%;
    }
    .profil__main__img02 {
        width: 275px;
    }
    .profil__main__img03 {
        width: 275px;
        height: 320px;
        left: 8%;
    }
} 
@media screen and (max-width: 530px) {
    .profile {
        margin: 110px auto 0px;
    }
}
@media screen and (max-width: 520px) {
    /* プロフィールイメージ*/
    .profil__main__img {
        position: relative;
        left: 20%;
        margin: 40px 0 0 0%;
        width: 300px;
    }
    .profil__main__img01 {
        width: 65%; 
        top: 85%;
        left: -30%;
    }
    .profil__main__img02 {
        width: 275px;
    }
    .profil__main__img03 {
        width: 275px;
        height: 320px;
        left: 8%;
    }
} 

@media screen and (max-width: 480px) {
    .profile {
        margin: 100px auto 0;
    }
    /* プロフィールタイトル */
    .profile__title02 {
        font-size: 1rem;
        position: relative;
        bottom: -44.5px;
        left: -79px;
    }
    .profile__titlemain p {
        font-size: 4rem;
    }

    /* プロフィールイメージ */
    .profil__main__img {
        position: relative;
        left: 23%;
        margin: 40px 0 0 -0%;
        width: 230px;
    }
    .profil__main__img01 {
        width: 60%; 
        top: 85%;
        left: -30.5%;
    }
    .profil__main__img03 {
        width: 100%;
        height: 265px;
        left: 8%;
    }

     /* プロフィールネーム */
    .profil__name {
        gap: 0 3px;
    }
    .profil__name01 {
        font-family: Kanit;
        font-size: clamp(2.5rem, 2.77vw, 4.5rem);
        font-style: normal;
        font-weight: 600;
        line-height: normal;
    }
    .profil__name02 {
        font-size: clamp(1.4rem, 1.39vw, 2.5rem);
        position: relative;
        top: 2px;
    }
    .profil__nameline {
        position: relative;
        top: 3px;
    }
    .profil__main__txt {
        width: 91.26%;
        margin: 30px 0 0 auto;
    }
}
@media screen and (max-width: 440px) {
    /* プロフィールイメージ */
    .profil__main__img {
        position: relative;
        left: 21%;
        margin: 40px 0 0 -0%;
        width: 230px;
    }
    .profil__main__img01 {
        width: 60%; 
        top: 85%;
        left: -30.5%;
    }
    .profil__main__img03 {
        width: 100%;
        height: 265px;
        left: 8%;
    }
}
@media screen and (max-width: 400px) {
    /* プロフィールイメージ */
    .profil__main__img {
        position: relative;
        margin: 40px 0 0 -2%;
        width: 230px;
    }
    .profil__main__img01 {
        width: 60%; 
        top: 85%;
        left: -30.5%;
    }
    .profil__main__img03 {
        width: 100%;
        height: 265px;
        left: 8%;
    }
}
@media screen and (max-width: 370px) {
    /* プロフィールイメージ */
    .profil__main__img {
        position: relative;
        margin: 40px 0 0 -5%;
        width: 230px;
    }
    .profil__main__img01 {
        width: 60%; 
        top: 85%;
        left: -30.5%;
    }
    .profil__main__img03 {
        width: 100%;
        height: 265px;
        left: 8%;
    }
}
/* === プロフィールエンド === */








/* === 強み === */
.strengths {
    background-color: #1A1A1A;
    border-radius: 0 200px 0 200px;
    margin-top: 150px;
    padding: 150px 0 180px;
}
.strengths__box {
    width: 88.9%;
    margin: 0 auto;
}

/* 強みタイトル */
.strengths__title {
    display: flex;
    color: white;
    position: relative;
}
.strengths__title01 {
    font-family: Kanit;
    font-size: max(1.2rem, 0.97vw);
    font-weight: 600;
    position: relative;
    bottom: 2px;
}
.strengths__titlemain {
    font-family: Kanit;
    font-size: max(4rem, 4.38vw);
    font-weight: 600;
    line-height: 71.25%;
    position: relative;
    left: 3px;
}
.strengths__title02 {
    font-size: max(1.2rem, 0.97vw);
    font-weight: 700;
    line-height: 95%;
    position: absolute;
    bottom: 1.5%;
    left: 28.5%;
}

/* 強みテキスト */
.strengths__mainbox {
    width: 54.5%;
    margin-left: auto;
    margin-right: 3.12%;
    margin-top: 30px;
}
.strengths__mainbox02 {
    margin-top: 80px;
}
.strengths__mainbox03 {
    margin-top: 80px;
}
.strengths__mainbox__title {
    display: flex;
    align-items: center;
}
.strengths__mainbox__title01 {
    color: #FFF;
    font-family: Kanit;
    font-size: max(2rem, 2.7vw);
    font-style: normal;
    font-weight: 700;
}
.strengths__mainbox__title02 {
    color: #FFF;
    font-size: max(2rem, 1.7vw);
    font-style: normal;
    font-weight: 700; 
}
.space01 {
    margin-right: 12.9%;
}
.space02 {
    margin-right: 12%;
}
.space03 {
    margin-right: 12%;
}
.strengths__mainbox__line {
    background-color: #FFF;
    height: 2px;
    border-radius: 2px;
    width: 100%;
}
.strengths__mainbox__txt {
    width: 81.1%;
    color: #FFF;
    font-size: max(1.3rem, 1.1vw);
    font-style: normal;
    font-weight: 400;
    line-height: 175%; 
    margin: 22px 0 0 auto;
}

/* =====
レスポンシブ
===== */
@media screen and (max-width:1200px) {
    .strengths__title02 {
        left: 28.8%;
    }
    
}
@media screen and (max-width: 1060px) {
    .strengths {
        border-radius: 0 180px 0 180px;
        margin-top: 120px;
        padding: 120px 0 150px;
    }
    .strengths__title02 {
        bottom: 1%;
        left: 29%;
    }
    /* 強みテキスト */
    .strengths__mainbox {
        width: 58%;
        margin-left: auto;
        margin-right: 0%;
        margin-top: 50px;
    }
    .strengths__mainbox02 {
        margin-top: 80px;
    }
    .strengths__mainbox03 {
        margin-top: 80px;
    }
    .space01 {
        margin-right: 12.2%;
    }
    .space02 {
        margin-right: 11.2%;
    }
    .space03 {
        margin-right: 12%;
    }
    .strengths__mainbox__line {
        height: 2px;
        border-radius: 2px;
    }
    .strengths__mainbox__txt {
        width: 82.2%;
        margin: 22px 0 0 auto;
    }
}
@media screen and (max-width: 960px) {
    .strengths {
        border-radius: 0 160px 0 160px;
        margin-top: 110px;
        padding: 110px 0 140px;
    }

    .strengths__titlemain {
        font-size: 4.5rem;
        left: 3px;
    }
    .strengths__title02 {
        position: relative;
        top: 20.5px;
        left: 4px;
    }
    /* 強みテキスト */
    .strengths__mainbox {
        width: 67%;
    }
    .space01 {
        margin-right: 12.9%;
    }
    .space02 {
        margin-right: 12%;
    }
    .space03 {
        margin-right: 12%;
    }
    .strengths__mainbox__txt {
        width: 82.2%;
    }
}
@media screen and (max-width: 860px) {
    .strengths {
        border-radius: 0 140px 0 140px;
        margin-top: 80px;
        padding: 80px 0 120px;
    }
    
    /* 強みテキスト */
    .strengths__mainbox {
        width: 87%;
        margin: 60px 0 0 auto;
    }
    .strengths__mainbox02 {
        margin-top: 60px;
    }
    .strengths__mainbox03 {
        margin-top: 60px;
    }
    .space01 {
        margin-right: 10.3%;
    }
    .space02 {
        margin-right: 9.6%;
    }
    .space03 {
        margin-right: 9.6%;
    }
    .strengths__mainbox__title01 {
        font-weight: 500;
    }
    .strengths__mainbox__title02 {
        font-weight:500; 
    }
    .strengths__mainbox__txt {
        width: 86.2%;
        margin-top: 10px;
    }
    
}
@media screen and (max-width: 769px) {
    .strengths {
        border-radius: 0 130px 0 130px;
    }
}
@media screen and (max-width: 680px) {
    .strengths {
        border-radius: 0 120px 0 120px;
    }
    .strengths__box {
        width: 94.6%;
    }
    /* 強みテキスト */
    .strengths__mainbox {
        width: 91.26%;
    }
    .strengths__mainbox02 {
        margin-top: 60px;
    }
    .strengths__mainbox03 {
        margin-top: 60px;
    }
    .strengths__mainbox__line {
        height: 1.5px;
    }
    .space01 {
        margin-right: 10.3%;
    }
    .space02 {
        margin-right: 9.6%;
    }
    .space03 {
        margin-right: 9.6%;
    }
    .strengths__mainbox__txt {
        width: 85.8%;
    }
    
}
@media screen and (max-width: 600px) {
    .strengths__mainbox__txt {
        width: 85.3%;
    }
}
@media screen and (max-width: 530px) {
    .strengths__mainbox__txt {
        width: 84.7%;
    }
}
@media screen and (max-width: 480px) {
    .strengths {
        border-radius: 0 110px 0 110px;
    }
    /* 強みタイトル */
    .strengths__title01 {
        bottom: 3px;
        font-size: 1rem;
    }
    .strengths__titlemain {
        font-size: 3.8rem;
        left: 1px;
    }
    .strengths__title02 {
        font-size: 1rem;
        top: 17.5px;
        left: 3px;
    }

    /* 強みテキスト */
    .strengths__mainbox {
        width: 91.26%;
        margin: 50px 0 0 auto;
    }
    .strengths__mainbox02 {
        margin-top: 50px;
    }
    .strengths__mainbox03 {
        margin-top: 50px;
    }
    .space01 {
        margin-right: 8.9%;
    }
    .space02 {
        margin-right: 8%;
    }
    .space03 {
        margin-right: 8%;
    }
    .strengths__mainbox__txt {
        width: 86%;
    }
    
}
@media screen and (max-width: 420px) {
    .strengths__mainbox__txt {
        width: 84.7%;
    }
}
/* === 強みエンド === */









/* === 5ピース === */
.piece {
    margin: 150px auto 150px;
}

/* 5 ピースタイトル */
.piece_top {
    width: 88.9%;
    margin: 0 auto;
}
.piece__title {
    display: flex;
    position: relative;
}
.piece__title01 {
    font-family: Kanit;
    font-size: max(1.2rem, 0.97vw);
    font-weight: 600;
    position: relative;
    bottom: 2px;
}
.piece__titlemain {
    font-family: Kanit;
    font-size: max(4rem, 4.38vw);
    font-weight: 600;
    line-height: 71.25%;
    position: relative;
    left: 2px;
}
.piece__title02 {
    font-size: max(1.2rem, 0.97vw);
    font-weight: 700;
    line-height: 95%;
    position: absolute;
    bottom: 1%;
    left: 17%;
}



/* 5 ピースイメージ */
.piece__img {
    width: 64.2%;
    margin: 0 auto;
}

/* 5 ピースメイン */
.piece__main {
    width: 1230px;
    display: flex;
    margin: 50px auto 0;
    gap: 30px;
    flex-wrap: wrap;
}
.piece__box {
    width: 390px;
    height: 266px;
    padding: 15px;
    border-radius: 20px;
    border: 3px solid #1A1A1A;
    background: #FFF;
    cursor: pointer;
    box-shadow: 7px 7px 0px 0px #1A1A1A;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.piece__box:hover {
    transform: translate(7px, 7px);
    box-shadow: 0px 0px 0px 0px #1A1A1A;
}

.piece__box_title {
    display: flex;
    align-items: center;
}
.piece__box_title01 {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    border:solid 3px #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
}
.piece__box_title01 p {
    color: #1A1A1A;
    font-family: Kanit;
    font-size: clamp(1.2rem, 1.7vw, 2rem);
    font-weight: 600;
    line-height: 71.25%;
}
.piece__box_title02 {
    color: #1A1A1A;
    font-family: Kanit;
    font-size: clamp(1.6rem, 2.08vw, 2.5rem);
    font-style: normal;
    font-weight: 600;
    line-height: 71.25%;
}
.title__space01 {
    margin-left: 19%;
}
.title__space02 {
    margin-left: 23%;
}
.title__space03 {
    margin-left: 25.8%;
}
.title__space04 {
    margin-left: 24%;
}
.title__space05 {
    margin-left: 26.5%;
}
.piece__box_img01 {
    width: 62%;
    margin: 0 auto;
}
.piece__box_img02 {
    width: 68%;
    margin: 0 auto;
    position: relative;
    right: 15px;
}
.piece__box_img03 {
    width: 50%;
    margin: 0 auto;
}
.piece__box_img04 {
    width: 70%;
    margin: 20px auto 0;
}
.piece__box_img05 {
    width: 16%;
    margin: 0 auto;
    position: relative;
    bottom: 5px;
}
.piece__box_plus {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    background-color: #1A1A1A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    transition: all 0.3s ease;
    border: none;
}
.piece__box:hover .piece__box_plus {
    background-color: #FFF;
    border: 2px solid #1A1A1A;
}

.piece__box_plusimg {
    transition: transform 0.6s ease, filter 0.6s ease;
    transform: rotate(0deg);
}

.piece__box:hover .piece__box_plusimg {
    transform: rotate(360deg);
}




.plus01 {
    position: relative;
    bottom: 20px;
}
.plus02 {
    position: relative;
    bottom: 18px;
}
.plus03 {
    position: relative;
    bottom: 20px;
}
.plus04 {
    position: relative;
    top: 0px;
}
.plus05 {
    position: relative;
    bottom: 40px;
}

/* =====
レスポンシブ
===== */
@media screen and (min-width: 1700px) {
        /* 5 ピースメイン */
    .piece__main {
        width: 1500px;
        display: flex;
        margin: 50px auto 0;
        gap: 30px;
        flex-wrap: wrap;
    }
    .piece__box {
        width: 480px;
        height: 320px;
        padding: 20px;
    }

    .piece__box_title01 {
        width: 60px;
        height: 60px;
    }
    .piece__box_title01 p {
        font-size: 2.5rem;
    }
    .piece__box_title02 {
        font-size: 3rem;
    }
    .title__space01 {
        margin-left: 20%;
    }
    .title__space02 {
        margin-left: 24%;
    }
    .title__space03 {
        margin-left: 27%;
    }
    .title__space04 {
        margin-left: 26%;
    }
    .title__space05 {
        margin-left: 28.2%;
    }
    .piece__box_img02 {
        right: 30px;
    }
    .piece__box_img05 {
        width: 16%;
        bottom: 5px;
    }
    .piece__box_plus {
        width: 34px;
        height: 34px;
    }
    .plus01 {
        position: relative;
        bottom: 24px;
    }
    .plus02 {
        position: relative;
        bottom: 22px;
    }
    .plus03 {
        position: relative;
        bottom: 24px;
    }
    .plus04 {
        position: relative;
        top: 6px;
    }
    .plus05 {
        position: relative;
        bottom: 47px;
    }
} 
@media screen and (min-width: 2200px) {
        /* 5 ピースメイン */
    .piece__main {
        width: 1800px;
        display: flex;
        margin: 60px auto 0;
        gap: 60px;
        flex-wrap: wrap;
    }
    .piece__box {
        width: 560px;
        height: 360px;
        padding: 25px;
    }

    .piece__box_title01 {
        width: 66px;
        height: 66px;
    }
    .piece__box_title01 p {
        font-size: 3rem;
    }
    .piece__box_title02 {
        font-size: 3.5rem;
    }
    .title__space01 {
        margin-left: 20.5%;
    }
    .title__space02 {
        margin-left: 24.5%;
    }
    .title__space03 {
        margin-left: 28%;
    }
    .title__space04 {
        margin-left: 26.5%;
    }
    .title__space05 {
        margin-left: 28.8%;
    }
    .piece__box_img02 {
        right: 38px;
    }
    .piece__box_img05 {
        width: 15.5%;
        bottom: 5px;
    }
    .piece__box_plus {
        width: 40px;
        height: 40px;
    }
    .plus01 {
        position: relative;
        bottom: 40px;
    }
    .plus02 {
        position: relative;
        bottom: 36px;
    }
    .plus03 {
        position: relative;
        bottom: 40px;
    }
    .plus04 {
        position: relative;
        top: -1px;
    }
    .plus05 {
        position: relative;
        bottom: 58px;
    }
} 
@media screen and (max-width: 1360px) { 
    /* 5 ピースメイン */
    .piece__main {
        width: 1120px;
        gap: 30px;
    }
    .piece__box {
        width: 353px;
        height: 245px;
        padding: 15px;
        border-radius: 16px;
        border: 3px solid #1A1A1A;
    }
    .piece__box_title01 {
        width: 40px;
        height: 40px;
        border-radius: 8px;
        border:solid 2px #1A1A1A;
    }
    .title__space01 {
        margin-left: 60px;
    }
    .title__space02 {
        margin-left: 76px;
    }
    .title__space03 {
        margin-left: 86px;
    }
    .title__space04 {
        margin-left: 84px;
    }
    .title__space05 {
        margin-left: 91px;
    }
    .piece__box_img01 {
        width: 62%;
        margin: 9px auto;
    }
    .piece__box_img02 {
        width: 68%;
        margin: 9px auto;
        position: relative;
        right: 15px;
    }
    .piece__box_img03 {
        width: 50%;
        margin: 9px auto;
    }
    .piece__box_img04 {
        width: 70%;
        margin: 35px auto 0;
        position: relative;
        bottom: 3px;
        right: 3px;
    }
    .piece__box_img05 {
        width: 16%;
        margin: 10px auto;
        position: relative;
        bottom: 5px;
        left: 2px;
    }
    .piece__box_plus {
        width: 23px;
        height: 23px;
    }
    .piece__box:hover .piece__box_plus {
        background-color: #FFF;
        border: 2px solid #1A1A1A;
    }
}
@media screen and (max-width: 1260px) { 
    /* 5 ピースメイン */
    .piece__main {
        width: 940px;
        margin: 50px auto 0;
        flex-wrap: wrap;
    }
    .piece__box {
        width: 293px;
        height: 205px;
        padding: 10px;
    }
    .piece__box_title01 {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        border:solid 2px #1A1A1A;
    }
    .title__space01 {
        margin-left: 50px;
    }
    .title__space02 {
        margin-left: 66px;
    }
    .title__space03 {
        margin-left: 75px;
    }
    .title__space04 {
        margin-left: 75px;
    }
    .title__space05 {
        margin-left: 79px;
    }
    .piece__box_img01 {
        width: 62%;
        margin: 10px auto;
    }
    .piece__box_img02 {
        width: 68%;
        margin: 10px auto;
        position: relative;
        right: 15px;
    }
    .piece__box_img03 {
        width: 50%;
        margin: 11px auto;
    }
    .piece__box_img04 {
        width: 70%;
        margin: 27px auto 0;
    }
    .piece__box_img05 {
        width: 16%;
        margin: 15px auto;
        position: relative;
        bottom: 5px;
    }
    .piece__box_plus {
        width: 23px;
        height: 23px;
    }
    .piece__box:hover .piece__box_plus {
        background-color: #FFF;
        border: 2px solid #1A1A1A;
    }
}
@media screen and (max-width: 1200px) {
    .piece__title02 {
        left: 17.5%;
    }
} 
@media screen and (max-width: 1160px) { 
    .piece {
        margin: 120px auto 120px;
    }
}
@media screen and (max-width: 1060px) {     
    /* 5 ピースメイン */
    .piece__title02 {
        left: 17.5%;
    }
    .piece__main {
        width: 760px;
        gap: 20px;
    }
    .piece__box {
        width: 240px;
        height: 180px;
        border-radius: 16px;
        box-shadow: 5px 5px 0px 0px #1A1A1A;
    }
    .piece__box:hover {
        transform: translate(5px, 5px);
    }
    .piece__box_title01 {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        border:solid 2px #1A1A1A;
    }
    .title__space01 {
        margin-left: 29px;
    }
    .title__space02 {
        margin-left: 42px;
    }
    .title__space03 {
        margin-left: 50px;
    }
    .title__space04 {
        margin-left: 49px;
    }
    .title__space05 {
        margin-left: 55px;
    }
    .piece__box_img01 {
        width: 62%;
        margin: 10px auto;
    }
    .piece__box_img02 {
        width: 68%;
        margin: 10px auto;
        position: relative;
        right: 15px;
    }
    .piece__box_img03 {
        width: 50%;
        margin: 11px auto;
    }
    .piece__box_img04 {
        width: 70%;
        margin: 27px auto 0;
        position: relative;
        bottom: 0px;
        right: 0px;
    }
    .piece__box_img05 {
        width: 16%;
        margin: 15px auto;
        position: relative;
        bottom: 5px;
    }
    .piece__box_plus {
        width: 23px;
        height: 23px;
    }
    .piece__box:hover .piece__box_plus {
        background-color: #FFF;
        border: 2px solid #1A1A1A;
    }
}
@media screen and (max-width: 1000px) {
    .piece__title02 {
        left: 17.5%;
    }
}
@media screen and (max-width: 960px) { 
    .piece {
        margin: 110px auto 110px;
    }
     /* 5ピースタイトル */
    .piece__titlemain {
        font-size: 4.5rem;
    }
    .piece__title02 {
        position: relative;
        top: 20px;
        left: 3px;
    }

}
@media screen and (max-width: 860px) {
    .piece {
        margin: 80px auto 80px;
    }
   
    /* 5ピースイメージ */
    .piece__img {
        width: 80%;
        margin: 30px auto;
    }

    /* 5 ピースメイン */
    .piece__main {
        width: 680px;
    }
    .piece__box {
        width: 330px;
        height: 220px;
        padding: 10px;
        border-radius: 16px;
        border: 3px solid #1A1A1A;
    }
    .piece__box_title01 {
        width: 50px;
        height: 50px;
        border-radius: 8px;
        border:solid 3px #1A1A1A;
    }
    .piece__box_title01 p {
        font-size: 1.6rem;
    }
    .piece__box_title02 {
        font-size: 2rem;
    }
    .piece__box_title01 p {
        line-height: 71.25%;
    }
    .title__space01 {
        margin-left: 60px;
    }
    .title__space02 {
        margin-left: 75px;
    }
    .title__space03 {
        margin-left: 75px;
    }
    .title__space04 {
        margin-left: 80px;
    }
    .title__space05 {
        margin-left: 80px;
    }
    .piece__box_img01 {
        width: 63%;
        margin: 0px auto;
    }
    .piece__box_img02 {
        width: 68%;
        margin: 0px auto;
        position: relative;
        right: 10px;
    }
    .piece__box_img03 {
        width: 51%;
        margin: 0px auto;
        position: relative;
        bottom: 6px;
    }
    .piece__box_img04 {
        width: 75%;
        margin: 10px auto 0;
    }
    .piece__box_img05 {
        width: 14.5%;
        margin: 0px auto;
        position: relative;
        bottom: 0px;
    }
    .piece__box_plus {
        width: 21px;
        height: 21px;
    }
    .piece__box:hover .piece__box_plus {
        border: 2px solid #1A1A1A;
    }
    .piece__box_plusimg {
        position: relative;
        bottom: 0px;
        width: 16px;
        height: 16px;
    }
    .plus01 {
        position: relative;
        bottom: 23px;
    }
    .plus02 {
        position: relative;
        bottom: 18px;
    }
    .plus03 {
        bottom: 23px;
    }
    .plus04 {
        top:-4px;
    }
    .plus05 {
        position: relative;
        bottom: 20px;
    }
}
@media screen and (max-width: 769px) {
    /* 5 ピースメイン */
    .piece__main {
        width: 600px;
    }
    .piece__box {
        width: 290px;
        height: 200px;
        padding: 10px;
        border-radius: 16px;
    }
    .piece__box_title01 {
        width: 30px;
        height: 30px;
        border-radius: 8px;
        border:solid 2px #1A1A1A;
    }
    .piece__box_title01 p {
        font-size: 1.6rem;
    }
    .piece__box_title02 {
        font-size: 2rem;
    }
    .piece__box_title01 p {
        line-height: 71.25%;
    }
    .title__space01 {
        margin-left: 50px;
    }
    .title__space02 {
        margin-left: 68px;
    }
    .title__space03 {
        margin-left: 76px;
    }
    .title__space04 {
        margin-left: 74px;
    }
    .title__space05 {
        margin-left: 80px;
    }
    .piece__box_img01 {
        width: 63%;
        margin: 10px auto;
    }
    .piece__box_img02 {
        width: 68%;
        margin: 12px auto;
        position: relative;
        right: 10px;
    }
    .piece__box_img03 {
        width: 54%;
        margin: 6px auto;
    }
    .piece__box_img04 {
        width: 78%;
        margin: 20px auto 0;
    }
    .piece__box_img05 {
        width: 15.9%;
        margin: 8px auto;
        position: relative;
        bottom: 0px;
    }
    .piece__box_plus {
        width: 21px;
        height: 21px;
    }
    .piece__box:hover .piece__box_plus {
        border: 2px solid #1A1A1A;
    }
    .piece__box_plusimg {
        position: relative;
        bottom: 0px;
        width: 16px;
        height: 16px;
    }
    .plus01 {
        position: relative;
        bottom: 23px;
    }
    .plus02 {
        position: relative;
        bottom: 23px;
    }
    .plus03 {
        bottom: 23px;
    }
    .plus04 {
        top: -1px;
    }
    .plus05 {
        position: relative;
        bottom: 30px;
    }
}
@media screen and (max-width: 680px) {
    /* 5ピースイメージ */
    .piece_top {
        width: 94.6%;
        max-width: 1400px;
        margin: 0 auto;
    }
    .piece__img {
        width: 90%;
        margin: 15px auto;
    }

    /* 5 ピースメイン */
    .piece__main {
        width: 450px;
        gap: 15px;
    }
    .piece__box {
        width: 217px;
        height: 170px;
        padding: 8px;
        border-radius: 10px;
        border: 2px solid #1A1A1A;
        box-shadow: 3px 3px 0px 0px #1A1A1A;
    }
    .piece__box:hover {
        transform: translate(3px, 3px);
    }
    .piece__box_title01 {
        width: 25px;
        height: 25px;
        border-radius: 5px;
        border:solid 1.5px #1A1A1A;
    }
    .piece__box_title02 {
        font-size: 1.8rem;
    }
    .piece__box_title01 p {
        line-height: 71.25%;
    }
    .title__space01 {
        margin-left: 30px;
    }
    .title__space02 {
        margin-left: 42px;
    }
    .title__space03 {
        margin-left: 50px;
    }
    .title__space04 {
        margin-left: 48px;
    }
    .title__space05 {
        margin-left: 53px;
    }
    .piece__box_img01 {
        width: 70%;
        margin: 10px auto;
    }
    .piece__box_img02 {
        width: 75%;
        margin: 12px auto;
        position: relative;
        right: 10px;
    }
    .piece__box_img03 {
        width: 61%;
        margin: 6px auto;
        position: relative;
        bottom: 0px;
    }
    .piece__box_img04 {
        width: 82%;
        margin: 20px auto 0;
    }
    .piece__box_img05 {
        width: 18%;
        margin: 8px auto;
        position: relative;
        bottom: 0px;
    }
    .piece__box_plus {
        width: 18px;
        height: 18px;
    }
    .piece__box:hover .piece__box_plus {
        border: 2px solid #1A1A1A;
    }
    .piece__box_plusimg {
        position: relative;
        bottom: 1px;
        width: 13px;
        height: 13px;
    }
    .plus01 {
        position: relative;
        bottom: 18px;
    }
    .plus02 {
        position: relative;
        bottom: 17px;
    }
    .plus03 {
        bottom: 18px;
    }
    .plus04 {
        top: 5px;
    }
    .plus05 {
        position: relative;
        bottom: 24px;
    }
}

@media screen and (max-width: 480px) {
    /* 5ピースタイトル */
    .piece__title01 {
        bottom: 2px;
        font-size: 1rem;
    }
    .piece__titlemain {
        font-size: 3.8rem;
    }
    .piece__title02 {
        font-size: 1rem;
        top: 16.5px;
        left: 3px;
    }

    /* 5ピースイメージ */
    .piece__img {
        width: 100%;
        margin: 20px auto;
    }

    /* 5 ピースメイン */
    .piece__main {
        width: 345px;
        margin: 40px auto 0;
    }
    .piece__box {
        width: 165px;
        height: 155px;
        padding: 8px;
        border-radius: 10px;
    }
    .piece__box_title01 {
        width: 25px;
        height: 25px;
        border-radius: 5px;
        border:solid 1.5px #1A1A1A;
    }
    .piece__box_title02 {
        font-size: 1.6rem;
    }
    .piece__box_title01 p {
        line-height: 71.25%;
    }
    .title__space01 {
        margin-left: 9%;
    }
    .title__space02 {
        margin-left: 14%;
    }
    .title__space03 {
        margin-left: 19%;
    }
    .title__space04 {
        margin-left: 18%;
    }
    .title__space05 {
        margin-left: 20%;
    }
    .piece__box_img01 {
        width: 81.5%;
        margin: 10px auto;
    }
    .piece__box_img02 {
        width: 85%;
        margin: 12px auto;
        position: relative;
        right: 10px;
    }
    .piece__box_img03 {
        width: 72%;
        margin: 6px auto;
    }
    .piece__box_img04 {
        width: 90.4%;
        margin: 20px auto 0;
    }
    .piece__box_img05 {
        width: 21%;
        margin: 8px auto;
        position: relative;
        bottom: 0px;
    }
}
/* === 5ピースエンド === */
  



/* === オープンボックス === */
.openbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.75); /* 背景を半透明黒に */
    z-index: 500;
    visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.openbox.open {
    visibility: visible;
}

.openbox__main {
    width: 640px;
    height: 400px;
    border: solid 3px #1A1A1A;
    border-radius: 20px;
    padding: 15px;
    position: relative;
    z-index: 600;
    background-color: #FFF;
    transform: scale(0);
    transition: transform 0.2s ease-out; 
}
.openbox.open .openbox__main {
    transform: scale(1); 
  }
.openbox__sub {
    font-family: Kanit;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 71.25%;
}

.img01 {
    width: 250px;
    position: absolute;
    top: -80px;
    right: -70px;
    transform: scale(0);
    transition: transform 0.2s ease-out;
    transition-delay: 0.2s; 
}
.openbox.open .img01 {
    transform: scale(1) rotate(30deg);
}
.img02 {
    width: 265px;
    position: absolute;
    top: -80px;
    right: -50px;
    transform: scale(0);
    transition: transform 0.2s ease-out;
    transition-delay: 0.2s; 
}
.openbox.open .img02 {
    transform: scale(1) rotate(15deg);
}
.img03 {
    width: 220px;
    position: absolute;
    top: -80px;
    right: -40px;
    transform: scale(0);
    transition: transform 0.2s ease-out;
    transition-delay: 0.2s; 
}
.openbox.open .img03 {
    transform: scale(1);
}

.img04 {
    width: 300px;
    position: absolute;
    top: -60px;
    right: -70px;
    transform: scale(0);
    transition: transform 0.2s ease-out;
    transition-delay: 0.2s; 
}
.openbox.open .img04 {
    transform: scale(1) rotate(25deg);
}

.img05 {
    width: 80px;
    position: absolute;
    top: -100px;
    right: 30px;
    transform: scale(0);
    transition: transform 0.2s ease-out;
    transition-delay: 0.2s; 
}
.openbox.open .img05 {
    transform: scale(1) rotate(-30deg);
}

.openbox__title {
    font-family: Kanit;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    margin-top: 50px;
}


.openbox__txt {
    width: 435px;
    margin: 35px auto 0;
}
.openbox__txt p {
    font-size: 1.6rem;
    font-weight: 600;
    line-height:  175%;
}
.openbox__closebox {
    width: 63px;
    height: 63px;
    background-color: #1A1A1A;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 45px auto 0px;
    cursor: pointer;
    transition: transform  0.4s ease;
    border: 2px solid #1A1A1A;
}
 .openbox__closebox:hover {
    transform: scale(1.1);
}

.openbox__closeboximg {
    transition: transform 0.6s ease;
    transform: rotate(0deg);
  }
  
  .openbox__closebox:hover .openbox__closeboximg {
    transform: rotate(360deg);
  } 
  @media screen and (min-width: 1800px) {
    .openbox__main {
        width: 800px;
        height: 500px;
    }
    .openbox__sub {
        font-size: 2.5rem;
    }
    
    .img01 {
        width: 350px;
        position: absolute;
        top: -120px;
        right: -90px;
    }
    .img02 {
        width: 340px;
        position: absolute;
        top: -100px;
        right: -50px;
    }
    .img03 {
        width: 280px;
        position: absolute;
        top: -100px;
        right: -40px;
    }
    .openbox.open .img03 {
        transform: scale(1);
    }
    .img04 {
        width: 380px;
        position: absolute;
        top: -90px;
        right: -100px;
    }
    .img05 {
        width: 100px;
        position: absolute;
        top: -110px;
        right: 10px;
    }
    .openbox__title {
        font-family: Kanit;
        font-size: 5rem;
        font-weight: 600;
        text-align: center;
        margin-top: 60px;
    }
    .openbox__txt {
        width: 530px;
        margin: 40px auto 0;
    }
    .openbox__txt p {
        font-size: 2rem;
        font-weight: 600;
        line-height:  175%;
    }
    .openbox__closebox {
        width: 63px;
        height: 63px;
        margin: 50px auto 0px;
    }
  }
  @media screen and (min-width: 2300px) {
    .openbox__main {
        width: 950px;
        height: 550px;
    }
    .openbox__sub {
        font-size: 2.5rem;
    }
    
    .img01 {
        width: 390px;
        position: absolute;
        top: -130px;
        right: -100px;
    }
    .img02 {
        width: 400px;
        position: absolute;
        top: -110px;
        right: -60px;
    }
    .img03 {
        width: 330px;
        position: absolute;
        top: -130px;
        right: -50px;
    }
    .img04 {
        width: 440px;
        position: absolute;
        top: -90px;
        right: -100px;
    }
    .img05 {
        width: 125px;
        position: absolute;
        top: -150px;
        right: 10px;
    }
    .openbox__title {
        font-family: Kanit;
        font-size: 6rem;
        margin-top: 60px;
    }
    .openbox__txt {
        width: 660px;
        margin: 45px auto 0;
    }
    .openbox__txt p {
        font-size: 2.5rem;
        font-weight: 600;
        line-height:  175%;
    }
    .openbox__closebox {
        width: 63px;
        height: 63px;
        margin: 60px auto 0px;
    }
  }
  @media screen and (max-width: 1260px) {
    .openbox__main {
        width: 600px;
        height: 350px;
        border: solid 3px #1A1A1A;
        border-radius: 20px;
        padding: 15px;
    }    
    .img01 {
        width: 205px;
        position: absolute;
        top: -60px;
        right: -40px;
    }
    .img02 {
        width: 210px;
        position: absolute;
        top: -60px;
        right: -30px; 
    }
    .openbox.open .img02 {
        transform: scale(1) rotate(15deg);
    }
    .img03 {
        width: 175px;
        position: absolute;
        top: -70px;
        right: -25px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img03 {
        transform: scale(1);
    }
    
    .img04 {
        width: 220px;
        position: absolute;
        top: -40px;
        right: -35px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img04 {
        transform: scale(1) rotate(25deg);
    }
    
    .img05 {
        width: 65px;
        position: absolute;
        top: -75px;
        right: 10px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img05 {
        transform: scale(1) rotate(-30deg);
    }
    
    .openbox__title {
        font-size: 3.7rem;
        margin-top: 35px;
    }
    
    .openbox__txt {
        width: 400px;
        margin: 25px auto 0;
    }
    .openbox__txt p {
        font-size: 1.5rem;
    }
    .openbox__closebox {
        width: 46px;
        height: 46px;
        margin: 40px auto 0px;
        cursor: pointer;
        border: 1.5px solid #1A1A1A;
    }
    .openbox__closeboximg {
        width: 23px;
        height: 23px;
    }
}

  @media screen and (max-width: 1060px) {
    .openbox__main {
        width: 520px;
        height: 320px;
        border: solid 3px #1A1A1A;
        border-radius: 20px;
        padding: 15px;
    }    
    .img01 {
        width: 195px;
        position: absolute;
        top: -60px;
        right: -40px;
    }
    .img02 {
        width: 200px;
        position: absolute;
        top: -60px;
        right: -30px; 
    }
    .openbox.open .img02 {
        transform: scale(1) rotate(15deg);
    }
    .img03 {
        width: 165px;
        position: absolute;
        top: -70px;
        right: -25px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img03 {
        transform: scale(1);
    }
    
    .img04 {
        width: 210px;
        position: absolute;
        top: -40px;
        right: -35px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img04 {
        transform: scale(1) rotate(25deg);
    }
    
    .img05 {
        width: 60px;
        position: absolute;
        top: -75px;
        right: 10px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img05 {
        transform: scale(1) rotate(-30deg);
    }
    
    .openbox__title {
        font-size: 3rem;
        margin-top: 35px;
    }
    
    .openbox__txt {
        width: 400px;
        margin: 20px auto 0;
    }
    .openbox__txt p {
        font-size: 1.4rem;
    }
    .openbox__closebox {
        width: 40px;
        height: 40px;
        margin: 40px auto 0px;
        cursor: pointer;
        border: 1.5px solid #1A1A1A;
    }
    .openbox__closeboximg {
        width: 21px;
        height: 21px;
    }
}

  @media screen and (max-width: 860px) {
    .openbox__main {
        width: 450px;
        height: 300px;
        border: solid 2px #1A1A1A;
        border-radius: 20px;
        padding: 12px;
    }    
    .img01 {
        width: 180px;
        position: absolute;
        top: -50px;
        right: -40px;
    }
    .img02 {
        width: 185px;
        position: absolute;
        top: -45px;
        right: -30px; 
    }
    .openbox.open .img02 {
        transform: scale(1) rotate(15deg);
    }
    .img03 {
        width: 150px;
        position: absolute;
        top: -60px;
        right: -25px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img03 {
        transform: scale(1);
    }
    
    .img04 {
        width: 200px;
        position: absolute;
        top: -40px;
        right: -35px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img04 {
        transform: scale(1) rotate(25deg);
    }
    
    .img05 {
        width: 53px;
        position: absolute;
        top: -45px;
        right: 10px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img05 {
        transform: scale(1) rotate(-30deg);
    }
    
    .openbox__title {
        font-size: 3rem;
        margin-top: 25px;
    }
    
    .openbox__txt {
        width: 300px;
        margin: 15px auto 0;
    }
    .openbox__txt p {
        font-size: 1.4rem;
    }
    .openbox__closebox {
        width: 40px;
        height: 40px;
        margin: 25px auto 0px;
        cursor: pointer;
        border: 1.5px solid #1A1A1A;
    }
    .openbox__closeboximg {
        width: 21px;
        height: 21px;
    }
}
@media screen and (max-width: 680px) {
    .openbox__main {
        width: 350px;
        height: 272px;
        border: solid 1.5px #1A1A1A;
        border-radius: 20px;
        padding: 12px;
    }    
    .img01 {
        width: 150px;
        position: absolute;
        top: -50px;
        right: -40px;
    }
    .img02 {
        width: 155px;
        position: absolute;
        top: -45px;
        right: -30px; 
    }
    .openbox.open .img02 {
        transform: scale(1) rotate(15deg);
    }
    .img03 {
        width: 125px;
        position: absolute;
        top: -50px;
        right: -25px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img03 {
        transform: scale(1);
    }
    
    .img04 {
        width: 175px;
        position: absolute;
        top: -35px;
        right: -35px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img04 {
        transform: scale(1) rotate(25deg);
    }
    
    .img05 {
        width: 45px;
        position: absolute;
        top: -50px;
        right: 15px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img05 {
        transform: scale(1) rotate(-30deg);
    }
    
    .openbox__title {
        font-size: 2.5rem;
        margin-top: 25px;
    }
    
    .openbox__txt {
        width: 270px;
        margin: 10px auto 0;
    }
    .openbox__txt p {
        font-size: 1.3rem;
    }
    .openbox__closebox {
        width: 34px;
        height: 34px;
        margin: 20px auto 0px;
        cursor: pointer;
        border: 1.5px solid #1A1A1A;
    }
    .openbox__closeboximg {
        width: 17px;
        height: 17px;
    }
}

@media screen and (max-width: 480px) {
    .openbox__main {
        width: 272px;
        height: 272px;
        border: solid 1.5px #1A1A1A;
        border-radius: 20px;
        padding: 12px;
    }    
    .img01 {
        width: 120px;
        position: absolute;
        top: -35px;
        right: -30px;
    }
    .img02 {
        width: 140px;
        position: absolute;
        top: -35px;
        right: -30px; 
    }
    .openbox.open .img02 {
        transform: scale(1) rotate(15deg);
    }
    .img03 {
        width: 115px;
        position: absolute;
        top: -35px;
        right: -30px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img03 {
        transform: scale(1);
    }
    
    .img04 {
        width: 160px;
        position: absolute;
        top: -30px;
        right: -35px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img04 {
        transform: scale(1) rotate(25deg);
    }
    
    .img05 {
        width: 40px;
        position: absolute;
        top: -45px;
        right: 15px;
        transform: scale(0);
        transition: transform 0.2s ease-out;
        transition-delay: 0.2s; 
    }
    .openbox.open .img05 {
        transform: scale(1) rotate(-30deg);
    }
    
    .openbox__title {
        font-size: 2.5rem;
        margin-top: 15px;
    }
    
    .openbox__txt {
        width: 214px;
        margin: 10px auto 0;
    }
    .openbox__txt p {
        font-size: 1.3rem;
    }
    .openbox__closebox {
        width: 34px;
        height: 34px;
        margin: 15px auto 0px;
        cursor: pointer;
        border: 1.5px solid #1A1A1A;
    }
    .openbox__closeboximg {
        width: 17px;
        height: 17px;
    }
  }

