@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 {
    background-color: #ffffffad;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    transform: translateY(-7px);
}

h2 {
    text-align: center;
    font-size: 50px;
    font-weight: 400;
    padding-bottom: 30px;
}

h2 span {
    font-size: 20px;
    padding-left: 10px;
    font-weight: 500;
}

h2 span::before {
    content: "-";
    padding-right: 5px;
}
h2 span::after {
    content: "-";
    padding-left: 5px;
}

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

.info-item {
    background-color: whitesmoke;
    margin-bottom: 20px;
    width: 250px;
}

.info-img {
    height: 250px;
    overflow: hidden;
    object-fit: cover;
}

.info-img img {
    transition: 0.8s;
}

.info-img img:hover {
    transform: scale(1.1);
}

.info-item dl {
    font-size: 14px;
    text-align: justify;
    padding: 10px;
}

/* 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;
}
