@charset "utf-8";

*,
::before,
::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a {
    text-decoration: none;
    color: #050707;
}
ul,
ol {
    list-style: none;
}
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    color: #050707;
    line-height: 1.5;
    opacity: 1;
    background-color: #fff;
}
img {
    max-width: 100%;
}

/* Header */

.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
#header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: calc(1100px - 40px);
    padding-left: 20px;
    padding-right: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    padding-bottom: 10px;
    padding-top: 10px;
}
#header-content h1 {
    height: 30px;
    font-size: 12px;
    line-height: 30px;
}
.header-logo {
    display: inline-block;
}
.header-content-right {
    display: flex;
    justify-content: right;
    align-items: center;
}
.blog-home {
    display: inline-block;
    margin-right: 20px;
    font-weight: 900;
    font-size: 12px;
}
.header-instagram {
    width: 20px;
    height: 20px;
    margin-right: 20px;
}
.header-contact {
    font-weight: 900;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    width: 120px;
    height: 32px;
    line-height: 30px;
    text-align: center;
    font-size: 12px;
}


/* Footer */

footer {
    background-color: #6090b4;
    opacity: 0.8;
    clip-path: polygon(0% 20%, 50% 0%, 100% 20%, 100% 100%, 0% 100%);
    padding-bottom: 20px;
}

.footer-area {
    color: #fff;
    text-align: center;
    margin-top: 120px;
    padding-top: 120px;
    padding-bottom: 120px
}
.footer-name-jp {
    font-size: 18px;
    font-weight: 900;
}
.footer-name-en {
    font-size: 18px;
    font-weight: 900;
}
.footer-email {
    margin-top: 20px;
}
.footer-ig {
    display: block;
    color: #fff;
}
.footer-blog {
    display: block;
    margin-top: 20px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}
.copyright {
    text-align: center;
    color: #fff;
    font-size: 12px;
}

@media (max-width: 820px) {
    .footer-area {
        margin-top: 700px;
    }
}
