@charset "UTF-8";
/*! HTML5 Boilerplate v8.0.0 | MIT License | https://html5boilerplate.com/ */
/* main.css 2.1.0 | MIT License | https://github.com/h5bp/main.css#readme */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #000;
  font-size: 1em;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff; }

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  text-shadow: none; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
.pc-item {
  display: none; }

.sp-item {
  display: block; }

h1, h2, h3, h4, h5 {
  font-weight: normal; }

@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
#loading {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500; }

#loading-main:after, #loading-main:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin-left: -50%;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 110%; }

#loading-main {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 105; }

#loading-main:after {
  -webkit-animation: loading 0.75s linear infinite;
  animation: loading 0.75s linear infinite;
  border: 2px solid transparent;
  border-top-color: #F5F5F5; }

#loading-main:before {
  border: 2px solid #1D77E2; }

.noscroll {
  overflow: hidden; }

a {
  display: inline-block;
  cursor: pointer;
  text-decoration: none; }

a:link {
  color: #fff; }

a:visited {
  color: #fff; }

.wrapper {
  position: relative; }

.rightmenu {
  position: fixed;
  top: 0vw;
  right: 0vw;
  z-index: 200; }
  .rightmenu .mainnav {
    color: #fff;
    padding: 0;
    margin: -11em 0 0 -38.462vw;
    position: absolute;
    top: 50%;
    left: 50%; }
    .rightmenu .mainnav li {
      list-style: none;
      padding: 0;
      margin: 0;
      letter-spacing: 0.4em;
      font-size: 4.615vw;
      line-height: 2.0;
      text-align: center; }
      .rightmenu .mainnav li a {
        display: block;
        text-decoration: none;
        color: #fff; }
      .rightmenu .mainnav li a.btn_nft {
        display: block;
        width: 76.923vw;
        margin: 8.974vw auto 0; }
        .rightmenu .mainnav li a.btn_nft img {
          width: 100%; }

/* チェックボックスを非表示にする */
.drawer_hidden {
  display: none; }

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  width: 10.256vw;
  height: 10.256vw;
  top: 0;
  right: 0;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 510;
  /* 重なり順を一番上にする */
  cursor: pointer;
  background-color: #3261B4; }

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 0.513vw;
  width: 7.692vw;
  border-radius: 0.513vw;
  background: #fff;
  transition: 0.5s;
  position: absolute; }

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 2.564vw; }

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 2.564vw; }

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0); }

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg); }

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg); }

/* メニューのデザイン*/
.nav_content_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  background: #3261B4;
  transition: 0.5s;
  opacity: 0;
  display: none; }

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  font-size: 4.615vw;
  line-height: 3;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.4em; }
  .nav_list li {
    text-align: center; }
    .nav_list li a {
      text-decoration: none;
      color: #fff;
      cursor: pointer; }
    .nav_list li a:hover {
      opacity: .5;
      transition: .5s; }

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content_bg {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  opacity: 1;
  transition: 0.5s;
  animation: fadeIn 0.5s ease-in 0s forwards; }

.nav_content {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: 0.5s;
  z-index: 449; }

#drawer_input:checked ~ .nav_content {
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: 0.5s;
  z-index: 449;
  animation: fadeIn 0.5s ease-in 0s forwards; }

@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0; }
  1% {
    display: block;
    opacity: 0; }
  100% {
    display: block;
    opacity: 1; } }
/* ここまで */
body {
  position: relative; }

#header {
  width: 100%;
  height: 10.256vw;
  position: relative;
  background-color: #3261B4;
  margin-bottom: 8.718vw; }
  #header .logo {
    width: 10.513vw;
    height: 4.615vw;
    position: absolute;
    top: 2.821vw;
    left: 2.821vw;
    z-index: 100;
    margin: 0;
    padding: 0;
    font-size: 0.256vw;
    line-height: 0; }
    #header .logo img {
      width: 100%; }
  #header ul.mainnav {
    display: none;
    position: absolute;
    top: 6.41vw;
    right: 75.128vw;
    width: auto;
    z-index: 1100;
    text-align: center;
    font-size: 0vw; }
    #header ul.mainnav li {
      display: inline-block;
      list-style: none;
      color: #fff;
      font-size: 3.846vw;
      padding: 0 3.846vw;
      border-right: 1px solid #fff;
      line-height: 1; }
      #header ul.mainnav li:last-child {
        padding: 0 0 0 3.846vw;
        border: none; }
  #header .btn_buy {
    position: absolute;
    top: 0vw;
    right: 10.256vw; }
    #header .btn_buy a {
      display: block;
      height: 10.256vw;
      line-height: 0; }
      #header .btn_buy a img {
        height: 100%; }

#kv {
  margin-bottom: 8.718vw; }
  #kv h1 {
    text-indent: -2563.846vw;
    width: 100%;
    height: 102.564vw;
    background: url("../img/kv@sp.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center; }

a.btn {
  display: block;
  line-height: 28.974vw;
  width: 145.128vw; }
  a.btn img {
    width: 100%; }

.pagetop {
  display: none;
  position: fixed;
  bottom: 3.077vw;
  right: 3.077vw;
  z-index: 1000; }
  .pagetop a {
    display: block;
    width: 10.256vw;
    height: 10.256vw;
    height: auto; }
    .pagetop a img {
      width: 100%; }

#footer {
  position: relative;
  background-color: #3261B4;
  padding: 8.974vw 0;
  height: auto;
  font-family: "Hiragino Kaku Gothic Pro", sans-serif;
  color: #fff; }
  #footer .wrap {
    width: 89.744vw;
    margin: 0 auto; }
    #footer .wrap .mainnav {
      color: #fff;
      margin-bottom: 5.128vw; }
      #footer .wrap .mainnav ul {
        padding: 0;
        margin: 0;
        text-align: center;
        font-size: 0; }
        #footer .wrap .mainnav ul li {
          display: inline-block;
          list-style: none;
          letter-spacing: 0.1em;
          font-size: 2.821vw;
          line-height: 2.821vw;
          border-right: 0.256vw solid #fff;
          padding: 0 2.564vw;
          margin-bottom: 2.564vw; }
          #footer .wrap .mainnav ul li:first-child {
            border-left: 0.256vw solid #fff; }
          #footer .wrap .mainnav ul li:nth-child(6) {
            border-left: 0.256vw solid #fff; }
          #footer .wrap .mainnav ul li a {
            display: block;
            text-decoration: none;
            color: #fff; }
    #footer .wrap .f-companyname {
      font-family: "Noto Serif JP", serif;
      font-size: 3.59vw;
      letter-spacing: 0.1em;
      font-weight: 700;
      margin-bottom: 6.41vw;
      text-align: center; }
    #footer .wrap .f-info {
      margin-bottom: 0vw;
      text-align: center; }
      #footer .wrap .f-info .qr {
        width: 12.821vw;
        margin-right: 5.128vw;
        display: none; }
        #footer .wrap .f-info .qr img {
          width: 100%; }
      #footer .wrap .f-info .address {
        font-size: 2.821vw;
        line-height: 2;
        margin-top: -1.282vw;
        letter-spacing: 0.1em; }

