@charset "UTF-8";

body,h1,h2,h3,h4,p,ul,ol{
  margin: 0;
  padding: 0;
}

.wrapper{
    width: 100%;
}

header{
    width: 100%;
    background-image: url(../image/gathers_background_img.png);
    background-repeat: no-repeat;
}

.header-inner{
    width: 65%;
    height: 100px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}

header img{
    height: 100px;
    align-items: center;
}

header h1{
    font-family: 'Zen Old Mincho', serif;
}

nav{
    width: 100%;
    background-color: #ffdd44;
}

nav ul{
    width: 60%;
    display: flex;
    text-decoration: none;
    list-style-type: none;
    justify-content: space-around;
    color: black;
    font-size: 20px;
    margin: auto;
    line-height: 1.5;
}

nav ul a{
    text-align: center;
    padding: 5px;
    width: 25%;
    border-left: 2px solid white;
    color: black;
    font-family: 'Crete Round', serif;
}

nav ul a:last-child{
    border-right: 2px solid white;
}

nav ul a{
    text-decoration: none;
}

nav ul a:hover{
    color: white;
    background-color: #ff9900;
    transition: 0.3s;
}

footer{
    background-color: #ffdd44;
    text-align: center;
    line-height: 5;
    font-family: 'Crete Round', serif;
}

a{
    color: black;
    text-decoration: none;
}

a:hover{
    opacity: 0.5;
    transition: 0.5s;
}