@charset 'utf-8';

body {
    color: #3d061e;
    font-size: 16px;
}

.wrapper {
    margin: 0 auto;
    width: 75%;
}

h2 {
    font-size: 32px;
}


/* ふわっと表示 */
.floating {
    transition: 0.8s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
}

.floating.up {
    transform: translateY(0);
    opacity: 1.0;
}
  

/* ローダー */
main{
        opacity: 0;
        transition: 5s;
}

main.on{
        opacity: 1;
        transition: 5s;
}
    



.loading{
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: #cca8cd;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.loader {
    width: 4px;
    color: #fff;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 
      19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px,
      19px 0     0 5px, 38px 0     0 5px, 57px 0     0 5px,
      19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 0px;
    transform: translateX(-38px);
    animation: l26 2s infinite linear;
  }
  @keyframes l26 {
    12.5% {box-shadow: 
      19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 5px,
      19px 0     0 5px, 38px 0     0 0px, 57px 0     0 5px,
      19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 0px}
    25%   {box-shadow: 
      19px -19px 0 5px, 38px -19px 0 0px, 57px -19px 0 5px,
      19px 0     0 0px, 38px 0     0 0px, 57px 0     0 0px,
      19px 19px  0 0px, 38px 19px  0 5px, 57px 19px  0 0px}
    50%   {box-shadow: 
      19px -19px 0 5px, 38px -19px 0 5px, 57px -19px 0 0px,
      19px 0     0 0px, 38px 0     0 0px, 57px 0     0 0px,
      19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 5px}
    62.5% {box-shadow: 
      19px -19px 0 0px, 38px -19px 0 0px, 57px -19px 0 0px,
      19px 0     0 5px, 38px 0     0 0px, 57px 0     0 0px,
      19px 19px  0 0px, 38px 19px  0 5px, 57px 19px  0 5px}
    75%   {box-shadow: 
      19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px,
      19px 0     0 0px, 38px 0     0 0px, 57px 0     0 5px,
      19px 19px  0 0px, 38px 19px  0 0px, 57px 19px  0 5px}
    87.5% {box-shadow: 
      19px -19px 0 0px, 38px -19px 0 5px, 57px -19px 0 0px,
      19px 0     0 0px, 38px 0     0 5px, 57px 0     0 0px,
      19px 19px  0 5px, 38px 19px  0 0px, 57px 19px  0 0px}
  }



/* ヘッダー */
.header {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #cca8cd;
}

.icon_logo {
    position: absolute;
    top: 45%;
    left: 50%;
    width: clamp(100px, 8%, 150px);
    transform: translate(-50%, -50%);
}

.icon_logo img {
    width: 100%;
}

.font_logo {
    position: absolute;
    top: 60%;
    left: 50%;
    width: clamp(150px, 15%, 200px);
    transform: translate(-50%, -50%);
}

.font_logo img {
    width: 100%;
}


/* プロフィール */

.profile {
    margin-top: 200px;
}

h1 {
    letter-spacing: 1.2;
    font-weight: 200;
    font-size: 28px;
}

.name {
    margin-top: 30px;
    letter-spacing: 1.1;
    font-weight: 200;
    font-size: 20px;
}

.prof_image {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    width: 100%;
}

.prof_image img {
    width: clamp(150px, 15%, 200px);
}

.message {
    margin-top: 50px;
    letter-spacing: 1.15;
    line-height: 2;
}

.circle {
    display: block;
    margin: 20px auto 0 auto;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #cca8cd;
}

.circle:nth-of-type(1) {
    margin-top: 100px;
}

/* ワークス */
.works {
    margin-top: 100px;
    text-align: center;
}


.works_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
}

.works_box{
    width: 30%;
}


.works_container li{
    /* width: 30%; */
    height: clamp(150px, 10%, 300px);
    height: 180px;
}

.works_box:nth-of-type(n+4) {
    margin-top: 140px;
}

.works_container img {
    overflow: clip;
    width: 100%;
    height: clamp(180px, 10%, 300px);
    object-fit: cover;
    object-position: 0 0;

    /* overflow-clip-margin: 20px; */
}

.works_title{
    font-size: 14px;
    margin-top: 20px;
    font-weight: 700;
    display: flex;
}

.works_title img{
    margin-left: 16px;
    width: 14px;
    height: 14px;
}


.works_detail{
    font-size: 14px;
    text-align: right;
    margin-top: 12px;
}

/* .works_container a {
    width: 90%;
} */




/* コンタクト */

.contact {
    margin-top: 200px;
    font-size: 14px;
}

.message_address {
    margin-top: 36px;
}



/* フッター */
.footer {
    margin-top: 120px;
    text-align: center;
}

.copyright {
    padding-bottom: 30px;
    font-size: 14px;
}


/* スマホコード */
@media(max-width:768px) {
    body {
        font-size: 14px;
    }

    .wrapper {
        width: 80%;
    }

    h2 {
        font-size: 24px;
    }

    /* プロフィール */
    .name {
        font-size: 18px;
    }

    .circle {
        width: 10px;
        height: 10px;
    }

    /* 実績 */
    .works_box{
        width: 45%;
    }

    .works_box:nth-of-type(n+3) {
        margin-top: 140px;
    }



    /* お問合せ */
    iframe {
        font-weight: 300;
        font-size: 14px;
    }
}