main {
  min-width: auto; }

#intro {
  background-image: url("../img/intro_bg@sp.png");
  background-repeat: no-repeat;
  background-size: 70vw auto;
  background-position: bottom 0 right 3.846vw;
  padding: 8.974vw 0;
  background-color: #3261B4;
  width: 94.872vw;
  border-radius: 0px 12.488px 12.488px 0px; }
  #intro .inner {
    width: auto;
    color: #fff;
    text-align: left;
    margin: 0 auto;
    padding: 6.154vw; }
    #intro .inner h2 {
      font-family: "Noto Serif JP", serif;
      font-size: 4.615vw;
      font-weight: 700;
      letter-spacing: 0.1em;
      position: relative;
      margin: 0vw 0vw 12.821vw -2.564vw; }
      #intro .inner h2:after {
        content: '';
        width: 74.359vw;
        height: 0.513vw;
        display: inline-block;
        background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
        position: absolute;
        bottom: -2.564vw;
        left: 2.564vw; }
    #intro .inner p.mainlead {
      font-size: 2.821vw;
      line-height: 2.2;
      font-weight: 400;
      letter-spacing: 0.15em; }

#background {
  height: auto;
  background: url("../img/background_bg.png");
  margin-top: -17.949vw;
  background-size: auto 100%;
  background-position: top center;
  position: relative;
  z-index: -10;
  padding: 30.769vw 0 17.949vw; }
  #background .inner {
    text-align: center; }
    #background .inner h2 {
      font-family: "Noto Serif JP", serif;
      font-size: 4.615vw;
      font-weight: 700;
      letter-spacing: 0.1em;
      position: relative;
      margin-bottom: 15.385vw; }
      #background .inner h2:after {
        content: '';
        width: 89.744vw;
        height: 1.026vw;
        display: inline-block;
        background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
        position: absolute;
        bottom: -2.564vw;
        left: 50%;
        margin-left: -44.872vw; }
    #background .inner p.mainlead {
      font-size: 2.821vw;
      line-height: 2;
      letter-spacing: 0.15em; }
      #background .inner p.mainlead strong {
        color: #3261B4;
        font-weight: 700;
        font-size: 3.333vw; }

#activity {
  height: auto;
  background-image: url("../img/activity_bg@sp.png");
  background-repeat: no-repeat;
  background-size: 60.769vw auto;
  background-position: top 0 left 3.846vw;
  margin: 0vw 0 8.974vw 0;
  background-color: transparent; }
  #activity .column {
    width: auto;
    margin: 0 auto; }
    #activity .column .leftcolumn {
      width: 89.744vw;
      padding-top: 15.385vw;
      margin: 0 auto 8.974vw; }
      #activity .column .leftcolumn h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 4.615vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin: 0vw 0vw 7.692vw 0vw;
        text-align: center; }
        #activity .column .leftcolumn h2:after {
          content: '';
          width: 25.641vw;
          height: 0.513vw;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          left: 50%;
          bottom: -2.564vw;
          margin-left: -12.821vw; }
      #activity .column .leftcolumn p.mainlead {
        font-size: 2.821vw;
        line-height: 2.2;
        letter-spacing: 0.15em; }
        #activity .column .leftcolumn p.mainlead strong {
          color: #3261B4;
          font-weight: 700;
          font-size: 3.846vw; }
    #activity .column .rightcolumn {
      width: 56.41vw;
      margin: 0 auto; }
      #activity .column .rightcolumn .box .ph {
        margin-bottom: 4.615vw; }
        #activity .column .rightcolumn .box .ph img {
          width: 100%; }
      #activity .column .rightcolumn .box .caption {
        text-align: center;
        font-size: 2.564vw;
        color: #3261B4; }

#attempt {
  margin-bottom: 17.949vw; }
  #attempt .box {
    width: 89.744vw;
    background-color: #3261B4;
    border-radius: 30px;
    margin: 0 auto 5.128vw;
    color: #fff; }
    #attempt .box .inner {
      padding: 8.974vw 6.154vw; }
      #attempt .box .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 4.615vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin: 0vw 0vw 7.692vw 0vw;
        text-align: center; }
        #attempt .box .inner h2:after {
          content: '';
          width: 38.462vw;
          height: 0.513vw;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          left: 50%;
          margin-left: -19.231vw;
          bottom: -2.564vw; }
      #attempt .box .inner ul {
        margin: 0; }
        #attempt .box .inner ul li {
          margin: 0;
          list-style: none;
          font-size: 3.333vw;
          font-weight: 700;
          letter-spacing: 0.125em;
          line-height: 2.0;
          padding-left: 1em;
          text-indent: -1em; }
          #attempt .box .inner ul li span {
            color: #F3F94F; }
  #attempt .box + p {
    width: 89.744vw;
    margin: 0 auto;
    font-size: 2.821vw;
    line-height: 2.2;
    letter-spacing: 0.1em; }

#attempt2 {
  background-image: url("../img/attempt2_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  height: auto;
  padding-bottom: 30.769vw; }
  #attempt2 .inner {
    width: 89.744vw;
    margin: 0 auto;
    padding-top: 15.385vw; }
    #attempt2 .inner h2 {
      font-family: "Noto Serif JP", serif;
      font-size: 4.615vw;
      font-weight: 700;
      letter-spacing: 0.1em;
      position: relative;
      margin-bottom: 15.385vw;
      text-align: center; }
      #attempt2 .inner h2:after {
        content: '';
        width: 82.051vw;
        height: 0.513vw;
        display: inline-block;
        background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
        position: absolute;
        bottom: -2.564vw;
        left: 50%;
        margin-left: -41.026vw; }
    #attempt2 .inner p.mainlead {
      font-size: 2.821vw;
      line-height: 2;
      letter-spacing: 0.15em; }
      #attempt2 .inner p.mainlead strong {
        color: #3261B4;
        font-weight: 700;
        font-size: 3.333vw; }

