body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    background-color: #ccd7e0;
}
a {
    color: #0e2147;
}
h1 {
    font-weight: 700;
}
h2 {
    font-weight: 500;
}
h3 {
    font-weight: 400;
}
.header {
    position: sticky;
    top: 0;
}
.header ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 5px;
    padding-bottom: 6px;
    background-color: #92a0ab;
}
.header li {
    margin-right: 10px;
}
.header a {
    color: #0e2147;
    text-decoration: none;
}
.header a:hover {
    border-bottom:#0e2147 solid thin;
}

.kv-area {
    width: 100%;
    position: relative;
}
.kv-area img{
    width: 100%;
}

.kv-area h1{
  margin: 0;
  font-size: 40px;
  color: #0e2147;
  position: absolute;
  text-shadow: 0px 0px 5px rgba(142, 244, 242, 1);
  
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
@media screen and (min-width: 768px){
    .kv-area h1 {
        font-size: 100px;
    } 
}

.main-contents-container {
    width: 96%;
    margin: 0 auto;
}
.works-area {
    background-color: white;
    margin-top: 10px;
    padding: 10px;
}
.works-area h2 {
    margin-bottom: 0px;
}
.works-area img {
    width: 100%;
}
.works-area .works-clothes {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}
.works-container h3 {
    margin-bottom: 10px;
}
.works-card-container {
    width: 90%;
    margin: 5px auto 15px;
    padding-bottom: 10px;
    border-bottom:  #92a0ab thin solid;
}
@media screen and (min-width: 768px){
    .works-card-container {
        display: flex;
        align-items: center;
    }
    .works-card-container img {
        width: 30%;
    }
}
.works-card-description-title {
    font-size: large;
}
.works-card-description-text {
    font-size: small;
}

.works-area .works-accessories {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.works-area .works-digital {
    margin-bottom: 20px;
}
.about {
    background-color: white;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px;
}
.about .profile-container {
    display: flex;
    align-items: center;
}
.about img {
    width: 100px;
    height: 100px;
}
.about .profile-text {
    margin-left: 10px;
}
.about .profile-detail {
    font-size: small;
}

.contact {
    background-color: white;
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 10px;
}