@charset "utf-8";

.contents{
    background-color: rgb(206, 206, 206);
}

.header {
    background-color: white;
    width: 100%;
    height: 80px;
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 3px solid #aaa; 
    color: #aaa;
} 

.menu {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu span,
.menu span:before,
.menu span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    position: absolute;
}
.menu span:before {
    bottom: 8px;
}
.menu span:after {
    top: 8px;
}
.drawer_hidden {
    display: none;
}

.element{
    position: absolute;
}

.bg_pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffe9a7;
    opacity: 0.4;
    z-index: -1;
}
.Paper {
    background-image:  linear-gradient(#ffc107 4px, transparent 4px), linear-gradient(90deg, #ffc107 4px, transparent 4px), linear-gradient(#ffc107 2px, transparent 2px), linear-gradient(90deg, #ffc107 2px, #ffe9a7 2px);
    background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
    background-position: -4px -4px, -4px -4px, -2px -2px, -2px -2px;
}

.photo{
     width: 100%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    overflow: hidden;

    .slide{
      width: 300px;
      object-fit:cover;
      border: 1px solid #ddd;
    }
    @keyframes slide-flow {
         0% {transform: translateX(0);}
     100% {transform: translateX(-100%);}
    }
}

.footer {
    font-family: sans-serif;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #999;
    text-decoration: none;
    display: flex;
    height: 1px;
    border: 0;
    border-top: 1px solid #e5e7eb;
    padding: 2rem;
    font-size: 15px;
    color: #999;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    display: inline-block;
    margin-right: 16px;
    display: inline-block;
    margin-bottom: 1rem;
    justify-content: space-between;
    text-align: left;
  }