#support {
  margin: -17.949vw 0 8.974vw 0; }
  #support .column {
    width: auto;
    margin: 0 auto;
    display: block; }
    #support .column .leftcolumn {
      background-image: url("../img/support_bg@sp.png");
      background-repeat: no-repeat;
      background-size: 60.513vw auto;
      background-position: top 0 right 3.846vw;
      padding: 8.974vw 8.718vw;
      background-color: #3261B4;
      width: 94.872vw;
      border-radius: 0px 12.488px 12.488px 0px;
      color: #fff;
      margin-bottom: 8.974vw; }
      #support .column .leftcolumn h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 4.615vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin-bottom: 15.385vw; }
        #support .column .leftcolumn h2:after {
          content: '';
          width: 51.282vw;
          height: 0.513vw;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -2.564vw;
          left: 0; }
      #support .column .leftcolumn p.mainlead {
        font-size: 2.821vw;
        line-height: 2.3;
        letter-spacing: 0.15em;
        margin-top: -2.564vw; }
        #support .column .leftcolumn p.mainlead strong {
          color: #3261B4;
          font-size: 5.385vw; }
    #support .column .rightcolumn {
      width: 89.744vw;
      margin: 0 auto;
      display: flex;
      justify-content: space-between; }
      #support .column .rightcolumn .box {
        margin-bottom: 4.615vw;
        width: 43.59vw; }
        #support .column .rightcolumn .box .ph {
          margin-bottom: 2.564vw; }
          #support .column .rightcolumn .box .ph img {
            width: 100%; }
        #support .column .rightcolumn .box .caption {
          text-align: center;
          font-size: 2.564vw;
          color: #3261B4; }

#howto {
  position: relative;
  margin-bottom: 17.949vw; }
  #howto .column {
    width: 89.744vw;
    margin: 0 auto;
    display: block; }
    #howto .column .rightcolumn {
      width: auto;
      margin-bottom: 8.974vw; }
      #howto .column .rightcolumn h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 4.615vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin: 0vw 0vw 10.256vw 0vw;
        text-align: center; }
        #howto .column .rightcolumn h2:after {
          content: '';
          width: 51.282vw;
          height: 0.513vw;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          left: 50%;
          bottom: -2.564vw;
          margin-left: -25.641vw; }
      #howto .column .rightcolumn h3 {
        font-size: 3.846vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        margin-bottom: 5.128vw; }
      #howto .column .rightcolumn p.mainlead {
        font-size: 2.821vw;
        line-height: 2.3;
        letter-spacing: 0.15em;
        margin-top: -2.564vw; }
        #howto .column .rightcolumn p.mainlead strong {
          color: #3261B4;
          font-size: 5.385vw; }
    #howto .column .leftcolumn {
      width: 76.923vw;
      margin: 0 auto; }
      #howto .column .leftcolumn .box {
        margin-bottom: 4.615vw; }
        #howto .column .leftcolumn .box .ph {
          margin-bottom: 2.564vw; }
          #howto .column .leftcolumn .box .ph img {
            width: 100%; }
        #howto .column .leftcolumn .box .caption {
          text-align: right;
          font-size: 2.564vw;
          color: #3261B4; }
  #howto a.btn_nft {
    display: block;
    width: 76.923vw;
    height: 14.103vw;
    bottom: 5.128vw;
    left: 50%;
    margin: 0 auto; }
    #howto a.btn_nft img {
      width: 100%; }

#investment {
  background-image: url("../img/investment_bg.jpg");
  background-position: top center;
  background-size: cover;
  padding: 17.949vw 0; }
  #investment .inner {
    width: 89.744vw;
    margin: 0 auto 8.974vw; }
    #investment .inner h2 {
      font-family: "Noto Serif JP", serif;
      font-size: 4.615vw;
      font-weight: 700;
      letter-spacing: 0.1em;
      position: relative;
      margin-bottom: 15.385vw;
      text-align: center; }
      #investment .inner h2:after {
        content: '';
        width: 76.923vw;
        height: 0.513vw;
        display: inline-block;
        background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
        position: absolute;
        bottom: -2.564vw;
        left: 50%;
        margin-left: -38.462vw; }
    #investment .inner p.mainlead {
      font-size: 2.821vw;
      line-height: 2;
      letter-spacing: 0.15em; }
      #investment .inner p.mainlead strong {
        color: #3261B4;
        font-weight: 700;
        font-size: 5.385vw; }
  #investment .column {
    width: 89.744vw;
    margin: 0 auto 8.974vw;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; }
    #investment .column .box {
      width: 43.59vw;
      margin: 0 0 4.615vw; }
      #investment .column .box .ph {
        margin-bottom: 2.564vw; }
        #investment .column .box .ph img {
          width: 100%; }
      #investment .column .box .caption {
        text-align: right;
        font-size: 2.564vw;
        color: #3261B4; }
      #investment .column .box.big {
        width: 89.744vw; }
  #investment a.btn_nft {
    display: block;
    width: 76.923vw;
    height: 14.103vw;
    margin: 0 auto; }
    #investment a.btn_nft img {
      width: 100%; }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden,
[hidden] {
  display: none !important; }

/*
 * Hide only visually, but have it available for screen readers:
 * https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 *
 * 1. For long content, line feeds are not interpreted as spaces and small width
 *    causes content to wrap 1 word per line:
 *    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
 */
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  /* 1 */ }

/*
 * Extends the .sr-only class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.sr-only.focusable:active,
.sr-only.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  white-space: inherit;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table; }

.clearfix::after {
  clear: both; }

/* ==========================================================================
   EXAMPLE Media Queries for Responsive Design.
   These examples override the primary ('mobile first') styles.
   Modify as content requires.
   ========================================================================== */
