@charset "UTF-8";
/* OKASAN Plus LP 共通 */
.app{
  font-family: "Noto Sans JP", sans-serif;
}
.appHeader{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 22px;
  background: #fff;
  border-bottom: 2px solid #707070;
  box-sizing: border-box;
  z-index: 999999;
}
.appHeaderLogos{
  display: flex;
  gap: 14px;
}
.appHeaderLogos a{
  display: block;
  max-width: 90px;
}
.appHeaderLogos figure{
  max-width: 162px;
  margin-top: -5px;
}
.appHeaderMenuButton{
  display: none;
}
.appHeaderMenuList{
  display: flex;
  align-items: center;
}
.appHeaderMenuList li:nth-child(2){
  margin-right: 20px;
}
.appHeaderMenuList li a{
  display: block;
  padding: 27px 20px;
  font-size: 500px;
  font-size: 16px;
  line-height: 1;
  color: #392927;
}
.appHeaderMenuList li:nth-child(3) a{
  background: #B19A65;
  color: #fff;
  padding: 27px 45px;
  box-sizing: border-box;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .appHeader{
    border-bottom: 2px solid #707070;
  }
  .appHeaderLogos figure{
    margin-top: 2px;
  }
  .appHeaderMenuButton{
    display: block;
    position: relative;
    width: 70px;
    height: 70px;
    background: #BAA376;
    border: none;
    padding: 22px 0 0;
    font-size: 12px;
    color: #fff;
  }
  .appHeaderMenuButton .icon{
    position: absolute;
    display: block;
    width: 18px;
    height: 2px;
    background: #fff; 
    border-radius: 50px;
    top: 26px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.2s ease;
  }
  .appHeaderMenuButton .icon::before,
  .appHeaderMenuButton .icon::after{
    content: "";
    position: absolute;
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 50px;
    left: 0;
    transition: all 0.2s ease;
  }
  .appHeaderMenuButton .icon::before{
    top: -6px;
  }
  .appHeaderMenuButton .icon::after{
    bottom: -6px;
  }
  .appHeaderMenuButton.is-active{
    background: #333;
  }
  .appHeaderMenuButton.is-active .icon{
    background: transparent;
  }
  .appHeaderMenuButton.is-active .icon::before{
    transform: rotate(45deg);
    top: 0;
  }
  .appHeaderMenuButton.is-active .icon::after{
    transform: rotate(-45deg);
    bottom: 0;
  } 
  .appHeaderMenuList{
    opacity: 0;
    visibility: hidden;
    position: absolute;
    pointer-events: none;
    background: #fff;
    width: 130px;
    top: 68px;
    right: 0;
    transition: all 0.3s ease;
    flex-direction: column;
  }
  .appHeaderMenuList.is-active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: 72px;
  }
  .appHeaderMenuList li{
    width: 100%;
  }
  .appHeaderMenuList li:nth-child(2) {
    margin-right: 0;
  }
  .appHeaderMenuList li a{
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    padding: 12px 20px;
  }
  .appHeaderMenuList li:nth-child(1) a{
    padding: 25px 10px 10px;
  }
  .appHeaderMenuList li:nth-child(2) a{
    padding: 15px 10px 25px;
  }
  .appHeaderMenuList li:nth-child(3) a{
    padding: 28px 10px;
  }
}

/* includeの調整 */
.boxFrame03 > .inner01 {
  max-width: 810px;
  margin-inline: auto;
}
