@charset "utf-8";
body.open {
  overflow: hidden;
  height: 100%
}
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 100;
}
/* pc */
@media screen and (min-width: 751px) {
  header {
    min-width: 1080px;
    height: 100px;
  }
}
/* sp */
@media only screen and (max-width: 750.99px) {
  header {
    height: 50px;
  }
}
/*

menu

*/
header #menu .donateBtn a {
  position: relative;
  background-color: #5F78BA;
  color: #ffffff;
  font-weight: 500;
  line-height: 1;
}
header #menu nav ul {
  display: flex;
  align-items: center;
}
/* pc */
@media screen and (min-width: 751px) {
  header #menu {
    margin: 0 100px 0 32px;
  }
  header #menu #logo {
    width: 322px;
    display: flex;
    align-items: center;
  }
  header #menu nav ul {
    height: 100px;
  }
  header #menu .donateBtn a {
    height: 46px;
    width: calc(156 / 960 * 100vw);
    max-width: 156px;
    padding-right: 20px;
    border-radius: 6px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
  }
  header #menu .donateBtn a:hover {
    background-color: #7f93c8;
  }
  header #menu .donateBtn a img {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 36px;
  }
}
/* sp */
@media only screen and (max-width: 750.99px) {
  header #menu {
    margin: 0 62px 0 calc(10 / 375 * 100vw);
  }
  header #menu #logo {
    width: calc(200 / 375 * 100vw);
    max-width: 200px;
    margin-top: 9px;
  }
  header #menu nav ul {
    height: 50px;
  }
  header #menu .donateBtn a {
    display: block;
    height: 32px;
    width: calc(80 / 375 * 100vw);
    max-width: 90px;
    padding-left: calc(6 / 375 * 100vw);
    border-radius: 6px;
    font-size: 12px;
    display: flex;
    align-items: center;
  }
  header #menu .donateBtn a img {
    position: absolute;
    right: calc(4 / 375 * 100vw);
    top: 50%;
    transform: translateY(-50%);
    width: calc(26 / 375 * 100vw);
    max-width: 26px;
  }
}
/*

ancho_btn

*/
header #ancho_btn {
  position: absolute;
  right: 0;
  top: 0;
}
header #ancho_btn .inner {
  position: relative;
  transform: translateX(0);
  transition: transform .5s;
}
header #ancho_btn .inner span {
  position: absolute;
  background-color: #5F78BA;
}
header #ancho_btn .inner, header #ancho_btn .inner span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
/* pc */
@media screen and (min-width: 751px) {
  header #ancho_btn {
    width: 96px;
    height: 100px;
    cursor: pointer;
  }
  header #ancho_btn .inner {
    width: 96px;
    height: 100px;
  }
  header #ancho_btn .inner span {
    left: 26px;
    width: 44px;
    height: 4px;
    border-radius: 2px;
  }
  header #ancho_btn .inner span:nth-of-type(1) {
    top: 35px;
  }
  header #ancho_btn .inner span:nth-of-type(2) {
    top: 48px;
  }
  header #ancho_btn .inner span:nth-of-type(3) {
    top: 59px;
  }
  /* nav_btn open */
  header #ancho_btn.open .inner span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-45deg);
    transform: translateY(14px) rotate(-45deg);
  }
  header #ancho_btn.open .inner span:nth-of-type(2) {
    opacity: 0;
  }
  header #ancho_btn.open .inner span:nth-of-type(3) {
    -webkit-transform: translateY(-9px) rotate(45deg);
    transform: translateY(-9px) rotate(45deg);
  }
}
/* sp */
@media only screen and (max-width: 750.99px) {
  header #ancho_btn {
    width: 64px;
    height: 50px;
  }
  header #ancho_btn .inner {
    width: 64px;
    height: 50px;
  }
  header #ancho_btn .inner span {
    left: 14px;
    width: 34px;
    height: 4px;
    border-radius: 2px;
  }
  header #ancho_btn .inner span:nth-of-type(1) {
    top: 15px;
  }
  header #ancho_btn .inner span:nth-of-type(2) {
    top: 24px;
  }
  header #ancho_btn .inner span:nth-of-type(3) {
    top: 32px;
  }
  /* nav_btn open */
  header #ancho_btn.open .inner span:nth-of-type(1) {
    -webkit-transform: translateY(10px) rotate(-45deg);
    transform: translateY(10px) rotate(-45deg);
  }
  header #ancho_btn.open .inner span:nth-of-type(2) {
    opacity: 0;
  }
  header #ancho_btn.open .inner span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(45deg);
    transform: translateY(-6px) rotate(45deg);
  }
}
/*

anchor_menu

*/
#anchor_menu_bg {
  position: fixed;
  top: 0;
  right: -110%;
  width: 100%;
  height: 100%;
  z-index: 1002;
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}
#anchor_menu {
  position: fixed;
  top: 0;
  right: -110%;
  z-index: 1;
  width: 100%;
  height: 100%;
  font-weight: 700;
  font-size: 1.4rem;
  z-index: 1003;
}
#anchor_menu #ancho_btn_close {
  position: absolute;
  right: 0;
  top: 0;
  cursor: pointer;
  z-index: 10;
}
#anchor_menu #ancho_btn_close .inner {
  position: relative;
}
#anchor_menu #ancho_btn_close .inner span {
  position: absolute;
  background-color: #ffffff;
}
#anchor_menu #ancho_btn_close .inner, #anchor_menu #ancho_btn_close .inner span {
  display: inline-block;
  box-sizing: border-box;
}
#anchor_menu .anchor_inner {
  position: relative;
  z-index: 1;
}
#anchor_menu .scrollbar {
  height: 100vh;
  overflow-y: auto;
}
#anchor_menu .anchor_wrap .anchor_link {
  border-top: solid 2px #ffffff;
}
#anchor_menu .anchor_wrap .anchor_link li {
  border-bottom: solid 2px #ffffff;
}
#anchor_menu .anchor_wrap .anchor_link li a {
  position: relative;
  display: block;
}
/* pc */
@media screen and (min-width: 751px) {
  #anchor_menu .sp {
    display: none;
  }
  #anchor_menu_bg {
    background-image: url(/80th_anniversary/assets/img/modal_bg_pc.png);
    mix-blend-mode: multiply;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
  @-moz-document url-prefix() {
    #anchor_menu_bg2 {
      position: fixed;
      top: 0;
      right: -110%;
      width: 100%;
      height: 100%;
      z-index: 1001;
      -webkit-backdrop-filter: blur(30px);
      backdrop-filter: blur(30px);
      background-color: rgba(255, 255, 255, .85);
    }
  }
  #anchor_menu #ancho_btn_close {
    width: 100px;
    height: 100px;
    cursor: pointer;
  }
  #anchor_menu #ancho_btn_close .inner {
    width: 100px;
    height: 100px;
  }
  #anchor_menu #ancho_btn_close .inner span {
    left: 30px;
    width: 40px;
    height: 4px;
    border-radius: 2px;
  }
  #anchor_menu #ancho_btn_close .inner span:nth-of-type(1) {
    top: 48px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #anchor_menu #ancho_btn_close .inner span:nth-of-type(2) {
    top: 48px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #anchor_menu .scrollbar #mCSB_1 {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #anchor_menu .anchor_wrap {
    padding: 50px;
    width: 500px;
  }
  #anchor_menu .anchor_link li a {
    padding: 26px 50px 20px 30px;
  }
  #anchor_menu .anchor_link li a img {
    width: auto;
    height: 18px;
  }
  #anchor_menu .anchor_link li a img.icon_anchor {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 24px;
    height: auto;
  }
  #anchor_menu .btn_link {
    margin-top: 70px;
  }
  #anchor_menu .btn_link .donateBtn {
    margin-right: 58px;
  }
  #anchor_menu .btn_link .donateBtn a {
    position: relative;
    background-color: #5F78BA;
    color: #ffffff;
    height: 46px;
    width: 156px;
    padding-right: 20px;
    border-radius: 6px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s linear;
  }
  #anchor_menu .btn_link .donateBtn a:hover {
    background-color: #7f93c8;
  }
  #anchor_menu .btn_link .donateBtn a img {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 36px;
  }
  #anchor_menu .btn_link .donateLogo {
    width: 200px;
    margin-top: 5px;
  }
}
/* sp */
@media only screen and (max-width: 750.99px) {
  #anchor_menu .pc {
    display: none;
  }
  #anchor_menu_bg {
    background-image: url("/80th_anniversary/assets/img/modal_bg_sp.png");
    mix-blend-mode: multiply;
    -webkit-backdrop-filter: blur(30px);
    backdrop-filter: blur(30px);
  }
  @-moz-document url-prefix() {
    #anchor_menu_bg2 {
      position: fixed;
      top: 0;
      right: -110%;
      width: 100%;
      height: 100%;
      z-index: 1001;
      -webkit-backdrop-filter: blur(30px);
      backdrop-filter: blur(30px);
      background-color: rgba(255, 255, 255, .85);
    }
  }
  #anchor_menu #ancho_btn_close {
    width: 60px;
    height: 50px;
  }
  #anchor_menu #ancho_btn_close .inner {
    width: 60px;
    height: 50px;
  }
  #anchor_menu #ancho_btn_close .inner span {
    left: 15px;
    width: 30px;
    height: 4px;
    border-radius: 2px;
  }
  #anchor_menu #ancho_btn_close .inner span:nth-of-type(1) {
    top: 24px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  #anchor_menu #ancho_btn_close .inner span:nth-of-type(2) {
    top: 24px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  #anchor_menu .anchor_wrap {
    padding: 60px 0 calc(60/ 375 * 100vw) 0;
    width: calc(284/ 375 * 100vw);
    margin-left: auto;
    margin-right: auto;
  }
  #anchor_menu .anchor_link li a {
    height: calc(70/ 375 * 100vw);
    display: flex !important;
    align-items: center;
  }
  #anchor_menu .anchor_link li a img {
    height: auto;
  }
  #anchor_menu .anchor_link li.anchor_top a img {
    width: calc(52/ 375 * 100vw);
  }
  #anchor_menu .anchor_link li.anchor_intro a img {
    width: calc(134/ 375 * 100vw);
  }
  #anchor_menu .anchor_link li.anchor_roadmap a img {
    width: calc(142/ 375 * 100vw);
  }
  #anchor_menu .anchor_link li.anchor_gifts a img {
    width: calc(234/ 375 * 100vw);
  }
  #anchor_menu .anchor_link li.anchor_guideline a img {
    width: calc(78/ 375 * 100vw);
  }
  #anchor_menu .anchor_link li a img.icon_anchor {
    position: absolute;
    top: 50%;
    right: calc(4/ 375 * 100vw);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: calc(24/ 375 * 100vw);
    height: auto;
  }
  #anchor_menu .btn_link {
    margin: calc(60/ 375 * 100vw) auto 0 auto;
    width: 178px;
  }
  #anchor_menu .btn_link .donateBtn {
    margin-bottom: 22px;
  }
  #anchor_menu .btn_link .donateBtn a {
    position: relative;
    background-color: #5F78BA;
    color: #ffffff;
    height: 46px;
    width: 158px;
    padding-right: 20px;
    border-radius: 6px;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #anchor_menu .btn_link .donateBtn a img {
    position: absolute;
    right: 10px;
    top: 6px;
    width: 36px;
  }
  #anchor_menu .btn_link .donateLogo {
    width: 178px;
  }
}