* {
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "メイリオ", Meiryo, "Avenir Next";
    background-color: #E2EFEE;
    animation: bugfix infinite 1s;
    -webkit-animation: bugfix infinite 1s;
}

/* ↓クリックすると全画面メニューがオーバーレイ↓ */
@keyframes bugfix {
    from {
      padding: 0;
    }
    to {
      padding: 0;
    }
  }
  @-webkit-keyframes bugfix {
    from {
      padding: 0;
    }
    to {
      padding: 0;
    }
  }
  #overlay-button {
    position: absolute;
    right: 2em;
    top: 2.5em;
    z-index: 5;
    cursor: pointer;
    user-select: none;
  }
  #overlay-button span {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: #E2EFEE;
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
  }
  #overlay-button span:before {
    top: -10px;
    visibility: visible;
  }
  #overlay-button span:after {
    top: 10px;
  }
  #overlay-button span:before, #overlay-button span:after {
    height: 4px;
    width: 35px;
    border-radius: 2px;
    background-color: #E2EFEE;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
  }
  #overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
    background: #E2EFEE;
  }
  
  input[type=checkbox] {
    display: none; 
    
  }
  
  input[type=checkbox]:checked ~ #overlay {
    visibility: visible; 
  }
  
  input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
    background: transparent;
    
    
  }
  input[type=checkbox]:checked ~ #overlay-button span:before {
    transform: rotate(45deg) translate(7px, 7px);
  
  }
  input[type=checkbox]:checked ~ #overlay-button span:after {
    transform: rotate(-45deg) translate(7px, -7px);
  
  
  }
  
  #overlay {
    height: 100vh;
    width: 100vw;
    background: #90A796;
    z-index: 2;
    visibility: hidden;
    position: fixed;
  }
/*  #overlay.active {
  
  }*/
  #overlay ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    height: 100vh;
    padding-left: 0;
    list-style-type: none;
  }
  #overlay ul li {
    padding: 1em;
  }
  #overlay ul li a {
    color: #E2EFEE;
    text-decoration: none;
    font-size: 1.5em;
  }
  #overlay ul li a:hover {
    color: #C3CAD8!important;
  }
/* ↑クリックすると全画面メニューがオーバーレイ↑ */

.header-list-mobile {
    display: none;
}

li {
    list-style: none;
}

header {
    background-color: #90A796;
    color: #E2EFEE;
    height: 90px;
}

.header-logo {
    float: left;
    font-size: 36px;
    padding: 18px 40px;
}

.header-logo-img {
    width: 56px;
    margin-right: 10px;
}

.header-logo div {
    float: left;
}

.header-list li {
    float: left;
    padding: 40px 20px 26px;
    height: 24px;
}

.header-list li  a {
    color:#E2EFEE;
    text-decoration: none;
}

.top-wrapper {
    padding-top: 70px;
    background-image: url(../img/20240118_top.png);
    background-color:rgba(226,239,238,0.2);
    background-blend-mode:lighten;
    height: 506px;
    background-size: contain;
    color:#E2EFEE;
}
.top-wrapper .container {
    max-width: 1024px;
    padding: 0 15px;
}
.top-wrapper .container p {
    background-color:rgba(112,124,147,0.5);
    width: 60%;
    padding: 1px 0 1px 10px;
}

footer {
    padding: 30px 0 20px 20px;
    color: #707C93;
}
