html, body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #43362E;
  }
  
  .header-content {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100px;
    background-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    z-index: 10;
  }
  
  .banner {
    background: transparent url("../image/kv.png") 0% 0% no-repeat padding-box;
    background-size: cover;
    height: 520px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 130px 0;
  }
  
  .banner.hidden {
    display: none;
  }
  
  .banner .title {
    font-size: 3.125rem;
    padding: 0 15%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: #EFA153;
  }
  
  .banner .title a {
    color: #43362E;
    text-decoration: none;
    font-weight: bold;
  }
  
  .banner .title .banner-link {
    font-size: 1.125rem;
    font-weight: 500;
  }
  
  .banner .title .banner-link:hover {
    color: white;
  }
  
  .banner.hidden {
    display: none;
  }
  
  .header .header-content .button-logo {
    width: 230px;
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-radius: 30px;
    -webkit-box-shadow: 0px 3px 6px #00000029;
            box-shadow: 0px 3px 6px #00000029;
    cursor: pointer;
    background-color: #fff;
  }
  
  .header .header-content .button-logo .logo {
    margin: 0 auto;
    font-weight: 700;
  }

  .header .header-content .button-logo .logo img {
    height: 90%;
  }
  
  .header .header-content .button-logo .header-menu-icon.hidden {
    display: none;
  }
  
  .footer {
    width: 100%;
    height: 300px;
    margin-top: 10vh;
    position: relative;
    z-index: -99;
  }
  
  .footer .upper-footer {
    background-color: #FEF6E0;
    width: 100%;
    height: 175px;
    border-radius: 50% 50% 0 0/100% 100% 0 0;
  }
  
  .footer .lower-footer {
    background-color: #FEF6E0;
    width: 100%;
    height: 125px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .overlay {
    position: absolute;
    width: 100%;
    top: -60px;
  }
  
  .overlay .overlay-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: 150px;
    margin: 0 15% 0 15%;
    background-color: #FFFFFF;
    border-radius: 30px;
    padding: 20px 20px;
  }
  
  .overlay .overlay-content .overlay-content-title {
    font-size: 1.125rem;
    color: #43362E;
    font-weight: bold;
  }
  
  .overlay .overlay-content .overlay-content-description {
    font-size: 1rem;
    color: #43362E;
  }
  
  .overlay .overlay-content .overlay-action {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  
  .overlay .overlay-content .overlay-action .btn-register {
    background-color: #F06B48;
    width: 240px;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 15px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
  }
  
  .overlay .overlay-content .overlay-action .btn-login {
    background-color: #42D1A4;
    width: 240px;
    height: 58px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 15px;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
  }



  
  @media only screen and (max-width: 1280px) {
    .header-content {
      padding: 0 5%;
      gap: 20px;
    }
    .banner {
      height: 400px;
    }
    .banner .title {
      font-size: 2.2rem;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: start;
    }
    .overlay .overlay-content {
      display: block;
      margin: 0 auto;
      padding: 20px 30px;
      height: auto;
    }
    .overlay .overlay-content .overlay-content-title, .overlay .overlay-content .overlay-content-description {
      text-align: center;
    }
    .overlay .overlay-content .overlay-action {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
    .footer .upper-footer {
      background-color: #fff;
    }
    .overlay .overlay-content .overlay-action .btn-register {
      height: 40px;
      border-radius: 10px;
    }
    .overlay .overlay-content .overlay-action .btn-login {
      height: 40px;
      border-radius: 10px;
    }

  }
  
  @media only screen and (max-width: 768px) {
    .header .header-content .button-logo {
      height: 40px;
      width: 160px;
    }

    .header .header-content .button-logo .logo img {
      height: 70%;
      margin: 0 1rem;
    }

    .button-orange {
      height: 40px;
      width: 160px;
    }

    .mypage-content {
      max-width: 100%;
    }

    .header-content-right a {
      display: grid;
      margin: 0;
    }
    
    .menubar .menubar-title {
      margin-top: 2rem;
    }

    .menubar ul li {
      border-bottom: 1px solid;
    }

    .menubar {
      margin-bottom: 2rem;
    }

    .overlay .overlay-content {
      display: block;
      margin: 0 10% 0 10%;
      padding: 20px 30px;
      height: auto;
      border-radius: 20px;
    }
    .overlay .overlay-content .overlay-content-title, .overlay .overlay-content .overlay-content-description {
      text-align: center;
    }
    .overlay .overlay-content .overlay-action {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
    }
    .pagination {
      flex-wrap: wrap;
    }
  }
  /*# sourceMappingURL=dcefault-layout.css.map */