@media screen and (min-width: 768px) {
  /***************************
  
    PC
  
  *****************************/
  /* Style adjustments for viewports that meet the condition */
  .sp-item {
    display: none; }

  .pc-item {
    display: block; }

  a {
    transition: 0.5s; }
    a:hover {
      opacity: 0.3; }

  body {
    min-width: 1150px; }

  .wrapper {
    width: auto; }

  .rightmenu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200; }
    .rightmenu .mainnav {
      color: #fff;
      padding: 0;
      margin: -180px 0 0 -290px;
      position: absolute;
      top: 50%;
      left: 50%; }
      .rightmenu .mainnav li {
        list-style: none;
        padding: 0;
        margin: 0;
        letter-spacing: 15px;
        font-size: 30px;
        line-height: 100px; }
        .rightmenu .mainnav li a {
          display: block;
          text-decoration: none;
          color: #fff; }

  /* チェックボックスを非表示にする */
  .drawer_hidden {
    display: none; }

  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    width: 58px;
    height: 50px;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 510;
    /* 重なり順を一番上にする */
    cursor: pointer; }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 2px;
    width: 28px;
    border-radius: 2px;
    background: #fff;
    transition: 0.5s;
    position: absolute; }

  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 1.282vw; }

  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 1.282vw; }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0); }

  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg); }

  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg); }

  /* メニューのデザイン*/
  .nav_content_bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background: #3261B4;
    transition: 0.5s;
    opacity: 0;
    display: none; }

  /* メニュー黒ポチを消す */
  .nav_list {
    list-style: none;
    font-size: 30px;
    line-height: 3;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.4em; }
    .nav_list li {
      text-align: center; }
      .nav_list li a {
        text-decoration: none;
        color: #fff;
        cursor: pointer; }
      .nav_list li a:hover {
        opacity: .5;
        transition: .5s; }

  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content_bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    opacity: 1;
    transition: 0.5s;
    animation: fadeIn 0.5s ease-in 0s forwards; }

  .nav_content {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
    z-index: 449; }

  #drawer_input:checked ~ .nav_content {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    opacity: 1;
    transition: 0.5s;
    z-index: 449;
    animation: fadeIn 0.5s ease-in 0s forwards; }

  @keyframes fadeIn {
    0% {
      display: none;
      opacity: 0; }
    1% {
      display: block;
      opacity: 0; }
    100% {
      display: block;
      opacity: 1; } }
  /* ここまで */
  #header {
    width: 100%;
    height: 70px;
    position: relative;
    background-color: #3261B4;
    margin-bottom: 57px; }
    #header .logo {
      width: 72px;
      height: 31px;
      position: absolute;
      top: 20px;
      left: 28px;
      z-index: 100;
      margin: 0;
      padding: 0;
      font-size: 1px; }
      #header .logo img {
        width: 100%; }
    #header ul.mainnav {
      display: block;
      position: absolute;
      top: 25px;
      right: 293px;
      width: auto;
      z-index: 1100;
      text-align: center;
      font-size: 0px; }
      #header ul.mainnav li {
        display: inline-block;
        list-style: none;
        color: #fff;
        font-size: 15px;
        padding: 0 15px;
        border-right: 1px solid #fff;
        line-height: 1; }
        #header ul.mainnav li:last-child {
          padding: 0 0 0 15px;
          border: none; }
    #header .btn_buy {
      width: 263px;
      position: absolute;
      top: 0px;
      right: 0px; }
      #header .btn_buy a {
        display: block;
        width: 263px;
        height: 70px;
        line-height: 0; }
        #header .btn_buy a img {
          width: 100%;
          height: auto; }

  #kv {
    margin-bottom: 96px; }
    #kv h1 {
      text-indent: -9999px;
      height: 634px;
      background: url("../img/kv@pc.jpg");
      background-repeat: no-repeat;
      background-size: auto 100%;
      background-position: center; }

  .pagetop {
    display: block;
    position: fixed;
    bottom: 25px;
    right: 25px; }
    .pagetop a {
      display: block;
      width: 80px;
      height: 80px;
      height: auto; }
      .pagetop a img {
        width: 100%; }

  #footer {
    position: relative;
    background-color: #3261B4;
    padding: 40px 0;
    height: auto;
    font-family: "Hiragino Kaku Gothic Pro", sans-serif;
    color: #fff; }
    #footer .wrap {
      width: 1100px;
      margin: 0 auto; }
      #footer .wrap .mainnav {
        color: #fff;
        margin-bottom: 70px; }
        #footer .wrap .mainnav ul {
          padding: 0;
          margin: 0;
          text-align: center; }
          #footer .wrap .mainnav ul li {
            display: inline-block;
            list-style: none;
            letter-spacing: 0px;
            font-size: 14px;
            line-height: 14px;
            border-right: 1px solid #fff;
            padding: 0 15px; }
            #footer .wrap .mainnav ul li:first-child {
              border-left: none; }
            #footer .wrap .mainnav ul li:nth-child(6) {
              border-left: none; }
            #footer .wrap .mainnav ul li:last-child {
              border-right: none; }
            #footer .wrap .mainnav ul li a {
              display: block;
              text-decoration: none;
              color: #fff; }
      #footer .wrap .f-companyname {
        font-family: "Noto Serif JP", serif;
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 25px;
        text-align: left; }
      #footer .wrap .f-info {
        display: flex;
        margin-bottom: 25px;
        text-align: left; }
        #footer .wrap .f-info .qr {
          display: block;
          width: 100px;
          margin-right: 20px; }
          #footer .wrap .f-info .qr img {
            width: 100%; }
        #footer .wrap .f-info .address {
          font-size: 14px;
          line-height: 2;
          margin-top: -5px; }

  main {
    min-width: 1200px; }

  #intro {
    height: 620px;
    background-image: url("../img/intro_bg.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    padding: 70px 0 0 0;
    background-color: transparent;
    width: auto;
    border-radius: none; }
    #intro .inner {
      width: 940px;
      color: #fff;
      text-align: left;
      margin: 0 auto;
      padding: 0 150px 0 0; }
      #intro .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 34px;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin: 0px 0px 50px -20px; }
        #intro .inner h2:after {
          content: '';
          width: 510px;
          height: 4px;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -10px;
          left: 20px; }
      #intro .inner p.mainlead {
        font-size: 17px;
        line-height: 2.2;
        font-weight: 400;
        letter-spacing: 0.15em; }

  #background {
    height: 969px;
    background: url("../img/background_bg.png");
    margin-top: -125px;
    background-size: auto 100%;
    background-position: center;
    position: relative;
    z-index: -10;
    padding: 237px 0 0; }
    #background .inner {
      text-align: center; }
      #background .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 34px;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin-bottom: 60px; }
        #background .inner h2:after {
          content: '';
          width: 650px;
          height: 2px;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -10px;
          left: 50%;
          margin-left: -325px; }
      #background .inner p.mainlead {
        font-size: 17px;
        line-height: 2;
        letter-spacing: 0.15em; }
        #background .inner p.mainlead strong {
          color: #3261B4;
          font-weight: 700;
          font-size: 21px; }

  #activity {
    height: 432px;
    background-image: url("../img/activity_bg.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    margin: -90px 0 50px 0;
    background-color: transparent; }
    #activity .column {
      width: 966px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between; }
      #activity .column .leftcolumn {
        width: 490px;
        padding-top: 60px; }
        #activity .column .leftcolumn h2 {
          font-family: "Noto Serif JP", serif;
          font-size: 34px;
          font-weight: 700;
          letter-spacing: 0.1em;
          position: relative;
          margin: 0px 0px 40px 0px;
          text-align: left; }
          #activity .column .leftcolumn h2:after {
            content: '';
            width: 150px;
            height: 4px;
            display: inline-block;
            background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
            position: absolute;
            left: 0;
            bottom: -10px;
            margin-left: 0; }
        #activity .column .leftcolumn p.mainlead {
          font-size: 17px;
          line-height: 2.2;
          letter-spacing: 0.15em; }
          #activity .column .leftcolumn p.mainlead strong {
            color: #3261B4;
            font-weight: 700;
            font-size: 21px; }
      #activity .column .rightcolumn {
        width: 364px; }
        #activity .column .rightcolumn .box .ph {
          margin-bottom: 18px; }
          #activity .column .rightcolumn .box .ph img {
            width: 100%; }
        #activity .column .rightcolumn .box .caption {
          text-align: center;
          font-size: 16px;
          color: #3261B4; }

  #attempt {
    margin-bottom: 100px; }
    #attempt .box {
      width: 865px;
      background-color: #3261B4;
      border-radius: 30px;
      margin: 0 auto 45px;
      color: #fff; }
      #attempt .box .inner {
        padding: 50px 75px; }
        #attempt .box .inner h2 {
          font-family: "Noto Serif JP", serif;
          font-size: 29px;
          font-weight: 700;
          letter-spacing: 0.1em;
          position: relative;
          margin: 0px 0px 40px 0px;
          text-align: center; }
          #attempt .box .inner h2:after {
            content: '';
            width: 200px;
            height: 4px;
            display: inline-block;
            background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
            position: absolute;
            left: 50%;
            margin-left: -100px;
            bottom: -10px; }
        #attempt .box .inner ul {
          margin: 0; }
          #attempt .box .inner ul li {
            margin: 0;
            list-style: none;
            font-size: 19px;
            font-weight: 700;
            letter-spacing: 0.125em;
            line-height: 2.3; }
            #attempt .box .inner ul li span {
              color: #F3F94F; }
    #attempt .box + p {
      width: 731px;
      margin: 0 auto;
      font-size: 17px;
      line-height: 2.2;
      letter-spacing: 0.125em; }

  #attempt2 {
    background-image: url("../img/attempt2_bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    height: 874px;
    padding-bottom: 0; }
    #attempt2 .inner {
      width: 783px;
      margin: 0 auto;
      padding-top: 97px; }
      #attempt2 .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 34px;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin-bottom: 60px;
        text-align: center; }
        #attempt2 .inner h2:after {
          content: '';
          width: 720px;
          height: 4px;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -10px;
          left: 50%;
          margin-left: -360px; }
      #attempt2 .inner p.mainlead {
        font-size: 17px;
        line-height: 2;
        letter-spacing: 0.15em; }
        #attempt2 .inner p.mainlead strong {
          color: #3261B4;
          font-weight: 700;
          font-size: 21px; }

  #support {
    height: 545px;
    background-image: url("../img/support_bg.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    margin: -163px 0 120px 0;
    background-color: transparent;
    color: #fff; }
    #support .column {
      width: 966px;
      margin: 0 auto;
      display: flex; }
      #support .column .leftcolumn {
        width: 540px;
        background-image: none;
        background-color: transparent;
        border-radius: none;
        padding: 65px 0 0 0;
        display: flex;
        margin: 0 150px 0 0; }
        #support .column .leftcolumn h2 {
          font-family: "Noto Serif JP", serif;
          font-size: 35px;
          font-weight: 700;
          letter-spacing: 0.2em;
          -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
          position: relative;
          margin: 0px 30px 40px 0px; }
          #support .column .leftcolumn h2:after {
            content: none; }
        #support .column .leftcolumn p.mainlead {
          font-size: 17px;
          line-height: 2.3;
          letter-spacing: 0.15em;
          margin-top: -10px; }
          #support .column .leftcolumn p.mainlead strong {
            color: #3261B4;
            font-size: 21px; }
      #support .column .rightcolumn {
        width: 227px;
        display: block; }
        #support .column .rightcolumn .box {
          margin-bottom: 18px;
          width: auto; }
          #support .column .rightcolumn .box .ph {
            margin-bottom: 10px; }
            #support .column .rightcolumn .box .ph img {
              width: 100%; }
          #support .column .rightcolumn .box .caption {
            text-align: center;
            font-size: 16px;
            color: #3261B4; }

  #howto {
    position: relative;
    margin-bottom: 120px; }
    #howto .column {
      width: 960px;
      margin: 0 auto;
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-between; }
      #howto .column .rightcolumn {
        width: 395px; }
        #howto .column .rightcolumn h2 {
          font-family: "Noto Serif JP", serif;
          font-size: 36px;
          font-weight: 700;
          letter-spacing: 0.1em;
          position: relative;
          margin: 0px 30px 40px 0px; }
          #howto .column .rightcolumn h2:after {
            content: '';
            width: 395px;
            height: 4px;
            display: inline-block;
            background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
            position: absolute;
            left: 0;
            bottom: -10px;
            margin-left: 0; }
        #howto .column .rightcolumn h3 {
          font-size: 24px;
          font-weight: 700;
          letter-spacing: 0.1em;
          margin-bottom: 20px; }
        #howto .column .rightcolumn p.mainlead {
          font-size: 17px;
          line-height: 2.3;
          letter-spacing: 0.15em;
          margin-top: -10px; }
          #howto .column .rightcolumn p.mainlead strong {
            color: #3261B4;
            font-size: 21px; }
      #howto .column .leftcolumn {
        width: 484px; }
        #howto .column .leftcolumn .box {
          margin-bottom: 18px; }
          #howto .column .leftcolumn .box .ph {
            margin-bottom: 10px; }
            #howto .column .leftcolumn .box .ph img {
              width: 100%; }
          #howto .column .leftcolumn .box .caption {
            text-align: right;
            font-size: 16px;
            color: #3261B4; }
    #howto a.btn_nft {
      display: block;
      width: 396px;
      height: 72px;
      position: absolute;
      bottom: 20px;
      left: 50%;
      margin-left: 80px; }
      #howto a.btn_nft img {
        width: 100%; }

  #investment {
    background-image: url("../img/investment_bg.jpg");
    background-position: top center;
    background-size: cover;
    padding: 97px 0; }
    #investment .inner {
      width: 730px;
      margin: 0 auto 60px; }
      #investment .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 34px;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin-bottom: 60px;
        text-align: center; }
        #investment .inner h2:after {
          content: '';
          width: 440px;
          height: 4px;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -10px;
          left: 50%;
          margin-left: -220px; }
      #investment .inner p.mainlead {
        font-size: 17px;
        line-height: 2;
        letter-spacing: 0.15em; }
        #investment .inner p.mainlead strong {
          color: #3261B4;
          font-weight: 700;
          font-size: 21px; }
    #investment .column {
      width: 933px;
      margin: 0 auto 100px;
      display: flex;
      justify-content: center;
      flex-wrap: wrap; }
      #investment .column .box {
        width: 270px;
        margin: 0 20px 18px; }
        #investment .column .box .ph {
          margin-bottom: 10px; }
          #investment .column .box .ph img {
            width: 100%; }
        #investment .column .box .caption {
          text-align: right;
          font-size: 16px;
          color: #3261B4; }
        #investment .column .box.big {
          width: 353px; }
    #investment a.btn_nft {
      display: block;
      width: 492px;
      height: 89px;
      margin: 0 auto; }
      #investment a.btn_nft img {
        width: 100%; } }
