@charset "utf-8";
html{scroll-behavior: smooth;}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
}
img {
    width: 100%;
    vertical-align: bottom;
}
/* font */
* {
    font-family: "Caveat", "Zen Maru Gothic", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #303030;
}

/* COMMON */
body {
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: -250px;
    background-attachment: fixed;
}
.inner-wrap {
    width: 50vw;
    margin: 0 auto;
    padding: 100px 0;
}

/* HEADER */
header {
    background: rgba(255, 255, 255, 0.141);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 0 0 8px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    height: 10vh;
    padding: 10px 50px 0;
    position: relative;
    z-index: 1;
}

header a {
    color: #fff;
}

h1 {
    font-size: 45px;
    text-shadow: 1px 1px 1px #303030;
}

nav ul {
    display: flex;
}

nav ul li {
    font-size: 30px;
    margin-left: 25px;
    padding: 0 8px;
    line-height: 0.8;
    transition: 0.8s;
    text-shadow: 1px 1px 1px #303030;
}

nav ul li:hover {
    border-bottom: 1px solid #fff;
    font-size: 32px;
}

/* MAIN */
main {
    min-height: 80.9vh;
    background-color: #ffffffad;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transform: translateY(-7px);
}


.inner-wrap {
    display: flex;
    justify-content: space-between;
}

.info-img {
    width: 30%;
}

section {
    width: 60%;
}

main h2 {
    font-weight: bold;
    text-align: justify;
}

main p {
    text-align: justify;
}

.comment {
    margin: 30px 0;
    line-height: 1.8;
}

.back {
    display: block;
    width: fit-content;
    margin-left: auto;
    padding-right: 20px;
    border-bottom: 1px dashed;
    position: relative;
}

.back a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 3px;
    width: 20px;
    height: 20px;
    background-image: url(../img/info-link.png);
    background-size: contain;
}

/* FOOTER */
footer {
    height: 50px;
}

footer .inner-footer {
    padding: 5px 50px;
    background: rgba(255, 255, 255, 0.125);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px 8px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 4px 4px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    top: -13px;
}

footer a {
    color: #fff;
}

.flex-footer {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 5px;
}

footer h1 {
    font-size: 30px;
}

footer nav a {
    font-size: 20px;
}

footer small {
    color: #fff;
    text-shadow: 1px 1p 1px black;
}
