@charset "UTF-8";
html {
    width: stretch;
    font-size: 16px;
}
body {
    padding: 0;
    color: #32140a;
    line-height: 1.5;
    background-color: #fff;
    text-align: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
h1,h2,h3,h4 {
    padding: 0;
    font-weight: bold;
}
h1 {
    font-size: 1.5rem;
    font-family: "Century Gothic";
}
h2 {
    font-size: 3rem;
    font-family: "Century Gothic";
}
h3 {
    font-size: 2rem;
    font-family: "Century Gothic";
}
p, a {
    padding: 0;
    color: #32140a;
}
a {
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
}
.inner {
    margin: auto;
    text-align: center;
}
.line {
    background-color: #32140a;
    height: 0.75px;
    margin: 10px auto 25px;
    text-align: center;
}
header {
    display: block;
    justify-content: left;
    height: 8vh;
    width: stretch;
    background-color: #ffdc00;
    position: fixed;
    z-index: 1000;
}
header .inner {
    max-width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
header ul {
    display: flex;
    align-items: center;
    font-family: "Century Gothic";
    font-weight: 600;
    font-size: 1.25rem;
}
header li {
    display: flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
}
.sns li {
    padding-right: 0;
}
header h1 {
    font-size: 1.75rem;
    margin-right: 1rem;
}
header img {
    margin-top: 0.4375rem;
}
.mainvisual {
    height: 100vh;
    background-image: url(images/mainvisual-3.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
.images-container img {
  animation: fadeup 1.2s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
@keyframes fadeup {
    0% {
    transform: translateY(30px) translate(-50%, -50%);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0) translate(-50%, -50%);
  }
}
.images-container img {
    position: absolute;
    width: 30%;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.about {
    display: flex;
    justify-content: center;
    background-color: #fff799;
    padding: 60px 40px;
}
.about .inner {
    max-width: 60%;
}
.about p {
    line-height: 2;
}
.news .inner {
    display: flex;
    justify-content: center;
    padding: 60px 40px;
    text-align: left;
}
.news h3 {
    text-align: center;
}
.news ul {
    margin-bottom: 60px;
}
.news li {
    border-bottom: 1px dotted #ccc;
    padding: 5px 0;
}
.news li span {
    margin-right: 20px;
}
.news-btn {
    font-size: 1rem;
    display: block;
    width: 140px;
    text-align: center;
    color: #32140a;
    background-color: #e6ffe9;
    margin: 0 auto;
    padding: 10px 0;
    border: 1px solid #32140a;
    border-radius: 5px;
    box-shadow: 0 3px 6px rgba(100, 100, 100, 0.7);
}
.news-btn:hover {
    opacity: 0.7;
}
footer {
    text-align: center;
    background-color: #ffdc00;
}
footer p {
    font-size: 1rem;
    font-family: Verdana;
    color: #32140a;
    padding: 15px 0;
}
#nav-drawer {
    position: fixed;
    top: 2.5vh;
    right: 7vw;
}
.nav-unshown {
    display: none;
}
#nav-open {
    display: inline-block;
    width: 30px;
    height: 22px;
    vertical-align: middle;
}
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 4px;
    width: 36px;
    border-radius: 4px;
    background: #32140a;
    display: block;
    content: '';
    cursor: pointer;
}
#nav-open span:before {
    bottom: -10px;
}
#nav-open span:after {
    bottom: -20px;
}
#nav-close {
    display: none;
    position: fixed;
    z-index: 99;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: black;
    opacity: 0;
    transition: .3s ease-in-out;
}
#nav-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    right: -100vw;
    z-index: 9999;
    width: 90%;
    max-width: 200px;
    height: 100%;
    background-color: #ffdc00;
    transition: .3s ease-in-out;
}
#nav-input:checked ~ #nav-close {
    display: block;
    opacity: .5;
}
#nav-input:checked ~ #nav-content {
    -webkit-transform: translateX(-100vw);
    transform: translateX(-100vw);
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
}
.hamburger-menu ul {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Century Gothic";
}
.logo-area {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Century Gothic";
    text-align: center;
    padding: 20px;
}
.pc-only {
    display: none;
}
@media screen and (orientation:portrait) {
    #pc-nav {
        display: none;
    }
    header {
        height: 8vh;
    }
    p {
        font-size: 1.2rem;
    }
    .images-container img {
        width: 100%;
        height: auto;
        max-width: 80%;
        max-height: 80%;
    }
    .line {
        max-width: 100%;
    }
    .about .inner {
        max-width: 90%;
    }
    .about p {
    margin: auto;
    line-height: 2;
    text-align: justify;
    }
    .news .inner {
        max-width: 90%;
    }
    .news {
        font-size: 1.2rem;
    }
    .logo-area p {
        margin: auto;
        font-size: 1.75rem;
    }
}
@media screen and (orientation:landscape) {
    .hamburger-menu {
        display: none;
    }
    p {
        font-size: 1.125rem;
    }
    .news {
        font-size: 1.125rem;
    }
    .news-btn {
        font-size: 1rem;
    }
}
@media screen and (min-width: 500px) {
    .pc-only {
        display: block;
    }
}