@charset "utf-8";

/* top */
.top-wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f2ecef;
}

.top-wrap img {
    width: 50%;
    object-fit: contain;
}

.category {
    font-size: 1.5vmax;
}

.top-text-wrap h2 {
    padding: 2% 0 5%;
    font-weight: 500;
    font-size: 2.2vmax;
}

.work {
    padding-bottom: 7%;
    color: #9c9c9c;
    letter-spacing: 0.08em;
}

.introduction {
    padding-bottom: 2%;
}

/* リンクアニメーション */
.url {
    display: inline-block;
    /* text-align: center; */
    outline: none;
    border-bottom: .5px;
    font-size: 1vmax;
    letter-spacing: 0.05em;
    font-weight: 400;
  }

  .url:hover {
    color: #c2c2c2;
    transition: .3s;
  }

  /* .url:hover {
    color: #9c9c9c;
    transition: .5s;
  }

  .top-text-wrap a {
    position: relative;
  }

  .top-text-wrap a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: .5px;
    background: #9c9c9c;
    bottom: -3px;
    visibility: hidden;
    opacity: 0;
    transition: 0.5s;
  }

  .top-text-wrap a:hover::after {
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
  } */

/* describe */
.describe-wrap {
    max-width: 1100px;
    margin: 5% auto;
}

.describe-wrap h3 {
    font-size: 2.8vmin;
    font-weight: 500;
    margin-bottom: 1.5%;
}

.describe-wrap p {
    padding-bottom: 6%;
    line-height: 2em;
}


/* SS */
.ss-wrap {
    width: 100%;
    /* max-width: 1100px; */
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 9% 8%;
    background-color: #f4f4f4;
}

.ss-1 {
    width: 60%;
    object-fit: contain;
}

.ss-2 {
    width: 20%;
    object-fit: contain;
}

footer {
    margin-top: 0;
}

@media screen and (max-width: 800px) {
    .top-wrap {
        flex-direction: column;
        height: 67vh;
    }

    .top-wrap img {
        width: 85%;
        margin-bottom: 10%;
    }

    .top-text-wrap {
        width: 80%;
    }

    .category {
        font-size: 1.5vmax;
    }

    .top-text-wrap h2 {
        padding: 2% 0;
    }

    .work {
        padding-bottom: 8%;
        font-size: 1.5vmax;
        color: #9c9c9c;
        font-weight: 300;
        font-style: normal;
    }

    .url {
        font-size: 1.5vmax;
    }

    .describe-wrap {
        width: 80%;
        margin: 17% auto 5%;
    }

    .describe-wrap h3 {
        font-size: 4vmin;
        margin-bottom: 3%;
    }

    .describe-wrap p {
        padding-bottom: 13%;
    }

    .ss-wrap {
        padding: 16% 8%;
    }
}