@charset "UTF-8";

/* -----------------------------------------------共通------------------------------------------------- */
html {
    font-size: 100%;
}
body {
    font-family: "Helvetica Neue", "Arial", "Hiragino Sans", "Meiryo", sans-serif;
    width: 100%;
}
h1 ,h2 {
    text-align: center;
    padding: 20px;
}
a {
    text-decoration: none;
    color: #000
}
a:hover {
    opacity: 0.6;
}
img {
    max-width: 100%;
}
.container {
    width: 90%;
    margin: 0 auto;
}

/* -----------------------------------------------header------------------------------------------------- */
#header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #abedf0;
}
header p {
    font-size: 1.5rem;
    margin-left: 50px;
}
.nav {
    display: flex;
    list-style: none;
    margin-right: 50px;
}
.nav li {
    margin: 20px 15px;
}
.main-visual {
    margin: 300px 0 250px 0;
    letter-spacing: 0.4rem;
    height: 200px;
}
.main-visual p {
    text-align: center;
    font-size: 1.5rem;
    margin-top: 20px;
}
/* -----------------------------------------------works------------------------------------------------- */

#works {
    background-color: #abedf0;
}
.work-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 50px 0 50px 0;
}
.work-content img {
}
.work-item {
    width: 300px;
    height: 450px;
    margin-top: 5px;
    margin-bottom: 15px;
}
.work-item:hover {
    cursor: pointer;
    opacity: 0.7;
}
.work-about {
    width: 300px;
    height: 80px;
    font-size: 1rem;
    background-color: #fff;
    text-align: center;
    border: solid 1px #fff;
    border-radius: 7px;
    margin-bottom: 10px;
}
.button {
    text-align: center;
    margin: 30px auto;
    padding: 10px 15px;
    display: block;
    border-radius: 7px;
    width: 100px;
    background-color: #abedf0;
}
.button:hover {
    background-color: aqua;
}
.button a {
    font-size: 1.5rem;
}
.overlay {
    z-index: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}
.content {
    z-index: 2;
    padding: 1em;
    background: #fff;
}
.main-modal {
    text-align: center;
}
.img-modal {
    width: 100%;
    height: 800px;
}
/* -----------------------------------------------profile------------------------------------------------- */
.profile-content {
    display: flex;
}
.profile-icon {
    width: 50%;
    margin: 0 auto;
}
.profile-item {
    width: 50%;
}
.profile-item h3 {
    text-align: center;
    margin: 40px 0 20px 0;
}
.profile-item label {
    font-size: 25px;
    margin-left: 35px;
    margin-bottom: 15px;
}
.profile-text {
    margin: 40px;
}
progress {
    width: 70%;
    margin-left: 20px;
    margin-top: 5px;
    background-color: #000;
}
progress::-webkit-progress-value {
    background-color: greenyellow;
}
/* -----------------------------------------------contact------------------------------------------------- */
#contact {
    background-color: #abedf0;
}
form div {
    margin-bottom: 14px;
}
label {
    font-size: 1.125rem;
    margin-bottom: 10px;
    display: block;
}
input[type="text"],
input[type="email"],
textarea {
    background: rgba(255,255,255,.5);
    border: 1px #fff solid;
    border-radius: 5px;
    padding: 10px;
    font-size: 1rem;
}
input[type="text"],
input[type="email"] {
    width: 100%;
    max-width: 480px;
}
textarea {
    width: 100%;
    max-width: 480px;
    height: 6rem;
}
input[type="submit"] {
    border: none;
    cursor: pointer;
    line-height: 1;
}
.button-contact {
    text-align: center;
    font-size: 1.2rem;
    background: #fff8cf;
    color: #80796c;
    border-radius: 5px;
    padding: 18px 32px;
}
.button-contact:hover {
    background: #ffe556;
}
/* -----------------------------------------------footer------------------------------------------------- */

#footer small {
    text-align: center;
    display: block;
    background-color: #abedf0;
    padding: 20px;
}

/* -----------------------------------------------media------------------------------------------------- */

@media (max-width: 768px) {

}