@charset "UTF-8";
/* about-main -------------------------- */
#about-main{
    width: 100%;
    padding: 0 0 60px;
    margin: 0;
    position: relative;
}

#about-main .page-title::before{
    background-color: #FCEC74;
}

/* about-main -------------------------- */
/* desire ------------------------------ */
#about-main .desire{
    width: 768px;
    display: flex;
    gap: 60px;
    position: relative;
    margin: 0 auto 150px;
}
#about-main .desire .title{
    width: 360px;
    font-size: 36px;
    line-height: 1.6em;
}
#about-main .desire .title > .small{
    font-size: 28px;
}
#about-main .desire .text{
    width: calc(100% - 360px - 60px);
    font-size: 14px;
    margin-top: 130px;
}

/* 背景のふよふよ */
.about-fluid {
    width: 40%;
    aspect-ratio: 1 / 1;
    /* background:#F3EEE9; */
    border: 3px solid #fff;
    animation: fluidrotate 20s ease 0s infinite;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
  
@keyframes fluidrotate{  
        
  0%, 100% {
      border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
      border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
      border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
      border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
      border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
      border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
      border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
        
}

/* about-main -------------------------- */
/* about-info -------------------------- */
#about-main .about-info{
    width: 768px;
    margin: 0 auto;
}

#about-main .about-info .info-title{
    width: 100%;
    border-bottom: 1px solid #674B3A;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 0 5px;
    margin-bottom: 60px;
}
#about-main .about-info .info-title > .en{
    display: block;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 1em;
}
#about-main .about-info .info-title > .en .ja{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #674B3A;
    margin: 0 5px;
}

#about-main .about-info .info-wrap{
    width: 100%;
    display: flex;
    gap: 60px;
}
#about-main .about-info .info-wrap .about-wrap{
    width: calc(50% - 30px);
}
#about-main .about-info .info-wrap .about-wrap .img-wrap{
    width: 200px;
    aspect-ratio: 1 / 1;
    margin: 10px auto;
}
#about-main .about-info .info-wrap .about-wrap .img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#about-main .about-info .info-wrap .about-wrap .text{
    font-size: 14px;
}

#about-main .about-info .info-wrap .skills-wrap{
    width: calc(50% - 30px);
    background-color: #fff;
    border-radius: 40px;
    overflow: hidden;
}
#about-main .about-info .info-wrap .skills-wrap .skill-title{
    width: 100%;
    height: 50px;
    color: #fff;
    background-color: #674B3A;
    font-family: "Alegreya Sans SC", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 5%;
    text-align: center;
    padding-top: 15px;
}
#about-main .about-info .info-wrap .skills-wrap .data-area{
    width: 100%;
    padding: 25px 15px;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data{
    width: 100%;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dt{
    color: #674B3A;
    font-size: 14px;
    border-bottom: 1px solid #674B3A;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd{
    margin-bottom: 25px;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd:last-of-type{
    margin-bottom: 0;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd .another-wrap{
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd .another-wrap .date{
    font-size: 12px;
    line-height: 1.3em;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd .another-wrap .text{
    line-height: 1.3em;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd .img-wrap{
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd .img-wrap .badge{
    width: 53px;
    height: 53px;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd .img-wrap .badge:last-of-type{
    width: 35px;
    height: 53px;
    margin-right: 10px;
}
#about-main .about-info .info-wrap .skills-wrap .data-area .skill-data dd .img-wrap .badge img{
    width: auto;
    height: 100%;
    object-fit: contain;
}

#about-main > .dot-area{
    width: fit-content;
    margin: 100px auto;
}


/*-------------------------------------------
タブレット
-------------------------------------------*/
@media screen and (max-width: 960px) {

    /* about-main -------------------------- */
    /* desire ------------------------------ */
    #about-main .desire{
        width: 80%;
        gap: 40px;
        margin: 40px auto 100px;
    }
    #about-main .desire .text{
        width: calc(100% - 360px - 40px);
        margin-top: 80px;
    }

    /* 背景のふよふよ */
    .about-fluid {
        width: 50%;
    }


    /* about-main -------------------------- */
    /* about-info -------------------------- */
    #about-main .about-info{
        width: 80%;
    }

    #about-main .about-info .info-wrap{
        gap: 40px;
    }
    #about-main .about-info .info-wrap .about-wrap{
        width: calc(50% - 20px);
    }
    #about-main .about-info .info-wrap .skills-wrap{
        width: calc(50% - 20px);
    }

}

/*-------------------------------------------
スマホ
-------------------------------------------*/
@media screen and (max-width: 767px) {

    /* about-main -------------------------- */
    /* desire ------------------------------ */
    #about-main .desire{
        flex-direction: column;
    }
    #about-main .desire .title{
        width: fit-content;
        font-size: 30px;
        margin: 0 auto;
    }
    #about-main .desire .title > .small{
        font-size: 24px;
    }
    #about-main .desire .text{
        width: 100%;
        margin-top: 0;
    }

    /* 背景のふよふよ */
    .about-fluid {
        width: 70%;
        top: -30px;
        left: 50%;
        transform: translateX(-50%);
    }


    /* about-main -------------------------- */
    /* about-info -------------------------- */
    #about-main .about-info .info-title{
        position: relative;
    }
    #about-main .about-info .info-title .dot-area{
        width: fit-content;
        height: 10px;
        position: absolute;
        top: 35px;
        left: 60px;
        z-index: -1;
    }

    #about-main .about-info .info-wrap{
        flex-direction: column;
    }
    #about-main .about-info .info-wrap .about-wrap{
        width: 100%;
    }

    #about-main .about-info .info-wrap .skills-wrap{
        width: 100%;
    }

    #about-main > .dot-area{
        margin: 60px auto 20px;
    }


}