@media screen and (min-width: 1440px) {
  /***************************
  
    PC - vw
  
  *****************************/
  /* Style adjustments for viewports that meet the condition */
  .sp-item {
    display: none; }

  .pc-item {
    display: block; }

  .wrapper {
    width: 100%; }

  .rightmenu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 200; }
    .rightmenu .mainnav {
      color: #fff;
      padding: 0;
      margin: -12.5vw 0 0 -20.139vw;
      position: absolute;
      top: 50%;
      left: 50%; }
      .rightmenu .mainnav li {
        list-style: none;
        padding: 0;
        margin: 0;
        letter-spacing: 1.042vw;
        font-size: 2.083vw;
        line-height: 6.944vw; }
        .rightmenu .mainnav li a {
          display: block;
          text-decoration: none;
          color: #fff; }

  /* チェックボックスを非表示にする */
  .drawer_hidden {
    display: none; }

  /* ハンバーガーアイコンの設置スペース */
  .drawer_open {
    display: flex;
    width: 4.028vw;
    height: 3.472vw;
    top: 0;
    right: 0;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 510;
    /* 重なり順を一番上にする */
    cursor: pointer; }

  /* ハンバーガーメニューのアイコン */
  .drawer_open span,
  .drawer_open span:before,
  .drawer_open span:after {
    content: '';
    display: block;
    height: 0.139vw;
    width: 1.944vw;
    border-radius: 0.139vw;
    background: #fff;
    transition: 0.5s;
    position: absolute; }

  /* 三本線の一番上の棒の位置調整 */
  .drawer_open span:before {
    bottom: 0.347vw; }

  /* 三本線の一番下の棒の位置調整 */
  .drawer_open span:after {
    top: 0.347vw; }

  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer_input:checked ~ .drawer_open span {
    background: rgba(255, 255, 255, 0); }

  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer_input:checked ~ .drawer_open span::before {
    bottom: 0;
    transform: rotate(45deg); }

  #drawer_input:checked ~ .drawer_open span::after {
    top: 0;
    transform: rotate(-45deg); }

  /* メニューのデザイン*/
  .nav_content_bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    background: #1D77E2;
    transition: 0.5s;
    opacity: 0;
    display: none; }

  /* メニュー黒ポチを消す */
  .nav_list {
    list-style: none;
    font-size: 30px;
    line-height: 3;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.4em; }
    .nav_list li {
      text-align: center; }
      .nav_list li a {
        text-decoration: none;
        color: #fff;
        cursor: pointer; }
      .nav_list li a:hover {
        opacity: .5;
        transition: .5s; }

  /* アイコンがクリックされたらメニューを表示 */
  #drawer_input:checked ~ .nav_content_bg {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    opacity: 1;
    transition: 0.5s;
    animation: fadeIn 0.5s ease-in 0s forwards; }

  .nav_content {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.5s;
    z-index: 449; }

  #drawer_input:checked ~ .nav_content {
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
    opacity: 1;
    transition: 0.5s;
    z-index: 449;
    animation: fadeIn 0.5s ease-in 0s forwards; }

  @keyframes fadeIn {
    0% {
      display: none;
      opacity: 0; }
    1% {
      display: block;
      opacity: 0; }
    100% {
      display: block;
      opacity: 1; } }
  /* ここまで */
  #header {
    width: 100%;
    height: 4.861vw;
    position: relative;
    background-color: #3261B4;
    margin-bottom: 3.958vw; }
    #header .logo {
      width: 5vw;
      height: 2.153vw;
      position: absolute;
      top: 1.389vw;
      left: 1.944vw;
      z-index: 100;
      margin: 0;
      padding: 0;
      font-size: 0.069vw; }
      #header .logo img {
        width: 100%; }
    #header ul.mainnav {
      display: block;
      position: absolute;
      top: 1.736vw;
      right: 20.347vw;
      width: auto;
      z-index: 1100;
      text-align: center;
      font-size: 0vw; }
      #header ul.mainnav li {
        display: inline-block;
        list-style: none;
        color: #fff;
        font-size: 1.042vw;
        padding: 0 1.042vw;
        border-right: 1px solid #fff;
        line-height: 1; }
        #header ul.mainnav li:last-child {
          padding: 0 0 0 1.042vw;
          border: none; }
    #header .btn_buy {
      width: 18.264vw;
      position: absolute;
      top: 0vw;
      right: 0vw; }
      #header .btn_buy a {
        display: block;
        width: 18.264vw;
        height: 4.861vw;
        line-height: 0; }
        #header .btn_buy a img {
          width: 100%;
          height: auto; }

  #kv {
    margin-bottom: 6.667vw; }
    #kv h1 {
      text-indent: -694.375vw;
      height: 44.028vw;
      background: url("../img/kv@pc.jpg");
      background-repeat: no-repeat;
      background-size: auto 100%;
      background-position: center; }

  .pagetop {
    position: fixed;
    bottom: 1.736vw;
    right: vwx(25); }
    .pagetop a {
      display: block;
      width: 5.556vw;
      height: 5.556vw;
      height: auto; }
      .pagetop a img {
        width: 100%; }

  #footer {
    display: block;
    position: relative;
    background-color: #3261B4;
    padding: 2.778vw 0;
    height: auto;
    font-family: "Hiragino Kaku Gothic Pro", sans-serif;
    color: #fff; }
    #footer .wrap {
      width: 76.389vw;
      margin: 0 auto; }
      #footer .wrap .mainnav {
        color: #fff;
        margin-bottom: 4.861vw; }
        #footer .wrap .mainnav ul {
          padding: 0;
          margin: 0;
          text-align: center; }
          #footer .wrap .mainnav ul li {
            display: inline-block;
            list-style: none;
            letter-spacing: 0vw;
            font-size: 0.972vw;
            line-height: 0.972vw;
            border-right: 0.069vw solid #fff;
            padding: 0 1.042vw; }
            #footer .wrap .mainnav ul li:first-child {
              border-left: none; }
            #footer .wrap .mainnav ul li:nth-child(6) {
              border-left: none; }
            #footer .wrap .mainnav ul li:last-child {
              border-right: none; }
            #footer .wrap .mainnav ul li a {
              display: block;
              text-decoration: none;
              color: #fff; }
      #footer .wrap .f-companyname {
        font-family: "Noto Serif JP", serif;
        font-size: 1.667vw;
        font-weight: 700;
        margin-bottom: 1.736vw; }
      #footer .wrap .f-info {
        display: flex;
        margin-bottom: 1.736vw; }
        #footer .wrap .f-info .qr {
          width: 6.944vw;
          margin-right: 1.389vw; }
          #footer .wrap .f-info .qr img {
            width: 100%; }
        #footer .wrap .f-info .address {
          font-size: 0.972vw;
          line-height: 2;
          margin-top: -0.347vw; }

  main {
    min-width: 1200px; }

  #intro {
    height: 43.056vw;
    background-image: url("../img/intro_bg.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    padding: 4.861vw 0 0 0;
    background-color: transparent; }
    #intro .inner {
      width: 65.278vw;
      color: #fff;
      text-align: left;
      margin: 0 auto;
      padding: 0 10.417vw 0 0; }
      #intro .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 2.361vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin: 0vw 0vw 3.472vw -1.389vw; }
        #intro .inner h2:after {
          content: '';
          width: 35.417vw;
          height: 0.278vw;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -0.694vw;
          left: 1.389vw; }
      #intro .inner p.mainlead {
        font-size: 1.181vw;
        line-height: 2.2;
        font-weight: 400;
        letter-spacing: 0.15em; }

  #background {
    height: 67.292vw;
    background: url("../img/background_bg.png");
    margin-top: -8.681vw;
    background-size: auto 100%;
    background-position: center;
    position: relative;
    z-index: -10;
    padding: 16.458vw 0 0; }
    #background .inner {
      text-align: center; }
      #background .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 2.361vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin-bottom: 4.167vw; }
        #background .inner h2:after {
          content: '';
          width: 45.139vw;
          height: 0.278vw;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -0.694vw;
          left: 50%;
          margin-left: -22.569vw; }
      #background .inner p.mainlead {
        font-size: 1.181vw;
        line-height: 2;
        letter-spacing: 0.15em; }
        #background .inner p.mainlead strong {
          color: #3261B4;
          font-weight: 700;
          font-size: 1.458vw; }

  #activity {
    height: 30vw;
    background-image: url("../img/activity_bg.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    margin: -6.25vw 0 3.472vw 0;
    background-color: transparent; }
    #activity .column {
      width: 67.083vw;
      margin: 0 auto;
      display: flex;
      justify-content: space-between; }
      #activity .column .leftcolumn {
        width: 34.028vw;
        padding-top: 4.167vw; }
        #activity .column .leftcolumn h2 {
          font-family: "Noto Serif JP", serif;
          font-size: 2.361vw;
          font-weight: 700;
          letter-spacing: 0.1em;
          position: relative;
          margin: 0vw 0vw 2.778vw 0vw; }
          #activity .column .leftcolumn h2:after {
            content: '';
            width: 10.417vw;
            height: 0.278vw;
            display: inline-block;
            background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
            position: absolute;
            left: 0;
            bottom: -0.694vw; }
        #activity .column .leftcolumn p.mainlead {
          font-size: 1.181vw;
          line-height: 2.2;
          letter-spacing: 0.15em; }
          #activity .column .leftcolumn p.mainlead strong {
            color: #3261B4;
            font-weight: 700;
            font-size: 1.458vw; }
      #activity .column .rightcolumn {
        width: 25.278vw; }
        #activity .column .rightcolumn .box .ph {
          margin-bottom: 1.25vw; }
          #activity .column .rightcolumn .box .ph img {
            width: 100%; }
        #activity .column .rightcolumn .box .caption {
          text-align: center;
          font-size: 1.111vw;
          color: #3261B4; }

  #attempt {
    margin-bottom: 6.944vw; }
    #attempt .box {
      width: 60.069vw;
      background-color: #3261B4;
      border-radius: 30px;
      margin: 0 auto 3.125vw;
      color: #fff; }
      #attempt .box .inner {
        padding: 3.472vw 5.208vw; }
        #attempt .box .inner h2 {
          font-family: "Noto Serif JP", serif;
          font-size: 2.014vw;
          font-weight: 700;
          letter-spacing: 0.1em;
          position: relative;
          margin: 0vw 0vw 2.778vw 0vw;
          text-align: center; }
          #attempt .box .inner h2:after {
            content: '';
            width: 13.889vw;
            height: 0.278vw;
            display: inline-block;
            background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
            position: absolute;
            left: 50%;
            margin-left: -6.944vw;
            bottom: -0.694vw; }
        #attempt .box .inner ul {
          margin: 0; }
          #attempt .box .inner ul li {
            margin: 0;
            list-style: none;
            font-size: 1.319vw;
            font-weight: 700;
            letter-spacing: 0.125em;
            line-height: 2.3; }
            #attempt .box .inner ul li span {
              color: #F3F94F; }
    #attempt .box + p {
      width: 50.764vw;
      margin: 0 auto;
      font-size: 1.181vw;
      line-height: 2.2;
      letter-spacing: 0.125em; }

  #attempt2 {
    background-image: url("../img/attempt2_bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    height: 60.694vw; }
    #attempt2 .inner {
      width: 54.375vw;
      margin: 0 auto;
      padding-top: 6.736vw; }
      #attempt2 .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 2.361vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin-bottom: 4.167vw;
        text-align: center; }
        #attempt2 .inner h2:after {
          content: '';
          width: 50vw;
          height: 0.278vw;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -0.694vw;
          left: 50%;
          margin-left: -25vw; }
      #attempt2 .inner p.mainlead {
        font-size: 1.181vw;
        line-height: 2;
        letter-spacing: 0.15em; }
        #attempt2 .inner p.mainlead strong {
          color: #3261B4;
          font-weight: 700;
          font-size: 1.458vw; }

  #support {
    height: 37.847vw;
    background-image: url("../img/support_bg.png");
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center;
    margin: -11.319vw 0 8.333vw 0;
    background-color: transparent;
    color: #fff; }
    #support .column {
      width: 67.083vw;
      margin: 0 auto;
      display: flex; }
      #support .column .leftcolumn {
        width: 37.5vw;
        padding-top: 4.514vw;
        display: flex;
        margin-right: 10.417vw; }
        #support .column .leftcolumn h2 {
          font-family: "Noto Serif JP", serif;
          font-size: 2.431vw;
          font-weight: 700;
          letter-spacing: 0.2em;
          -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
          position: relative;
          margin: 0vw 2.083vw 2.778vw 0vw; }
        #support .column .leftcolumn p.mainlead {
          font-size: 1.181vw;
          line-height: 2.3;
          letter-spacing: 0.15em;
          margin-top: -0.694vw; }
          #support .column .leftcolumn p.mainlead strong {
            color: #3261B4;
            font-size: 1.458vw; }
      #support .column .rightcolumn {
        width: 15.764vw; }
        #support .column .rightcolumn .box {
          margin-bottom: 1.25vw; }
          #support .column .rightcolumn .box .ph {
            margin-bottom: 0.694vw; }
            #support .column .rightcolumn .box .ph img {
              width: 100%; }
          #support .column .rightcolumn .box .caption {
            text-align: center;
            font-size: 1.111vw;
            color: #3261B4; }

  #howto {
    position: relative;
    margin-bottom: 8.333vw; }
    #howto .column {
      width: 66.667vw;
      margin: 0 auto;
      display: flex;
      flex-direction: row-reverse;
      justify-content: space-between; }
      #howto .column .rightcolumn {
        width: 27.431vw; }
        #howto .column .rightcolumn h2 {
          font-family: "Noto Serif JP", serif;
          font-size: 2.5vw;
          font-weight: 700;
          letter-spacing: 0.1em;
          position: relative;
          margin: 0vw 2.083vw 2.778vw 0vw; }
          #howto .column .rightcolumn h2:after {
            content: '';
            width: 27.431vw;
            height: 0.278vw;
            display: inline-block;
            background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
            position: absolute;
            left: 0;
            bottom: -0.694vw; }
        #howto .column .rightcolumn h3 {
          font-size: 1.667vw;
          font-weight: 700;
          letter-spacing: 0.1em;
          margin-bottom: 1.389vw; }
        #howto .column .rightcolumn p.mainlead {
          font-size: 1.181vw;
          line-height: 2.3;
          letter-spacing: 0.15em;
          margin-top: -0.694vw; }
          #howto .column .rightcolumn p.mainlead strong {
            color: #3261B4;
            font-size: 1.458vw; }
      #howto .column .leftcolumn {
        width: 33.611vw; }
        #howto .column .leftcolumn .box {
          margin-bottom: 1.25vw; }
          #howto .column .leftcolumn .box .ph {
            margin-bottom: 0.694vw; }
            #howto .column .leftcolumn .box .ph img {
              width: 100%; }
          #howto .column .leftcolumn .box .caption {
            text-align: right;
            font-size: 1.111vw;
            color: #3261B4; }
    #howto a.btn_nft {
      display: block;
      width: 27.5vw;
      height: 5vw;
      position: absolute;
      bottom: 1.389vw;
      left: 50%;
      margin-left: 5.556vw; }
      #howto a.btn_nft img {
        width: 100%; }

  #investment {
    background-image: url("../img/investment_bg.jpg");
    background-position: top center;
    background-size: cover;
    padding: 6.736vw 0; }
    #investment .inner {
      width: 50.694vw;
      margin: 0 auto 4.167vw; }
      #investment .inner h2 {
        font-family: "Noto Serif JP", serif;
        font-size: 2.361vw;
        font-weight: 700;
        letter-spacing: 0.1em;
        position: relative;
        margin-bottom: 4.167vw;
        text-align: center; }
        #investment .inner h2:after {
          content: '';
          width: 30.556vw;
          height: 0.278vw;
          display: inline-block;
          background: linear-gradient(90deg, #FFC634 0%, #F6F94F 100%);
          position: absolute;
          bottom: -0.694vw;
          left: 50%;
          margin-left: -15.278vw; }
      #investment .inner p.mainlead {
        font-size: 1.181vw;
        line-height: 2;
        letter-spacing: 0.15em; }
        #investment .inner p.mainlead strong {
          color: #3261B4;
          font-weight: 700;
          font-size: 1.458vw; }
    #investment .column {
      width: 64.792vw;
      margin: 0 auto 6.944vw;
      display: flex;
      justify-content: center;
      flex-wrap: wrap; }
      #investment .column .box {
        width: 18.75vw;
        margin: 0 1.389vw 1.25vw; }
        #investment .column .box .ph {
          margin-bottom: 0.694vw; }
          #investment .column .box .ph img {
            width: 100%; }
        #investment .column .box .caption {
          text-align: right;
          font-size: 1.111vw;
          color: #3261B4; }
        #investment .column .box.big {
          width: 24.514vw; }
    #investment a.btn_nft {
      display: block;
      width: 34.167vw;
      height: 6.181vw;
      margin: 0 auto; }
      #investment a.btn_nft img {
        width: 100%; } }
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */ }
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://www.phpied.com/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: #fff !important;
    color: #000 !important;
    /* Black prints faster */
    box-shadow: none !important;
    text-shadow: none !important; }

  a,
  a:visited {
    text-decoration: underline; }

  a[href]::after {
    content: " (" attr(href) ")"; }

  abbr[title]::after {
    content: " (" attr(title) ")"; }

  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: ""; }

  pre {
    white-space: pre-wrap !important; }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  /*
   * Printing Tables:
   * https://web.archive.org/web/20180815150934/http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group; }

  tr,
  img {
    page-break-inside: avoid; }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; } }
.clearfix:after {
  content: "";
  display: block;
  clear: both; }

.clearfix:before {
  content: "";
  display: block;
  clear: both; }

.clearfix {
  display: block; }
